{
    "openapi":"3.0.1",
    "info":{
        "title":"REST API for Clinical One Cloud Service",
        "description":"The Oracle Clinical One Cloud Service API lets you interact with study data and access Clinical One services.",
        "version":"2026.06.04",
        "x-summary":"The Oracle Clinical One Cloud Service API lets you interact with study data and access Clinical One services."
    },
    "security":[
        {
            "Rule Execution Service":[
                "Users"
            ]
        },
        {
            "Data Action":[
                "User"
            ]
        },
        {
            "Basic":[
                "Users"
            ]
        },
        {
            "Query Service":[
                "Users"
            ]
        },
        {
            "Authorization":[
                "Users"
            ]
        },
        {
            "Authorization":[
                "Users, Permissions and Roles/Users"
            ]
        },
        {
            "Authorization":[
                "User"
            ]
        },
        {
            "DataCapture":[
                "User"
            ]
        },
        {
            "Basic":[
            ]
        },
        {
            "Data Integration":[
                "User"
            ]
        },
        {
            "Rule Designer Service":[
                "Users"
            ]
        }
    ],
    "paths":{
        "/ec-rule-svc/rest/v1.0/studies/{studyId}/{mode}/jobStatus":{
            "put":{
                "tags":[
                    "Rule Execution/Re-Execution/Job Status"
                ],
                "summary":"v1.0",
                "description":"Returns job statuses produced by the original rule re-execution pipeline introduced in v1.0.",
                "operationId":"JobStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"C360089F838D4DD980322DE22545C49F"
                        },
                        "example":"C360089F838D4DD980322DE22545C49F"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"This query parameter is optional and not required. Provide true to include the full execution history; omit or set to false to return only the latest run results.",
                        "schema":{
                            "type":"boolean",
                            "example":true,
                            "default":false
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of rules IDs.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleIdsRequest"
                            },
                            "examples":{
                                "Rule IDs Object":{
                                    "description":"Rule IDs Object",
                                    "value":{
                                        "ruleIds":[
                                            "0E1A63683F884B13A3E7BEE9CA4FF1EA",
                                            "DBF2C278385E4AF4BA4FBF2AA76D194F",
                                            "704A7178208D44BC9AD52556B18933C3",
                                            "400037527BAC4AE2BA8B8A6CCD3FC293",
                                            "F6360CECD2D743C8849CC9646E4DB16F"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule execution was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Successful results":{
                                        "description":"Successful results",
                                        "value":{
                                            "jobStatus":[
                                                {
                                                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                                    "jobStatus":"Success",
                                                    "ruleName":"onesection - create query for form submit dates",
                                                    "jobStartDate":"2025-09-07 19:12:08.747",
                                                    "groupJobId":"F8491962C1574F0A89195560670B59E8"
                                                },
                                                {
                                                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                                    "jobStatus":"Success",
                                                    "ruleName":"screening - create query with form submit dates",
                                                    "jobStartDate":"2025-09-07 19:08:07.437",
                                                    "groupJobId":"31593A0436D24F2C9E895A93A22A630C"
                                                },
                                                {
                                                    "ruleId":"F6360CECD2D743C8849CC9646E4DB16F",
                                                    "jobId":"48FAE7B35F4F418ABEC16037ED11FA0B",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Create query with submit dates",
                                                    "jobStartDate":"2025-09-07 19:07:55.685",
                                                    "groupJobId":"589F499D700340DE866C8EF3ACCE1547"
                                                }
                                            ],
                                            "errorMessage":"Success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload fails validation, such as when ruleIds is empty, contains malformed UUIDs, or required fields are missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Empty UUID List":{
                                        "description":"Empty UUID List",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when rule job status retrieval fails due to unexpected server-side processing errors.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Empty Request Body":{
                                        "description":"Empty Request Body",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Execution Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-svc-rest-v1.0-studies-{studyId}-{mode}-jobStatus-put",
                "x-filename-id":"ec-rule-svc-rest-v1.0-studies-studyid-mode-jobstatus-put"
            }
        },
        "/ec-rule-svc/rest/v1.0/studies/{studyId}/{mode}/cancelRuleJob":{
            "put":{
                "tags":[
                    "Rule Execution/Re-Execution/Cancel Rule Jobs"
                ],
                "summary":"v1.0",
                "description":"Cancels job associated with a given rule ID, if the job is in pending or running state.",
                "operationId":"cancelRuleJob",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"C360089F838D4DD980322DE22545C49F"
                        },
                        "example":"C360089F838D4DD980322DE22545C49F"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of rules IDs.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleIdsRequest"
                            },
                            "examples":{
                                "Rule IDs Object":{
                                    "description":"Rule IDs Object",
                                    "value":{
                                        "ruleIds":[
                                            "DBF2C278385E4AF4BA4FBF2AA76D194F",
                                            "704A7178208D44BC9AD52556B18933C3",
                                            "F6360CECD2D743C8849CC9646E4DB16F"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule execution was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Successful results":{
                                        "description":"Successful results",
                                        "value":{
                                            "jobStatus":[
                                                {
                                                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"F6360CECD2D743C8849CC9646E4DB16F",
                                                    "jobId":"48FAE7B35F4F418ABEC16037ED11FA0B",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                }
                                            ],
                                            "errorMessage":"Success"
                                        }
                                    },
                                    "Successful with some non-existent rules":{
                                        "description":"Successful with some non-existent rules",
                                        "value":{
                                            "jobStatus":[
                                                {
                                                    "ruleId":"0E1A63683F884B13A3E7BEE9CA4FF1EA",
                                                    "jobId":"00000000000000000000000000000000",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Rule doesn't exist",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"400037527BAC4AE2BA8B8A6CCD3FC293",
                                                    "jobId":"00000000000000000000000000000000",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Rule doesn't exist",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                },
                                                {
                                                    "ruleId":"F6360CECD2D743C8849CC9646E4DB16F",
                                                    "jobId":"48FAE7B35F4F418ABEC16037ED11FA0B",
                                                    "groupJobId":"A1B23C45D67E89F123456789ABCDEF12",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Rule name not available",
                                                    "jobStartDate":"2025-09-07 19:12:08.747"
                                                }
                                            ],
                                            "errorMessage":"Success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload fails validation, such as when ruleIds is empty, contains malformed UUIDs, or required fields are missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Empty UUID List":{
                                        "description":"Empty UUID List",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when cancelRuleJob fails due to an unexpected server-side processing error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponse"
                                },
                                "examples":{
                                    "Empty Request Body":{
                                        "description":"Empty Request Body",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Execution Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-svc-rest-v1.0-studies-{studyId}-{mode}-cancelRuleJob-put",
                "x-filename-id":"ec-rule-svc-rest-v1.0-studies-studyid-mode-cancelrulejob-put"
            }
        },
        "/ec-rule-svc/rest/v1.0/studies/{studyId}/{mode}/rerunhistory/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Execution/Re-Execution/Get Rule Re-run History"
                ],
                "summary":"v1.0",
                "description":"Fetches the rule re-run history for a given rule id.",
                "operationId":"getRerunHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"C360089F838D4DD980322DE22545C49F"
                        },
                        "example":"C360089F838D4DD980322DE22545C49F"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Unique identifier for the rule. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"704A7178208D44BC9AD52556B18933C3"
                        },
                        "example":"704A7178208D44BC9AD52556B18933C3"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Rule execution was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleHistoryResponse"
                                },
                                "examples":{
                                    "Successful results":{
                                        "description":"Successful results",
                                        "value":{
                                            "ruleHistory":[
                                                {
                                                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                                    "jobStatus":"Success",
                                                    "ruleName":"screening - create query with form submit dates",
                                                    "jobStartDate":"2025-09-07 19:08:07.437",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "countPassedSubjects":1,
                                                    "countFailedSubjects":0
                                                }
                                            ],
                                            "status":"SUCCESS",
                                            "statusDetail":"History retrieved successfully."
                                        }
                                    },
                                    "Successful with non-existent rule":{
                                        "description":"Successful with non-existent rule",
                                        "value":{
                                            "ruleHistory":[
                                            ],
                                            "status":"SUCCESS",
                                            "statusDetail":"No rerun history found for the supplied rule."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload fails validation, such as when ruleIds is empty, contains malformed UUIDs, or required fields are missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleHistoryResponse"
                                },
                                "examples":{
                                    "Invalid Rule Identifier":{
                                        "description":"Invalid Rule Identifier",
                                        "value":{
                                            "ruleHistory":[
                                            ],
                                            "status":"VALIDATION_ERROR",
                                            "statusDetail":"ruleId must be a 32 to 36 character GUID."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when rerun history retrieval fails because of an unexpected server-side error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleHistoryResponse"
                                },
                                "examples":{
                                    "Missing Rule ID":{
                                        "description":"Missing Rule ID",
                                        "value":{
                                            "ruleHistory":[
                                            ],
                                            "status":"SERVER_ERROR",
                                            "statusDetail":"Unexpected server error while retrieving rerun history."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Execution Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-svc-rest-v1.0-studies-{studyId}-{mode}-rerunhistory-{ruleId}-get",
                "x-filename-id":"ec-rule-svc-rest-v1.0-studies-studyid-mode-rerunhistory-ruleid-get"
            }
        },
        "/ec-rule-svc/rest/v2.0/studies/{studyId}/{mode}/jobStatus":{
            "put":{
                "tags":[
                    "Rule Execution/Re-Execution/Job Status"
                ],
                "summary":"v2.0",
                "description":"Updates and returns rule job status using the v2 orchestration pipeline. Compared to v1.0, this endpoint uses v2 job coordination so grouped jobs, retries, and detailed errors remain synchronized, giving users more accurate progress and actionable failure details.",
                "operationId":"JobStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"C360089F838D4DD980322DE22545C49F"
                        },
                        "example":"C360089F838D4DD980322DE22545C49F"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode identifies the study data segment. Allowed values: design (draft workspace), test (UAT sandbox), training (practice environment), production (live subject data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"This query parameter is optional and not required. Provide true to include the full execution history; omit or set to false to return only the latest run results.",
                        "schema":{
                            "type":"boolean",
                            "example":true,
                            "default":false
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of rules IDs.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleIdsRequestV2"
                            },
                            "examples":{
                                "Rule IDs Object":{
                                    "description":"Rule IDs Object",
                                    "value":{
                                        "ruleIds":[
                                            "0E1A63683F884B13A3E7BEE9CA4FF1EA",
                                            "DBF2C278385E4AF4BA4FBF2AA76D194F",
                                            "704A7178208D44BC9AD52556B18933C3",
                                            "400037527BAC4AE2BA8B8A6CCD3FC293",
                                            "F6360CECD2D743C8849CC9646E4DB16F"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule execution was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponseV2"
                                },
                                "examples":{
                                    "Successful results":{
                                        "description":"Successful results",
                                        "value":{
                                            "jobStatus":[
                                                {
                                                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                                    "jobStatus":"Success",
                                                    "ruleName":"onesection - create query for form submit dates",
                                                    "jobStartDate":"2025-09-07 19:12:08.747",
                                                    "groupJobId":"F8491962C1574F0A89195560670B59E8"
                                                },
                                                {
                                                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                                    "jobStatus":"Success",
                                                    "ruleName":"screening - create query with form submit dates",
                                                    "jobStartDate":"2025-09-07 19:08:07.437",
                                                    "groupJobId":"31593A0436D24F2C9E895A93A22A630C"
                                                },
                                                {
                                                    "ruleId":"F6360CECD2D743C8849CC9646E4DB16F",
                                                    "jobId":"48FAE7B35F4F418ABEC16037ED11FA0B",
                                                    "jobStatus":"Success",
                                                    "ruleName":"Create query with submit dates",
                                                    "jobStartDate":"2025-09-07 19:07:55.685",
                                                    "groupJobId":"589F499D700340DE866C8EF3ACCE1547"
                                                }
                                            ],
                                            "errorMessage":"Success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload fails validation, such as when ruleIds is empty, contains malformed UUIDs, or required fields are missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponseV2"
                                },
                                "examples":{
                                    "Empty UUID List":{
                                        "description":"Empty UUID List",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when v2 rule job status processing fails because of unexpected server-side errors.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/JobStatusResponseV2"
                                },
                                "examples":{
                                    "Empty Request Body":{
                                        "description":"Empty Request Body",
                                        "value":{
                                            "jobStatus":[
                                            ],
                                            "errorMessage":"Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Execution Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-svc-rest-v2.0-studies-{studyId}-{mode}-jobStatus-put",
                "x-filename-id":"ec-rule-svc-rest-v2.0-studies-studyid-mode-jobstatus-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/validate/multipleitems":{
            "post":{
                "tags":[
                    "Data Actions/Data Elements/Get data elements items summary for locked or frozen"
                ],
                "summary":"V1.0",
                "description":"Provides the summary for the list of the data elements and returns the actions of the item like frozen or locked.",
                "operationId":"validateMultipleItems",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1D8B2BA9DD84F0BAEF700387265AC8A"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Data elements to be validated. See schema for full example.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleDataElementRequest"
                            },
                            "examples":{
                                "MultipleDataElementRequest":{
                                    "summary":"MultipleDataElementRequestExample",
                                    "description":"MultipleDataElementRequest",
                                    "value":{
                                        "dataElements":[
                                            {
                                                "id":"A101B2C3D4E56789FA2B3C4D5E6F7081",
                                                "studyName":"Diabetes Control Study",
                                                "studyVersion":"1.0.0.0",
                                                "subjectId":"E0E1F2A3B4C5918273648ABC1234876E",
                                                "eventId":"9FA12B3487CD41209ACC760FAB9112DB",
                                                "formId":"2CADF765B8734E239F87EFAD91AB2384",
                                                "formSectionId":"38EBDB0F2A5C460F92A677931E779925",
                                                "itemId":"C9E86AF896F04FBB82FB755666DA6B58",
                                                "siteId":"CFD2C1AF8B46416795A6D2340DBC1A47",
                                                "variableId":"E8EB947A8B684C8B8A30C6070A65BD76",
                                                "originatorId":"4CF897FAB706421383F63FA3958C8071",
                                                "vendorCode":"V123ER",
                                                "value":"11.7",
                                                "measureUnit":"mg",
                                                "parentId":"A3B72E85CF824AE09867B7A0A379A0DC",
                                                "rootId":"C0B3C5A041974483B851B6093A84736F",
                                                "eventInstanceNum":3,
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "innerRepeat":1,
                                                "outerRepeat":0,
                                                "dataFlag":"B1F7B0A7BFC847C5A2C1EFB1A384BC21",
                                                "itemD":"11",
                                                "itemR":"11",
                                                "itemF":"11",
                                                "itemType":"NUMERIC",
                                                "propertyId":"FFBC9E118C4C48FDB77A50A1CDD28AA9",
                                                "propertyVersionStart":"2025-09-14T00:00:00Z",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "sourceTimeStamp":"2025-09-14T15:12:00Z",
                                                "hdiId":"FFBC9E118C4C48FDB77A50A1CDD28AA9",
                                                "lockedStatus":"LOCKED",
                                                "lockedDateTime":"2025-09-14T16:10:00Z",
                                                "visitStatus":"IN_PROGRESS",
                                                "visitStartDate":"2025-09-14",
                                                "isSafetyTrigger":true,
                                                "isSafetyDefaultSelected":false,
                                                "dataflagValue":"Nor Done",
                                                "documentId":"26C7C2DF6B2546E6BBA8331738FACD1E",
                                                "documentVersion":4,
                                                "comment":"resaon for change",
                                                "dataEventType":"",
                                                "operationType":"CREATED",
                                                "reason":"other",
                                                "transactionStart":"2025-09-14T15:00:00Z",
                                                "transactionEnd":"2025-09-14T16:30:00Z",
                                                "validationRules":[
                                                    {
                                                        "ruleId":"26C7C2DF6B2546E6BBA8331738FACD1E",
                                                        "queryId":"FFBC9E118C4C48FDB77A50A1CDD28AA9",
                                                        "queryStatus":"OPENED"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Validation completed, returns list of validation details for each submitted data element.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementValidationDto"
                                },
                                "examples":{
                                    "DataElementValidationDto":{
                                        "summary":"DataElementValidationDtoResponse",
                                        "description":"Each entry provides the full DataElementValidationDto details as per schema.",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F4EED9C9E1D488DB7E2A4B258B27C40",
                                                    "subjectId":"19A1A8EC5D374B54A6D6F5A6E26A4B66",
                                                    "eventId":"BEF749233D4A4DC7B3B250BD34DD024A",
                                                    "formId":"97A0C7A48B7F4B6E9240A403F4476E5F",
                                                    "itemId":"5BDEBE942F164EDCA9951BFB4C3D4AAA",
                                                    "eventInstanceNum":1,
                                                    "repeatFormNumber":1,
                                                    "repeatSequenceNumber":1,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1,
                                                    "isSubjectLocked":false,
                                                    "isItemLocked":true,
                                                    "isParentLocked":false,
                                                    "isItemFrozen":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-validate-multipleitems-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-validate-multipleitems-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/validate/dataelements":{
            "get":{
                "tags":[
                    "Data Actions/Data Elements/Get data elements validation summary for locked or frozen items at row level"
                ],
                "summary":"V1.0",
                "description":"API validates all data elements within a specific form for a given subjects visit in a clinical study. It assesses each data item in the form, evaluating status such as whether it is locked, frozen",
                "operationId":"validateTwoSectionAndRepeatingForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1D8B2BA9DD84F0BAEF700387265AC8A"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AB1234567890CDEFAB1234567890CDEF"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0A1B2C3D4E5F60718293A4BCCFA7EE82"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"innerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"outerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Validation completed - returns list of DataElementValidationDto objects as result.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementValidationDto"
                                },
                                "examples":{
                                    "DataElementValidationDto":{
                                        "summary":"DataElementValidationDtoResponse",
                                        "description":"Sample response array of DataElementValidationDto with all DTO properties expanded.",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"AB1234567890CDEFAB1234567890CDEF",
                                                    "subjectId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "eventId":"0A1B2C3D4E5F60718293A4BCCFA7EE82",
                                                    "formId":"1B2C3D4E5F60718293A4BCCFA7EE820A",
                                                    "itemId":"2C3D4E5F60718293A4BCCFA7EE820A1B",
                                                    "eventInstanceNum":1,
                                                    "repeatFormNumber":1,
                                                    "repeatSequenceNumber":1,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1,
                                                    "isSubjectLocked":false,
                                                    "isItemLocked":false,
                                                    "isParentLocked":false,
                                                    "isItemFrozen":false
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-validate-dataelements-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-validate-dataelements-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/dataelements":{
            "get":{
                "tags":[
                    "Data Actions/Data Elements/Get data elements summary for locked or frozen items at row level"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Checks lock and freeze related validation for row level actions.This endpoint is replaced by 'GET /v1.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/validate/dataelements'. The new endpoint robustly validates all data elements for repeat instance forms and always returns results in DataElementValidationDto. In contrast, this deprecated version may return limited data or fail on certain forms. Use the new endpoint for all new integrations, as it includes handling for repeat forms, advanced validation logic and expanded result schema.",
                "operationId":"validateTwoSectionAndRepeatingForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1D8B2BA9DD84F0BAEF700387265AC8A"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F54C6E935F144308915C2E0BBA2A9D3"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F2AA7AEDC6C04544A1F6E2DBC63DDE27"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"CF2BE95DFC474D32A1C876C852A387EC"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"innerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"outerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Deprecated: Results returned for data elements, but see new endpoint for improved output and logic.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/TwoSectionAndRepeatingFormValidationDto"
                                },
                                "examples":{
                                    "TwoSectionAndRepeatingFormValidationDto":{
                                        "summary":"TwoSectionAndRepeatingFormValidationDtoExample.",
                                        "description":"Returned result format matches the old endpoint, but does not include new validation logic.",
                                        "value":[
                                            {
                                                "subjectId":"9F54C6E935F144308915C2E0BBA2A9D3",
                                                "eventId":"F2AA7AEDC6C04544A1F6E2DBC63DDE27",
                                                "formId":"CF2BE95DFC474D32A1C876C852A387EC",
                                                "eventInstanceNumber":1,
                                                "innerRepeatNum":1,
                                                "outerRepeatNum":1,
                                                "isSubjectLocked":false,
                                                "hasLockData":true,
                                                "hasFrozenData":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-dataelements-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-dataelements-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/validate/multiplevisits":{
            "post":{
                "tags":[
                    "Data Actions/Multiple Visits/Get request for multiple locked visits summary"
                ],
                "summary":"V1.0",
                "description":"Provides the summary for the multiple visits and returns the actions of visit and visitStartDate.",
                "operationId":"validateVisitStartDate",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1D8B2BA9DD84F0BAEF700387265AC8A"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique subject identifier representing the patient/participant enrolled in the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"FE647AE28C394F3BA1C9701045D1C4F8"
                    }
                ],
                "requestBody":{
                    "description":"Visits to be validated for start date. Supply all DTO fields as per schema.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleVisitRequest"
                            },
                            "examples":{
                                "MultipleVisitRequest":{
                                    "summary":"MultipleVisitRequestBody",
                                    "description":"MultipleVisitRequest",
                                    "value":{
                                        "visits":[
                                            {
                                                "eventId":"3B92170463054A7E93B895C208F7F5D9",
                                                "eventInstanceNum":3
                                            },
                                            {
                                                "eventId":"AB9D1BC243C34BEBBD9F6A8AFEAB9E62",
                                                "eventInstanceNum":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Visit start dates validated, results for each visit returned as array.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitStartDateValidationDto"
                                },
                                "examples":{
                                    "VisitStartDateValidationDTO":{
                                        "summary":"VisitStartDateValidationArrayResponse",
                                        "description":"VisitStartDateValidationDTO",
                                        "value":{
                                            "result":[
                                                {
                                                    "subjectId":"FE647AE28C394F3BA1C9701045D1C4F8",
                                                    "eventId":"3B92170463054A7E93B895C208F7F5D9",
                                                    "eventInstanceNum":3,
                                                    "isVisitLocked":false,
                                                    "isVisitStartDateLocked":true
                                                },
                                                {
                                                    "subjectId":"AB9D1BC243C34BEBBD9F6A8AFEAB9E62",
                                                    "eventId":"9E7EAA35FF4C410C82B867283A7D7C8F",
                                                    "eventInstanceNum":5,
                                                    "isVisitLocked":true,
                                                    "isVisitStartDateLocked":false
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-validate-multiplevisits-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-validate-multiplevisits-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/freeze":{
            "post":{
                "tags":[
                    "Data Actions/Freeze/Freeze multiple data elements for a subject"
                ],
                "summary":"V1.0",
                "description":"Freezes one or more data elements for a study subject in a given study mode. This is typically used after data entry is complete to prevent further changes. The request payload must include subject and event information, as well as details of each data element to be frozen.",
                "operationId":"freezeMultipleDataElements",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8D05217A464C42E3A10541E44BADE754"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing subject/event info and an array of data elements to freeze.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            },
                            "examples":{
                                "SignVerifyRequestDto":{
                                    "summary":"SignVerifyRequestDtoExample",
                                    "description":"SignVerifyRequestDto",
                                    "value":{
                                        "subjectId":"AF77C6450BE94DE293C9630142E0AFAD",
                                        "eventId":"7978B7DD0A0A4CA899C485990994300C",
                                        "studyVersion":"2.0.0.38",
                                        "eventInstanceNum":3,
                                        "elements":[
                                            {
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "formSectionId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":0,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "eventInstanceNumber":3,
                                                "itemId":"7978B7DD0A0A4CA899C485990994300C"
                                            }
                                        ],
                                        "reason":"Other",
                                        "comment":"The data required is missing."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-freeze-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-dataelements-freeze-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unfreeze/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Actions/Freeze/Unfreeze single data element of a visit"
                ],
                "summary":"V1.0",
                "description":"Unfreezes a specified data element within a study mode. This endpoint is used to revert a previously frozen data element to a state that allows further data entry or edits. The reason for the unfreeze and a comment must be provided in the request payload.",
                "operationId":"unfreezeDataElements",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8D05217A464C42E3A10541E44BADE754"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"The unique identifier(UUID, 32-character uppercase hexadecimal string) for the element to be unfrozen given UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the required reason for unfreeze and an optional comment.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnFreezeRequestDT02"
                            },
                            "examples":{
                                "UnFreezeRequestDT02":{
                                    "summary":"UnFreezeRequestDT02Example",
                                    "description":"UnFreezeRequestDT02",
                                    "value":{
                                        "reasonForChange":"Other",
                                        "comment":"Unfreeze needed for data correction and further update."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-unfreeze-{dataElementId}-put",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-unfreeze-dataelementid-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unfreeze/vsd":{
            "put":{
                "tags":[
                    "Data Actions/Freeze/Unfreeze visit start date"
                ],
                "summary":"V1.0",
                "description":"Unfreezes a visit start date. This endpoint is used to revert a previously frozen visit start date to a state that allows further data entry or edits.",
                "operationId":"unfreezeVisitStartDate",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8D05217A464C42E3A10541E44BADE754"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the required reason for unfreeze and an optional comment.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnFreezeRequestVSD"
                            },
                            "examples":{
                                "UnFreezeRequestVSD":{
                                    "summary":"UnFreezeRequestVSDExample",
                                    "description":"UnFreezeRequestVSD",
                                    "value":{
                                        "subjectId":"A81A0DA995934D9DAC0D3F96CBF138B7",
                                        "eventId":"AF77C6450BE94DE293C9630142E0AFAD",
                                        "eventInstanceNum":"1",
                                        "reasonForChange":"Other",
                                        "comment":"unfreeze action"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-unfreeze-vsd-put",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-unfreeze-vsd-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/bulkaction":{
            "post":{
                "tags":[
                    "Data Actions/Bulk Action/Given bulk action on set of given subjectIds or visitIds"
                ],
                "summary":"V1.0",
                "description":"This API will return count of subjects/visits processed for lock/Unlock.\r\nFor visit lock/unlock, subjectId will be added to subjectIds list and visits be to locked are added to visitIds parameter",
                "operationId":"bulkAction",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C439E2B3212345678FAB1123FD342871"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Action needs to be performed in bulk. Example:\nSUBJECTS_LOCK - Locks selected subjects to stop any modification,\nSUBJECTS_UNLOCK - Unlocks selected subjects to redo modifications,\nVISITS_LOCK - Locks selected visits of a subject to stop any modification,\nVISITS_UNLOCK - Locks selected visits of a subject to stop any modification,\n",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SUBJECTS_LOCK"
                    }
                ],
                "requestBody":{
                    "description":"Bulk Action Example for subject bulk lock/unlock.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkActionDTO"
                            },
                            "examples":{
                                "Bulk Action":{
                                    "summary":"Bulk Action Example",
                                    "description":"Bulk Action",
                                    "value":{
                                        "filters":{
                                            "order":"asc",
                                            "sites":[
                                                "D9D80CE337DB4B1882208E13A03E2037"
                                            ],
                                            "containsSearchKeywords":[
                                                "blr-3"
                                            ],
                                            "reviewStatus":[
                                                "all"
                                            ],
                                            "nextVisitOnly":true,
                                            "notStarted":true,
                                            "safetyCaseStatus":"ALL",
                                            "limit":25,
                                            "offset":0
                                        },
                                        "subjectIds":[
                                            "D9D80CE337DB4B1882208E13A03E2037"
                                        ],
                                        "visits":[
                                            {
                                                "eventId":"D9D80CE337DB4B1882208E13A03E2037",
                                                "eventInstanceNum":0
                                            },
                                            {
                                                "eventId":"D9D80CE337DB4B1882208E13A03E2037",
                                                "eventInstanceNum":0
                                            }
                                        ],
                                        "reason":"Unlock reason",
                                        "comment":"Unlock comment"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success - integer body lists number of subjects/visits affected by bulk action.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Bulk Action Response":{
                                        "summary":"Bulk Action Response Example",
                                        "description":"Bulk Action Response",
                                        "value":{
                                            "result":23
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-bulkaction-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-bulkaction-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/locks/all":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get all Lock records for a visit"
                ],
                "summary":"V1.0",
                "description":"Retrieves all lock records for a specified subject/event in a study. For path and query parameters, provide full UUIDs in uppercase hexadecimal. Results contain a comprehensive list of objects detailing each lock status.",
                "operationId":"getAllLockRecords",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BACEFACE12345678A1B2C3D4E5F60789"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"isClassified",
                        "in":"query",
                        "description":"Whether to include only classified records (true/false).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO"
                                    }
                                },
                                "examples":{
                                    "Get All LockRecords Response":{
                                        "summary":"Get All LockRecords Example",
                                        "description":"Get All LockRecords Response",
                                        "value":[
                                            {
                                                "id":"A1B23C45D67E89F123456789ABCDEF12",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "versionEnd":"2023-12-31T23:59:59Z",
                                                "operationType":"MODIFIED",
                                                "userId":"E1F2D3C4B5A697887766554433221100",
                                                "objectVersionNumber":2,
                                                "softwareVersionNumber":3,
                                                "reason":"Site closure",
                                                "comment":"Lock applied due to protocol deviation",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "formId":"C9F84A1D5C7E42A8B9F56321A4B8D721",
                                                "subjectId":"3EFD49D47C96428C9AAE2FDDE2A32D23",
                                                "eventId":"BACEFACE12345678A1B2C3D4E5F60789",
                                                "repeatSequenceNumber":1,
                                                "itemId":"ABCDEFABCDEF1234567890ABCDEF1234",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":1,
                                                "formSectionId":"8877665544332211AABBCCDDEEFF0011",
                                                "repeatFormNumber":1,
                                                "innerRepeat":0,
                                                "outerRepeat":1,
                                                "action":"LOCKED",
                                                "visitStartDateAction":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-locks-all-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-events-eventid-locks-all-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/forms/{formId}/items/{itemId}/locks":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get item level lock records for an item"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use v2 or v3 LockResource endpoint instead. This API will be removed in a future version.\n\nDeprecated: This endpoint does not provide subjectLockStatus. Use the v3.0 endpoint. v3 introduces the subjectLockStatus field, which returns the lock status at the subject level. v2 also supports more granular repeat/sequence parameters.",
                "operationId":"getLockItem",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BACEFACE12345678A1B2C3D4E5F60789"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C9F84A1D5C7E42A8B9F56321A4B8D721"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEFABCDEF1234567890ABCDEF1234"
                    },
                    {
                        "name":"outerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":0
                    },
                    {
                        "name":"innerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"parentData",
                        "in":"query",
                        "description":"Parent data flag.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO"
                                    }
                                },
                                "examples":{
                                    "Data Actions List Response":{
                                        "description":"DataActionsDTO (legacy).",
                                        "value":[
                                            {
                                                "id":"A1B23C45D67E89F123456789ABCDEF12",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "versionEnd":"2023-12-31T23:59:59Z",
                                                "operationType":"MODIFIED",
                                                "userId":"E1F2D3C4B5A697887766554433221100",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":2,
                                                "reason":"Legacy",
                                                "comment":"Legacy endpoint only.",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "formId":"C9F84A1D5C7E42A8B9F56321A4B8D721",
                                                "subjectId":"3EFD49D47C96428C9AAE2FDDE2A32D23",
                                                "eventId":"BACEFACE12345678A1B2C3D4E5F60789",
                                                "repeatSequenceNumber":1,
                                                "itemId":"ABCDEFABCDEF1234567890ABCDEF1234",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":1,
                                                "formSectionId":"8877665544332211AABBCCDDEEFF0011",
                                                "repeatFormNumber":1,
                                                "innerRepeat":0,
                                                "outerRepeat":1,
                                                "action":"LOCKED",
                                                "visitStartDateAction":"UNLOCKED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-forms-{formId}-items-{itemId}-locks-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-events-eventid-forms-formid-items-itemid-locks-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/multipleitems/locks":{
            "post":{
                "tags":[
                    "Data Actions/Lock/Get item level Lock records for a subject"
                ],
                "summary":"V1.0",
                "description":"Retrieves lock records/status details for multiple specified items of a subject in bulk. It returns a list describing each items lock state.",
                "operationId":"getLockItems",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C456939817234691AFAE1684FD097F45"
                    }
                ],
                "requestBody":{
                    "description":"SubjectVisitsItemsLockRequest with all DTO properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsItemsLockRequest"
                            },
                            "examples":{
                                "SubjectVisitsItemsLockRequest":{
                                    "summary":"SubjectVisitsItemsLockRequestExample",
                                    "description":"SubjectVisitsItemsLockRequest",
                                    "value":{
                                        "visitItems":[
                                            {
                                                "eventId":"222A5BC3210A4B2B99928A72C40FEDC",
                                                "formId":"444A6BC8211B4B2B99928A72C40FEDA",
                                                "itemId":"666B3CD9292C4A8D99928A72C40FEDB",
                                                "eventInstanceNum":2,
                                                "innerRepeat":0,
                                                "outerRepeat":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO"
                                    }
                                },
                                "examples":{
                                    "DataActionsDTOResponse":{
                                        "summary":"DataActionsDTO",
                                        "description":"DataActionsDTOResponse",
                                        "value":[
                                            {
                                                "id":"7FA9E2B3212345678FAB1123FD345871",
                                                "versionStart":"2024-02-01T00:00:00Z",
                                                "versionEnd":"2024-12-31T23:59:59Z",
                                                "operationType":"MODIFIED",
                                                "userId":"6669B87007D54AFBAED023573C1915BC",
                                                "objectVersionNumber":3,
                                                "softwareVersionNumber":5,
                                                "reason":"Batch lock",
                                                "comment":"Locked by batch API",
                                                "siteId":"D93BB13AFAA6412287106192AB5984FF",
                                                "formId":"EFE84A1D5C7E42A8B9F56321A4B8D866",
                                                "subjectId":"5EED49D47C96428C9AAE2FDDE2A32DA5",
                                                "eventId":"FECEFACE12345678A1B2C3D4E5F67890",
                                                "repeatSequenceNumber":2,
                                                "itemId":"123DEFABCDEF1234567890ABCDEF1239",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":2,
                                                "formSectionId":"8777665544332211AABBCCDDEEFF0999",
                                                "repeatFormNumber":2,
                                                "innerRepeat":2,
                                                "outerRepeat":2,
                                                "action":"LOCKED",
                                                "visitStartDateAction":"UNLOCKED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-multipleitems-locks-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-multipleitems-locks-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects-with-locked-data":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get all subject lock records"
                ],
                "summary":"V1.0",
                "description":"API retrieves a list of all subjects that currently have locked data within a clinical study. This endpoint helps identify subjects whose records are restricted from modification due to data lock actions.",
                "operationId":"getSubjectsWithLockedData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6020FE17AAC4410B9AB0137E6C88980A"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectWithLockedDataDto"
                                },
                                "examples":{
                                    "SubjectsWithLockedDataResponse":{
                                        "summary":"SubjectWithLockedDataDtoExample",
                                        "description":"SubjectsWithLockedDataResponse",
                                        "value":{
                                            "subjects":[
                                                "6020FE17AAC4410B9AB0137E6C88980A",
                                                "FF3C0E9286694DF8AFCB5DC287318BCE"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-with-locked-data-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-locked-data-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/locks/visits":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get visit level lock records for a visit"
                ],
                "summary":"V1.0",
                "description":"Get visit level lock records for a visit",
                "operationId":"getVisitsAndDateLockRecordsForVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BA62DB18A9E347B899743D46853CEDCA"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BA62DB18A9E347B899743D46853CEDCA"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3AE48BD29FC4E379BC94AB8265A72CF"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitLockDetails"
                                    }
                                },
                                "examples":{
                                    "Visit Lock Details":{
                                        "description":"Visit Lock Details Example",
                                        "value":{
                                            "result":{
                                                "subjectId":"BA62DB18A9E347B899743D46853CEDCA",
                                                "eventId":"D3AE48BD29FC4E379BC94AB8265A72CF",
                                                "eventInstanceNum":1,
                                                "lockStatus":"LOCKED",
                                                "lockStatusTime":"2023-10-15T18:25:43Z",
                                                "visitStartDateLockStatus":"UNLOCKED",
                                                "visitStartDateLockStatusTime":"2023-10-15T18:45:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-locks-visits-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-events-eventid-locks-visits-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/locks":{
            "post":{
                "tags":[
                    "Data Actions/Lock/Lock data elements in a visit"
                ],
                "summary":"V1.0",
                "description":"API locks all data records associated with a specific event for a given subject, identified by subject ID and event ID. This endpoint is used to restrict changes to the event-level data for the specified subject, ",
                "operationId":"lockDataElementsInAVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E9C23A45D67B42F473D12ABCDEF32890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique subject identifier representing the patient/participant enrolled in the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89DEF0123456B7890ABCDEF123456789"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier representing the clinical event (e.g., Screening, Visit 1).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E835FACE12345678A1B2C3D4E5F60789"
                    }
                ],
                "requestBody":{
                    "description":"LockDTO for data elements.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LockDTO"
                            },
                            "examples":{
                                "LockDTOInput":{
                                    "summary":"LockDTOInputExample",
                                    "description":"LockDTOInput",
                                    "value":{
                                        "studyId":"E9C23A45D67B42F473D12ABCDEF32890",
                                        "studyVersion":"2.0.0.38",
                                        "subjectId":"89DEF0123456B7890ABCDEF123456789",
                                        "eventId":"E835FACE12345678A1B2C3D4E5F60789",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "eventInstanceNum":1,
                                        "lockVisitStartDate":"2024-03-27T10:00:00Z",
                                        "elements":[
                                            {
                                                "formId":"B13584A1D5C7E42A8B9F56321A4B8D456",
                                                "formSectionId":"F1E2D3C4B5A697887766554433221100",
                                                "innerRepeat":0,
                                                "outerRepeat":0,
                                                "itemId":"DEFDEFABCDEF1234567890AABBCC11223"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Accepted - No response body is returned for this operation.",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-locks-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-events-eventid-locks-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/lock/allvisit":{
            "post":{
                "tags":[
                    "Data Actions/Lock/Lock data elements in a subject"
                ],
                "summary":"V1.0",
                "description":"API locks all visit records for the specified subject, identified by subject ID. This endpoint is used to restrict changes to every visit associated with the given subject.",
                "operationId":"lockSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C439E2B3212345678FAB1123FD342871"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"18DFFBDF2523489AAF3DE9D6CA60B7F2"
                    }
                ],
                "responses":{
                    "202":{
                        "description":"Accpeted- No response body is returned for this operation.",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-lock-allvisit-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-lock-allvisit-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/lock":{
            "post":{
                "tags":[
                    "Data Actions/Lock/Lock subject level record for Subject ID"
                ],
                "summary":"V1.0",
                "description":"API locks all subject-level data and visits for the specified subject, identified by subject ID",
                "operationId":"lockSubjectLevel",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"33FD381BAAA348199B2349DB1DC99CF1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5F02625A53A449EE987DD5CF7024E100"
                    }
                ],
                "responses":{
                    "202":{
                        "description":"Accepted - lock started. No response body is returned for this operation.",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-lock-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-lock-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/visits/lock":{
            "post":{
                "tags":[
                    "Data Actions/Lock/Lock multiple visits' items"
                ],
                "summary":"V1.0",
                "description":"API is used to lock list of subjects, visits, forms, and items within a clinical study.",
                "operationId":"lockSubjectsVisitsItems",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0727DC1B0BA64C8482B9F5E1226C3A71"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Array of SubjectVisitsFormsItemsDTO.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsFormsItemsDTO"
                            },
                            "examples":{
                                "SubjectVisitsFormsItemsDTOArrayExample":{
                                    "summary":"SubjectVisitsFormsItemsDTOArrayExample",
                                    "description":"SubjectVisitsFormsItemsDTOArrayExample",
                                    "value":[
                                        {
                                            "subjectId":"F5F6EA48B9D04C6F8C657CFA5A20EC53",
                                            "events":[
                                                {
                                                    "eventId":"BCAF12ED87549BA59F7A43AB6A77C1E2",
                                                    "eventInstanceNum":1,
                                                    "studyVersion":"2.0.0.38",
                                                    "elements":[
                                                        {
                                                            "formId":"AABBCCDDEEFF00112233445566778899",
                                                            "formSectionId":"BB112233445566778899AABBCCDDEEFF",
                                                            "innerRepeat":0,
                                                            "outerRepeat":1,
                                                            "itemId":"EEFF00112233445566778899AABBCCDD"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsItemsResponseDTO"
                                },
                                "examples":{
                                    "SubjectVisitsItemsLockResponse":{
                                        "summary":"SubjectVisitsItemsResponseDTOExample",
                                        "description":"SubjectVisitsItemsLockResponse",
                                        "value":{
                                            "processedObjects":[
                                                {
                                                    "subjectId":"1111EA48B9D04C6F8C657CFA5A20AAAA",
                                                    "events":[
                                                        {
                                                            "eventId":"BCAF12ED87549BA59F7A43AB6A77C1E2",
                                                            "eventInstanceNum":1,
                                                            "studyVersion":"2.0.0.38",
                                                            "elements":[
                                                                {
                                                                    "formId":"AABBCCDDEEFF00112233445566778899",
                                                                    "formSectionId":"BB112233445566778899AABBCCDDEEFF",
                                                                    "innerRepeat":0,
                                                                    "outerRepeat":1,
                                                                    "itemId":"EEFF00112233445566778899AABBCCDD"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ],
                                            "failedObjects":[
                                                {
                                                    "subjectId":"2222EA48B9D04C6F8C657CFA5A20BBBB",
                                                    "events":[
                                                        {
                                                            "eventId":"CCA112ED87549BA59F7A43AB6A77B1E2",
                                                            "eventInstanceNum":3,
                                                            "studyVersion":"2.0.0.38",
                                                            "elements":[
                                                                {
                                                                    "formId":"BBCCDDEEFF00112233445566778899AA",
                                                                    "formSectionId":"CC112233445566778899AABBCCDDEEDD",
                                                                    "innerRepeat":2,
                                                                    "outerRepeat":0,
                                                                    "itemId":"DDFF00112233445566778899AABBCCEE"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ],
                                            "exceptions":[
                                                "Event not found for subject 2222EA48B9D04C6F8C657CFA5A20BBBB"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-visits-lock-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-visits-lock-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/unlockvisits":{
            "post":{
                "tags":[
                    "Data Actions/Unlock/Unlock Visit Level Records"
                ],
                "summary":"V1.0",
                "description":"API unlocks all visit records associated with the specified subject, based on the provided subject ID. This endpoint is used to remove visit-level locks, allowing updates and data entry for all visits of the selected subject within a clinical study.",
                "operationId":"unlockEverythingInSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A834DE46BBFA4737B98EFF1087A26DEA"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A8BAB123BAC4410B9AB0137E6C889821"
                    }
                ],
                "requestBody":{
                    "description":"ZKUnlockDto.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ZKUnlockDto"
                            },
                            "examples":{
                                "UnlockDto":{
                                    "summary":"UnlockDto Example",
                                    "description":"UnlockDto",
                                    "value":{
                                        "siteId":"b123fe17aac4410b9ab0137e6c88981a",
                                        "userId":"91d1b34ed1904d8499844159776b2fd7",
                                        "reason":"other",
                                        "comment":"Unlocking all visits except main subject lock due to CRA request."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Accepted - unlock starts (no response body for this API).",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-unlockvisits-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-unlockvisits-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/unlocks":{
            "post":{
                "tags":[
                    "Data Actions/Unlock/Unlock the given records for a visit"
                ],
                "summary":"V1.0",
                "description":"API unlocks all data records associated with a specific event for a given subject, identified by subject ID and event ID. This endpoint is used to remove event-level locks, enabling updates and modifications for the specified event in the subjects visit or activity schedule within a clinical trial.",
                "operationId":"unlockRecords",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C439E2B3212345678FAB1123FD342871"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"18DFFBDF2523489AAF3DE9D6CA60B7F2"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E835FACE12345678A1B2C3D4E5F60789"
                    }
                ],
                "requestBody":{
                    "description":"UnlockDTO for unlocking elements.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnlockDTO"
                            },
                            "examples":{
                                "UnlockDTOInputExample":{
                                    "summary":"UnlockDTOExample",
                                    "description":"UnlockDTOInputExample",
                                    "value":{
                                        "siteId":"B123FE17AAC4410B9AB0137E6C88981A",
                                        "subjectId":"18DFFBDF2523489AAF3DE9D6CA60B7F2",
                                        "eventId":"E835FACE12345678A1B2C3D4E5F60789",
                                        "studyVersion":"2.0.0.38",
                                        "eventInstanceNum":3,
                                        "lockVisitStartDate":"2024-05-15T09:00:00Z",
                                        "elements":[
                                            {
                                                "formId":"AABB1234567890ABCDEF1234567890DC",
                                                "formSectionId":"FA9933223445CODE12345678900FAAABB",
                                                "itemId":"4567ABCDEF12T892345ABBCC112233DB",
                                                "innerRepeat":0,
                                                "outerRepeat":0
                                            }
                                        ],
                                        "reason":"Correction required.",
                                        "comment":"Unlock for correction."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Success- empty response body - standard for HTTP 202",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-unlocks-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-events-eventid-unlocks-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/unlock":{
            "post":{
                "tags":[
                    "Data Actions/Unlock/Unlock subject level record for subject ID"
                ],
                "summary":"V1.0",
                "description":"Unlocks the specified subject at subject-level. Accepts a ReasonCommentRequest payload capturing reason and comment for audit.",
                "operationId":"unlockSubjectRecord",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"09ABE234123456789ABCDEFDEADBEEFA"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"07DFAAAA34CB44141AEFBB123ABC345F"
                    }
                ],
                "requestBody":{
                    "description":"ReasonCommentRequest for subject unlock. Example below shows required properties; see schema for details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "ReasonCommentRequestExample":{
                                    "summary":"ReasonCommentRequest payload",
                                    "description":"ReasonCommentRequestExample",
                                    "value":{
                                        "reason":"Other",
                                        "comment":"Unlocking subject due to criteria met."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"subject unlock request received- empty response body - standard for HTTP 202.",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-unlock-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-unlock-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signinfo":{
            "get":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Get sign information"
                ],
                "summary":"V1.0",
                "description":"Get paginated sign configuration eligibility records. Returns a list of eligibility information for forms and visits, filtered by study, site, subject, event, and more. ",
                "operationId":"getSignEligibility",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7C9436942A714E20BB5C2E711FBC1D4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteIds",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "format":"uuid"
                            }
                        },
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE"
                        ]
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D27DB9E0AFE349D7980683CF55A33883"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D27DB9E0AFE349D7980683CF55A33883"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":1
                    },
                    {
                        "name":"signStatus",
                        "in":"query",
                        "description":"Sign eligibility status filter Values can signed, readyToSign.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"signed"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignConfigEligibilityResponseDTO"
                                    }
                                },
                                "examples":{
                                    "SignConfigEligibilityResponseDTO":{
                                        "summary":"SignConfigEligibilityResponseDTOExample",
                                        "description":"SignConfigEligibilityResponseDTO",
                                        "value":[
                                            {
                                                "id":"4F3A7FD6A91E4A5FAB1EA98387E82B6B",
                                                "versionStart":"2023-08-10T00:00:00.000Z",
                                                "versionEnd":"2023-08-10T00:00:00.000Z",
                                                "operationType":"CREATED",
                                                "userId":"9AAECDD92E3F41C6AFD2B8FF1DD9CF22",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":3,
                                                "reason":"Subject did not meet the criteria.",
                                                "comment":"Included after manual review.",
                                                "configId":"4E005942732C417D9B47C6ACBB3ACD65",
                                                "requiredOn":"FORM",
                                                "affidavitCodeValue":"Electronic Signature Affidavit",
                                                "requiredBy":[
                                                    "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "AABBCCDDEEFF00112233445566778899"
                                                ],
                                                "siteId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectId":"AABBCCDDEEFF00112233445566778899",
                                                "subjectNumber":"SUBJ1067",
                                                "eventId":"D27DB9E0AFE349D7980683CF55A33883",
                                                "eventInstanceNum":1,
                                                "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "innerRepeat":1,
                                                "outerRepeat":2,
                                                "formSectionId":"4FB2D38F8F9644D2B3BE08B815A8FF1A",
                                                "status":"readyToSign",
                                                "studyVersion":"1.0.0.0",
                                                "actionStatus":"view",
                                                "dueDays":3,
                                                "formTitle":"Informed Consent",
                                                "visitTitle":"Visit 1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signinfo-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signinfo-get"
            },
            "post":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Get sign information by visit"
                ],
                "summary":"V1.0",
                "description":"Get paginated sign configuration eligibility records for multiple subjects and/or visits by providing a batch request. Request body accepts multiple visits/events using JSON array with event IDs and instance numbers.",
                "operationId":"getSignEligibilityForMultipleVisits",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7C9436942A714E20BB5C2E711FBC1D4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"signStatus",
                        "in":"query",
                        "description":"Sign eligibility status filter values can be signed, readyToSign",
                        "schema":{
                            "type":"string"
                        },
                        "example":"signed"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting index for pagination.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all visits for which eligibility needs to be checked",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignInfoRequestDTO"
                            },
                            "examples":{
                                "SignInfoRequestDTO":{
                                    "summary":"SignInfoRequestDTOExample",
                                    "description":"SignInfoRequestDTO",
                                    "value":{
                                        "signInfoRequest":{
                                            "visits":[
                                                {
                                                    "eventId":"D27DB9E0AFE349D7980683CF55A33883",
                                                    "eventInstanceNum":1
                                                },
                                                {
                                                    "eventId":"F732D2EFA1EB47D7A98A6FC094A5BD45",
                                                    "eventInstanceNum":2
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignConfigEligibilityResponseDTO"
                                    }
                                },
                                "examples":{
                                    "SignConfigEligibilityResponseDTO":{
                                        "summary":"SignConfigEligibilityResponseDTOExample",
                                        "description":"SignConfigEligibilityResponseDTO",
                                        "value":[
                                            {
                                                "id":"4F3A7FD6A91E4A5FAB1EA98387E82B6B",
                                                "versionStart":"2023-01-01",
                                                "versionEnd":"2023-08-10T00:00:00.000Z",
                                                "operationType":"CREATED",
                                                "userId":"9AAECDD92E3F41C6AFD2B8FF1DD9CF22",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":3,
                                                "reason":"Subject did not meet the criteria.",
                                                "comment":"Included after manual review.",
                                                "configId":"4E005942732C417D9B47C6ACBB3ACD65",
                                                "requiredOn":"FORM",
                                                "affidavitCodeValue":"Electronic Signature Affidavit",
                                                "requiredBy":[
                                                    "AABBCCDDEEFF00112233445566778899",
                                                    "1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                ],
                                                "siteId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectId":"AABBCCDDEEFF00112233445566778899",
                                                "subjectNumber":"SUBJ1067",
                                                "eventId":"D27DB9E0AFE349D7980683CF55A33883",
                                                "eventInstanceNum":1,
                                                "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "innerRepeat":1,
                                                "outerRepeat":2,
                                                "formSectionId":"4FB2D38F8F9644D2B3BE08B815A8FF1A",
                                                "status":"readyToSign",
                                                "studyVersion":"1.0.0.0",
                                                "actionStatus":"SIGN",
                                                "dueDays":3,
                                                "formTitle":"Informed Consent",
                                                "visitTitle":"Visit 1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signinfo-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signinfo-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signevaluation/processque":{
            "post":{
                "tags":[
                    "Data Actions/Sign Evaluation/Process sign evaluation from data change event"
                ],
                "summary":"V1.0",
                "description":"Processes all pending sign evaluation queue records for an entire study and mode asynchronously. Returns immediately after triggering the processing job. No request payload is required. Use this when wishing to bulk process sign evaluations across multiple subjects or forms.",
                "operationId":"processQueRecords",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3FA85F6457174562B3FC2C963F66AFA6"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Sign evaluation queue processing was triggered successfully. Returns a success status.",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signevaluation-processque-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signevaluation-processque-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/cleardatacheck/{scope}":{
            "post":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Check if scope type (ITEM-VSD) item is eligible for clearing its data"
                ],
                "summary":"V1.0",
                "description":"Checks if the scope type (ITEM/VSD) item is eligible for clearing its data or not, if eligible returns the item data element object data. Where VSD stands for Visit Start Date.",
                "operationId":"checkEligibilityToClearData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"Scope type can be ITEM/VSD.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ITEM"
                    }
                ],
                "requestBody":{
                    "description":"Data element details for checking eligibility.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearDataCheckRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto13"
                                    }
                                },
                                "examples":{
                                    "Eligibility Check Data Element List Example":{
                                        "description":"Eligibility Check Data Element List Example",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-11-01T10:00:00.000Z",
                                                "transactionStart":"2023-11-01T09:45:00.000Z",
                                                "transactionEnd":"2023-11-01T11:00:00.000Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"C9C9A6B7FCC0499FADCADF12341AFB9B",
                                                "studyName":"COVIDVACC-2022",
                                                "studyVersion":"1.0.0.0",
                                                "subjectId":"AB00112233445566778899AABBCCDDEE",
                                                "eventId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "formId":"F1234567FEDCBA987654321001234567",
                                                "formSectionId":"SEC00301239AF87",
                                                "repeatSequenceNumber":1,
                                                "itemId":"ITEM781217BCEBADAFBAFBAA7712345678",
                                                "siteId":"SITE1122ABCD556677EE8899AABBCCDDEE",
                                                "variableId":"VARIAB112233ABCDEF009988",
                                                "originatorId":"FDA1F23A1C23E24B25CDFEEE1B2A456C",
                                                "vendorCode":"ACMELABS",
                                                "value":"123.45",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"120",
                                                "normalizedUnitId":"AABBCCDDEEFF11223344556677889900",
                                                "numValue":123,
                                                "floatValue":123.45,
                                                "dateTimeValueUTC":"2023-11-01T08:12:39.000Z",
                                                "monthValue":11,
                                                "dayValue":1,
                                                "yearValue":2023,
                                                "hourValue":8,
                                                "minuteValue":12,
                                                "secondValue":39,
                                                "reason":"Routine check",
                                                "comment":"Captured during initial visit by nurse",
                                                "objectVersionNumber":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "dataFlag":"DC38ABB134D849E585762936EEBC210A",
                                                "targets":[
                                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5"
                                                ],
                                                "eventInstanceNum":2,
                                                "repeatFormNumber":1,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "versionEnd":"2023-11-01T13:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "softwareVersionNumber":2,
                                                "itemType":"MEASUREMENT",
                                                "itemD":"A",
                                                "itemF":"B",
                                                "itemR":"C",
                                                "parentId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "rootId":"7978B7DD0A0A4CA899C485990994300C",
                                                "propertyId":"AF77C6450BE94DE293C9630142E0AFAD",
                                                "propertyVersionStart":"2023-10-15T10:00:00.000Z",
                                                "sourceTimeStamp":"2023-11-01T10:00:02.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-cleardatacheck-{scope}-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-cleardatacheck-scope-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/svf":{
            "get":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Get list of svf by study"
                ],
                "summary":"V1.0",
                "description":"Retrieves a paginated list of signature and freeze information for the data elements of the given subject (or all subjects) and study/mode. Allows filtering by subject. Results are paginated.",
                "operationId":"getSVF",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A7D1B827194D4E49B8B67FDEEF6F36C1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignVerifyFreezeDTOv20"
                                    }
                                },
                                "examples":{
                                    "Get Sign Verify and freeze Response Example":{
                                        "description":"Get Sign Verify and freeze Response Example",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00.000Z",
                                                "versionEnd":"2023-01-02T17:30:00.000Z",
                                                "operationType":"MODIFIED",
                                                "userId":"2C3F40649C654D0F995A7FDBBCEA4FAB",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":100,
                                                "reason":"other",
                                                "comment":"Data discrepancy observed and clarified",
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "subjectId":"C39E34A9152148E0BB831239BAA3E502",
                                                "eventId":"AF77C6450BE94DE293C9630142E0AFAD",
                                                "repeatSequenceNumber":1,
                                                "itemId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "signed":"SIGNED",
                                                "verify":null,
                                                "freeze":null,
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":3
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-svf-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-svf-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/sdv":{
            "get":{
                "tags":[
                    "Data Actions/Data Elements/Get all items with source data verification information"
                ],
                "summary":"V1.0",
                "description":"API allows you to retrieve a list of items (data fields) within a clinical study that require Source Data Verification (SDV) for a specified subject, event, and study version. SDV is a critical process that ensures data accuracy by cross-checking entries against original source documents.",
                "operationId":"getSdvItemSelection",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5D3F2567B4D34514A44B69F1E3668C1F"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2.0.0.38"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SdvItemSelectionResponse"
                                    }
                                },
                                "examples":{
                                    "Sign dara verification Item Selection Response List Example":{
                                        "description":"Sign dara verification Item Selection Response List Example",
                                        "value":[
                                            {
                                                "sdvSelectionNatureEnum":"OPTIONAL_CRITICAL",
                                                "itemId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "formId":"475454D6B7F247C88D401DB25CA2C7D2"
                                            },
                                            {
                                                "sdvSelectionNatureEnum":"IRRELEVANT",
                                                "itemId":"AF77C6450BE94DE293C9630142E0AFAD",
                                                "formId":"7978B7DD0A0A4CA899C485990994300C"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-sdv-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-dataelements-sdv-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/visit/sdv":{
            "get":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Get SDV required items"
                ],
                "summary":"V1.0",
                "description":"API allows you to retrieve a list of items (data fields) within a clinical study that require Source Data Verification (SDV) for a specified subject, event, and study version. SDV is a critical process that ensures data accuracy by cross-checking entries against original source documents.",
                "operationId":"getSdvItemSelectionForVisit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5D3F2567B4D34514A44B69F1E3668C1F"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2.0.0.38"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SdvItemSelectionResponse"
                                    }
                                },
                                "examples":{
                                    "SDV Selection status of visit date and items":{
                                        "description":"SDV Selection status of visit date and items",
                                        "value":{
                                            "visitStartDate":"OBLIGATORY",
                                            "dataElements":[
                                                {
                                                    "sdvSelectionNatureEnum":"OPTIONAL_CRITICAL",
                                                    "itemId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                    "formId":"475454D6B7F247C88D401DB25CA2C7D2"
                                                },
                                                {
                                                    "sdvSelectionNatureEnum":"IRRELEVANT",
                                                    "itemId":"AF77C6450BE94DE293C9630142E0AFAD",
                                                    "formId":"7978B7DD0A0A4CA899C485990994300C"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-visit-sdv-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-visit-sdv-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unsign-unverify":{
            "put":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Unsign and unverify data"
                ],
                "summary":"V1.0",
                "description":"Removes signature or verification from the specified set of subjects. Request body contains the set of subject IDs and optional reason and comment.",
                "operationId":"unsignAndUnverify",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request containing the set of subject UUIDs and optional comment and reason.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnsignUnverifyRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/UnsignUnverifyResponse"
                                    }
                                },
                                "examples":{
                                    "Unsign Unverify Success":{
                                        "description":"Unsign Unverify Success",
                                        "value":{
                                            "subjects":[
                                                "C39E34A9152148E0BB831239BAA3E502"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-unsign-unverify-put",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-unsign-unverify-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unsign-unverifyforitem":{
            "put":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Unsign and unverify item"
                ],
                "summary":"V1.0",
                "description":" API allows you to remove (revoke) the signature and/or verification status from a subjects and specified set of elements in your clinical study. Request body must contain items, path and query parameters enable filtering.",
                "operationId":"unsignAndUnverifyforbulkitem",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A7D1B827194D4E49B8B67FDEEF6F36C1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"clearitem",
                        "in":"query",
                        "description":"Flag to indicate if the item should be cleared as part of this operation.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Specific action to trigger only unsign or unverify exclusively. Use `unsign`, `unverify`, or omit for both.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"unverify"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the elements/items in the bulk operation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            },
                            "examples":{
                                "Sign Verify Request":{
                                    "summary":"Sign Verify Request Example",
                                    "description":"Sign Verify Request",
                                    "value":{
                                        "subjectId":"AF77C6450BE94DE293C9630142E0AFAD",
                                        "eventId":"7978B7DD0A0A4CA899C485990994300C",
                                        "studyVersion":"2.0.0.38",
                                        "eventInstanceNum":3,
                                        "elements":[
                                            {
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "formSectionId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":0,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "eventInstanceNumber":3,
                                                "itemId":"7978B7DD0A0A4CA899C485990994300C"
                                            }
                                        ],
                                        "reason":"Other",
                                        "comment":"The data required is missing."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success- Unsign Unverify BulkSuccess no response bode,",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-unsign-unverifyforitem-put",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-unsign-unverifyforitem-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signconfiguration/{id}":{
            "delete":{
                "tags":[
                    "Data Actions/Signature Configuration/Delete record from sign configuration"
                ],
                "summary":"V1.0",
                "description":"Deletes a signature configuration entry for the given ID. The specified configuration is removed completely from the study's workflow signature requirements. Returns the deleted configuration details in the response object, so clients can confirm deletion and log the previous state if needed.",
                "operationId":"deleteSignatureConfiguration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Unique identifier (UUID, uppercase HEX string) of the signature configuration to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"222EABDE1B9648F69D3B6250880A2B09"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successfully deleted the signature configuration. Response contains the details of the deleted configuration as a SignConfiguration object inside the RestResponse wrapper.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignConfiguration"
                                },
                                "examples":{
                                    "DeletedSignatureConfig":{
                                        "summary":"DeletedSignatureConfigExample",
                                        "description":"DeletedSignatureConfig",
                                        "value":{
                                            "id":"11223344556677889900AABBCCDDEEFF",
                                            "versionStart":"2022-08-01T09:00:00Z",
                                            "configName":"Obsolete Visit Config",
                                            "requiredOn":"FORM",
                                            "affidavitCodeValue":"Electronic Signature Affidavit",
                                            "requiredBy":"99887766554433221100AABBCCDDEEFF",
                                            "targetSet":"N",
                                            "targetDate":3,
                                            "targetAfter":"START",
                                            "emailReminder":"N",
                                            "requiredOnForms":"AABBCCDD11223344556677889900EEFF",
                                            "requiredOnVisits":"FFEEDDCCBBAA99887766554433221100",
                                            "triggerQuestion":"55AA44BB33CC22DD11EEFF0011223344",
                                            "triggerAnswer":"No",
                                            "reason":"No longer needed.",
                                            "comment":"Removed due to protocol change.",
                                            "versionEnd":"2024-11-15T23:59:59Z",
                                            "operationType":"REMOVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid or missing ID parameter.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signconfiguration-{id}-delete",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signconfiguration-id-delete"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signconfiguration":{
            "get":{
                "tags":[
                    "Data Actions/Signature Configuration/Get signature configuration of a study"
                ],
                "summary":"V1.0",
                "description":"Fetches all signature configuration details for a given study and mode. The endpoint returns a list of Signature Configuration, each representing a distinct signature setup including all necessary details such as required users, forms, visits, and configuration state. Used to retrieve the current set of signature requirements for the study.",
                "operationId":"getSignatureConfiguration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success. Array of SignatureConfigurationDTO objects.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignatureConfigurationDTO"
                                    }
                                },
                                "examples":{
                                    "SignatureConfigList":{
                                        "summary":"SignatureConfigListExample",
                                        "description":"SignatureConfigList",
                                        "value":[
                                            {
                                                "id":"AABBCCDDEEFF00112233445566778899",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "versionEnd":"2023-12-31T23:59:59Z",
                                                "operationType":"CREATED",
                                                "userId":"00112233445566778899AABBCCDDEEFF",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"Protocol update.",
                                                "comment":"Added new signature step for visit.",
                                                "configName":"Final Visit Sign Config",
                                                "requiredOn":"FORM",
                                                "affidavitCodeValue":"Electronic Signature Affidavit",
                                                "requiredBy":[
                                                    "DDEEFF00112233445566778899AABBCC"
                                                ],
                                                "targetSet":"Y",
                                                "targetDate":2,
                                                "targetAfter":"COMPLETION",
                                                "emailReminder":"N",
                                                "requiredOnForms":[
                                                    "A1B2C3D4E5F607182736454647484950"
                                                ],
                                                "requiredOnVisits":[
                                                    "5A6B7C8D9E0F10293847560123456789"
                                                ],
                                                "triggerQuestion":"66778899AABBCCDDEEFF001122334455",
                                                "triggerAnswer":[
                                                    "Yes"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid input or request parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signconfiguration-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signconfiguration-get"
            },
            "post":{
                "tags":[
                    "Data Actions/Signature Configuration/Save signature configuration of a study"
                ],
                "summary":"V1.0",
                "description":"Creates a new signature configuration for the given study and mode. Use this endpoint to define new signature rules and requirements for a study workflow.",
                "operationId":"saveSignatureConfigurations",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Signature configuration request object describing all required forms, visits, users, and workflow logic for the new configuration.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignatureConfigurationReqDto"
                            },
                            "examples":{
                                "SignatureConfigurationReqDto":{
                                    "summary":"SignatureConfigurationReqDto Example",
                                    "description":"SignatureConfigurationReqDto",
                                    "value":{
                                        "configName":"2025 Year Start Config",
                                        "requiredOn":"CASEBOOK",
                                        "affidavitCodeValue":"Electronic Signature Affidavit",
                                        "requiredBy":[
                                            "FEDCBA0987654321A1B2C3D4E5F67788"
                                        ],
                                        "targetSet":"Y",
                                        "targetDate":3,
                                        "targetAfter":"START",
                                        "emailReminder":"Y",
                                        "requiredOnForms":[
                                            "1A2B3C4D5E6F77889900AABBCDEE1122"
                                        ],
                                        "requiredOnVisits":[
                                            "9988AABBCCDDEEFF1122334455667788"
                                        ],
                                        "triggerQuestion":"FFAABBCCDDEEFF223344556677889900",
                                        "triggerAnswer":[
                                            "Yes"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successfully created the signature configuration. Returns the created SignatureConfigurationDTO object.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignatureConfigurationDTO"
                                },
                                "examples":{
                                    "SignatureConfigurationDTO":{
                                        "summary":"SignatureConfigurationDTO Example",
                                        "description":"SignatureConfigurationDTO",
                                        "value":{
                                            "id":"A1B2C3D4E5F6A7B8C9D0E1F223344556",
                                            "versionStart":"2025-01-01T00:00:00Z",
                                            "versionEnd":"2025-12-31T23:59:59Z",
                                            "operationType":"CREATED",
                                            "userId":"ABCDEF1234567890AABBCCDDEEFF1122",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":1,
                                            "reason":"Initial configuration.",
                                            "comment":"First signature config for 2025.",
                                            "configName":"2025 Year Start Config",
                                            "requiredOn":"CASEBOOK",
                                            "affidavitCodeValue":"Electronic Signature Affidavit",
                                            "requiredBy":[
                                                "FEDCBA0987654321A1B2C3D4E5F67788"
                                            ],
                                            "targetSet":"Y",
                                            "targetDate":2,
                                            "targetAfter":"START",
                                            "emailReminder":"Y",
                                            "requiredOnForms":[
                                                "1A2B3C4D5E6F77889900AABBCDEE1122"
                                            ],
                                            "requiredOnVisits":[
                                                "9988AABBCCDDEEFF1122334455667788"
                                            ],
                                            "triggerQuestion":"FFAABBCCDDEEFF223344556677889900",
                                            "triggerAnswer":[
                                                "Yes"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid input, missing required fields, or validation error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signconfiguration-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signconfiguration-post"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signconfiguration/{signConfigurationId}":{
            "put":{
                "tags":[
                    "Data Actions/Signature Configuration/Update signature configuration of a study"
                ],
                "summary":"V1.0",
                "description":"Updates the details of an existing signature configuration for a given signConfigurationId. Returns the updated SignatureConfigurationDTO upon success. Use this endpoint to replace the full contents of a signature configuration entry.",
                "operationId":"updateSignConfiguration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"signConfigurationId",
                        "in":"path",
                        "description":"Unique identifier (UUID, uppercase HEX string) of the signature configuration to update.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    }
                ],
                "requestBody":{
                    "description":"Request body object containing the complete set of signature configuration properties to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignatureConfigurationRequestDTO"
                            },
                            "examples":{
                                "Update SignatureConfig Request":{
                                    "summary":"SignatureConfigurationDTO Example",
                                    "description":"Update SignatureConfig Request",
                                    "value":{
                                        "signConfiguration":{
                                            "id":"AABBCCDDEEFF00112233445566778899",
                                            "versionStart":"2024-01-01T00:00:00Z",
                                            "versionEnd":"2024-12-31T23:59:59Z",
                                            "operationType":"UPDATED",
                                            "userId":"00112233445566778899AABBCCDDEEFF",
                                            "objectVersionNumber":2,
                                            "softwareVersionNumber":1,
                                            "reason":"Scheduled annual update.",
                                            "comment":"Added new form to config.",
                                            "configName":"Visit Finalization Sign Config",
                                            "requiredOn":"VISIT",
                                            "affidavitCodeValue":"Electronic Signature Affidavit",
                                            "requiredBy":[
                                                "AABBCCDDEEFF00112233445566778899"
                                            ],
                                            "targetSet":"Y",
                                            "targetDate":3,
                                            "targetAfter":"START",
                                            "emailReminder":"Y",
                                            "requiredOnForms":[
                                                "AAEECCDDFF112233445577889900EEFF"
                                            ],
                                            "requiredOnVisits":[
                                                "CDDEEFFAABB9911223344556677889900"
                                            ],
                                            "triggerQuestion":"44556677889900AABBCCDDEEFF112233",
                                            "triggerAnswer":[
                                                "No"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successfully updated the signature configuration. Returns the updated SignatureConfigurationDTO object.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignatureConfigurationDTO"
                                },
                                "examples":{
                                    "Update Signature Configuration":{
                                        "summary":"SignatureConfigurationDTO Example",
                                        "description":"Update Signature Configuration",
                                        "value":{
                                            "id":"AABBCCDDEEFF00112233445566778899",
                                            "versionStart":"2024-01-01T00:00:00Z",
                                            "versionEnd":"2024-12-31T23:59:59Z",
                                            "operationType":"UPDATED",
                                            "userId":"00112233445566778899AABBCCDDEEFF",
                                            "objectVersionNumber":2,
                                            "softwareVersionNumber":123,
                                            "reason":"Scheduled annual update.",
                                            "comment":"Added new form to config.",
                                            "configName":"Visit Finalization Sign Config",
                                            "requiredOn":"VISIT",
                                            "affidavitCodeValue":"AFF2024",
                                            "requiredBy":[
                                                "AABBCCDDEEFF00112233445566778899"
                                            ],
                                            "targetSet":"Y",
                                            "targetDate":20241231,
                                            "targetAfter":"START",
                                            "emailReminder":"Y",
                                            "requiredOnForms":[
                                                "AAEECCDDFF112233445577889900EEFF"
                                            ],
                                            "requiredOnVisits":[
                                                "CDDEEFFAABB9911223344556677889900"
                                            ],
                                            "triggerQuestion":"44556677889900AABBCCDDEEFF112233",
                                            "triggerAnswer":[
                                                "No"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Input validation failed or the requested signature configuration ID does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signconfiguration-{signConfigurationId}-put",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signconfiguration-signconfigurationid-put"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signevaluation/configchange/studysummary":{
            "get":{
                "tags":[
                    "Data Actions/Sign Evaluation/Get number of all due and overdue signatures for a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves a summary report representing the signature eligibility state for a given study. The summary includes the total due and overdue evaluations. This call is mainly used for monitoring study sign-off obligations.",
                "operationId":"getStudySignatureSummary",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E878D663A2F34F7DB33DCB0CDEE993F1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success. Returns the signature eligibility summary of the study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignEligibilitySummaryResponse"
                                },
                                "examples":{
                                    "SignEligibilitySummaryResponse":{
                                        "summary":"SignEligibilitySummaryResponseExample",
                                        "description":"A RestResponse wrapper containing a SignEligibilitySummaryResponse object.",
                                        "value":{
                                            "due":10,
                                            "overdue":5
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signevaluation-configchange-studysummary-get",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signevaluation-configchange-studysummary-get"
            }
        },
        "/ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/signevaluation/triggeremail":{
            "post":{
                "tags":[
                    "Data Actions/Sign Evaluation/Calculate sign overdue and trigger mail notification"
                ],
                "summary":"V1.0",
                "description":"Triggers asynchronous email notifications for users who have overdue signature evaluations for a specific study and mode. This endpoint schedules email notifications and immediately returns a response indicating that the process has started.",
                "operationId":"signOverdue",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E878D663A2F34F7DB33DCB0CDEE993F1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success. Email notifications have been triggered.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "TriggerEmailSuccess":{
                                        "summary":"Success response (No content)",
                                        "description":"TriggerEmailSuccess",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v1.0-studies-{studyId}-{mode}-signevaluation-triggeremail-post",
                "x-filename-id":"ec-dataaction-svc-rest-v1.0-studies-studyid-mode-signevaluation-triggeremail-post"
            }
        },
        "/ec-dataaction-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/forms/{formId}/items/{itemId}/locks":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get item level lock records for an item"
                ],
                "summary":"V2.0",
                "description":"This API retrieves the lock status and history for a specific item within a subject's event and form. It does not perform locking itself, but allows clients to view whether and how the item is currently locked,V2 is the recommended version for retrieving lock status, providing updated validation, improved error logging ",
                "operationId":"getLockItem_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BACEFACE12345678A1B2C3D4E5F60789"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D5C6B2A4C8F3E01587B96202BBAA9345"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEFABCDEF1234567890ABCDEF1234"
                    },
                    {
                        "name":"outerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":0
                    },
                    {
                        "name":"innerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"parentData",
                        "in":"query",
                        "description":"Parent Data.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"repeatFormNumber",
                        "in":"query",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO"
                                    }
                                },
                                "examples":{
                                    "LockItemListResponse":{
                                        "summary":"LockItemListResponseExample",
                                        "description":"A sample response with a single object",
                                        "value":[
                                            {
                                                "id":"A1B23C45D67E89F123456789ABCDEF12",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "versionEnd":"2023-12-31T23:59:59Z",
                                                "operationType":"MODIFIED",
                                                "userId":"E1F2D3C4B5A697887766554433221100",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":2,
                                                "reason":"Testing",
                                                "comment":"Locked for migration",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "formId":"D5C6B2A4C8F3E01587B96202BBAA9345",
                                                "subjectId":"3EFD49D47C96428C9AAE2FDDE2A32D23",
                                                "eventId":"BACEFACE12345678A1B2C3D4E5F60789",
                                                "repeatSequenceNumber":1,
                                                "itemId":"ABCDEFABCDEF1234567890ABCDEF1234",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":2,
                                                "formSectionId":"F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5",
                                                "repeatFormNumber":2,
                                                "innerRepeat":1,
                                                "outerRepeat":0,
                                                "action":"LOCKED",
                                                "visitStartDateAction":"UNLOCK"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-forms-{formId}-items-{itemId}-locks-get",
                "x-filename-id":"ec-dataaction-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-events-eventid-forms-formid-items-itemid-locks-get"
            }
        },
        "/ec-dataaction-svc/rest/v2.0/studies/{studyId}/{mode}/cleardatacheck/{scope}":{
            "post":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Check if scope type (ITEM-VSD) item is eligible for clearing its data"
                ],
                "summary":"V2.0",
                "description":"Checks if the scope type (ITEM/VSD) item is eligible for clearing its data or not, if eligible returns the item data element object data. V2 adds more context (`value` and `scope`) than the V1 request which only includes basic structure.",
                "operationId":"checkEligibilityToClearData_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"scope type can be ITEM/VSD",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ITEM"
                    }
                ],
                "requestBody":{
                    "description":"Data element details for checking eligibility.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearDataCheckRequestDto2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Eligibility determination response.Update when ClearDataCheckResponse is available to include all fields.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClearDataCheckResponse"
                                },
                                "examples":{
                                    "ClearDataCheckResponseExample":{
                                        "description":"ClearDataCheckResponseExample",
                                        "value":{
                                            "itemEligible":true,
                                            "validationAt":"SUBJECT",
                                            "itemEmpty":false,
                                            "itemReadOnly":false,
                                            "itemHidden":false,
                                            "itemLocked":false,
                                            "itemFrozen":false,
                                            "itemUnFrozen":true,
                                            "itemInfo":{
                                                "type":"VISIT",
                                                "eventId":"55556666AAAA33334444FFFF11112222",
                                                "eventInstanceNum":1,
                                                "formId":"FFFFFFFF000011112222333344445555",
                                                "formName":"Screening Form",
                                                "itemId":"AAAA1111222233334444BBBBCCCCDDDD",
                                                "itemName":"Visit 3"
                                            },
                                            "childHidden":false,
                                            "childReadOnly":false,
                                            "childLocked":false,
                                            "childFrozen":false,
                                            "childUnFrozen":true,
                                            "childInFutureVisit":false,
                                            "childInFutureForm":false,
                                            "childVisits":[
                                                {
                                                    "type":"VISIT",
                                                    "eventId":"55556666AAAA33334444FFFF11112222",
                                                    "eventInstanceNum":1,
                                                    "formId":"FFFFFFFF000011112222333344445555",
                                                    "formName":"Screening Form",
                                                    "itemId":"AAAA1111222233334444BBBBCCCCDDDD",
                                                    "itemName":"Visit 3"
                                                }
                                            ],
                                            "childForms":[
                                                {
                                                    "type":"FORM",
                                                    "eventId":"77778888CCCC22224444DDDD11112222",
                                                    "eventInstanceNum":2,
                                                    "formId":"BBBBCCCC0123456789ABCDEF00001111",
                                                    "formName":"Physical Exam",
                                                    "itemId":"11114444DDDD33338888FFFFEEE22222",
                                                    "itemName":"Exam Form"
                                                }
                                            ],
                                            "childSections":[
                                                {
                                                    "type":"SECTION",
                                                    "eventId":"123443215678876543211234AAAA1111",
                                                    "eventInstanceNum":3,
                                                    "formId":"AAAABBBBCCCCDDDD9999888877776666",
                                                    "formName":"Vitals Section",
                                                    "itemId":"FFFFEEEE111122223333444455556666",
                                                    "itemName":"Demographics"
                                                }
                                            ],
                                            "childQuestions":[
                                                {
                                                    "type":"QUESTION",
                                                    "eventId":"99887766554433221100AABBCCDDEEFF",
                                                    "eventInstanceNum":4,
                                                    "formId":"ABCDEF1234567890ABCDEF0011223344",
                                                    "formName":"Eligibility",
                                                    "itemId":"55556666BBBB99998888666611112222",
                                                    "itemName":"Is patient fasting?"
                                                }
                                            ],
                                            "grandParent":false,
                                            "formAssociated":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v2.0-studies-{studyId}-{mode}-cleardatacheck-{scope}-post",
                "x-filename-id":"ec-dataaction-svc-rest-v2.0-studies-studyid-mode-cleardatacheck-scope-post"
            }
        },
        "/ec-dataaction-svc/rest/v2.0/studies/{studyId}/{mode}/unsign-unverifyforitem":{
            "put":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Unsign and unverify item"
                ],
                "summary":"V2.0",
                "description":" API allows you to remove (revoke) the signature and/or verification status from a specified set of subjects in your clinical study. Request body must contain items, path and query parameters enable filtering.",
                "operationId":"unsignAndUnverifyforbulkitem_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A7D1B827194D4E49B8B67FDEEF6F36C1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"clearitem",
                        "in":"query",
                        "description":"Flag to indicate if the item should be cleared as part of this operation.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Specific action to trigger only unsign or unverify exclusively. Use `unsign`, `unverify`, or omit for both.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"unverify"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the elements/items in the bulk operation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnSignUnVerifyRequestDto"
                            },
                            "examples":{
                                "Sign Verify Request":{
                                    "summary":"Sign Verify Request Example",
                                    "description":"Sign Verify Request",
                                    "value":{
                                        "subjectId":"AF77C6450BE94DE293C9630142E0AFAD",
                                        "eventId":"7978B7DD0A0A4CA899C485990994300C",
                                        "studyVersion":"2.0.0.38",
                                        "eventInstanceNum":3,
                                        "elements":[
                                            {
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "formSectionId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":0,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "eventInstanceNumber":3,
                                                "itemId":"7978B7DD0A0A4CA899C485990994300C"
                                            }
                                        ],
                                        "unverifyVisitStartDate":"true",
                                        "unsignVisitStartDate":"true",
                                        "clearVisitStartDate":"true",
                                        "reason":"Other",
                                        "comment":"The data required is missing."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success- Unsign Unverify BulkSuccess no response bode,",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v2.0-studies-{studyId}-{mode}-unsign-unverifyforitem-put",
                "x-filename-id":"ec-dataaction-svc-rest-v2.0-studies-studyid-mode-unsign-unverifyforitem-put"
            }
        },
        "/ec-dataaction-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/events/{eventId}/forms/{formId}/items/{itemId}/locks":{
            "get":{
                "tags":[
                    "Data Actions/Lock/Get item level lock records for an item"
                ],
                "summary":"V3.0",
                "description":"The V3 API retrieves detailed lock records for a specific item within a form/event/subject. It provides not only the lock history and current status, but introduces a new field `subjectLockStatus` indicating if the subject as a whole is LOCKED or UNLOCKED.",
                "operationId":"getLockItem_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BACEFACE12345678A1B2C3D4E5F60789"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D5C6B2A4C8F3E01587B96202BBAA9345"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEFABCDEF1234567890ABCDEF1234"
                    },
                    {
                        "name":"outerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":0
                    },
                    {
                        "name":"innerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"parentData",
                        "in":"query",
                        "description":"Parent Data.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"repeatFormNumber",
                        "in":"query",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO2"
                                    }
                                },
                                "examples":{
                                    "LockItemV3ListResponse":{
                                        "summary":"LockItemV3ListResponseExample",
                                        "description":"Example response for DataActionsDTO2 with subjectLockStatus",
                                        "value":[
                                            {
                                                "id":"A1B23C45D67E89F123456789ABCDEF12",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "versionEnd":"2023-12-31T23:59:59Z",
                                                "operationType":"MODIFIED",
                                                "userId":"E1F2D3C4B5A697887766554433221100",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":2,
                                                "reason":"Testing",
                                                "comment":"Locked for v3 API",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "formId":"D5C6B2A4C8F3E01587B96202BBAA9345",
                                                "subjectId":"3EFD49D47C96428C9AAE2FDDE2A32D23",
                                                "eventId":"BACEFACE12345678A1B2C3D4E5F60789",
                                                "repeatSequenceNumber":1,
                                                "itemId":"ABCDEFABCDEF1234567890ABCDEF1234",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":2,
                                                "formSectionId":"F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5F5",
                                                "repeatFormNumber":2,
                                                "innerRepeat":1,
                                                "outerRepeat":0,
                                                "action":"LOCKED",
                                                "visitStartDateAction":"UNLOCK",
                                                "subjectLockStatus":"LOCKED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-events-{eventId}-forms-{formId}-items-{itemId}-locks-get",
                "x-filename-id":"ec-dataaction-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-events-eventid-forms-formid-items-itemid-locks-get"
            }
        },
        "/ec-dataaction-svc/rest/v3.0/studies/{studyId}/{mode}/unsign-unverifyforitem":{
            "put":{
                "tags":[
                    "Data Actions/Sign Verify Resource/Unsign and unverify item"
                ],
                "summary":"V3.0",
                "description":" API allows you to remove (revoke) the signature and/or verification status from a specified set of subjects in your clinical study. Request body must contain items, path and query parameters enable filtering.",
                "operationId":"unsignAndUnverifyforbulkitem_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A7D1B827194D4E49B8B67FDEEF6F36C1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"clearitem",
                        "in":"query",
                        "description":"Flag to indicate if the item should be cleared as part of this operation.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Specific action to trigger only unsign or unverify exclusively. Use `unsign`, `unverify`, or omit for both.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"unverify"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the elements/items in the bulk operation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UnSignUnVerifyRequestDto"
                            },
                            "examples":{
                                "Sign Verify Request":{
                                    "summary":"Sign Verify Request Example",
                                    "description":"Sign Verify Request",
                                    "value":{
                                        "subjectId":"AF77C6450BE94DE293C9630142E0AFAD",
                                        "eventId":"7978B7DD0A0A4CA899C485990994300C",
                                        "studyVersion":"2.0.0.38",
                                        "eventInstanceNum":3,
                                        "elements":[
                                            {
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "formSectionId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":0,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "eventInstanceNumber":3,
                                                "itemId":"7978B7DD0A0A4CA899C485990994300C"
                                            }
                                        ],
                                        "unverifyVisitStartDate":"true",
                                        "unsignVisitStartDate":"true",
                                        "clearVisitStartDate":"true",
                                        "reason":"Other",
                                        "comment":"The data required is missing."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success- Unsign Unverify BulkSuccess no response bode,",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataaction-svc-rest-v3.0-studies-{studyId}-{mode}-unsign-unverifyforitem-put",
                "x-filename-id":"ec-dataaction-svc-rest-v3.0-studies-studyid-mode-unsign-unverifyforitem-put"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/{mode}/forms/formitems":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/List forms with item summaries"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Deprecated in v1.0. Returns form and item summaries by mode. Use /v2.0/studies/{studyId}/{mode}/forms/formitems or /v20.0 forms APIs for newer contracts.",
                "operationId":"getStudyAllFormsByMode_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode path segment. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form and item summaries returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormSummaryDTOV1"
                                    }
                                },
                                "examples":{
                                    "formItemsSummaryResponseV1":{
                                        "description":"formItemsSummaryResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "itemCount":12
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-{mode}-forms-formitems-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-mode-forms-formitems-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/{mode}/forms/latest":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/List latest forms by mode"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Deprecated in v1.0. Returns latest forms by study mode. Use /v2.0/studies/{studyId}/{mode}/forms/latest or /v20.0/studies/{studyId}/versions/{version}/forms for supported versions.",
                "operationId":"queryStudyFormsLatestByMode_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode path segment. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Latest forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "latestFormsByModeResponseV1":{
                                        "description":"latestFormsByModeResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyVersion":"1.0.0.1",
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-{mode}-forms-latest-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-mode-forms-latest-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/e2bmapping/all":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/Get all E2B mappings"
                ],
                "summary":"V1.0",
                "description":"Returns E2B mappings for all question types. Use /v20.0 endpoints for current metadata and behavior.",
                "operationId":"getE2bDataMappingsForAllQuestionTypes_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"E2B mappings returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/E2BR3ItemAdvancedPropDtov1"
                                },
                                "examples":{
                                    "e2bMappingAllResponseV1":{
                                        "description":"e2bMappingAllResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "questionType":"text",
                                                    "mapping":"E2B_TERM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-e2bmapping-all-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-e2bmapping-all-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/ehrmapping":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/Get EHR mappings by question type"
                ],
                "summary":"V1.0",
                "description":"Returns EHR mappings filtered by question type and mapping key. Use /v20.0 form metadata endpoints for current mapping-capable payloads.",
                "operationId":"getEHRDataMappingsByQuestionTypeMapping_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Question type filter (optional). Allowed values: text, numeric, datetime, age, label, selectbox, checkbox, radioset.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "text",
                                "numeric",
                                "datetime",
                                "age",
                                "label",
                                "selectbox",
                                "checkbox",
                                "radioset"
                            ]
                        }
                    },
                    {
                        "name":"mapping",
                        "in":"query",
                        "description":"EHR mapping key to filter by (optional).",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"EHR mappings returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EHRCategoryItemDto"
                                },
                                "examples":{
                                    "ehrMappingResponseV1":{
                                        "description":"ehrMappingResponseV1",
                                        "value":{
                                            "result":{
                                                "text":{
                                                    "mapping":"PATIENT_NAME"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-ehrmapping-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-ehrmapping-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/ehrmapping/all":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/Get all EHR mappings"
                ],
                "summary":"V1.0",
                "description":"Returns EHR mappings for all supported question types. Use /v20.0 form APIs for current behavior and payload structure.",
                "operationId":"getEHRDataMappingsForAllQuestionTypes_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"All EHR mappings returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EHRCategoryItemDto"
                                },
                                "examples":{
                                    "ehrMappingAllResponseV1":{
                                        "description":"ehrMappingAllResponseV1",
                                        "value":{
                                            "result":{
                                                "text":{
                                                    "mapping":"PATIENT_NAME"
                                                },
                                                "numeric":{
                                                    "mapping":"LAB_VALUE"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-ehrmapping-all-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-ehrmapping-all-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/forms/labNormalItems":{
            "post":{
                "tags":[
                    "Designer/Forms APIs/Get lab-normal form items"
                ],
                "summary":"V1.0",
                "description":"Returns form items tagged with lab-normal metadata for selected forms. Use /v20.0/studies/{studyId}/versions/{version}/forms for the latest form retrieval and tagging behavior.",
                "operationId":"getLabNormalFormItems_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "DCS",
                                "NSF",
                                "ALL"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Required request payload listing studyVersion and formId values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionFormDtoV1"
                                }
                            },
                            "examples":{
                                "labNormalFormItemsRequestV1":{
                                    "description":"labNormalFormItemsRequestV1",
                                    "value":[
                                        {
                                            "studyVersion":"1.0.0.1",
                                            "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Lab-normal form items returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalFormItemsDtoV1"
                                    }
                                },
                                "examples":{
                                    "labNormalFormItemsResponseV1":{
                                        "description":"labNormalFormItemsResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyVersion":"1.0.0.1",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-forms-labNormalItems-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-forms-labnormalitems-post"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/formSummaryInfo":{
            "post":{
                "tags":[
                    "Designer/Forms APIs/Get latest form items"
                ],
                "summary":"V1.0",
                "description":"Returns latest form items for a study by mode. Use /v2.0/studies/{studyId}/{mode}/forms/latest or /v20.0/studies/{studyId}/versions/{version}/forms for active development.",
                "operationId":"getLatestFormsItems_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Optional list of item IDs to filter latest form items.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "latestFormItemsRequestV1":{
                                    "description":"latestFormItemsRequestV1",
                                    "value":[
                                        "C138D4523012443F93F34CC3F281B675"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Latest form items returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormSummaryInfov1"
                                    }
                                },
                                "examples":{
                                    "latestFormItemsResponseV1":{
                                        "description":"latestFormItemsResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "itemId":"9E0F5C16D8A94C5E9E0F5C16D8A94C5E"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-formSummaryInfo-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-formsummaryinfo-post"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/versions/{version}/formssummary":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/Get form summary for study version"
                ],
                "summary":"V1.0",
                "description":"Returns form summary for a study version. Use /v20.0/studies/{studyId}/versions/{version}/forms with query options to retrieve current summary-capable form payloads.",
                "operationId":"getFormsSummaryForVersionNew_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: design, test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter. Required. Allowed values: DCS, NSF, ALL.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"DCS",
                            "enum":[
                                "DCS",
                                "NSF",
                                "ALL"
                            ]
                        }
                    },
                    {
                        "name":"excludeItems",
                        "in":"query",
                        "description":"Exclude form items from summary response (optional). Allowed values: true, false.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form summary returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov18"
                                    }
                                },
                                "examples":{
                                    "formSummaryByVersionResponseV1":{
                                        "description":"formSummaryByVersionResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-versions-{version}-formssummary-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-versions-version-formssummary-get"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/visitsforms/strata":{
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get strata items"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated in v1.0. Returns strata item data for visits by study version. Use newer randomization APIs when available for active version support.",
                "operationId":"getStrataItems_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter (optional). Allowed values: test, training, active.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Required request payload listing studyVersion and visitId values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                                }
                            },
                            "examples":{
                                "strataItemsRequestV1":{
                                    "description":"strataItemsRequestV1",
                                    "value":[
                                        {
                                            "studyVersion":"1.0.0.1",
                                            "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Strata items returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumVisitItemsDtoV1"
                                    }
                                },
                                "examples":{
                                    "strataItemsResponseV1":{
                                        "description":"strataItemsResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "stratumId":"4A9E3F17C8D645A095A7B648C1885B0F"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-visitsforms-strata-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-visitsforms-strata-post"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/visitsforms/actionitems":{
            "post":{
                "tags":[
                    "Designer/Forms APIs/Get visits action items"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated in v1.0. Returns visit/form action items by study version and mode. Use /v20.0 visit forms APIs for current supported behavior.",
                "operationId":"getStudyVisitsActions_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "DCS",
                                "NSF",
                                "ALL"
                            ]
                        }
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Action filter (optional). Allowed values: autolock, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "autolock",
                                "ALL"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Required request payload listing studyVersion and visitId values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                                }
                            },
                            "examples":{
                                "visitsActionItemsRequestV1":{
                                    "description":"visitsActionItemsRequestV1",
                                    "value":[
                                        {
                                            "studyVersion":"1.0.0.1",
                                            "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Visit action items returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitsWithFormItemActionsDto"
                                    }
                                },
                                "examples":{
                                    "visitsActionItemsResponseV1":{
                                        "description":"visitsActionItemsResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1",
                                                    "actions":[
                                                        "autolock"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-visitsforms-actionitems-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-visitsforms-actionitems-post"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/visitsforms/ehrmapping":{
            "post":{
                "tags":[
                    "Designer/Forms APIs/Get visits and forms EHR mappings"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated in v1.0. Returns EHR mapping details for visits/forms by study version. Use /v20.0 form metadata endpoints for current behavior.",
                "operationId":"getStudyVisitsFormsEhrMappings_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Required request payload listing studyVersion and visitId values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"object",
                                    "additionalProperties":{
                                        "type":"string"
                                    }
                                }
                            },
                            "examples":{
                                "visitsFormsEhrMappingsRequestV1":{
                                    "description":"visitsFormsEhrMappingsRequestV1",
                                    "value":[
                                        {
                                            "studyVersion":"1.0.0.1",
                                            "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Visits/forms EHR mappings returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsFormsEhrMappingDtoV1"
                                    }
                                },
                                "examples":{
                                    "visitsFormsEhrMappingsResponseV1":{
                                        "description":"visitsFormsEhrMappingsResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyVersion":"1.0.0.1",
                                                    "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-visitsforms-ehrmapping-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-visitsforms-ehrmapping-post"
            }
        },
        "/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/visitsforms/formitems":{
            "post":{
                "tags":[
                    "Designer/Forms APIs/Get visits and forms summary"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated in v1.0. Returns visits/forms summary details and selected form-item data. Use /v20.0 visit forms endpoints for supported versioned behavior.",
                "operationId":"getStudyVisitsFormsSummary_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Include form details in response (optional). Allowed values: true, false.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    },
                    {
                        "name":"visits",
                        "in":"query",
                        "description":"Include visit details in response (optional). Allowed values: true, false.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "DCS",
                                "NSF",
                                "ALL"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Required request payload listing studyVersion and visitId values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                                }
                            },
                            "examples":{
                                "visitsFormsSummaryRequestV1":{
                                    "description":"visitsFormsSummaryRequestV1",
                                    "value":[
                                        {
                                            "studyVersion":"1.0.0.1",
                                            "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Visits and forms summary returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsFormsSummaryDto"
                                    }
                                },
                                "examples":{
                                    "visitsFormsSummaryResponseV1":{
                                        "description":"visitsFormsSummaryResponseV1",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyVersion":"1.0.0.1",
                                                    "visitId":"A4D73A676B404D6B9D6D4DB7A7C7D3F1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v1.0-studies-{studyId}-visitsforms-formitems-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v1.0-studies-studyid-visitsforms-formitems-post"
            }
        },
        "/ec-designer-edc-svc/rest/v18.0/studies/{studyId}/versions/{version}/forms":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V18.0",
                "description":"Deprecated: Use latest version instead.  Adds a form in a study version.",
                "operationId":"addForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov18"
                            },
                            "examples":{
                                "createFormRequestV18":{
                                    "description":"createFormRequestV18",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form created successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov18"
                                },
                                "examples":{
                                    "createFormResponseV18":{
                                        "description":"createFormResponseV18",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while creating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v18.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v18.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-edc-svc/rest/v18.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V18.0",
                "description":"Deprecated in v18.0. Updates an existing form in study version v18.0. Compared with v17.0, this endpoint used v18 update mapping. Use v19.0 or v20.0 update endpoints.",
                "operationId":"updateForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov18"
                            },
                            "examples":{
                                "updateFormRequestV18":{
                                    "description":"updateFormRequestV18",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form updated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov18"
                                },
                                "examples":{
                                    "updateFormResponseV18":{
                                        "description":"updateFormResponseV18",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while updating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v18.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-edc-svc-rest-v18.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V18.0",
                "description":"Deprecated: Use latest version instead. Removes a specific form in a study version.",
                "operationId":"deleteForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form deleted successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov18"
                                },
                                "examples":{
                                    "deleteFormResponseV18":{
                                        "description":"deleteFormResponseV18",
                                        "value":{
                                            "message":"Form deleted successfully."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while deleting form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v18.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-edc-svc-rest-v18.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-edc-svc/rest/v18.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V18.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific unblinded form in a study version.",
                "operationId":"getUnblindedForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded form returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov18"
                                },
                                "examples":{
                                    "unblindedFormResponseV18":{
                                        "description":"unblindedFormResponseV18",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v18.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v18.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-edc-svc/rest/v18.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V18.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of unblinded forms in a study version.",
                "operationId":"getUnblindedForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return lite payload only (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Include extended properties (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov18"
                                    }
                                },
                                "examples":{
                                    "unblindedFormsResponseV18":{
                                        "description":"unblindedFormsResponseV18",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v18.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v18.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-edc-svc/rest/v19.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Returns forms for a study version in v19.0. Compared with v18.0, this version includes v19 form mapping and tagged-filter behavior.",
                "operationId":"getForms_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active, design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms containing tagged items (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov19"
                                    }
                                },
                                "examples":{
                                    "listFormsResponseV19":{
                                        "description":"listFormsResponseV19",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Creates a new form in study version v19.0. Compared with v18.0, this version supports v19 form mapping and metadata behavior.",
                "operationId":"addForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov19"
                            },
                            "examples":{
                                "createFormRequestV19":{
                                    "description":"createFormRequestV19",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form created successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov19"
                                },
                                "examples":{
                                    "createFormResponseV19":{
                                        "description":"createFormResponseV19",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while creating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-edc-svc/rest/v19.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Returns a specific form by formId for v19.0. Compared with v18.0, this version includes v19 mapping and response shaping controls.",
                "operationId":"getForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: design, test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov19"
                                },
                                "examples":{
                                    "getFormResponseV19":{
                                        "description":"getFormResponseV19",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Updates an existing form in study version v19.0. Compared with v18.0, this version uses v19 update mapping and response behavior.",
                "operationId":"updateForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov19"
                            },
                            "examples":{
                                "updateFormRequestV19":{
                                    "description":"updateFormRequestV19",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form updated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov19"
                                },
                                "examples":{
                                    "updateFormResponseV19":{
                                        "description":"updateFormResponseV19",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while updating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from study version v19.0. Compared with v18.0, this endpoint follows v19 delete behavior.",
                "operationId":"deleteForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form deleted successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov19"
                                },
                                "examples":{
                                    "deleteFormResponseV19":{
                                        "description":"deleteFormResponseV19",
                                        "value":{
                                            "message":"Form deleted successfully."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while deleting form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-edc-svc/rest/v19.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Returns one unblinded form for a study version in v19.0. Compared with v18.0, this version uses v19 unblinded form mapping.",
                "operationId":"getUnblindedForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded form returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov19"
                                },
                                "examples":{
                                    "unblindedFormResponseV19":{
                                        "description":"unblindedFormResponseV19",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-edc-svc/rest/v19.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Returns unblinded forms for a study version in v19.0. Compared with v18.0, this version supports v19 unblinded list behavior.",
                "operationId":"getUnblindedForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return lite payload only (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Include extended properties (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov19"
                                    }
                                },
                                "examples":{
                                    "unblindedFormsResponseV19":{
                                        "description":"unblindedFormsResponseV19",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-edc-svc/rest/v19.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V19.0",
                "description":"Deprecated: Use latest version instead. Returns forms assigned to a visit in v19.0. Compared with v18.0, this endpoint supports v19 visit-form details/summary behavior.",
                "operationId":"getForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response mode (optional): summary or details.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active, design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Visit forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov19"
                                    }
                                },
                                "examples":{
                                    "visitFormsResponseV19":{
                                        "description":"visitFormsResponseV19",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving visit forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v19.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v19.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-edc-svc/rest/v2.0/studies/{studyId}/{mode}/forms/formitems":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/List forms with item summaries"
                ],
                "summary":"V2.0",
                "description":"Returns form and item summaries by mode. Compared with v1.0, this endpoint used v19 mapping. Use /v20.0/studies/{studyId}/versions/{version}/forms for latest behavior.",
                "operationId":"getStudyAllFormsByMode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode path segment. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form and item summaries returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormSummaryFlatDtoV2"
                                    }
                                },
                                "examples":{
                                    "formItemsSummaryResponseV2":{
                                        "description":"formItemsSummaryResponseV2",
                                        "value":{
                                            "result":[
                                                {
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "itemCount":12
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v2.0-studies-{studyId}-{mode}-forms-formitems-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v2.0-studies-studyid-mode-forms-formitems-get"
            }
        },
        "/ec-designer-edc-svc/rest/v2.0/studies/{studyId}/{mode}/forms/latest":{
            "get":{
                "tags":[
                    "Designer/Forms APIs/List latest forms by mode"
                ],
                "summary":"V2.0",
                "description":"Returns latest forms by study mode. Compared with v1.0, this version used v19 mapping. Use /v20.0/studies/{studyId}/versions/{version}/forms for active development.",
                "operationId":"queryStudyFormsLatestByMode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode path segment. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Latest forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "latestFormsByModeResponseV2":{
                                        "description":"latestFormsByModeResponseV2",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyVersion":"1.0.0.1",
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v2.0-studies-{studyId}-{mode}-forms-latest-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v2.0-studies-studyid-mode-forms-latest-get"
            }
        },
        "/ec-designer-edc-svc/rest/v20.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"V20.0",
                "description":"Returns forms for a study version in v20.0. Compared with v19.0, this endpoint supports current v21 form mapping and unblinded-safe data handling behavior.",
                "operationId":"getForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active, design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms containing tagged items (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov21"
                                    }
                                },
                                "examples":{
                                    "listFormsResponse":{
                                        "description":"listFormsResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"V20.0",
                "description":"Creates a new form in study version v20.0. Compared with v19.0, this endpoint uses v21 form DTO mapping and latest form metadata behavior.",
                "operationId":"addForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov21"
                            },
                            "examples":{
                                "createFormRequest":{
                                    "description":"createFormRequest",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form created successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov21"
                                },
                                "examples":{
                                    "createFormResponse":{
                                        "description":"createFormResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while creating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "serverError":{
                                        "description":"serverError",
                                        "value":{
                                            "errorCode":"C1-500",
                                            "errorMessage":"Unable to create form.",
                                            "details":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-edc-svc/rest/v20.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"V20.0",
                "description":"Returns a specific form by formId for v20.0. Compared with v19.0, this endpoint uses v20 behavior for hidden-item handling and form retrieval options.",
                "operationId":"getForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: design, test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov21"
                                },
                                "examples":{
                                    "getFormResponse":{
                                        "description":"getFormResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"V20.0",
                "description":"Updates an existing form in study version v20.0. Compared with v19.0, this endpoint follows v21 form mapping and update behavior.",
                "operationId":"updateForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov21"
                            },
                            "examples":{
                                "updateFormRequest":{
                                    "description":"updateFormRequest",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Form updated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov21"
                                },
                                "examples":{
                                    "updateFormResponse":{
                                        "description":"updateFormResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while updating form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"V20.0",
                "description":"Deletes a form from study version v20.0. Compared with v19.0, this endpoint uses the current v20 deletion workflow and response contract.",
                "operationId":"deleteForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form deleted successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov21"
                                },
                                "examples":{
                                    "deleteFormResponse":{
                                        "description":"deleteFormResponse",
                                        "value":{
                                            "message":"Form deleted successfully."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while deleting form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-edc-svc/rest/v20.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"V20.0",
                "description":"Returns one unblinded form for a study version in v20.0. Compared with v19.0, this endpoint uses the current v20 unblinded retrieval logic.",
                "operationId":"getUnblindedForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded form returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov21"
                                },
                                "examples":{
                                    "unblindedFormResponse":{
                                        "description":"unblindedFormResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded form.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-edc-svc/rest/v20.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"V20.0",
                "description":"Returns unblinded forms for a study version in v20.0. Compared with v19.0, this endpoint keeps v20 unblinded filtering and extension-property options.",
                "operationId":"getUnblindedForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return lite payload only (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Include extended properties (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter (optional). Allowed values: DCS, NSF, ALL.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unblinded forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov21"
                                    }
                                },
                                "examples":{
                                    "unblindedFormsResponse":{
                                        "description":"unblindedFormsResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving unblinded forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-edc-svc/rest/v20.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"V20.0",
                "description":"Returns forms assigned to a visit in v20.0. Compared with v19.0, this endpoint uses v20 visit-form retrieval and supports details/summary response behavior.",
                "operationId":"getForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"F054C951EB74443C93716CA714AB686E"
                        }
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response mode (optional): summary or details.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active, design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        }
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude (optional). Allowed value: instructionalText.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data in response (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Visit forms returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov21"
                                    }
                                },
                                "examples":{
                                    "visitFormsResponse":{
                                        "description":"visitFormsResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving visit forms.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v20.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v20.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-edc-svc/rest/v3.0/studies/{studyId}/forms/{formId}/formitems":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get form items by form ID"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated in v3.0. Returns form items for a specific form ID. Compared with v2.0 forms endpoints, this version introduced formId-scoped retrieval. Use /v20.0/studies/{studyId}/versions/{version}/forms/{formId} with items projection for current behavior.",
                "operationId":"queryFormItems_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Required. Allowed values: test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"itemType",
                        "in":"query",
                        "description":"Form item type filter (optional).",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Form items returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov21"
                                    }
                                },
                                "examples":{
                                    "formItemsByFormIdResponseV3":{
                                        "description":"formItemsByFormIdResponseV3",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9E0F5C16D8A94C5E9E0F5C16D8A94C5E",
                                                    "questionLabel":"Gender"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v3.0-studies-{studyId}-forms-{formId}-formitems-get",
                "x-filename-id":"ec-designer-edc-svc-rest-v3.0-studies-studyid-forms-formid-formitems-get"
            }
        },
        "/ec-designer-edc-svc/rest/v4.0/studies/{studyId}/lockObjectDetails":{
            "post":{
                "tags":[
                    "Designer/Lock Object APIs/Get locked objects"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Returns lock-object details for selected study objects. Use /v5.0/studies/{studyId}/lockObjectDetails for the newest lock-object contract in this API ladder.",
                "operationId":"queryLockObjects_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9F8E7D6C5B4A3210FEDCBA9876543210"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode (required): test, training, or active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"showVisitDetails",
                        "in":"query",
                        "description":"Include visit-level details (optional).",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"itemsIncluded",
                        "in":"query",
                        "description":"Include form items in response (optional).",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Exclude this form item type from response (optional).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data values (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "requestBody":{
                    "description":"Array of lock objects to query. Required in request body.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LockObjectDtoV4"
                                }
                            },
                            "examples":{
                                "lockObjectRequestV4":{
                                    "description":"lockObjectRequestV4",
                                    "value":[
                                        {
                                            "objectId":"53F8AD47286A46F9A4E79D7EEA4DE9A8",
                                            "parentObjectId":"95AA2DB4F8C54E8D9A4E9E8C458A143C",
                                            "objectLockDate":"2026-04-14T11:42:00Z"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Lock object details were returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockObjectDetailsDtoV4"
                                },
                                "examples":{
                                    "lockObjectResponseV4":{
                                        "description":"lockObjectResponseV4",
                                        "value":{
                                            "result":{
                                                "visitObjects":[
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving lock object details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "serverError":{
                                        "description":"serverError",
                                        "value":{
                                            "errorCode":"C1-500",
                                            "errorMessage":"Unable to process lock object details request.",
                                            "details":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-edc-svc-rest-v4.0-studies-{studyId}-lockObjectDetails-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v4.0-studies-studyid-lockobjectdetails-post"
            }
        },
        "/ec-designer-edc-svc/rest/v5.0/studies/{studyId}/lockObjectDetails":{
            "post":{
                "tags":[
                    "Designer/Lock Object APIs/Get locked objects"
                ],
                "summary":"V5.0",
                "description":"Returns lock-object details for selected study objects. Compared to v4.0, this version added v5 mapping behavior and excluded view queries. This is the latest published lock-object endpoint in this service.",
                "operationId":"queryLockObjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9F8E7D6C5B4A3210FEDCBA9876543210"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode (required): test, training, or active.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"showVisitDetails",
                        "in":"query",
                        "description":"Include visit-level details (optional).",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"itemsIncluded",
                        "in":"query",
                        "description":"Include form items in response (optional).",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Exclude this form item type from response (optional).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        }
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Include dynamic data values (optional).",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "requestBody":{
                    "description":"Array of lock objects to query. Required in request body.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LockObjectDtoV4"
                                }
                            },
                            "examples":{
                                "lockObjectRequestV5":{
                                    "description":"lockObjectRequestV5",
                                    "value":[
                                        {
                                            "objectId":"53F8AD47286A46F9A4E79D7EEA4DE9A8",
                                            "parentObjectId":"95AA2DB4F8C54E8D9A4E9E8C458A143C",
                                            "objectLockDate":"2026-04-14T11:42:00Z"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Lock object details were returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockObjectDetailsDtoV4"
                                },
                                "examples":{
                                    "lockObjectResponseV5":{
                                        "description":"lockObjectResponseV5",
                                        "value":{
                                            "result":{
                                                "visitObjects":[
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error while retrieving lock object details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "serverError":{
                                        "description":"serverError",
                                        "value":{
                                            "errorCode":"C1-500",
                                            "errorMessage":"Unable to process lock object details request.",
                                            "details":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-edc-svc-rest-v5.0-studies-{studyId}-lockObjectDetails-post",
                "x-filename-id":"ec-designer-edc-svc-rest-v5.0-studies-studyid-lockobjectdetails-post"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryHistory/{libraryId}":{
            "get":{
                "tags":[
                    "Library/Library Object History APIs/Get history of a library object"
                ],
                "summary":"v1.0",
                "description":"Retrieves the history for a specific library object.",
                "operationId":"getLibraryHistory_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryHistoryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryHistoryResponseV1":{
                                        "description":"LibraryHistoryResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "lastModifiedDate":"2022-08-30T07:59:46.901Z",
                                                "libraryVersion":"1.0",
                                                "status":"DRAFT",
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "userName":"John Doe"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryHistory-{libraryId}-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryhistory-libraryid-get"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/kits":{
            "get":{
                "tags":[
                    "Library/Library Kits APIs/Get all library kits"
                ],
                "summary":"v1.0",
                "description":"Get all the library kits.",
                "operationId":"getLibraryKits_1",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitsResponseV1":{
                                        "description":"LibraryKitsResponseV1",
                                        "value":[
                                            {
                                                "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"BPAF",
                                                "kitDescription":"Placebo",
                                                "trialSupplyType":"INHALER",
                                                "unitsPerKit":5,
                                                "storageSetting":"REFRIGERATED",
                                                "status":"DRAFT"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-get"
            },
            "post":{
                "tags":[
                    "Library/Library Kits APIs/Add library kit"
                ],
                "summary":"v1.0",
                "description":"Adds a library kit.",
                "operationId":"addLibraryKit_1",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LibraryKitsDtoV1"
                            },
                            "examples":{
                                "LibraryKitRequestV1":{
                                    "description":"LibraryKitRequestV1",
                                    "value":{
                                        "poolingId":"BPAF",
                                        "kitDescription":"Placebo",
                                        "trialSupplyType":"INHALER",
                                        "unitsPerKit":5,
                                        "storageSetting":"REFRIGERATED",
                                        "status":"DRAFT"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitResponseV1":{
                                        "description":"LibraryKitResponseV1",
                                        "value":{
                                            "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "poolingId":"BPAF",
                                            "kitDescription":"Placebo",
                                            "trialSupplyType":"INHALER",
                                            "unitsPerKit":5,
                                            "storageSetting":"REFRIGERATED",
                                            "status":"DRAFT"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-post",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-post"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/kits/{libraryKitId}":{
            "get":{
                "tags":[
                    "Library/Library Kits APIs/Get library kit by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the library kit by ID.",
                "operationId":"getLibraryKit_1",
                "parameters":[
                    {
                        "name":"libraryKitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitByIdResponseV1":{
                                        "description":"LibraryKitByIdResponseV1",
                                        "value":{
                                            "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "poolingId":"BPAF",
                                            "kitDescription":"Placebo",
                                            "trialSupplyType":"INHALER",
                                            "unitsPerKit":5,
                                            "storageSetting":"REFRIGERATED",
                                            "status":"DRAFT"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-{libraryKitId}-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-librarykitid-get"
            },
            "put":{
                "tags":[
                    "Library/Library Kits APIs/Update library kit"
                ],
                "summary":"v1.0",
                "description":"Updates a specific library kit by ID.",
                "operationId":"editLibraryKit_1",
                "parameters":[
                    {
                        "name":"libraryKitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Update a library kit DTO.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LibraryKitsDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitUpdateResponseV1":{
                                        "description":"LibraryKitUpdateResponseV1",
                                        "value":{
                                            "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "poolingId":"BPAF",
                                            "kitDescription":"Placebo",
                                            "trialSupplyType":"INHALER",
                                            "unitsPerKit":5,
                                            "storageSetting":"REFRIGERATED",
                                            "status":"APPROVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-{libraryKitId}-put",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-librarykitid-put"
            },
            "delete":{
                "tags":[
                    "Library/Library Kits APIs/Delete library kit"
                ],
                "summary":"v1.0",
                "description":"Deletes a library kit by ID.",
                "operationId":"removeLibraryKit_1",
                "parameters":[
                    {
                        "name":"libraryKitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitDeleteResponseV1":{
                                        "description":"LibraryKitDeleteResponseV1",
                                        "value":{
                                            "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "poolingId":"BPAF",
                                            "kitDescription":"Placebo",
                                            "trialSupplyType":"INHALER",
                                            "unitsPerKit":5,
                                            "storageSetting":"REFRIGERATED",
                                            "status":"ARCHIVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-{libraryKitId}-delete",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-librarykitid-delete"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/kits/{libraryKitId}/history":{
            "get":{
                "tags":[
                    "Library/Library Kits APIs/Get history of all library kits"
                ],
                "summary":"v1.0",
                "description":"Retrieves the history of all library kits.",
                "operationId":"getLibraryKitHistory_1",
                "parameters":[
                    {
                        "name":"libraryKitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitHistoryResponseV1":{
                                        "description":"LibraryKitHistoryResponseV1",
                                        "value":[
                                            {
                                                "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"Pol12",
                                                "lastModifiedDate":"2022-08-30T07:59:46.901Z",
                                                "status":"DRAFT",
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "userName":"John Doe"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-{libraryKitId}-history-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-librarykitid-history-get"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/kits/pagination":{
            "get":{
                "tags":[
                    "Library/Library Kits APIs/Get library kits with pagination"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of library kits with pagination.",
                "operationId":"getLibraryKitsPagination_1",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Colon separated field and sort order pair, eg. 'kitDescription:asc' or 'poolingId:desc'",
                        "schema":{
                            "type":"string"
                        },
                        "example":"lastModifiedDate:desc"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"The status to filter by",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "DRAFT",
                                "APPROVED",
                                "PUBLISHED",
                                "ARCHIVED"
                            ]
                        },
                        "example":"draft"
                    },
                    {
                        "name":"trialSupplyType",
                        "in":"query",
                        "description":"The trial supply type to filter by",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "BLISTERPACK",
                                "BOTTLE",
                                "DEVICE",
                                "SYRINGE",
                                "OINTMENT",
                                "VIAL",
                                "INHALER",
                                "INFUSION",
                                "BOX",
                                "OTHER"
                            ]
                        },
                        "example":"INHALER"
                    },
                    {
                        "name":"kitDescription",
                        "in":"query",
                        "description":"The description to filter by",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Placebo"
                    },
                    {
                        "name":"poolingId",
                        "in":"query",
                        "description":"The pooling ID to filter by",
                        "schema":{
                            "type":"string"
                        },
                        "example":"BPAF"
                    },
                    {
                        "name":"searchStr",
                        "in":"query",
                        "description":"The kit description or pooling ID string to search for",
                        "schema":{
                            "type":"string"
                        },
                        "example":"placebo"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) caller study ID - for study roles only",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                },
                                "examples":{
                                    "LibraryKitsPaginationResponseV1":{
                                        "description":"LibraryKitsPaginationResponseV1",
                                        "value":[
                                            {
                                                "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"BPAF",
                                                "kitDescription":"Placebo",
                                                "trialSupplyType":"INHALER",
                                                "unitsPerKit":5,
                                                "storageSetting":"REFRIGERATED",
                                                "status":"DRAFT"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-pagination-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-pagination-get"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/kits/bulk/{status}":{
            "post":{
                "tags":[
                    "Library/Library Kits APIs/Update library kit status in bulk"
                ],
                "summary":"v1.0",
                "description":"Updates multiple library kits' status in bulk.",
                "operationId":"updateLibraryKitStatus_1",
                "parameters":[
                    {
                        "name":"status",
                        "in":"path",
                        "description":"The status to filter by",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "draft",
                                "approved",
                                "published",
                                "archived"
                            ]
                        },
                        "example":"published"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "LibraryKitBulkStatusUpdateRequestV1":{
                                    "description":"LibraryKitBulkStatusUpdateRequestV1",
                                    "value":[
                                        "B1B8327AFAA6412287106192AB5984EF"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryKitsDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryKitBulkStatusUpdateResponseV1":{
                                        "description":"LibraryKitBulkStatusUpdateResponseV1",
                                        "value":[
                                            {
                                                "libraryKitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"BPAF",
                                                "kitDescription":"Placebo",
                                                "trialSupplyType":"INHALER",
                                                "unitsPerKit":5,
                                                "storageSetting":"REFRIGERATED",
                                                "status":"PUBLISHED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-kits-bulk-{status}-post",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-kits-bulk-status-post"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/{libraryId}":{
            "get":{
                "tags":[
                    "Library/Get library object"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a library object depending on query parameters.",
                "operationId":"getLibrary_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryGetByIdResponseV1":{
                                        "description":"LibraryGetByIdResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v1.0",
                                                "status":"DRAFT",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-{libraryId}-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-libraryid-get"
            },
            "put":{
                "tags":[
                    "Library/Update library object"
                ],
                "summary":"v1.0",
                "description":"Updates the library object.",
                "operationId":"updateLibrary_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Library object to update",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LibraryDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryUpdateResponseV1":{
                                        "description":"LibraryUpdateResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v1.0",
                                                "status":"APPROVED",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-{libraryId}-put",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-libraryid-put"
            },
            "delete":{
                "tags":[
                    "Library/Delete library object"
                ],
                "summary":"v1.0",
                "description":"Deletes the library object for all study versions.",
                "operationId":"deleteLibrary_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryDeleteResponseV1":{
                                        "description":"LibraryDeleteResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v1.0",
                                                "status":"ARCHIVED",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-{libraryId}-delete",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-libraryid-delete"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/studies/{studyId}/versions/{studyVersion}/revertCopyObjects":{
            "post":{
                "tags":[
                    "Library/Undo the previous copy of a library object"
                ],
                "summary":"v1.0",
                "description":"Undo the previous copy of a library object.",
                "operationId":"revertCopyObjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Study version",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LibraryCopyObjectDtoV1"
                                }
                            },
                            "examples":{
                                "LibraryRevertCopyObjectsRequestV1":{
                                    "description":"LibraryRevertCopyObjectsRequestV1",
                                    "value":[
                                        {
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1",
                                            "studyType":"LIBRARY",
                                            "sourceObjectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sourceStudyVersion":"1.0.0.1",
                                            "sourceStudyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sourceStudyType":"LIBRARY",
                                            "objectType":"FORM",
                                            "objectGroup":"Demography"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryCopyObjectDtoV1"
                                },
                                "examples":{
                                    "LibraryRevertCopyObjectsResponseV1":{
                                        "description":"LibraryRevertCopyObjectsResponseV1",
                                        "value":[
                                            {
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "studyType":"LIBRARY",
                                                "sourceObjectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sourceStudyVersion":"1.0.0.1",
                                                "sourceStudyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sourceStudyType":"LIBRARY",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-studies-{studyId}-versions-{studyVersion}-revertCopyObjects-post",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-studies-studyid-versions-studyversion-revertcopyobjects-post"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryObjects/bulkUpdate":{
            "post":{
                "tags":[
                    "Library/Update library objects in bulk"
                ],
                "summary":"v1.0",
                "description":"Updates multiple library objects in bulk.",
                "operationId":"updateLibraryBulk_1",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                }
                            },
                            "examples":{
                                "LibraryBulkUpdateRequestV1":{
                                    "description":"LibraryBulkUpdateRequestV1",
                                    "value":[
                                        {
                                            "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectType":"FORM",
                                            "objectGroup":"Demography",
                                            "libraryVersion":"v1.0",
                                            "status":"APPROVED",
                                            "description":"Advanced demography form",
                                            "tags":"LIB",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                },
                                "examples":{
                                    "LibraryBulkUpdateResponseV1":{
                                        "description":"LibraryBulkUpdateResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v1.0",
                                                "status":"APPROVED",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryObjects-bulkUpdate-post",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryobjects-bulkupdate-post"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryUses":{
            "delete":{
                "tags":[
                    "Library/Library Uses APIs/Delete library uses"
                ],
                "summary":"v1.0",
                "description":"Deletes library uses for particular object and study versions.",
                "operationId":"deleteLibraryUses_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"objectId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesDeleteResponseV1":{
                                        "description":"LibraryUsesDeleteResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryUses-delete",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryuses-delete"
            }
        },
        "/ec-library-svc/rest/v1.0/libraryUses/{libraryId}":{
            "get":{
                "tags":[
                    "Library/Library Uses APIs/Get library uses object"
                ],
                "summary":"v1.0",
                "description":"Retrieves library uses objects depending on query parameters.",
                "operationId":"getLibraryUses_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesByLibraryIdResponseV1":{
                                        "description":"LibraryUsesByLibraryIdResponseV1",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v1.0-libraryUses-{libraryId}-get",
                "x-filename-id":"ec-library-svc-rest-v1.0-libraryuses-libraryid-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryObjects":{
            "get":{
                "tags":[
                    "Library/Get library object"
                ],
                "summary":"v2.0",
                "description":"Retrieves a list of library objects depending on query parameters.",
                "operationId":"getLibraries_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"libraryId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"tags",
                        "in":"query",
                        "description":"tags",
                        "schema":{
                            "type":"string"
                        },
                        "example":"LIB"
                    },
                    {
                        "name":"objectGroup",
                        "in":"query",
                        "description":"objectGroup",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Demography"
                    },
                    {
                        "name":"objectGroupEquals",
                        "in":"query",
                        "description":"objectGroupEquals",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Demography"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"status",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DRAFT"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"studyVersion",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"objectType",
                        "in":"query",
                        "description":"objectType",
                        "schema":{
                            "type":"string"
                        },
                        "example":"FORM"
                    },
                    {
                        "name":"objectId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibrariesResponseV2":{
                                        "description":"LibrariesResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v2.0",
                                                "status":"DRAFT",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-get"
            },
            "post":{
                "tags":[
                    "Library/Add library object"
                ],
                "summary":"v2.0",
                "description":"Adds a library object.",
                "operationId":"addLibrary_1",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LibraryDtoV1"
                            },
                            "examples":{
                                "LibraryCreateRequestV2":{
                                    "description":"LibraryCreateRequestV2",
                                    "value":{
                                        "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "objectType":"FORM",
                                        "objectGroup":"Demography",
                                        "status":"DRAFT",
                                        "description":"Advanced demography form",
                                        "tags":"LIB",
                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                },
                                "examples":{
                                    "LibraryCreateResponseV2":{
                                        "description":"LibraryCreateResponseV2",
                                        "value":{
                                            "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectType":"FORM",
                                            "objectGroup":"Demography",
                                            "libraryVersion":"v2.0",
                                            "status":"DRAFT",
                                            "description":"Advanced demography form",
                                            "tags":"LIB",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-post",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-post"
            },
            "delete":{
                "tags":[
                    "Library/Delete library object"
                ],
                "summary":"v2.0",
                "description":"Deletes the library object for a particular study version.",
                "operationId":"deleteLibraryStudyVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"objectId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryDeleteStudyVersionResponseV2":{
                                        "description":"LibraryDeleteStudyVersionResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v2.0",
                                                "status":"ARCHIVED",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-delete",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-delete"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryObjects/bulk":{
            "post":{
                "tags":[
                    "Library/Add library objects in bulk"
                ],
                "summary":"v2.0",
                "description":"Adds multiple library objects in bulk.",
                "operationId":"addLibraryBulk_1",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                }
                            },
                            "examples":{
                                "LibraryBulkCreateRequestV2":{
                                    "description":"LibraryBulkCreateRequestV2",
                                    "value":[
                                        {
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectType":"FORM",
                                            "objectGroup":"Demography",
                                            "status":"DRAFT",
                                            "description":"Advanced demography form",
                                            "tags":"LIB",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                },
                                "examples":{
                                    "LibraryBulkCreateResponseV2":{
                                        "description":"LibraryBulkCreateResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v2.0",
                                                "status":"DRAFT",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-bulk-post",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-bulk-post"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryObjects/studies/{studyId}/versions/{studyVersion}/{copyObjectMethod}/copyObjects":{
            "post":{
                "tags":[
                    "Library/Undo the previous copy of a library object"
                ],
                "summary":"v2.0",
                "description":"Copies a library object.",
                "operationId":"copyObjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Study version",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"copyObjectMethod",
                        "in":"path",
                        "description":"Copy object method",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"COPY_LINK"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LibraryCopyObjectDtoV2"
                                }
                            },
                            "examples":{
                                "LibraryCopyObjectsRequestV2":{
                                    "description":"LibraryCopyObjectsRequestV2",
                                    "value":[
                                        {
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1",
                                            "studyType":"LIBRARY",
                                            "sourceObjectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sourceStudyVersion":"1.0.0.1",
                                            "sourceStudyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sourceStudyType":"LIBRARY",
                                            "objectType":"FORM",
                                            "objectGroup":"Demography",
                                            "isAssociatedForm":true
                                        }
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryCopyObjectDtoV1"
                                },
                                "examples":{
                                    "LibraryCopyObjectsResponseV2":{
                                        "description":"LibraryCopyObjectsResponseV2",
                                        "value":[
                                            {
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "studyType":"LIBRARY",
                                                "sourceObjectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sourceStudyVersion":"1.0.0.1",
                                                "sourceStudyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sourceStudyType":"LIBRARY",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "isAssociatedForm":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-studies-{studyId}-versions-{studyVersion}-{copyObjectMethod}-copyObjects-post",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-studies-studyid-versions-studyversion-copyobjectmethod-copyobjects-post"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryObjects/pagination":{
            "get":{
                "tags":[
                    "Library/Get library object with pagination"
                ],
                "summary":"v2.0",
                "description":"Gets a library objects with pagination depending on query parameters",
                "operationId":"getLibrariesPagination_1",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"studyId",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"libraryId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"tags",
                        "in":"query",
                        "description":"tags",
                        "schema":{
                            "type":"string"
                        },
                        "example":"LIB"
                    },
                    {
                        "name":"objectGroup",
                        "in":"query",
                        "description":"objectGroup",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Demography"
                    },
                    {
                        "name":"objectGroupEquals",
                        "in":"query",
                        "description":"objectGroupEquals",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Demography"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"status",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DRAFT"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"studyVersion",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"objectType",
                        "in":"query",
                        "description":"objectType",
                        "schema":{
                            "type":"string"
                        },
                        "example":"FORM"
                    },
                    {
                        "name":"objectId",
                        "in":"query",
                        "description":"objectId",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"orderBy",
                        "schema":{
                            "type":"string"
                        },
                        "example":"lastModifiedDate:desc"
                    },
                    {
                        "name":"onlyRoot",
                        "in":"query",
                        "description":"onlyRoot",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"excludeStudyId",
                        "in":"query",
                        "description":"excludeStudyId",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryDtoV1"
                                    }
                                },
                                "examples":{
                                    "LibraryPaginationResponseV2":{
                                        "description":"LibraryPaginationResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v2.0",
                                                "status":"DRAFT",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-pagination-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-pagination-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryObjects/updateStudyVersion":{
            "post":{
                "tags":[
                    "Library/Update library object"
                ],
                "summary":"v2.0",
                "description":"Updates all library objects from previous study versions to the new study version.",
                "operationId":"updateStudyVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing study whose library objects needs to be updated",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"previousStudyVersion",
                        "in":"query",
                        "description":"Previous study version",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"newStudyVersion",
                        "in":"query",
                        "description":"New study version after the update",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryDtoV1"
                                },
                                "examples":{
                                    "LibraryUpdateStudyVersionResponseV2":{
                                        "description":"LibraryUpdateStudyVersionResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "objectGroup":"Demography",
                                                "libraryVersion":"v2.0",
                                                "status":"DRAFT",
                                                "description":"Advanced demography form",
                                                "tags":"LIB",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryObjects-updateStudyVersion-post",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryobjects-updatestudyversion-post"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryUses/library/{libraryId}/studyType/{studyType}":{
            "get":{
                "tags":[
                    "Library/Library Uses APIs/Get library uses for given library ID and study type"
                ],
                "summary":"v2.0",
                "description":"Retrieves all library uses for a given library object and study type, for study types it was imported to.",
                "operationId":"getLatestLibraryUsesByLibraryIdAndStudyTypeGroupByStudy_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyType",
                        "in":"path",
                        "description":"Study type",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LIBRARY"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV2"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesByLibraryIdAndStudyTypeResponseV2":{
                                        "description":"LibraryUsesByLibraryIdAndStudyTypeResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "relationType":"LIBRARY_ROOT",
                                                "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryUses-library-{libraryId}-studyType-{studyType}-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryuses-library-libraryid-studytype-studytype-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryUses/studies/{studyId}/versions/{studyVersion}":{
            "get":{
                "tags":[
                    "Library/Library Uses APIs/Get library uses by study ID and version"
                ],
                "summary":"v2.0",
                "description":"Retrieves library uses for a particular study ID and version.",
                "operationId":"getLibraryUsesByStudyIdAndVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Study version",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV2"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesByStudyIdAndVersionResponseV2":{
                                        "description":"LibraryUsesByStudyIdAndVersionResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "relationType":"LIBRARY_ROOT",
                                                "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryUses-studies-{studyId}-versions-{studyVersion}-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryuses-studies-studyid-versions-studyversion-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryUses/study/{studyId}":{
            "get":{
                "tags":[
                    "Library/Library Uses APIs/Get all library uses for a given study"
                ],
                "summary":"v2.0",
                "description":"Retrieves all library uses for a given study.",
                "operationId":"getStudyLibraryUsesInStudies_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV2"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesByStudyIdResponseV2":{
                                        "description":"LibraryUsesByStudyIdResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "relationType":"LIBRARY_ROOT",
                                                "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryUses-study-{studyId}-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryuses-study-studyid-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryUses/study/{studyId}/studyType/{studyType}":{
            "get":{
                "tags":[
                    "Library/Library Uses APIs/Get library uses for given study ID and type"
                ],
                "summary":"v2.0",
                "description":"Retrieves all library uses for a given study ID and type, for study types it was imported to.",
                "operationId":"getStudyLibraryUsesInStudiesByType_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyType",
                        "in":"path",
                        "description":"Study type",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"null"
                        },
                        "example":"LIBRARY"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LibraryUsesDtoV2"
                                    }
                                },
                                "examples":{
                                    "LibraryUsesByStudyIdAndTypeResponseV2":{
                                        "description":"LibraryUsesByStudyIdAndTypeResponseV2",
                                        "value":[
                                            {
                                                "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                                "objectType":"FORM",
                                                "studyType":"LIBRARY",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersion":"1.0.0.1",
                                                "relationType":"LIBRARY_ROOT",
                                                "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryUses-study-{studyId}-studyType-{studyType}-get",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryuses-study-studyid-studytype-studytype-get"
            }
        },
        "/ec-library-svc/rest/v2.0/libraryUses":{
            "put":{
                "tags":[
                    "Library/Library Uses APIs/Update library uses object"
                ],
                "summary":"v2.0",
                "description":"Updates a library uses object.",
                "operationId":"updateLibraryUses_1",
                "parameters":[
                    {
                        "name":"validateExisting",
                        "in":"query",
                        "description":"Validate uses exists",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LibraryUsesDtoV2"
                            },
                            "examples":{
                                "LibraryUsesUpdateRequestV2":{
                                    "description":"LibraryUsesUpdateRequestV2",
                                    "value":{
                                        "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                        "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "objectType":"FORM",
                                        "studyType":"LIBRARY",
                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.1",
                                        "relationType":"LIBRARY_ROOT",
                                        "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LibraryUsesDtoV2"
                                },
                                "examples":{
                                    "LibraryUsesUpdateResponseV2":{
                                        "description":"LibraryUsesUpdateResponseV2",
                                        "value":{
                                            "libraryId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectId":"B1B8327AFAA6412287106192AB5984EF",
                                            "objectType":"FORM",
                                            "studyType":"LIBRARY",
                                            "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersion":"1.0.0.1",
                                            "versionStart":"2023-08-30T07:59:46.901Z",
                                            "relationType":"LIBRARY_ROOT",
                                            "librarySourceStudyId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-library-svc-rest-v2.0-libraryUses-put",
                "x-filename-id":"ec-library-svc-rest-v2.0-libraryuses-put"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/studyOpenQueryCount":{
            "get":{
                "tags":[
                    "Query/Query Management/Get the number of open queries in a study"
                ],
                "summary":"v1.0",
                "description":"Returns counts of open, answered, and closed queries that belong to the supplied study and mode. Compared to the previous version, this initial v1.0 release establishes the baseline behaviour because no earlier REST version existed.",
                "operationId":"getStudyOpenQueryCount",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Returns counts for open, answered, and closed queries that belong to the requested study and mode combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyOpenQueryCountRespDTO"
                                },
                                "examples":{
                                    "StudyOpenQueryCountRespDTO":{
                                        "summary":"StudyOpenQueryCountRespDTOExample",
                                        "description":"StudyOpenQueryCountRespDTO",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "opened":0,
                                                "answered":0,
                                                "closed":0
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No open queries exist for the supplied study and mode combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyOpenQueryCountRespDTO"
                                },
                                "examples":{
                                    "NoOpenQueries":{
                                        "summary":"No open queries returned",
                                        "description":"NoOpenQueries",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error prevented the query count from being returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyOpenQueryCountRespDTO"
                                },
                                "examples":{
                                    "StudyOpenQueryCountError":{
                                        "summary":"StudyOpenQueryCountErrorExample",
                                        "description":"StudyOpenQueryCountError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error.",
                                                "details":{
                                                    "requestId":"3b3b8f31-87a3-4dd2-8b9d-21d0c93ef27a",
                                                    "supportCode":"QRY-5000",
                                                    "hint":"Retry request after verifying the study mode."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-studyOpenQueryCount-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-studyopenquerycount-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/studyQueryCount":{
            "get":{
                "tags":[
                    "Query/Query Management/Get the number of queries in a study"
                ],
                "summary":"v1.0",
                "description":"Returns aggregated counts for each query lifecycle state for the supplied study and mode. Compared to the previous version, this initial v1.0 release establishes the baseline behaviour because no earlier REST version existed.",
                "operationId":"getStudyQueryCount",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Returns aggregated counts for every query lifecycle state found in the requested study and mode.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyQueryCountRespDTO"
                                },
                                "examples":{
                                    "StudyQueryCountRespDTO":{
                                        "summary":"StudyQueryCountRespDTOExample",
                                        "description":"StudyQueryCountRespDTO",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "candidate":1,
                                                "opened":3,
                                                "answered":2,
                                                "deleted":0,
                                                "closed":4
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected server error prevented the query count from being returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyQueryCountRespDTO"
                                },
                                "examples":{
                                    "StudyQueryCountError":{
                                        "summary":"StudyQueryCountErrorExample",
                                        "description":"StudyQueryCountError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error.",
                                                "details":{
                                                    "requestId":"3b3b8f31-87a3-4dd2-8b9d-21d0c93ef27a",
                                                    "supportCode":"QRY-5000",
                                                    "hint":"Retry request after verifying the study mode."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-studyQueryCount-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-studyquerycount-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Query/Query Management/Get subjects with open queries in a study"
                ],
                "summary":"v1.0",
                "description":"Compared to the prior manual site reports, this v1.0 endpoint returns a paginated list of subjects with open queries so client applications can iterate without custom SQL. This improves user integration reliability.",
                "operationId":"getSubjectsHavingOpenQueries",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Offset. Provide a zero or positive value.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Limit. Provide a zero or positive value.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32",
                            "example":25
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Paginated list of subjects with open queries is returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQuerySubjectsSuccess":{
                                        "description":"OpenQuerySubjectsSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":2,
                                                "results":[
                                                    {
                                                        "id":"2F48C8678D564E24AAC8520EF5C5356B"
                                                    },
                                                    {
                                                        "id":"2F48C8678D564E24AAC8520EF5C53768"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQuerySubjectsBadRequest":{
                                        "description":"OpenQuerySubjectsBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"offset must be greater than or equal to 0.",
                                                "details":{
                                                    "requestId":"3f7f8f1d-8d3f-4e52-95aa-0acada9c2308",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot fetch the subject list due to an unexpected error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQuerySubjectsServerError":{
                                        "description":"OpenQuerySubjectsServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving open-query subjects.",
                                                "details":{
                                                    "requestId":"2d3314f2-213e-4e07-bceb-1791b20a1132",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-subjects-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/querymgmt/openQueryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of opened queries"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to the previous manual dashboards, this v1.0 endpoint supplies open query management results filtered by state so external clients can build To-Do lists without custom SQL. This improves user integration reliability.",
                "operationId":"getOpenQueryDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "OpenQueryManagementRequest":{
                                    "description":"OpenQueryManagementRequest",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":true
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "queryState":[
                                            "Opened"
                                        ],
                                        "subjectIdList":[
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                        ],
                                        "searchStr":"open",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "currentRecord":"1",
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Open query management results returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryManagementSuccess":{
                                        "description":"OpenQueryManagementSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":1,
                                                "results":[
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "queryState":"Opened",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryManagementBadRequest":{
                                        "description":"OpenQueryManagementBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"queryState must include at least one value.",
                                                "details":{
                                                    "requestId":"f2595a23-0f67-47dc-afc1-1b2f3251f8e6",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no open queries match the provided filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryManagementNotFound":{
                                        "description":"OpenQueryManagementNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected server error occurs while retrieving open query data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryManagementServerError":{
                                        "description":"OpenQueryManagementServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving open query records.",
                                                "details":{
                                                    "requestId":"cf03657f-0fd3-4ec9-b27e-1cefd1bb3a0c",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-querymgmt-openQueryList-post",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-querymgmt-openquerylist-post"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/querymgmt/queryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of queries based on multiple parameters"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to the pre-v1 reporting extracts, this v1.0 endpoint returns query management grids with pagination and filter controls in a single REST payload. This improves user integration reliability.",
                "operationId":"getQueryDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "QueryManagementRequest":{
                                    "description":"QueryManagementRequest",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":false
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "subjectIdList":[
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                            "CB9BBB0767114F599FE75616223D6665"
                                        ],
                                        "searchStr":"visit date",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "queryState":[
                                            "Opened",
                                            "Answered"
                                        ],
                                        "currentRecord":"1",
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query management results returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementRecordsSuccess":{
                                        "description":"QueryManagementRecordsSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":52,
                                                "results":[
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "queryState":"Opened",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementRecordsBadRequest":{
                                        "description":"QueryManagementRecordsBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"lastUpdated must match dd-MMM-yyyy.",
                                                "details":{
                                                    "requestId":"31e98fdc-7252-4c53-953c-7a12b602808f",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no queries match the provided filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementRecordsNotFound":{
                                        "description":"QueryManagementRecordsNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected server error occurs while retrieving query management data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementRecordsServerError":{
                                        "description":"QueryManagementRecordsServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query management records.",
                                                "details":{
                                                    "requestId":"5a94bc0f-9dc5-4d3a-9b51-b9f76f681a73",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-querymgmt-queryList-post",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-querymgmt-querylist-post"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/queries/{queryId}/assignupdate":{
            "put":{
                "tags":[
                    "Query/Query Management/Assign study roles to queries"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to the previous back-office process, this v1.0 endpoint lets clients assign multiple study roles to a query while validating rights and returning the updated query envelope. This improves user integration reliability.",
                "operationId":"assignUpdate",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Assigned study roles to the query.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/Query DTO"
                            },
                            "examples":{
                                "AssignUpdateRequest":{
                                    "description":"AssignUpdateRequest",
                                    "value":{
                                        "studyRoles":[
                                            "B450BE73E0EB4FF9855A49743BFA6275"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Study roles assigned to the query successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateSuccess":{
                                        "description":"AssignUpdateSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "studyRoles":[
                                                    "B450BE73E0EB4FF9855A49743BFA6275"
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateBadRequest":{
                                        "description":"AssignUpdateBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"studyRoles must contain at least one role identifier.",
                                                "details":{
                                                    "requestId":"4c67d45f-1a2b-4c60-a92c-9ceb5dfc2e1c",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query cannot be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateNotFound":{
                                        "description":"AssignUpdateNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"3da83b62-5365-4cc5-872a-2dc5b4fb7c6c",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected error while assigning study roles.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateServerError":{
                                        "description":"AssignUpdateServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while assigning query roles.",
                                                "details":{
                                                    "requestId":"d7c9169d-a622-4e95-9bf4-e7825c9f3220",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-queries-{queryId}-assignupdate-put",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-queries-queryid-assignupdate-put"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/queries/state":{
            "get":{
                "tags":[
                    "Query/Query Management/Get list of all query states"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to the legacy static documentation, this v1.0 endpoint returns the full list of query lifecycle states from the service so clients can stay synchronized without manual updates. This improves user integration reliability.",
                "operationId":"getQueryStates",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query states returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStatesSuccess":{
                                        "description":"QueryStatesSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "states":[
                                                    {
                                                        "name":"Opened",
                                                        "description":"Query is open."
                                                    },
                                                    {
                                                        "name":"Answered",
                                                        "description":"Query has been answered."
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStatesBadRequest":{
                                        "description":"QueryStatesBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"studyId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"f67c61d3-62c9-49a0-ae55-3f0d1af86033",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected error while fetching query states.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStatesServerError":{
                                        "description":"QueryStatesServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query states.",
                                                "details":{
                                                    "requestId":"2b3a4f22-32f4-43d6-822d-4ef8b7efc9a1",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-queries-state-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-queries-state-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/queries/queryStudyRolesTable":{
            "get":{
                "tags":[
                    "Query/Query Management/Get all historical records on DC_Query_Study_Roles table"
                ],
                "summary":"v1.0",
                "description":"Compared to the legacy reports, this v1.0 endpoint streams study role history for queries with pagination and consistent response envelopes. This improves user integration reliability.",
                "operationId":"getQueryStudyRolesTableContents",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to return per page. Negative values are rejected.",
                        "schema":{
                            "maximum":500,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":25,
                            "default":0
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Number of records to skip before returning results. Negative values are rejected.",
                        "schema":{
                            "maximum":10000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0,
                            "default":0
                        }
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort direction applied to versionStart (asc = ascending order, desc = descending order).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "example":"asc",
                            "default":"asc",
                            "enum":[
                                "asc",
                                "desc"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Provide values between 0 and 500.",
                        "schema":{
                            "maximum":500,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Number of rows to skip before returning results. Provide values between 0 and 10000.",
                        "schema":{
                            "maximum":10000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort direction applied to versionStart (asc = ascending order, desc = descending order).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "default":"asc",
                            "enum":[
                                "asc",
                                "desc"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query study role history retrieved successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStudyRolesSuccess":{
                                        "description":"QueryStudyRolesSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":124,
                                                "results":[
                                                    {
                                                        "id":"D51C3CF47508474FAEBEE590F27027BE",
                                                        "queryId":"839373875A5A451284309D7D984B1A67",
                                                        "studyRoleId":"B450BE73E0EB4FF9855A49743BFA6275",
                                                        "versionStart":"2024-04-02T17:33:03.958Z",
                                                        "versionEnd":"2024-04-02T17:35:13.333Z",
                                                        "operationType":"CREATED",
                                                        "userId":"0000000000000000000000000000000A",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "comment":null,
                                                        "reason":null
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStudyRolesBadRequest":{
                                        "description":"QueryStudyRolesBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"offset must be greater than or equal to 0.",
                                                "details":{
                                                    "requestId":"12f0f7a2-8940-4657-a9eb-d4c2fbd600c7",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no study role history rows match the filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStudyRolesNotFound":{
                                        "description":"QueryStudyRolesNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query study role history.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStudyRolesServerError":{
                                        "description":"QueryStudyRolesServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query study role history.",
                                                "details":{
                                                    "requestId":"bf1ad56f-2a0f-4beb-8ac1-6b0d44a3df68",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-queries-queryStudyRolesTable-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-queries-querystudyrolestable-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/queries/queryTable":{
            "get":{
                "tags":[
                    "Query/Query Management/Get all historical records on DC_Query table"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to direct database access, this v1.0 endpoint provides paginated DC_QUERY history over REST so clients can audit without custom SQL. This improves user integration reliability.",
                "operationId":"getQueryTableContents",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter. Provide a value to retrieve history rows belonging to a specific query.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to return per page. Negative values are rejected.",
                        "schema":{
                            "maximum":500,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":25,
                            "default":0
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Number of records to skip before returning results. Negative values are rejected.",
                        "schema":{
                            "maximum":10000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0,
                            "default":0
                        }
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort direction applied to versionStart (asc = ascending order, desc = descending order).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "example":"asc",
                            "default":"asc",
                            "enum":[
                                "asc",
                                "desc"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Provide values between 0 and 500.",
                        "schema":{
                            "maximum":500,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Number of rows to skip before returning results. Provide values between 0 and 10000.",
                        "schema":{
                            "maximum":10000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort direction applied to versionStart (asc = ascending order, desc = descending order).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "default":"asc",
                            "enum":[
                                "asc",
                                "desc"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query history retrieved successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AllQueriesSuccess":{
                                        "description":"AllQueriesSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":128,
                                                "results":[
                                                    {
                                                        "queryId":"839373875A5A451284309D7D984B1A67",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "queryState":"Opened"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AllQueriesBadRequest":{
                                        "description":"AllQueriesBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"limit must be greater than or equal to 0.",
                                                "details":{
                                                    "requestId":"9f3dcb87-53f2-4cd4-97c6-6ab6ddc362a5",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no query history entries exist for the supplied filter.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AllQueriesNotFound":{
                                        "description":"AllQueriesNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query history.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AllQueriesServerError":{
                                        "description":"AllQueriesServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query history.",
                                                "details":{
                                                    "requestId":"a6a57ce6-8f3e-4e91-8a40-26d6a1e4ae2d",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-queries-queryTable-get",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-queries-querytable-get"
            }
        },
        "/ec-query-svc/rest/v1.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Compared to pre-REST report generation flows, this v1.0 endpoint generates subject query reports through a standardized API payload and callback model. This benefits users by reducing manual report orchestration and improving integration traceability.",
                "operationId":"generateReport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Deprecated: Use latest version instead. Created user object",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v1.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v1.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v10.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v10.0",
                "description":"Deprecated: Compared to v9.0, this v10.0 endpoint returns open non-candidate query details with expanded filter support, improving user triage efficiency and report consistency.",
                "operationId":"getOpenQueryDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOResponse":{
                                        "summary":"QueryDetailsDTOResponseExample",
                                        "description":"QueryDetailsDTOResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":2,
                                                "limit":0,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"3\",\"label\":\"Asian\"}]",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    },
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":1,
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F37E567592A94AC0A3B4BBC5E14A88BC",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Gender",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query!",
                                                                "versionStart":"2025-12-11T14:08:02.372Z",
                                                                "value":"[{\"value\":\"1\",\"label\":\"Male\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v10.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v10.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v10.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v10.0",
                "description":"Deprecated: Compared to v9.0, this v10.0 endpoint returns query details with expanded filter options and enriched metadata, improving user troubleshooting and downstream integration reliability.",
                "operationId":"getQueryDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOResponse":{
                                        "summary":"QueryDetailsDTOResponseExample",
                                        "description":"QueryDetailsDTOResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":2,
                                                "limit":0,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"3\",\"label\":\"Asian\"}]",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    },
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":1,
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F37E567592A94AC0A3B4BBC5E14A88BC",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Gender",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query!",
                                                                "versionStart":"2025-12-11T14:08:02.372Z",
                                                                "value":"[{\"value\":\"1\",\"label\":\"Male\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v10.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v10.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v10.0/studies/{studyId}/{mode}/queries/{queryId}/assignupdate":{
            "put":{
                "tags":[
                    "Query/Query Management/Assign study roles to queries"
                ],
                "summary":"v10.0",
                "description":"Compared to v9.0, this v10 endpoint enables multiple study role assignments in one call, captures an optional audit comment, and enforces enhanced validation under the enableAssignedQueryEnhancements flag. This improves user integration reliability.",
                "operationId":"assignUpdate_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"discrepancyId",
                        "in":"query",
                        "description":"Discrepancy ID.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "description":"Unique discrepancy identifier. Negative values are rejected.",
                            "format":"int64"
                        },
                        "example":123456789
                    },
                    {
                        "name":"objectVersionNumber",
                        "in":"query",
                        "description":"Object version number.",
                        "schema":{
                            "minimum":0,
                            "type":"number",
                            "description":"Current object version number. Negative values are rejected.",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Assigned study roles to the query.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryAssignUpdateRequest"
                            },
                            "examples":{
                                "QueryAssignUpdateRequestDTO":{
                                    "summary":"QueryAssignUpdateRequestExample",
                                    "description":"QueryAssignUpdateRequestDTO",
                                    "value":{
                                        "studyRoles":[
                                            "68C35A92894A4ABCB2E2F6008E4402DB"
                                        ],
                                        "comment":"Assigning to CRA for reconciliation"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv9Response"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryAssignUpdateV10Response",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "id":"84D10452BCEB41ADBE04349CB2381A8E",
                                            "queryComment":"Route to CRA for follow-up",
                                            "state":"Opened",
                                            "subjectId":"7837ED89824C40329635EC020C290530",
                                            "dataElementId":"53550D9A0AE64EA882BAD656F11F2E28",
                                            "studyVersionStart":"2025-12-14T03:10:01.683Z",
                                            "formId":"6C25A394DBD74A6F87F55E107BD5601A",
                                            "formInstanceNumber":null,
                                            "siteId":"8F1E8B453D8F4B6EB278B324EFE38A7C",
                                            "eventId":"B406C2C169D84D92BF4A57C55409E909",
                                            "eventInstanceNumber":null,
                                            "studyRoles":[
                                                {
                                                    "studyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                                    "studyRoleName":"CRA"
                                                }
                                            ],
                                            "discrepancyId":123456789,
                                            "repeatFormNumber":null,
                                            "objectVersionNumber":2,
                                            "itemId":"BB481E24A5E24851872E45A1ADA8D85D",
                                            "propertyName":null,
                                            "propertyType":null,
                                            "ruleId":null,
                                            "isQueryCreator":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v10.0-studies-{studyId}-{mode}-queries-{queryId}-assignupdate-put",
                "x-filename-id":"ec-query-svc-rest-v10.0-studies-studyid-mode-queries-queryid-assignupdate-put"
            }
        },
        "/ec-query-svc/rest/v10.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"v10.0",
                "description":"Compared to v9.0, this v10 endpoint validates study role context before closing the query and returns the expanded QueryV9Response payload including user display name metadata.",
                "operationId":"closeQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "queryComment":"closing the query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv9Response"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                            "queryComment":"closing the query",
                                            "state":"Closed",
                                            "subjectId":"762744769B0E4E40B6A74691179BC578",
                                            "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                            "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                            "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                            "formInstanceNumber":null,
                                            "siteId":"CB9BBB0767114F599FE75616223D6665",
                                            "eventId":"3B95322B15144E4397B30305EB33E871",
                                            "eventInstanceNumber":null,
                                            "studyRoles":[
                                            ],
                                            "discrepancyId":123456789,
                                            "repeatFormNumber":null,
                                            "objectVersionNumber":2,
                                            "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                            "propertyName":null,
                                            "propertyType":null,
                                            "ruleId":null,
                                            "isQueryCreator":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v10.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v10.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v10.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"v10.0",
                "description":"Generates a new Subject Queries report by study ID and study mode (Testing, Training, or Production). Compared to the previous REST version, this endpoint standardizes report payload handling and callback metadata across versioned routes. This benefits users by improving report-generation consistency and integration traceability.",
                "operationId":"generateReport_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"queryDetails"
                        },
                        "example":"SUBJECT_QUERY"
                    },
                    {
                        "name":"sessionToken",
                        "in":"path",
                        "description":"Session token UUID identifying report retrieval session.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "summary":"SearchSpecsExample",
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldType":"list",
                                                "fieldName":"includeAuditTrail",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v10.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v10.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v11.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"v11.0",
                "description":"Compared to v10.0, this v11 endpoint exposes ruleTypeId and isSideBar filters and omits deprecated fields while returning QueryDetailsDTOv11Resp entries. This improves user integration reliability.",
                "operationId":"getOpenQueryDetails_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (study sandbox), training (training environment), active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOResponse":{
                                        "summary":"QueryDetailsDTOResponseExample",
                                        "description":"QueryDetailsDTOResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":2,
                                                "limit":0,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query created for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query created for item value: [{\"value\":\"3\",\"label\":\"Asian\"}]",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    },
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":1,
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F37E567592A94AC0A3B4BBC5E14A88BC",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Gender",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query!",
                                                                "versionStart":"2025-12-11T14:08:02.372Z",
                                                                "value":"[{\"value\":\"1\",\"label\":\"Male\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v11.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v11.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v11.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"v11.0",
                "description":"Compared to v10.0, this v11 endpoint adds ruleTypeId and isSideBar filters and returns QueryDetailsDTOv11Resp objects enriched with designer rule metadata. This improves user integration reliability.",
                "operationId":"getQueryDetails_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (study sandbox), training (training environment), active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOResponse":{
                                        "summary":"QueryDetailsDTOResponseExample",
                                        "description":"QueryDetailsDTOResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":2,
                                                "limit":0,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query created for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query created for item value: [{\"value\":\"3\",\"label\":\"Asian\"}]",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    },
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":1,
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F37E567592A94AC0A3B4BBC5E14A88BC",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Gender",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query!",
                                                                "versionStart":"2025-12-11T14:08:02.372Z",
                                                                "value":"[{\"value\":\"1\",\"label\":\"Male\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"0",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v11.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v11.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/openQueryCount":{
            "post":{
                "tags":[
                    "Query/Query Management/Get number of open queries in a study for selected subjects"
                ],
                "summary":"v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint enforces UUID validation for the subject list and returns the normalized count wrapper used across v2 query analytics. This improves user integration reliability.",
                "operationId":"getOpenQueryCount",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Subjects to get open query counts for.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/OpenQueryCountPostDTO"
                            },
                            "examples":{
                                "OpenQueryCountPostDTO":{
                                    "summary":"OpenQueryCountPostDTOExample",
                                    "description":"OpenQueryCountPostDTO",
                                    "value":{
                                        "subjects":[
                                            "32BA85281AD3434793BEB419C48CB88A",
                                            "762744769B0E4E40B6A74691179BC578"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Open query counts returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryCountResults"
                                },
                                "examples":{
                                    "QueryCountResults":{
                                        "summary":"QueryCountResultsExample",
                                        "description":"QueryCountResults",
                                        "value":{
                                            "status":"success",
                                            "version":"2",
                                            "errorData":null,
                                            "result":[
                                                {
                                                    "subjectName":"TestSite1184",
                                                    "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                    "eventId":"3B95322B15144E4397B30305EB33E871",
                                                    "eventInstanceNumber":null,
                                                    "answered":0,
                                                    "candidate":0,
                                                    "deleted":0,
                                                    "closed":0,
                                                    "opened":1,
                                                    "totalQueries":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryCountBadRequest":{
                                        "description":"OpenQueryCountBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjects must contain at least one identifier.",
                                                "details":{
                                                    "requestId":"c7c3d01a-5e6a-4ab9-9a9a-45de6991d6eb",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no open query counts exist for the supplied subjects.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryCountResults"
                                },
                                "examples":{
                                    "OpenQueryCountNotFound":{
                                        "description":"OpenQueryCountNotFound",
                                        "value":{
                                            "status":"success",
                                            "version":"2",
                                            "errorData":null,
                                            "result":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving open query counts.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryCountServerError":{
                                        "description":"OpenQueryCountServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving open query counts.",
                                                "details":{
                                                    "requestId":"9d68cbcc-0551-47d3-8f83-1e2c2bfcc12e",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-openQueryCount-post",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-openquerycount-post"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queryCount":{
            "post":{
                "tags":[
                    "Query/Query Management/Get number of queries in a study"
                ],
                "summary":"v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint normalizes UUID casing, returns query counts in a consistent wrapper, and validates subject and state filters more rigorously. This improves user integration reliability.",
                "operationId":"getQueryCount",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Subjects and query states to get query counts for.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryCountPostDTO"
                            },
                            "examples":{
                                "QueryCountPostDTO":{
                                    "summary":"QueryCountPostDTOExample",
                                    "description":"QueryCountPostDTO",
                                    "value":{
                                        "subjects":[
                                            "32BA85281AD3434793BEB419C48CB88A",
                                            "762744769B0E4E40B6A74691179BC578",
                                            "E79EE728FEA84991AE2EB705A73A7DB1"
                                        ],
                                        "states":[
                                            "Candidate",
                                            "Opened",
                                            "Answered"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query counts returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryCountResults"
                                },
                                "examples":{
                                    "QueryCountResults":{
                                        "description":"QueryCountResults",
                                        "value":{
                                            "status":"success",
                                            "version":"2",
                                            "errorData":null,
                                            "result":[
                                                {
                                                    "subjectName":"TestSite1184",
                                                    "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                    "eventId":"3B95322B15144E4397B30305EB33E871",
                                                    "eventInstanceNumber":null,
                                                    "opened":1,
                                                    "answered":0,
                                                    "candidate":0,
                                                    "deleted":0,
                                                    "closed":0,
                                                    "totalQueries":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryCountBadRequest":{
                                        "description":"QueryCountBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjects must contain at least one identifier.",
                                                "details":{
                                                    "requestId":"4f1ca613-4b97-4f0b-a0f0-1c0b6141dbfa",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no counts are available for the supplied filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryCountResults"
                                },
                                "examples":{
                                    "QueryCountNotFound":{
                                        "description":"QueryCountNotFound",
                                        "value":{
                                            "status":"success",
                                            "version":"2",
                                            "errorData":null,
                                            "result":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query counts.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryCountServerError":{
                                        "description":"QueryCountServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query counts.",
                                                "details":{
                                                    "requestId":"ab4b9f8e-ec2d-4ab3-8ff6-847d5005e831",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queryCount-post",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-querycount-post"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint returns QueryDetailsDTOV2 payloads with repeat form numbers and enforces stricter pagination validation so audit consumers receive consistent metadata. This improves user integration reliability.",
                "operationId":"getQueryDetails_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query details returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsSuccess":{
                                        "description":"QueryDetailsSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "results":[
                                                    {
                                                        "queryId":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "state":"Opened",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsBadRequest":{
                                        "description":"QueryDetailsBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjectId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"9f811f1f-ef2a-44c9-9152-5ae3e4e7f6d0",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no query data matches the supplied filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsNotFound":{
                                        "description":"QueryDetailsNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsServerError":{
                                        "description":"QueryDetailsServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query details.",
                                                "details":{
                                                    "requestId":"6c3e9d6f-54fb-4b4d-a8b2-6b7572fbb8f4",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/querymgmt/openQueryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of opened queries"
                ],
                "summary":"v2.0",
                "description":"Compared to v1.0, this v2.0 endpoint tightens open-query management filters and aligns pagination metadata with v2 query-management responses. This benefits users by making open-query list behavior more consistent across tools.",
                "operationId":"getOpenQueryDetails_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "QueryManagementRequestDTO":{
                                    "summary":"QueryManagementRequestDTOExample",
                                    "description":"QueryManagementRequestDTO",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":true
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "queryState":[
                                            "Opened"
                                        ],
                                        "subjectIdList":[
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                            "CB9BBB0767114F599FE75616223D6665"
                                        ],
                                        "searchStr":"open",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "currentRecord":"1",
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOv10Resp":{
                                        "summary":"QueryDetailsDTOv10RespExample",
                                        "description":"QueryDetailsDTOv10Resp",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"3\",\"label\":\"Asian\"}",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"3",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-querymgmt-openQueryList-post",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-querymgmt-openquerylist-post"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/querymgmt/queryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of queries based on multiple parameters"
                ],
                "summary":"v2.0",
                "description":"Compared to v1.0, this v2.0 endpoint adds discrepancy-aware pagination metadata and enforces stricter filter validation for self-service dashboards. This improves user integration reliability.",
                "operationId":"getQueryDetails_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "QueryManagementRequestDTO":{
                                    "summary":"QueryManagementRequestDTOExample",
                                    "description":"QueryManagementRequestDTO",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":false
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "queryState":[
                                            "Answered",
                                            "Candidate",
                                            "Opened"
                                        ],
                                        "currentRecord":"1",
                                        "subjectIdList":[
                                            "C7A97B54EB144646A5E9322A81C42C2F",
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                            "CB9BBB0767114F599FE75616223D6665"
                                        ],
                                        "searchStr":"visit",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query management results returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementSuccess":{
                                        "description":"QueryManagementSuccess",
                                        "value":{
                                            "status":"success",
                                            "version":"2",
                                            "errorData":null,
                                            "result":{
                                                "hasMore":false,
                                                "count":3,
                                                "results":[
                                                    {
                                                        "subjectName":"TestSite1184",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                                        "opened":1,
                                                        "totalQueries":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementBadRequest":{
                                        "description":"QueryManagementBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"lastUpdated must match dd-MMM-yyyy.",
                                                "details":{
                                                    "requestId":"31e98fdc-7252-4c53-953c-7a12b602808f",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no queries match the provided filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementNotFound":{
                                        "description":"QueryManagementNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query management data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryManagementServerError":{
                                        "description":"QueryManagementServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query management records.",
                                                "details":{
                                                    "requestId":"5a94bc0f-9dc5-4d3a-9b51-b9f76f681a73",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-querymgmt-queryList-post",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-querymgmt-querylist-post"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint validates answer payloads against the expanded v2 schema and emits discrepancy metadata required by downstream audit pipelines. This improves user integration reliability.",
                "operationId":"answerQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv2"
                            },
                            "examples":{
                                "AnswerQueryRequest":{
                                    "description":"AnswerQueryRequest",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Visit date clarified by site.",
                                        "state":"Answered",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query answered successfully and audit metadata persisted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQuerySuccess":{
                                        "description":"AnswerQuerySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Answered",
                                                "queryComment":"Visit date clarified by site.",
                                                "objectVersionNumber":3
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryBadRequest":{
                                        "description":"AnswerQueryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"queryComment must contain between 1 and 2048 characters.",
                                                "details":{
                                                    "requestId":"a89a1b6b-038b-4f16-8f31-c7de8f0ab2b1",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the specified query identifier does not exist in the study and mode provided.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryNotFound":{
                                        "description":"AnswerQueryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"f0d6dd7c-3380-4db0-8d80-92cf2bcf9dd5",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while recording the answer.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryServerError":{
                                        "description":"AnswerQueryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while answering the query.",
                                                "details":{
                                                    "requestId":"0f1ecfe7-5d03-41d4-b9f5-87fb9c1b2d4e",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queries/{queryId}/assignupdate":{
            "put":{
                "tags":[
                    "Query/Query Management/Assign study roles to queries"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint accepts discrepancy and object version numbers to support optimistic locking when assigning study roles. This improves user integration reliability.",
                "operationId":"assignUpdate_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"discrepancyId",
                        "in":"query",
                        "description":"Optional discrepancy identifier used for optimistic locking. Provide zero or positive values only.",
                        "schema":{
                            "maximum":"999999999999",
                            "minimum":0,
                            "type":"integer",
                            "format":"int64",
                            "example":123456789
                        }
                    },
                    {
                        "name":"objectVersionNumber",
                        "in":"query",
                        "description":"Optional object version number for optimistic locking. Provide zero or positive values only.",
                        "schema":{
                            "maximum":999999999,
                            "minimum":0,
                            "type":"number",
                            "format":"bigdecimal",
                            "example":4
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Assigned study roles to the query.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/Query DTO"
                            },
                            "examples":{
                                "AssignUpdateRequest":{
                                    "description":"AssignUpdateRequest",
                                    "value":{
                                        "studyRoles":[
                                            "B450BE73E0EB4FF9855A49743BFA6275",
                                            "6AF54DB79B764662B685D68C52AB0B84"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Study roles assigned successfully and the updated query snapshot is returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateSuccess":{
                                        "description":"AssignUpdateSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "studyRoles":[
                                                    "B450BE73E0EB4FF9855A49743BFA6275",
                                                    "6AF54DB79B764662B685D68C52AB0B84"
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateBadRequest":{
                                        "description":"AssignUpdateBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"studyRoles must contain at least one role identifier.",
                                                "details":{
                                                    "requestId":"d7df620c-011e-4673-b3ba-9af7e0361f18",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query cannot be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateNotFound":{
                                        "description":"AssignUpdateNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"7e50a4f9-0c69-4a24-87ee-76c4dcd9f5e2",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while assigning study roles.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AssignUpdateServerError":{
                                        "description":"AssignUpdateServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while assigning query roles.",
                                                "details":{
                                                    "requestId":"dbe1f344-7ec1-4a16-9ce4-2f9b5e2e5b67",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queries-{queryId}-assignupdate-put",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-queries-queryid-assignupdate-put"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queries/{queryId}/delete":{
            "put":{
                "tags":[
                    "Query/Query Management/Delete an existing query"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint enforces soft-delete semantics and returns audit attributes so integrators can distinguish deletions from closures. This improves user integration reliability.",
                "operationId":"deleteQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv2"
                            },
                            "examples":{
                                "DeleteQueryRequest":{
                                    "description":"DeleteQueryRequest",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Query obsolete after subject merge.",
                                        "state":"Deleted",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query removed successfully with audit trail captured.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQuerySuccess":{
                                        "description":"DeleteQuerySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Deleted",
                                                "objectVersionNumber":4
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryBadRequest":{
                                        "description":"DeleteQueryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"queryId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"ce8c0f6b-cf58-43c3-b8d5-9bf51906e9c9",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query is not present in the study and mode provided.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryNotFound":{
                                        "description":"DeleteQueryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"6870d4db-12ca-4cbe-8cb3-9b822438a0ae",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while deleting the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryServerError":{
                                        "description":"DeleteQueryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while deleting the query.",
                                                "details":{
                                                    "requestId":"18be0e3c-afdf-4c36-876d-0fdb7e1e3f91",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queries-{queryId}-delete-put",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-queries-queryid-delete-put"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queries/state":{
            "get":{
                "tags":[
                    "Query/Query Management/Get list of all query states"
                ],
                "summary":"v2.0",
                "description":"Compared to v1.0, this v2.0 endpoint includes creator and timestamp metadata so dashboards can render when each state became available. This improves user integration reliability.",
                "operationId":"getQueryStates_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query states returned successfully with metadata.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStatesSuccess":{
                                        "description":"QueryStatesSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "states":[
                                                    {
                                                        "state":"Candidate",
                                                        "systemState":"Candidate",
                                                        "stateId":0,
                                                        "createdBy":"SYSTEM",
                                                        "creationDate":"2023-07-07T15:30:16.000Z",
                                                        "lastUpdatedBy":"SYSTEM",
                                                        "lastUpdateDate":"2023-07-07T15:30:16.000Z",
                                                        "softwareVersionNumber":1
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryStatesBadRequest":{
                                        "description":"QueryStatesBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"studyId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"f67c61d3-62c9-49a0-ae55-3f0d1af86033",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queries-state-get",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-queries-state-get"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/queries/queryTable":{
            "get":{
                "tags":[
                    "Query/Query Management/Get all historical records on DC_Query table"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint surfaces repeat form numbers and enforces case-insensitive GUID formatting so downstream analytics receive a richer, normalized dataset. This improves user integration reliability.",
                "operationId":"getQueryTableContents_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter. Provide a value to retrieve history rows belonging to a specific query.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Optional query identifier filter.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Provide values between 0 and 500.",
                        "schema":{
                            "maximum":500,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Number of rows to skip before returning results. Provide values between 0 and 10000.",
                        "schema":{
                            "maximum":10000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort direction applied to versionStart (asc = ascending order, desc = descending order).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "default":"asc",
                            "enum":[
                                "asc",
                                "desc"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query history retrieved successfully with repeat form metadata.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryHistorySuccess":{
                                        "description":"QueryHistorySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "totalResults":128,
                                                "results":[
                                                    {
                                                        "id":"839373875A5A451284309D7D984B1A67",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "state":"Opened",
                                                        "repeatFormNumber":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryHistoryBadRequest":{
                                        "description":"QueryHistoryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"limit must be greater than or equal to 0.",
                                                "details":{
                                                    "requestId":"9f3dcb87-53f2-4cd4-97c6-6ab6ddc362a5",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no query history entries exist for the supplied filter.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryHistoryNotFound":{
                                        "description":"QueryHistoryNotFound",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query history.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryHistoryServerError":{
                                        "description":"QueryHistoryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query history.",
                                                "details":{
                                                    "requestId":"a6a57ce6-8f3e-4e91-8a40-26d6a1e4ae2d",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"2"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-queries-queryTable-get",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-queries-querytable-get"
            }
        },
        "/ec-query-svc/rest/v2.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Compared to v1.0, this v2.0 endpoint keeps subject query report generation semantics while aligning the request envelope with v2 API conventions. This benefits users by improving consistency for versioned report clients.",
                "operationId":"generateReport_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Deprecated: Use latest version instead. Created user object",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v2.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v2.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Compared to v2.0, this v3.0 endpoint adds propertyType/propertyName and userName metadata for each open query so the assigned query enhancements feature can display enriched context.",
                "operationId":"getOpenQueryDetails_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Open query details returned successfully with property metadata.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV3Success":{
                                        "description":"OpenQueryDetailsV3Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"6B8F3F017E9E4E9D894D86AB85DD0E9F",
                                                        "subjectName":"Subject 002",
                                                        "subjectId":"E0DFEB5A7DD14B8785269ABCFB5CA14A",
                                                        "visitName":"Visit 1",
                                                        "formName":"Form A",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "itemName":"Vital Sign",
                                                        "eventInstanceNumber":0,
                                                        "formInstanceNumber":0,
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query remains open pending site response."
                                                            }
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No Content."
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV3BadRequest":{
                                        "description":"OpenQueryDetailsV3BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4001",
                                                "errorMessage":"queryState must exclude Candidate when retrieving open query details.",
                                                "details":{
                                                    "requestId":"c3cf7f71-2f4b-4ce0-91fd-5ef1ec0f11c1",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving open query details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV3ServerError":{
                                        "description":"OpenQueryDetailsV3ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving open query details.",
                                                "details":{
                                                    "requestId":"4d75bfad-0dc9-44fd-8d0e-4a62b77a2b0a",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Compared to v2.0, this v3.0 endpoint adds propertyType/propertyName metadata to each record and accepts formInstanceNumber filters so dashboards can differentiate repeated form discrepancies. This improves user integration reliability.",
                "operationId":"getQueryDetails_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query details returned successfully with property metadata.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV3Success":{
                                        "description":"QueryDetailsV3Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                        "subjectName":"Subject 001",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "visitName":"Screening Visit",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "formName":"Screening Form",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "itemName":"Visit Start Date",
                                                        "studyVersion":"2024.1",
                                                        "eventInstanceNumber":0,
                                                        "formInstanceNumber":0,
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query created for missing visit start date."
                                                            }
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No Content."
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV3BadRequest":{
                                        "description":"QueryDetailsV3BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjectId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"5f6a0c94-ef20-4fcb-9b95-bf6c6b89c1df",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving query details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV3ServerError":{
                                        "description":"QueryDetailsV3ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving query details.",
                                                "details":{
                                                    "requestId":"1b918c55-6214-4b6b-b3ce-9af5f99ba9e6",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"3"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/querymgmt/openQueryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of opened queries"
                ],
                "summary":"v3.0",
                "description":"Compared to v2.0, this v3.0 endpoint returns open query grids enriched with propertyType/propertyName and userName metadata aligned with the assigned query enhancements rollout. This benefits users by exposing assignment context directly in open-query dashboards.",
                "operationId":"getOpenQueryDetails_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"allSitesUser",
                        "in":"query",
                        "description":"Indicates if the requesting user has access to all sites for the study.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "QueryManagementRequestDTO":{
                                    "summary":"QueryManagementRequestDTOExample",
                                    "description":"QueryManagementRequestDTO",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":true
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "queryState":[
                                            "Opened"
                                        ],
                                        "subjectIdList":[
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                            "CB9BBB0767114F599FE75616223D6665"
                                        ],
                                        "searchStr":"open",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "currentRecord":"1",
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsDTOv12Resp":{
                                        "summary":"QueryDetailsDTOv12RespExample",
                                        "description":"QueryDetailsDTOv12Resp",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"CE15193C2D374DB780388C1B7C79F516",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "formInstanceNumber":null,
                                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                        "eventInstanceNumber":null,
                                                        "studyRoles":[
                                                        ],
                                                        "ExistingStudyRoles":null,
                                                        "discrepancyId":123456789,
                                                        "repeatFormNumber":null,
                                                        "objectVersionNumber":2,
                                                        "itemId":"6178E2B4CFC74C7F8ED8F9E81B7A72BF",
                                                        "propertyName":null,
                                                        "propertyType":null,
                                                        "ruleId":"F582F4C4F03A45069D64C551E0CDF38A",
                                                        "subjectName":"TestSite1184",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "studyVersion":"15.0.0.75",
                                                        "itemName":"Race",
                                                        "comments":[
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"4\",\"label\":\"Caucasian\"}",
                                                                "versionStart":"2025-12-11T14:46:59.828Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            },
                                                            {
                                                                "state":"Opened",
                                                                "queryComment":"Query creaetd for item value: [{\"value\":\"3\",\"label\":\"Asian\"}",
                                                                "versionStart":"2025-12-11T14:35:23.861Z",
                                                                "value":"[{\"value\":\"4\",\"label\":\"Caucasian\"}]",
                                                                "userInfo":{
                                                                    "id":"00000000000000000000000000000003",
                                                                    "firstName":"Auto",
                                                                    "lastName":"Calculation",
                                                                    "userName":"autocalc",
                                                                    "emailAddress":"N/A"
                                                                },
                                                                "userDisplayName":"Auto Calculation",
                                                                "userStudyRoleId":null,
                                                                "userStudyRoleName":null
                                                            }
                                                        ],
                                                        "queryModAllowedByUser":false,
                                                        "userCanCloseQuery":true,
                                                        "userCanAnswerQuery":true,
                                                        "queryAge":"3",
                                                        "isCycle":false,
                                                        "typeId":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-querymgmt-openQueryList-post",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-querymgmt-openquerylist-post"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/querymgmt/queryList":{
            "post":{
                "tags":[
                    "Query/Query Management/Get list of queries based on multiple parameters"
                ],
                "summary":"v3.0",
                "description":"Compared to v2.0, this v3.0 endpoint delivers propertyType/propertyName columns and query executor userName so dashboards can display assignment metadata introduced with the assigned query enhancements feature. This benefits users by improving query-management visibility without additional API calls.",
                "operationId":"getQueryDetails_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"allSitesUser",
                        "in":"query",
                        "description":"Indicates if the requesting user has access to all sites for the study.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Query details filter parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryManagementRequestDTO"
                            },
                            "examples":{
                                "QueryManagementRequestDTO":{
                                    "summary":"QueryManagementRequestDTOExample",
                                    "description":"QueryManagementRequestDTO",
                                    "value":{
                                        "paginationParam":{
                                            "offset":0,
                                            "limit":25,
                                            "orderasc":false
                                        },
                                        "lastUpdated":"2025-12-11T14:07:21.398Z",
                                        "queryType":"All",
                                        "assignedRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "queryState":[
                                            "Answered",
                                            "Candidate",
                                            "Opened"
                                        ],
                                        "currentRecord":"1",
                                        "subjectIdList":[
                                            "C7A97B54EB144646A5E9322A81C42C2F",
                                            "762744769B0E4E40B6A74691179BC578"
                                        ],
                                        "siteIdList":[
                                            "CB9BBB0767114F599FE75616223D6665"
                                        ],
                                        "searchStr":"visit",
                                        "queryGridView":"all",
                                        "queryCreatedBy":"autocalc",
                                        "queryByID":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryByAge":"-7",
                                        "queryClosedBy":"",
                                        "creatorStudyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                        "closedStudyRoleId":"",
                                        "formIdList":[
                                        ],
                                        "visitIdList":[
                                        ],
                                        "ruleTypeId":"",
                                        "isToDo":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryCountResults":{
                                        "summary":"QueryCountResultsExample",
                                        "description":"QueryCountResults",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "count":3,
                                                "results":[
                                                    {
                                                        "subjectName":"TestSite1184",
                                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                                        "eventInstanceNumber":null,
                                                        "candidate":0,
                                                        "answered":0,
                                                        "opened":1,
                                                        "totalQueries":1
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-querymgmt-queryList-post",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-querymgmt-querylist-post"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/queries/candidate":{
            "post":{
                "tags":[
                    "Query/Query Management/Create candidate query"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Compared to v2.0, this v3.0 endpoint accepts an optional formInstanceNumber and returns property metadata (propertyType/propertyName and userName) within the response so downstream dashboards align with the expanded audit view.",
                "operationId":"createCandidateQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv3"
                            },
                            "examples":{
                                "CreateCandidateQueryRequest":{
                                    "description":"CreateCandidateQueryRequest",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Visit date clarification required.",
                                        "state":"Candidate",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-queries-candidate-post",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-queries-candidate-post"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Compared to v2.0, this v3.0 endpoint captures optional formInstanceNumber values and returns the enriched response payload containing propertyType/propertyName and userName metadata required by the v3 query table.",
                "operationId":"createOpenQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv3"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/queries/queryTable":{
            "get":{
                "tags":[
                    "Query/Query Management/Get all historical records on DC_Query table"
                ],
                "summary":"v3.0",
                "description":"Compared to v2.0, this v3.0 endpoint exposes the new propertyType, propertyName, and userName columns introduced for assigned query enhancements while maintaining the normalized pagination contract. This benefits users by enabling richer query-table analytics without custom joins.",
                "operationId":"getQueryTableContents_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"query",
                        "description":"Query ID.",
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"value"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Limit",
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"value"
                        },
                        "example":20
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Offset",
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"value"
                        },
                        "example":840
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sort Order: desc-descending order, any other value-ascending order.",
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"value",
                            "default":"asc"
                        },
                        "example":"desc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryTabDTOV3"
                                    }
                                },
                                "examples":{
                                    "QueryTabDTOV3":{
                                        "summary":"QueryTabDTOV3Example",
                                        "description":"QueryTabDTOV3",
                                        "value":[
                                            {
                                                "id":"04E0CA364D7044D1B273DA23F9D756C8",
                                                "versionStart":"2023-08-03T20:00:44.000Z",
                                                "versionEnd":"2023-08-03T20:02:17.992Z",
                                                "ruleId":"EDBD75A091BF4BC19153AAD7599943C3",
                                                "queryComment":"Query created for VSD: Thu Aug 03 2023 00:00:00 GMT+0000 (GMT)",
                                                "state":"Opened",
                                                "subjectId":"A57172DC69BC4A4892715AFECD037C92",
                                                "dataElementId":null,
                                                "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "formInstanceNumber":null,
                                                "objectVersionNumber":1,
                                                "itemId":"3C38506CBC4E43189A4ED1085C1F7C1E",
                                                "operationType":"CREATED",
                                                "reason":"Created from store procedure: QUERY_INSERT_WITH_CONDITION",
                                                "eventInstanceNumber":null,
                                                "softwareVersionNumber":1,
                                                "subjectNumber":"TestSite123",
                                                "comment":null,
                                                "userId":"00000000000000000000000000000003",
                                                "branchId":null,
                                                "studyRoleId":null,
                                                "creatorStudyRoleId":null,
                                                "repeatFormNumber":null,
                                                "discrepancyId":123456789,
                                                "propertyType":null,
                                                "propertyName":null,
                                                "userName":null
                                            },
                                            {
                                                "id":"6B8F3F017E9E4E9D894D86AB85DD0E9F",
                                                "versionStart":"2023-08-03T18:09:44.425Z",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "ruleId":"2FAF18863B7C4A2EA12B6A7E77F0D57A",
                                                "queryComment":"ss",
                                                "state":"Closed",
                                                "subjectId":"E0DFEB5A7DD14B8785269ABCFB5CA14A",
                                                "dataElementId":"AD453E278E7F49409435F5B4A0F86B53",
                                                "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "formInstanceNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "operationType":"UPDATED",
                                                "reason":"Created from store procedure: QUERY_INSERT_WITH_CONDITION",
                                                "eventInstanceNumber":null,
                                                "softwareVersionNumber":1,
                                                "subjectNumber":"TestSite119",
                                                "comment":null,
                                                "userId":"0000000000000000000000000000000A",
                                                "branchId":null,
                                                "studyRoleId":"DCC087221E5E4AAEBD3243C2AD7BA6D0",
                                                "creatorStudyRoleId":null,
                                                "repeatFormNumber":null,
                                                "discrepancyId":123456789,
                                                "propertyType":null,
                                                "propertyName":null,
                                                "userName":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-queries-queryTable-get",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-queries-querytable-get"
            }
        },
        "/ec-query-svc/rest/v3.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Compared to v2.0, this v3.0 endpoint aligns subject query report generation with v3 version routing and metadata expectations. This benefits users by simplifying report integrations during version upgrades.",
                "operationId":"generateReport_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v3.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v3.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v4.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Compared to v3.0, this v4.0 endpoint introduces itemId filtering with safeguard validation so clients can focus on specific items without compromising subject scoping. This improves user integration reliability.",
                "operationId":"getOpenQueryDetails_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Open query details returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV4Success":{
                                        "description":"OpenQueryDetailsV4Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"6B8F3F017E9E4E9D894D86AB85DD0E9F",
                                                        "subjectName":"Subject 002",
                                                        "subjectId":"E0DFEB5A7DD14B8785269ABCFB5CA14A",
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "eventInstanceNumber":0,
                                                        "formInstanceNumber":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No Content."
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV4BadRequest":{
                                        "description":"OpenQueryDetailsV4BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjectId must be provided when itemId is specified.",
                                                "details":{
                                                    "requestId":"4d09a5ce-8663-4a3a-b896-3c6f4b7195d3",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving open query details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV4ServerError":{
                                        "description":"OpenQueryDetailsV4ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving open query details.",
                                                "details":{
                                                    "requestId":"aeec65bd-9da1-47b0-9af2-8f32e50d911d",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v4.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v4.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v4.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Compared to v3.0, this v4.0 endpoint validates objectVersionNumber and returns QueryDTOv4 so integrations can confirm the latest state after closure. This improves user integration reliability.",
                "operationId":"closeQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv4"
                            },
                            "examples":{
                                "CloseQueryRequest":{
                                    "description":"CloseQueryRequest",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Query closed after sponsor confirmation.",
                                        "state":"Closed",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0,
                                        "objectVersionNumber":3
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query closed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQuerySuccess":{
                                        "description":"CloseQuerySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Closed",
                                                "objectVersionNumber":4,
                                                "subjectId":"762744769B0E4E40B6A74691179BC578"
                                            },
                                            "errorData":null,
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryBadRequest":{
                                        "description":"CloseQueryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4090",
                                                "errorMessage":"Optimistic locking failure. objectVersionNumber must match the current value.",
                                                "details":{
                                                    "requestId":"bb4d2c79-2197-4c87-8d82-12379a4f5c9a",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query cannot be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryNotFound":{
                                        "description":"CloseQueryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"c69f99bc-4a1d-4a3c-bbda-f8d5829f6496",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while closing the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryServerError":{
                                        "description":"CloseQueryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while closing the query.",
                                                "details":{
                                                    "requestId":"2f685cae-3d2c-4a8d-9d4e-18c493821227",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v4.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v4.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v4.0/studies/{studyId}/{mode}/queries/{queryId}":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query by ID"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Compared to v3.0, this v4.0 endpoint returns QueryDTOv4 payloads that include objectVersionNumber and study role metadata so clients can enforce optimistic locking when reading queries. This improves user integration reliability.",
                "operationId":"getQueryByQueryId",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query retrieved successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "GetQuerySuccess":{
                                        "description":"GetQuerySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Closed",
                                                "objectVersionNumber":4,
                                                "subjectId":"762744769B0E4E40B6A74691179BC578"
                                            },
                                            "errorData":null,
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "GetQueryBadRequest":{
                                        "description":"GetQueryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"queryId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"4a7b10cb-0247-4f80-86bd-855c3f1f6d8b",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no query matches the supplied identifier.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "GetQueryNotFound":{
                                        "description":"GetQueryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"75fd6564-1424-4a72-9d28-53f61a5f830f",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while retrieving the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "GetQueryServerError":{
                                        "description":"GetQueryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while retrieving the query.",
                                                "details":{
                                                    "requestId":"0ffa5ee4-2a1f-4c6d-88ae-4eaa3bbd62d9",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v4.0-studies-{studyId}-{mode}-queries-{queryId}-get",
                "x-filename-id":"ec-query-svc-rest-v4.0-studies-studyid-mode-queries-queryid-get"
            }
        },
        "/ec-query-svc/rest/v4.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Compared to v3.0, this v4.0 endpoint requires objectVersionNumber in the payload and returns QueryDTOv4 responses so clients can perform optimistic locking. This improves user integration reliability.",
                "operationId":"openQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to open.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to open.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv4"
                            },
                            "examples":{
                                "OpenQueryRequest":{
                                    "description":"OpenQueryRequest",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Query reopened after site clarification.",
                                        "state":"Opened",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0,
                                        "objectVersionNumber":2
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query reopened successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQuerySuccess":{
                                        "summary":"Successful reopen with updated object version",
                                        "description":"OpenQuerySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Opened",
                                                "objectVersionNumber":3,
                                                "subjectId":"762744769B0E4E40B6A74691179BC578"
                                            },
                                            "errorData":null,
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryBadRequest":{
                                        "description":"OpenQueryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"objectVersionNumber must be zero or a positive integer.",
                                                "details":{
                                                    "requestId":"7a0f71f6-5d3d-4ad9-9f03-5a9df2075a2c",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the specified query identifier cannot be found for the study and mode.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryNotFound":{
                                        "description":"OpenQueryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"8f6a2b9b-2d33-4c50-a367-30f7b3df9954",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while reopening the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryServerError":{
                                        "description":"OpenQueryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while reopening the query.",
                                                "details":{
                                                    "requestId":"b9ae8aaf-033a-48d8-995f-55fbe6fbfc93",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"4"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v4.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v4.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v4.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Compared to v3.0, this v4.0 endpoint preserves report-generation behavior while aligning with v4 versioned response handling. This benefits users by keeping report clients stable when adopting v4.",
                "operationId":"generateReport_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v4.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v4.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDetailsDTOV5 payloads that add designer rule identifiers alongside visit property metadata for each open query. This improves user integration reliability.",
                "operationId":"getOpenQueryDetails_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Open query details returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV5Success":{
                                        "description":"OpenQueryDetailsV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"6B8F3F017E9E4E9D894D86AB85DD0E9F",
                                                        "subjectName":"Subject 002",
                                                        "subjectId":"E0DFEB5A7DD14B8785269ABCFB5CA14A",
                                                        "ruleId":"84D10452BCEB41ADBE04349CB2381A8E",
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "eventInstanceNumber":0,
                                                        "formInstanceNumber":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No Content."
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV5BadRequest":{
                                        "description":"OpenQueryDetailsV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Candidate and Deleted states are not permitted for open query details.",
                                                "details":{
                                                    "requestId":"7afab5bd-d917-4717-aed4-8ca86eeb3a25",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no open query data matches the supplied filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryDetailsV5NotFound":{
                                        "description":"OpenQueryDetailsV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Open query details not found for the supplied filters.",
                                                "details":{
                                                    "requestId":"a8c40c18-52bc-4c6d-a493-8a1b5d7b7956",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDetailsDTOV5 payloads enriched with designer rule identifiers and visit property metadata for automation parity. This improves user integration reliability.",
                "operationId":"getQueryDetails_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query details returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV5Success":{
                                        "description":"QueryDetailsV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "count":1,
                                                "limit":25,
                                                "offset":0,
                                                "results":[
                                                    {
                                                        "id":"6B8F3F017E9E4E9D894D86AB85DD0E9F",
                                                        "subjectName":"Subject 002",
                                                        "subjectId":"E0DFEB5A7DD14B8785269ABCFB5CA14A",
                                                        "visitName":"Screening Visit",
                                                        "formName":"Screening Form",
                                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                        "visitId":"3B95322B15144E4397B30305EB33E871",
                                                        "ruleId":"84D10452BCEB41ADBE04349CB2381A8E",
                                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                        "eventInstanceNumber":0,
                                                        "formInstanceNumber":0
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"No Content."
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV5BadRequest":{
                                        "description":"QueryDetailsV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjectId must be provided when itemId is specified.",
                                                "details":{
                                                    "requestId":"bb04cf62-4cb2-4cb3-8316-6ce21ffad4c6",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when no query data matches the supplied filters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDetailsV5NotFound":{
                                        "description":"QueryDetailsV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query details not found for the supplied filters.",
                                                "details":{
                                                    "requestId":"6024262d-4f1d-47cb-9a8d-8f6010db0dc7",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDTOv5 payloads containing property metadata and assigned study roles so property automation remains synchronized after answering. This improves user integration reliability.",
                "operationId":"answerQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "AnswerQueryV5Request":{
                                    "description":"AnswerQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Visit start date provided by site.",
                                        "state":"Answered",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0,
                                        "objectVersionNumber":5,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query answered successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryV5Success":{
                                        "description":"AnswerQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Answered",
                                                "objectVersionNumber":5,
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryV5BadRequest":{
                                        "description":"AnswerQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"queryComment must contain between 1 and 2048 characters.",
                                                "details":{
                                                    "requestId":"1d8245ac-0b87-401d-af54-fa2bc5d1a5fb",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query cannot be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryV5NotFound":{
                                        "description":"AnswerQueryV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"7e7c4d73-1433-4090-a6cd-4c1a53f3567d",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while answering the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AnswerQueryV5ServerError":{
                                        "description":"AnswerQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while answering the query.",
                                                "details":{
                                                    "requestId":"de4c9f69-2989-4ae5-94a9-76cf09bd3c21",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDTOv5 payloads with property metadata and study role assignments so visit property automation can reconcile closed queries. This improves user integration reliability.",
                "operationId":"closeQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "CloseQueryV5Request":{
                                    "description":"CloseQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Query closed after visit start date verification.",
                                        "state":"Closed",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0,
                                        "objectVersionNumber":4,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query closed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryV5Success":{
                                        "description":"CloseQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Closed",
                                                "objectVersionNumber":4,
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryV5BadRequest":{
                                        "description":"CloseQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4090",
                                                "errorMessage":"Optimistic locking failure. objectVersionNumber must match the current value.",
                                                "details":{
                                                    "requestId":"4fa0f8b3-1c1e-4d41-95f3-f0af2f6d0f31",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the target query cannot be found for the supplied study, mode, and queryId.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryV5NotFound":{
                                        "description":"CloseQueryV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"a1b45e9d-2d77-4f2d-9d2f-2b0aa98f4f5b",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while closing the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CloseQueryV5ServerError":{
                                        "description":"CloseQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while closing the query.",
                                                "details":{
                                                    "requestId":"cc01a7ce-5cc7-4c90-8f44-3c02d4f5f87e",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/candidate":{
            "post":{
                "tags":[
                    "Query/Query Management/Create candidate query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint accepts and returns property metadata (propertyType/propertyName) so visit property automation can seed candidate queries. This improves user integration reliability.",
                "operationId":"createCandidateQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "CreateCandidateQueryV5Request":{
                                    "description":"CreateCandidateQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Candidate query seeded for visit start date validation.",
                                        "state":"Candidate",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "formInstanceNumber":0,
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "objectVersionNumber":1,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Candidate query created successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateCandidateQueryV5Success":{
                                        "description":"CreateCandidateQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Candidate",
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateCandidateQueryV5BadRequest":{
                                        "description":"CreateCandidateQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"subjectId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"f136b6ab-f085-401a-94c8-63bc5eead7f0",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while creating the candidate query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateCandidateQueryV5ServerError":{
                                        "description":"CreateCandidateQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while creating the candidate query.",
                                                "details":{
                                                    "requestId":"508b2e64-464a-4a5d-8f6c-1b6782d1a3ce",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-candidate-post",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-candidate-post"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDTOv5 payloads with property metadata and optimistic locking fields to support property-driven automation. This improves user integration reliability.",
                "operationId":"createOpenQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "CreateOpenQueryV5Request":{
                                    "description":"CreateOpenQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Open query created for visit start date review.",
                                        "state":"Opened",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "formInstanceNumber":0,
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "objectVersionNumber":1,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Open query created successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateOpenQueryV5Success":{
                                        "description":"CreateOpenQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Opened",
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateOpenQueryV5BadRequest":{
                                        "description":"CreateOpenQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"dataElementId must be a 32 to 36 character GUID.",
                                                "details":{
                                                    "requestId":"2f37edb1-0b9f-4777-964c-92b5f64abcde",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while creating the open query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "CreateOpenQueryV5ServerError":{
                                        "description":"CreateOpenQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while creating the open query.",
                                                "details":{
                                                    "requestId":"942c3bba-e4a0-4184-8ea8-61c332859f4f",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/{queryId}/delete":{
            "put":{
                "tags":[
                    "Query/Query Management/Delete an existing query"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint returns QueryDTOv5 payloads with property metadata, ensuring automation audit logs stay accurate when queries are deleted. This improves user integration reliability.",
                "operationId":"deleteQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "DeleteQueryV5Request":{
                                    "description":"DeleteQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Deleting query created for visit start date correction.",
                                        "state":"Deleted",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "formInstanceNumber":0,
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "objectVersionNumber":5,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query deleted successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryV5Success":{
                                        "description":"DeleteQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Deleted",
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryV5BadRequest":{
                                        "description":"DeleteQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Query must be in Candidate, Opened, or Answered state before deletion.",
                                                "details":{
                                                    "requestId":"35d86a59-86f9-4888-b7d4-df43cb0c52e4",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the query cannot be found for the supplied identifier.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryV5NotFound":{
                                        "description":"DeleteQueryV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"c1f5bc43-0f2f-48a7-9d70-8f9cf6bb2390",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while deleting the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "DeleteQueryV5ServerError":{
                                        "description":"DeleteQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while deleting the query.",
                                                "details":{
                                                    "requestId":"f3bde18d-4c9e-4f41-90e7-f22f672bb59b",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-{queryId}-delete-put",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-queryid-delete-put"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint supports propertyType/propertyName metadata and returns QueryDTOv5 responses so visit property automation can reopen queries consistently. This improves user integration reliability.",
                "operationId":"openQuery_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B23C45D67E89F123456789ABCDEF12"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to open.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to open.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv5"
                            },
                            "examples":{
                                "OpenQueryV5Request":{
                                    "description":"OpenQueryV5Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "queryComment":"Reopening query after review.",
                                        "state":"Opened",
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "eventInstanceNumber":0,
                                        "formInstanceNumber":0,
                                        "objectVersionNumber":6,
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Query reopened successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryV5Success":{
                                        "description":"OpenQueryV5Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "state":"Opened",
                                                "objectVersionNumber":6,
                                                "propertyType":"visit",
                                                "propertyName":"visitStartDate"
                                            },
                                            "errorData":null,
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryV5BadRequest":{
                                        "description":"OpenQueryV5BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"objectVersionNumber must be zero or a positive integer.",
                                                "details":{
                                                    "requestId":"c9d6c5c4-54f7-4ad9-a0c1-6d36dfaaab75",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the query cannot be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryV5NotFound":{
                                        "description":"OpenQueryV5NotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4040",
                                                "errorMessage":"Query not found for the supplied identifier.",
                                                "details":{
                                                    "requestId":"3b71b64d-ba16-4c2d-a312-4a8b5a2d93b5",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when an unexpected error occurs while reopening the query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "OpenQueryV5ServerError":{
                                        "description":"OpenQueryV5ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-5000",
                                                "errorMessage":"Unexpected server error while reopening the query.",
                                                "details":{
                                                    "requestId":"93004a4d-1fdf-439d-8e35-19d0fb2f9902",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Refer to request parameter constraints and retry."
                                                }
                                            },
                                            "version":"5"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v5.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Compared to v4.0, this v5.0 endpoint maintains subject query report workflows while aligning metadata and callback handling with v5 conventions. This benefits users by reducing report integration drift across versions.",
                "operationId":"generateReport_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v5.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v5.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint keeps open-query detail filtering behavior while aligning response metadata with the v6 contract. This benefits users by preserving open-query triage compatibility across upgrades.",
                "operationId":"getOpenQueryDetails_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOV6Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint preserves query-details filtering while introducing versioned DTO alignment for upgraded query workflows. This benefits users by keeping query-details integrations stable during version transitions.",
                "operationId":"getQueryDetails_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOV6Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint keeps answer-state transition behavior while aligning response handling to v6 query DTO expectations. This benefits users by reducing disruption in automated answer workflows during upgrades.",
                "operationId":"answerQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv6"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv6"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint preserves close transition semantics while aligning response handling with v6 query DTO behavior. This benefits users by keeping close workflows consistent across upgrades.",
                "operationId":"closeQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv6"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv6"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/candidate":{
            "post":{
                "tags":[
                    "Query/Query Management/Create candidate query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint keeps candidate-query creation semantics while aligning payload/response handling with v6 DTO usage. This benefits users by minimizing candidate-query integration changes when upgrading.",
                "operationId":"createCandidateQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-candidate-post",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-candidate-post"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint preserves open-query creation behavior while aligning request and response handling with v6 DTO expectations. This benefits users by minimizing open-query integration changes during upgrades.",
                "operationId":"createOpenQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv6"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv6"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/{queryId}/delete":{
            "put":{
                "tags":[
                    "Query/Query Management/Delete an existing query"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint preserves delete transition behavior while aligning response handling with v6 query DTO usage. This benefits users by keeping delete workflows consistent during upgrades.",
                "operationId":"deleteQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-{queryId}-delete-put",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-queryid-delete-put"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/{queryId}":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query by ID"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint returns query details using v6-aligned response handling for versioned clients. This benefits users by keeping read-by-id integrations predictable after moving to v6.0.",
                "operationId":"getQueryByQueryId_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv6Resp"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-{queryId}-get",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-queryid-get"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint preserves reopen transition behavior while aligning request and response handling with v6 query DTOs. This benefits users by keeping reopen integrations stable when upgrading.",
                "operationId":"openQuery_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to open.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to open.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv6"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv6"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v6.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Compared to v5.0, this v6.0 endpoint keeps report-generation semantics and aligns payload handling with v6 API expectations. This benefits users by preserving reliable report automation after upgrading.",
                "operationId":"generateReport_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v6.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v6.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint retains open-query detail filters and harmonizes response semantics with v7 expectations. This benefits users by reducing rework in clients that consume open-query details.",
                "operationId":"getOpenQueryDetails_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv7Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint keeps the v6 filter model and response envelope while aligning to v7 metadata expectations. This benefits users by reducing migration effort for clients moving from v6.0 to v7.0.",
                "operationId":"getQueryDetails_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv7Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint preserves answer-state transition semantics while aligning response metadata with the v7 contract. This benefits users by keeping answer workflows stable for v7 adopters.",
                "operationId":"answerQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint keeps close transition semantics while aligning payload metadata and responses with the v7 contract. This benefits users by maintaining predictable close behavior across upgrades.",
                "operationId":"closeQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint keeps open-query creation semantics and aligns response metadata with the v7 contract. This benefits users by reducing migration effort for clients moving to v7.",
                "operationId":"createOpenQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queries/{queryId}":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query by ID"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint preserves get-by-id behavior while aligning response semantics with the v7 contract. This benefits users by reducing client-side adaptation work during v7 adoption.",
                "operationId":"getQueryByQueryId_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7Resp"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queries-{queryId}-get",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-queries-queryid-get"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint keeps reopen transition behavior while aligning response metadata with v7 query handling. This benefits users by reducing reopen integration drift during upgrades.",
                "operationId":"openQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to open.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to open.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv7"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv7"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v7.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Compared to v6.0, this v7.0 endpoint preserves report-generation behavior while aligning version metadata with v7 routing. This benefits users by enabling predictable report execution in v7.",
                "operationId":"generateReport_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v7.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v7.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Compared to v7.0, this v8.0 endpoint preserves open-query detail filter semantics and aligns payload metadata with v8 behavior. This benefits users by keeping triage tools predictable after version migration.",
                "operationId":"getOpenQueryDetails_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv8Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Compared to v7.0, this v8.0 endpoint maintains query-details filter parity and aligns the response contract with v8 service behavior. This benefits users by keeping automation and dashboards consistent after upgrading.",
                "operationId":"getQueryDetails_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv8Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint preserves answer transition semantics while aligning response metadata with v8 query behavior. This benefits users by keeping answer automation consistent across version upgrades.",
                "operationId":"answerQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "QueryDTOv8":{
                                    "summary":"QueryDTOv8Example",
                                    "description":"QueryDTOv8",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "state":"Answered",
                                        "queryComment":"Answering the query",
                                        "studyRoles":[
                                        ],
                                        "discrepancyId":123456789,
                                        "objectVersionNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDTOv8":{
                                        "summary":"QueryDTOv8Example",
                                        "description":"QueryDTOv8",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"Answering the query",
                                                "state":"Answered",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Compared to v7.0, this v8.0 endpoint maintains close transition behavior and aligns payload metadata with v8 query response expectations. This benefits users by reducing close-operation variance between versions.",
                "operationId":"closeQuery_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "AutoGeneratedExample":{
                                    "description":"AutoGeneratedExample",
                                    "value":null
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv8"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/candidate":{
            "post":{
                "tags":[
                    "Query/Query Management/Create candidate query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint preserves candidate-query creation behavior while aligning metadata handling with the v8 response contract. This benefits users by keeping candidate-query automation stable across versions.",
                "operationId":"createCandidateQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "QueryDTOv8":{
                                    "summary":"QueryDTOv8Example",
                                    "description":"QueryDTOv8",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "state":"Candidate",
                                        "queryComment":"Opening the candidate query",
                                        "studyRoles":[
                                        ],
                                        "discrepancyId":123456789,
                                        "objectVersionNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv8"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                            "queryComment":"Opening the candidate query",
                                            "state":"Candidate",
                                            "subjectId":"762744769B0E4E40B6A74691179BC578",
                                            "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                            "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                            "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                            "formInstanceNumber":null,
                                            "siteId":"CB9BBB0767114F599FE75616223D6665",
                                            "eventId":"3B95322B15144E4397B30305EB33E871",
                                            "eventInstanceNumber":null,
                                            "studyRoles":[
                                            ],
                                            "discrepancyId":123456789,
                                            "repeatFormNumber":null,
                                            "objectVersionNumber":2,
                                            "itemId":"42738D18833E45C29D9CDEABBB2247FE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-candidate-post",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-candidate-post"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint maintains open-query creation flow while aligning payload metadata with v8 service behavior. This benefits users by preserving predictable open-query automation.",
                "operationId":"createOpenQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "QueryDTOv8":{
                                    "summary":"QueryDTOv8Example",
                                    "description":"QueryDTOv8",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "state":"Opened",
                                        "queryComment":"Opening the query",
                                        "studyRoles":[
                                        ],
                                        "discrepancyId":123456789,
                                        "objectVersionNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QueryDTOv8"
                                },
                                "examples":{
                                    "QueryDTOv8":{
                                        "summary":"QueryDTOv8Example",
                                        "description":"QueryDTOv8",
                                        "value":{
                                            "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                            "queryComment":"Opening the query",
                                            "state":"Opened",
                                            "subjectId":"762744769B0E4E40B6A74691179BC578",
                                            "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                            "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                            "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                            "formInstanceNumber":null,
                                            "siteId":"CB9BBB0767114F599FE75616223D6665",
                                            "eventId":"3B95322B15144E4397B30305EB33E871",
                                            "eventInstanceNumber":null,
                                            "studyRoles":[
                                            ],
                                            "discrepancyId":123456789,
                                            "repeatFormNumber":null,
                                            "objectVersionNumber":2,
                                            "itemId":"42738D18833E45C29D9CDEABBB2247FE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/{queryId}/delete":{
            "put":{
                "tags":[
                    "Query/Query Management/Delete an existing query"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint maintains delete transition semantics and aligns payload metadata with v8 query handling. This benefits users by reducing delete-operation rework across version migrations.",
                "operationId":"deleteQuery_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "QueryDTOv8":{
                                    "summary":"QueryDTOv8Example",
                                    "description":"QueryDTOv8",
                                    "value":{
                                        "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                        "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                        "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                        "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                        "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                        "studyVersionStart":"2025-12-12T20:57:16.682Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                        "state":"Deleted",
                                        "queryComment":"Deleting the candidate query",
                                        "studyRoles":[
                                        ],
                                        "discrepancyId":123456789,
                                        "objectVersionNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDTOv8":{
                                        "summary":"QueryDTOv8Example",
                                        "description":"QueryDTOv8",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                                "queryComment":"Deleting the candidate query",
                                                "state":"Deleted",
                                                "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                                "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                                "dataElementVersionStart":"2025-12-12T20:57:16.682Z",
                                                "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-{queryId}-delete-put",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-queryid-delete-put"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/{queryId}":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query by ID"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint keeps get-by-id request semantics and aligns response metadata with v8 expectations. This benefits users by maintaining stable query retrieval behavior across upgrades.",
                "operationId":"getQueryByQueryId_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDTOv8Resp":{
                                        "summary":"QueryDTOv8RespExample",
                                        "description":"QueryDTOv8Resp",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"Opening the query",
                                                "state":"Opened",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-{queryId}-get",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-queryid-get"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Compared to v7.0, this v8.0 endpoint maintains reopen transition semantics and aligns payload metadata with v8 expectations. This benefits users by reducing reopen workflow drift across version changes.",
                "operationId":"openQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to open.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to open.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv8"
                            },
                            "examples":{
                                "QueryDTOv8":{
                                    "summary":"QueryDTOv8Example",
                                    "description":"QueryDTOv8",
                                    "value":{
                                        "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                        "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                        "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                        "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                        "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                        "studyVersionStart":"2025-12-12T20:57:16.682Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                        "state":"Opened",
                                        "queryComment":"Reopening the query.",
                                        "studyRoles":[
                                        ],
                                        "discrepancyId":123456789,
                                        "objectVersionNumber":3
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryDTOv8":{
                                        "summary":"QueryDTOv8Example",
                                        "description":"QueryDTOv8",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"A511BD895B574F869B99FB271014EC16",
                                                "queryComment":"Reopening the query.",
                                                "state":"Opened",
                                                "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                                "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                                "dataElementVersionStart":"2025-12-12T20:57:16.682Z",
                                                "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":4,
                                                "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v8.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Compared to v7.0, this v8.0 endpoint maintains report-generation flow and aligns request/response conventions with v8 behavior. This benefits users by keeping report clients compatible through v8 transitions.",
                "operationId":"generateReport_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v8.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v8.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/openQueryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get details of an opened query"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Use latest version instead. Compared to v8.0, this v9.0 endpoint maintains open-query detail filtering while aligning response structure with v9 metadata conventions. This benefits users by providing stable open-query reporting across versions.",
                "operationId":"getOpenQueryDetails_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv9Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-openQueryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-openquerydetails-get"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queryDetails":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query data based on multiple parameters"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Use latest version instead. Compared to v8.0, this v9.0 endpoint preserves query-details filtering and response semantics while aligning with v9 metadata handling. This benefits users by enabling predictable upgrades for query-details consumers.",
                "operationId":"getQueryDetails_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/QueryDetailsDTOv9Resp"
                                    }
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queryDetails-get",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-querydetails-get"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}/answer":{
            "put":{
                "tags":[
                    "Query/Query Management/Answer an existing query"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint retains answer transition semantics and aligns with v9 metadata conventions for updated query payloads. This benefits users by maintaining reliable answer automation and downstream processing.",
                "operationId":"answerQuery_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to answer.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "queryComment":"Answering the query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"Answering the query",
                                                "state":"Answered",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-answer-put",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-answer-put"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}/assignupdate":{
            "put":{
                "tags":[
                    "Query/Query Management/Assign study roles to queries"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9 endpoint accepts multiple study role assignments and includes visit metadata in the response. This improves user integration reliability.",
                "operationId":"assignUpdate_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"discrepancyId",
                        "in":"query",
                        "description":"Discrepancy ID.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "description":"Unique discrepancy identifier. Negative values are rejected.",
                            "format":"int64"
                        },
                        "example":123456789
                    },
                    {
                        "name":"objectVersionNumber",
                        "in":"query",
                        "description":"Object version number.",
                        "schema":{
                            "minimum":0,
                            "type":"number",
                            "description":"Current object version number. Negative values are rejected.",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Assigned study roles to the query.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/Query DTO"
                            },
                            "examples":{
                                "QueryStudyRolesDTO":{
                                    "summary":"QueryStudyRolesDTOExample",
                                    "description":"QueryStudyRolesDTO",
                                    "value":{
                                        "studyRoles":[
                                            "68C35A92894A4ABCB2E2F6008E4402DB"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"84D10452BCEB41ADBE04349CB2381A8E",
                                                "queryComment":"Assigning the query to all roles.",
                                                "subjectId":"7837ED89824C40329635EC020C290530",
                                                "dataElementId":"53550D9A0AE64EA882BAD656F11F2E28",
                                                "dataElementVersionStart":"2025-12-14T03:10:01.683Z",
                                                "formId":"6C25A394DBD74A6F87F55E107BD5601A",
                                                "formInstanceNumber":null,
                                                "siteId":"8F1E8B453D8F4B6EB278B324EFE38A7C",
                                                "eventId":"B406C2C169D84D92BF4A57C55409E909",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                    {
                                                        "studyRoleId":"68C35A92894A4ABCB2E2F6008E4402DB",
                                                        "studyRoleName":"CRA"
                                                    }
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"BB481E24A5E24851872E45A1ADA8D85D",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-assignupdate-put",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-assignupdate-put"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}/close":{
            "put":{
                "tags":[
                    "Query/Query Management/Close an existing query"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Compared to v8.0, this v9 endpoint adds visit date validation and returns the richer QueryV9Response payload with property metadata. This improves user integration reliability.",
                "operationId":"closeQuery_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Study mode for the request. Allowed values: test (study sandbox), training (training environment), active (production).",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to close.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "queryComment":"closing the query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"closing the query",
                                                "state":"Closed",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-close-put",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-close-put"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/candidate":{
            "post":{
                "tags":[
                    "Query/Query Management/Create candidate query"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint maintains candidate-query creation flow while aligning to v9 metadata conventions and response structure. This benefits users by enabling smoother upgrades for candidate-query clients.",
                "operationId":"createCandidateQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Candidate Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "queryComment":"Opening the candidate query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"Opening the candidate query",
                                                "state":"Candidate",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-candidate-post",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-candidate-post"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/open":{
            "post":{
                "tags":[
                    "Query/Query Management/Create open query"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint preserves open-query creation semantics while aligning to v9 metadata conventions and response handling. This benefits users by keeping open-query workflows stable across version changes.",
                "operationId":"createOpenQuery_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Open Query details to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                        "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                        "eventId":"3B95322B15144E4397B30305EB33E871",
                                        "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                        "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                        "studyVersionStart":"2025-12-11T14:07:21.398Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"762744769B0E4E40B6A74691179BC578",
                                        "queryComment":"Opening the query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"AE33A9096BF548BBB29A96E399E9FBBB",
                                                "queryComment":"Opening the query",
                                                "subjectId":"762744769B0E4E40B6A74691179BC578",
                                                "dataElementId":"583A45DD0A1C46F88D7842D76CAF9A59",
                                                "dataElementVersionStart":"2025-12-11T14:07:21.398Z",
                                                "formId":"680E0FB01F1B4CCB990C333563FAEE80",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"3B95322B15144E4397B30305EB33E871",
                                                "eventInstanceNumber":null,
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"42738D18833E45C29D9CDEABBB2247FE",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-open-post",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-open-post"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}/delete":{
            "put":{
                "tags":[
                    "Query/Query Management/Delete an existing query"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint keeps delete transition behavior while aligning to v9 metadata conventions in the response payload. This benefits users by preserving predictable delete automation outcomes.",
                "operationId":"deleteQuery_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of query to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                        "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                        "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                        "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                        "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                        "studyVersionStart":"2025-12-12T20:57:16.682Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                        "queryComment":"Deleting the candidate query",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":1,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                                "queryComment":"Deleting the candidate query",
                                                "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                                "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                                "dataElementVersionStart":"2025-12-12T20:57:16.682Z",
                                                "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":2,
                                                "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-delete-put",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-delete-put"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}":{
            "get":{
                "tags":[
                    "Query/Query Management/Get query by ID"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint preserves get-by-id behavior while aligning payload metadata conventions with v9. This benefits users by supporting consistent query lookup behavior across version changes.",
                "operationId":"getQueryByQueryId_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"Query ID.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"A511BD895B574F869B99FB271014EC16",
                                                "queryComment":"Reopening the query.",
                                                "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                                "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                                "dataElementVersionStart":"2025-12-12T20:57:16.682Z",
                                                "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":4,
                                                "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-get",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-get"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/queries/{queryId}/open":{
            "put":{
                "tags":[
                    "Query/Query Management/Update a query's status to Open"
                ],
                "summary":"v9.0",
                "description":"Compared to v8.0, this v9.0 endpoint keeps reopen transition behavior and aligns with v9 metadata conventions for updated query payloads. This benefits users by preserving predictable reopen automation.",
                "operationId":"reOpenQuery",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        },
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"queryId",
                        "in":"path",
                        "description":"ID of the query to answer.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"8f2f9c1f-9b66-4d88-a0f8-6f7a2ce1989f"
                        },
                        "example":"AE33A9096BF548BBB29A96E399E9FBBB"
                    }
                ],
                "requestBody":{
                    "description":"Query data to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QueryDTOv9"
                            },
                            "examples":{
                                "QueryDTOv9Request":{
                                    "summary":"QueryDTOv9RequestExample",
                                    "description":"QueryDTOv9Request",
                                    "value":{
                                        "id":"DF1C864C9A3E40F0B020F2F95B365E25",
                                        "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                        "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                        "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                        "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                        "studyVersionStart":"2025-12-12T20:57:16.682Z",
                                        "siteId":"CB9BBB0767114F599FE75616223D6665",
                                        "eventInstanceNumber":null,
                                        "formInstanceNumber":null,
                                        "repeatFormNumber":null,
                                        "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                        "queryComment":"Reopening the query.",
                                        "studyRoles":[
                                        ],
                                        "objectVersionNumber":3,
                                        "discrepancyId":123456789,
                                        "userDisplayName":"system clinicalone",
                                        "propertyType":null,
                                        "propertyName":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "QueryV9Response":{
                                        "summary":"QueryV9ResponseExample",
                                        "description":"QueryV9Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"A511BD895B574F869B99FB271014EC16",
                                                "queryComment":"Reopening the query.",
                                                "subjectId":"32BA85281AD3434793BEB419C48CB88A",
                                                "dataElementId":"BA4AE10EB833418D88980FC9691BA477",
                                                "dataElementVersionStart":"2025-12-12T20:57:16.682Z",
                                                "formId":"861677FD1DAB4230AB8ACEFB074B90DB",
                                                "formInstanceNumber":null,
                                                "siteId":"CB9BBB0767114F599FE75616223D6665",
                                                "eventId":"E6D1C6C76F044F0DBDB1CCED617C0669",
                                                "eventInstanceNumber":null,
                                                "studyRoles":[
                                                ],
                                                "discrepancyId":123456789,
                                                "repeatFormNumber":null,
                                                "objectVersionNumber":4,
                                                "itemId":"DA8E62C8D6A1495DA217FAEDD653F162",
                                                "propertyName":null,
                                                "propertyType":null,
                                                "ruleId":null,
                                                "isQueryCreator":true
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The query could not be found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "AutoGeneratedExample":{
                                        "description":"AutoGeneratedExample",
                                        "value":null
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-queries-{queryId}-open-put",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-queries-queryid-open-put"
            }
        },
        "/ec-query-svc/rest/v9.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Query/Reporting/Generate Subject Queries report"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Use latest version instead. Compared to v8.0, this v9.0 endpoint preserves report-generation semantics while aligning callback and metadata behavior with v9 APIs. This benefits users by improving report integration continuity across upgrades.",
                "operationId":"generateReport_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Clinical One study identifier formatted as a 32 to 36 character GUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: test (testing sandbox), training (training environment), and active (production).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"test",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"reportName to create an subject query report.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string",
                            "example":"queryDetails"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"path",
                        "description":"Session token UUID identifying report retrieval session.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f-]{32,36}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"3B3B8F3187A34DD28B9D21D0C93EF27A"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Created user object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"includeAuditTrail",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "No"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rows":[
                                                ],
                                                "count":0,
                                                "hasMore":false
                                            },
                                            "errorData":null,
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Request validation failed due to missing, invalid, or inconsistent request data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response DTO"
                                },
                                "examples":{
                                    "BadRequestResponse":{
                                        "description":"BadRequestResponse",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"QRY-4000",
                                                "errorMessage":"Request validation failed due to missing, invalid, or inconsistent request data.",
                                                "details":{
                                                    "requestId":"3B3B8F3187A34DD28B9D21D0C93EF27A",
                                                    "supportCode":"QRY-4000",
                                                    "hint":"Verify reportName and SearchSpecs filters."
                                                }
                                            },
                                            "version":"1"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-query-svc-rest-v9.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-query-svc-rest-v9.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ib/ib-ext-svc/rest/v1.0/integrationdata":{
            "post":{
                "tags":[
                    "Digital Gateway/Data Import/v1.0"
                ],
                "summary":"Push data into ClinicalOne via real-time integration configured in Digital Gateway",
                "description":"This web service allows you to send data and trigger the corresponding integration configured in Digital Gateway to import this data into ClinicalOne.",
                "operationId":"pushIntgerationData",
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/IbIntInputDataDto"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Integration input data successfully stored",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RTIntDetailsDto"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study name is missing",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Integration type is invalid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error occured while storing data in the DB. Please contact Oracle Support",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ib-ib-ext-svc-rest-v1.0-integrationdata-post",
                "x-filename-id":"ib-ib-ext-svc-rest-v1.0-integrationdata-post"
            }
        },
        "/ib/ib-ext-svc/rest/v2.0/integrationdata":{
            "post":{
                "tags":[
                    "Digital Gateway/Data Import/v2.0"
                ],
                "summary":"Push data into ClinicalOne via real-time integration configured in Digital Gateway",
                "description":"This web service allows you to send data and trigger the corresponding integration configured in Digital Gateway to import this data into ClinicalOne.",
                "operationId":"pushIntgerationData_1",
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/IbIntInputDataDto"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Integration input data successfully stored",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RTIntDetailsDto"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study name is missing",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Integration type is invalid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error occured while storing data in the DB. Please contact Oracle Support",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DGErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ib-ib-ext-svc-rest-v2.0-integrationdata-post",
                "x-filename-id":"ib-ib-ext-svc-rest-v2.0-integrationdata-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/allrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's rights"
                ],
                "summary":"v1.0",
                "description":"Retrieves every right currently granted to the user across all permissible contexts (all studies/modes)",
                "operationId":"getAllRights",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "AllRightsForUserExample":{
                                        "summary":"Example: All rights across contexts",
                                        "description":"AllRightsForUserExample",
                                        "value":[
                                            "SchedulerDelete",
                                            "IntegrationPost",
                                            "UpdateRecipe"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-allrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-allrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/allStudyRights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's rights for all studies"
                ],
                "summary":"v1.0",
                "description":"Retrieves rights assigned to a user for all studies.",
                "operationId":"getAllStudyRights",
                "responses":{
                    "200":{
                        "description":"List of all study-mode rights for the user",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyModeRightsDto"
                                },
                                "examples":{
                                    "StudyModeRightsDto-Response":{
                                        "summary":"List of all study-mode rights for the user",
                                        "description":"StudyModeRightsDto-Response",
                                        "value":{
                                            "studyid":"a1b2c3d4-e5f6-7890-1234-56789abcdef0",
                                            "modeRights":[
                                                {
                                                    "mode":"Active",
                                                    "rights":[
                                                        "UpdateRecipe",
                                                        "SiteCohortDelete"
                                                    ]
                                                },
                                                {
                                                    "mode":"Design",
                                                    "rights":[
                                                        "StudyStatePost"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-allStudyRights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-allstudyrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/depots":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Sites and Depots/Get depots"
                ],
                "summary":"v1.0",
                "description":"Retrieves the depots for an user.",
                "operationId":"getDepots",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DepotsListDto"
                                },
                                "examples":{
                                    "DepotsListDto-Response":{
                                        "summary":"Example of returned depots list",
                                        "description":"DepotsListDto-Response",
                                        "value":{
                                            "result":{
                                                "depots":[
                                                    {
                                                        "allDepots":true,
                                                        "associatedDepots":[
                                                            "6E697AEB85A24A22B38C70495A0A5C48",
                                                            "6E697AEB85A24A22B38C70495A0A5C49"
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-depots-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-depots-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/globalrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's global rights"
                ],
                "summary":"v1.0",
                "description":"Returns all global rights not tied to any specific study or mode for the currently logged-in user.",
                "operationId":"getGlobalRights",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "GlobalRightsExample":{
                                        "summary":"Example: User's global rights",
                                        "description":"GlobalRightsExample",
                                        "value":[
                                            "LabGet",
                                            "ConsignmentSummaryReportPost"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/rights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's permissions"
                ],
                "summary":"v1.0",
                "description":"Returns the list of rights granted to the current user in the selected mode and optionally filtered by category. This API provides details on what operations (rights) the logged-in user is permitted to perform in the current context.",
                "operationId":"getRights",
                "parameters":[
                    {
                        "name":"category",
                        "in":"query",
                        "description":"Right category to further filter rights (e.g. Settings, UserManagement). If not provided, returns all.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Settings"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "UserRightsResponseExample":{
                                        "summary":"User's granted rights",
                                        "description":"User's granted rights",
                                        "value":[
                                            "StudyStatePost",
                                            "OrsInventoryDelete",
                                            "LabGet"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-rights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-rights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/sites":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Sites and Depots/Get sites"
                ],
                "summary":"v1.0",
                "description":"Retrieves the sites for a specific user.",
                "operationId":"getSites",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SitesListDto"
                                },
                                "examples":{
                                    "SitesListDto-Response":{
                                        "summary":"Example of returned site list",
                                        "description":"SitesListDto-Response",
                                        "value":{
                                            "allSites":false,
                                            "associatedSites":[
                                                "6E697AEB85A24A22B38C70495A0A5C48",
                                                "4E9523BF795D4FE4AB9BF1EF8A340FAB"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-sites-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-sites-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studies":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get studies and modes"
                ],
                "summary":"v1.0",
                "description":"Retrieves the studies and the modes which are assigned to a given user.",
                "operationId":"getStudiesAndModes",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyAndModesDto"
                                    }
                                },
                                "examples":{
                                    "StudyAndModesDto-Response":{
                                        "summary":"Studies, modes, and user assignment details",
                                        "description":"StudyAndModesDto-Response",
                                        "value":[
                                            {
                                                "studyid":"F330498B1F1F4D47AA8AE87995D08F4C",
                                                "modes":[
                                                    "active",
                                                    "test"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studies-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studies-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/{studyId}/userrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get users and rights in a study"
                ],
                "summary":"v1.0",
                "description":"Returns all users in a study along with the list of rights assigned to each user. Useful for audit and study-level permission management.",
                "operationId":"getStudyUsers",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study whose user rights will be listed",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"object",
                                    "description":"Map keyed by username, value is set of right names."
                                },
                                "examples":{
                                    "StudyUserRightsMapExample":{
                                        "summary":"User-rights mapping for a study",
                                        "description":"StudyUserRightsMapExample",
                                        "value":{
                                            "testuser1":[
                                                "UpdateRecipe",
                                                "SiteCohortDelete"
                                            ],
                                            "testuser2":[
                                                "SiteCohortDelete"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-{studyId}-userrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyid-userrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/userids/{username}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the ID of a user based on the user name.",
                "operationId":"getUserId",
                "parameters":[
                    {
                        "name":"username",
                        "in":"path",
                        "description":"Username for which the id has to be fetched.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"jsmith"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "UserId":{
                                        "summary":"User Id",
                                        "description":"UserId",
                                        "value":"E4C391DC3AA94421971C95B105E406CC"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-userids-{username}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-userids-username-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/userinfo":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's info"
                ],
                "summary":"v1.0",
                "description":"Deprecated: Use '/v2.0/userinfo' instead. The v2 endpoint returns additional attribute fields and expanded user info. This endpoint returns user identity and global rights as in earlier API version. Suggested alternate: /v2.0/userinfo (adds 'userAttributes', returns UUID as 'userId', plus other improvements).",
                "operationId":"getUserInfo",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UserInfoDto"
                                },
                                "examples":{
                                    "UserInfoDtoExample":{
                                        "description":"UserInfoDtoExample",
                                        "value":{
                                            "firstName":"Alice",
                                            "lastName":"Smith",
                                            "emailAddress":"alice.smith@example.com",
                                            "globalRights":[
                                                "SiteCohortDelete",
                                                "OrsSiteShipmentPost"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-userinfo-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-userinfo-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/usernames/{userid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get user name"
                ],
                "summary":"v1.0",
                "description":"Retrieves the user name of a user based on the user ID.",
                "operationId":"getUserName",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User's system unique identifier.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"E4C391DC3AA94421971C95B105E406CC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Test User 1":{
                                        "description":"Test User 1",
                                        "value":"testuser1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-usernames-{userid}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-usernames-userid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/userinfo/bulk":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get users for rights list"
                ],
                "summary":"v1.0",
                "description":"Deprecated: Use '/v2.0/userinfo/bulk' instead. Returns a list of users having the specified rights for a study. Suggest using v2 for expanded user info (attributes, strict UUIDs, additional filters).",
                "operationId":"getUsers",
                "parameters":[
                    {
                        "name":"rightnames",
                        "in":"query",
                        "description":"Comma separated rights to match.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":[
                            "DesignerRandListGet",
                            "SchedulerDelete"
                        ]
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study UUID for which to filter users.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EC026DEDC88723C3E053EB944C645888"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/UserInfoDtoV3"
                                    }
                                },
                                "examples":{
                                    "UserInfoDtoV3BulkV1Example":{
                                        "description":"UserInfoDtoV3BulkV1Example",
                                        "value":[
                                            {
                                                "firstName":"Eve",
                                                "lastName":"Johnson",
                                                "emailAddress":"eve.johnson@example.com",
                                                "userId":"EC026DEDC88723C3E053EB944C645812",
                                                "globalRights":[
                                                    "OrsSiteShipmentPost",
                                                    "UpdateRecipe"
                                                ],
                                                "userAttributes":[
                                                    {
                                                        "key":"Locale",
                                                        "value":"en-US"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-userinfo-bulk-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-userinfo-bulk-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/copy/{studyId}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Create a list of data classifications and mappings for a tenant"
                ],
                "summary":"v1.0",
                "description":"Create a list of data classifications and mappings for a study during its creation for a tenant.",
                "operationId":"createDataClassificationsList_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "success":{
                                        "description":"success"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-copy-{studyId}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-copy-studyid-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/{studyId}/studyroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get a list of data classifications by study roles for a tenant"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of data classifications by study roles for a tenant",
                "operationId":"getAllDataClassificationByStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"fetchForActiveRoles",
                        "in":"query",
                        "description":"fetchForActiveRoles",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationStudyLevelDto"
                                    }
                                },
                                "examples":{
                                    "GetAllStudyRolesClassification-Response":{
                                        "summary":"List of data classification assignments for all study roles",
                                        "description":"GetAllStudyRolesClassification-Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyRoleId":"7F4E9071608843F4A9F67B297672B09E",
                                                    "dataClassificationId":"2BE43F8369C84F6E9A0DEAF9901DDD3C",
                                                    "dataClassificationName":"Subject Data",
                                                    "dataClassificationNameLabel":"Subject Related Data",
                                                    "dataClassificationDesc":"Subject-level clinical finding data.",
                                                    "dataClassificationLevel":[
                                                        "SITE",
                                                        "DEPOT"
                                                    ],
                                                    "dataClassificationDescLabel":"Subject-level clinical finding data."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-studyroles-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-studyroles-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get specific data classifications for all study roles of a study"
                ],
                "summary":"v1.0",
                "description":"Returns a list of DataClassificationStudyRolesDto for a given study based on provided classification IDs",
                "operationId":"getDataClassificationStudyRoles_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID) of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F37A78CBB3B04F6AA5F388B66702ED24"
                    }
                ],
                "requestBody":{
                    "description":"DTO containing a list of Data Classification IDs for filtering the response.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataClassificationIdsDto"
                            },
                            "examples":{
                                "Request-Payload":{
                                    "summary":"Payload with classification IDs",
                                    "description":"Request-Payload",
                                    "value":{
                                        "dataClassifications":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationStudyRolesDto"
                                    }
                                },
                                "examples":{
                                    "Success-Classification-StudyRoles":{
                                        "summary":"Successful response mapping roles to their assigned data classification levels.",
                                        "description":"Success-Classification-StudyRoles",
                                        "value":{
                                            "result":[
                                                {
                                                    "studyRoleId":"A866A30A85644CCB9F9BBA5C640CA282",
                                                    "studyRoleName":"Rule Designer",
                                                    "studyRoleStatus":"ACTIVE",
                                                    "dataClassificationId":"43B86B3D33C84497A7E30B5BBA106C2C",
                                                    "dataClassificationLevel":[
                                                        "SITE",
                                                        "DEPOT"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-studyroles-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-studyroles-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification for a study ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This API returns all data classifications for the specified study. Path parameter studyId is required (UUID).",
                "operationId":"getDataClassification_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID) of the study for which data classification information is requested.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E9E4A658A7F845E6A4BCDE0DC6195EAF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                },
                                "examples":{
                                    "Success-Response":{
                                        "summary":"Returned list of all data classifications for a study",
                                        "description":"Success-Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "dataClassificationId":"C94C507E21544840A8C17B1031305D7E",
                                                    "dataClassificationName":"Adjudication Data",
                                                    "dataClassificationNameLabel":"Adjudication Data",
                                                    "dataClassificationDesc":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints",
                                                    "dataClassificationLevel":[
                                                        "SITE",
                                                        "DEPOT"
                                                    ],
                                                    "dataClassificationDescLabel":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints"
                                                },
                                                {
                                                    "dataClassificationId":"E9E4A658A7F845E6A4BCDE0DC6195EAF",
                                                    "dataClassificationName":"Patient Data",
                                                    "dataClassificationNameLabel":"Patient Data",
                                                    "dataClassificationDesc":"Patient demographic and visit-related data collected during the study.",
                                                    "dataClassificationLevel":[
                                                        "STUDY"
                                                    ],
                                                    "dataClassificationDescLabel":"Patient demographic and visit-related data collected during the study."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/{studyId}/studyrole/{studyRoleId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get data classifications for study role by study ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the data classifications with levels for the study role by study ID.",
                "operationId":"getDataClassificationByStudyRole_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1A77C0B1F6A4D6FBA5D9FDBE532A813"
                    },
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1A77C0B1F6A4D6FBA5D9FDBE532A813"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                },
                                "examples":{
                                    "GetStudyRoleDataClassification-Response":{
                                        "summary":"Response for classifications by study role",
                                        "description":"GetStudyRoleDataClassification-Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "dataClassificationId":"E5FEC3762FDA4D1CA14D1FFB1D24AE99",
                                                    "dataClassificationName":"Sample Data",
                                                    "dataClassificationNameLabel":"Sample Data",
                                                    "dataClassificationDesc":"Sample data for study role.",
                                                    "dataClassificationLevel":[
                                                        "DEPOT"
                                                    ],
                                                    "dataClassificationDescLabel":"Sample data for study role."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-studyrole-{studyRoleId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-studyrole-studyroleid-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Assign data classifications to study role for study ID"
                ],
                "summary":"v1.0",
                "description":"Assign or update data classification levels for a specific study role in a study. Path parameters: studyId (UUID) identifies the study, studyRoleId (UUID) identifies the study role. Request body: List of DataClassificationIdLevelDto, where each element specifies a data classification ID (UUID) and the corresponding list of classification levels to set.",
                "operationId":"putStudyRoleDataClassification_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID) for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1442AC5976354C8BB403420E680283AD"
                    },
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Unique identifier (UUID) for the study role.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C54AA9745A524BE1B4C3A270D00F8346"
                    }
                ],
                "requestBody":{
                    "description":"List of DataClassificationIdLevelDto: each entry assigns classification levels to the given classification UUID for this study role.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataClassificationIdLevelDto"
                            },
                            "examples":{
                                "PutClassificationLevels-Payload":{
                                    "summary":"Payload assigning levels for two classifications",
                                    "description":"PutClassificationLevels-Payload",
                                    "value":[
                                        {
                                            "dataClassificationId":"B1A77C0B1F6A4D6FBA5D9FDBE532A813",
                                            "dataClassificationLevel":[
                                                "SITE",
                                                "DEPOT"
                                            ]
                                        },
                                        {
                                            "dataClassificationId":"A32AFB67B61645E8B058F5FC6B9028F7",
                                            "dataClassificationLevel":[
                                                "STUDY"
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success. Returns a response object if save is successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Success-Put-StudyRoleClassifications-Response":{
                                        "summary":"Success response (empty result string)",
                                        "description":"Success-Put-StudyRoleClassifications-Response"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-studyrole-{studyRoleId}-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-studyrole-studyroleid-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/studyrole/{studyRoleId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get tenant data classifications for study role"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the tenant data classifications with levels for the study role.",
                "operationId":"getDataClassificationByStudyRoleTenant_1",
                "parameters":[
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"13EAB20F762A4BB98AA9D337945CE154"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                },
                                "examples":{
                                    "GetTenantStudyRoleDataClassification-Response":{
                                        "summary":"Tenant-level data classifications for a study role",
                                        "description":"GetTenantStudyRoleDataClassification-Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "dataClassificationId":"13EAB20F762A4BB98AA9D337945CE154",
                                                    "dataClassificationName":"Lab Data",
                                                    "dataClassificationNameLabel":"Lab Data",
                                                    "dataClassificationDesc":"Laboratory data in the tenant scope.",
                                                    "dataClassificationLevel":[
                                                        "STUDY"
                                                    ],
                                                    "dataClassificationDescLabel":"Laboratory data in the tenant scope."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-studyrole-{studyRoleId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyrole-studyroleid-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Assign tenant data classifications to study role"
                ],
                "summary":"v1.0",
                "description":"Assign tenant data classifications with levels to study role.",
                "operationId":"putStudyRoleDataClassificationTenant_1",
                "parameters":[
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1442AC5976354C8BB403420E680283AD"
                    }
                ],
                "requestBody":{
                    "description":"Data classification ids and levels",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/DataClassificationIdLevelDto"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-studyrole-{studyRoleId}-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyrole-studyroleid-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/studyroles":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get tenant data classifications and study roles"
                ],
                "summary":"v1.0",
                "description":"Retrieves the tenant data classifications with levels and study roles for list of data classification IDs.",
                "operationId":"getDataClassificationStudyRolesTenant_1",
                "requestBody":{
                    "description":"Data classification IDs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataClassificationIdsDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataClassificationStudyRolesDto"
                                },
                                "examples":{
                                    "Data Classification Study Roles":{
                                        "description":"Data Classification Study Roles",
                                        "value":[
                                            {
                                                "studyRoleId":"A866A30A85644CCB9F9BBA5C640CA282",
                                                "studyRoleName":"Rule Designer",
                                                "studyRoleStatus":"ACTIVE",
                                                "dataClassificationId":"43B86B3D33C84497A7E30B5BBA106C2C",
                                                "dataClassificationLevel":[
                                                    "SITE",
                                                    "DEPOT"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-studyroles-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyroles-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification for a tenant"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the list of detailed data classification for a tenant.",
                "operationId":"getDataClassificationTenant_1",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/dataclassification/{studyId}/{mode}/user/{userId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification with levels"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This endpoint lists all classifications for a user in a study and mode, using the legacy v1 schema.",
                "operationId":"getDataClassificationWithLevels_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID) of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"899E66BCE1D8471F96F58A396C416E0D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"userId",
                        "in":"path",
                        "description":"Unique identifier (UUID) of the user.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6226ECC6929945B5BAD80557E6DC54AA"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                },
                                "examples":{
                                    "Success-User-Classification":{
                                        "summary":"Full classification assignments for a user in a study and mode",
                                        "description":"Success-User-Classification",
                                        "value":{
                                            "result":[
                                                {
                                                    "dataClassificationId":"195971D1D8614382A363FA42C7421F76",
                                                    "dataClassificationName":"Site Data",
                                                    "dataClassificationNameLabel":"Site Data",
                                                    "dataClassificationDesc":"Data from clinical sites or site staff activities.",
                                                    "dataClassificationLevel":[
                                                        "SITE"
                                                    ],
                                                    "dataClassificationDescLabel":"Data from clinical sites or site staff activities."
                                                },
                                                {
                                                    "dataClassificationId":"7B780FFBA2764DAAA5E0AFB5E3696644",
                                                    "dataClassificationName":"Medication Data",
                                                    "dataClassificationNameLabel":"Medication Data",
                                                    "dataClassificationDesc":"All medication records for the user within the study.",
                                                    "dataClassificationLevel":[
                                                        "DEPOT",
                                                        "STUDY"
                                                    ],
                                                    "dataClassificationDescLabel":"All medication records for the user within the study."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-dataclassification-{studyId}-{mode}-user-{userId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-dataclassification-studyid-mode-user-userid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authroles/{roleid}/assignedrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get assigned permissions"
                ],
                "summary":"v1.0",
                "description":"Returns a list of right names that have been directly assigned to the specified role. This is a flat list of string right names for the requested roleId.",
                "operationId":"getAssignedRightsForRole_1",
                "parameters":[
                    {
                        "name":"roleid",
                        "in":"path",
                        "description":"Unique identifier for the role.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F7C8EEC7F6DE49A5B1E3023D0A2E221C"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "AssignedRights":{
                                        "summary":"List of assigned right names",
                                        "description":"AssignedRights",
                                        "value":[
                                            "UpdateRecipe",
                                            "SiteCohortDelete"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authroles-{roleid}-assignedrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authroles-roleid-assignedrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authroles/rolesrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get the list of permissions"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all roles with a list of their assigned rights. Useful for understanding the mapping between each available role and the set of permissions (rights) they possess.",
                "operationId":"getRightsForEveryRole_1",
                "parameters":[
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleRightsDto"
                                    }
                                },
                                "examples":{
                                    "RoleRightsList":{
                                        "summary":"List of roles with rights",
                                        "description":"RoleRightsList",
                                        "value":[
                                            {
                                                "roleId":"2BC29B36F5D64B1B95F4BDBBCEA420BE",
                                                "roleName":"Data Reviewer",
                                                "roleCategory":"User",
                                                "rights":[
                                                    {
                                                        "displayName":"Can view data"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authroles-rolesrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authroles-rolesrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authroles/{roleid}/rights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get list of permissions for a role"
                ],
                "summary":"v1.0",
                "description":"Retrieves all right categories and their respective rights associated with the given role ID. Each returned category includes a list of rights and whether each right is selected for that role.",
                "operationId":"getRightsForRole_1",
                "parameters":[
                    {
                        "name":"roleid",
                        "in":"path",
                        "description":"The unique identifier for the role.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F7C8EEC7F6DE49A5B1E3023D0A2E221C"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayCategoryDto"
                                    }
                                },
                                "examples":{
                                    "RightsByCategory":{
                                        "summary":"List of right categories and rights for a role",
                                        "description":"RightsByCategory",
                                        "value":[
                                            {
                                                "category":"Data Entry",
                                                "rights":[
                                                    {
                                                        "displayName":"Edit Forms",
                                                        "selected":true
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authroles-{roleid}-rights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authroles-roleid-rights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/sdfs":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Sites and Depots/Get sites and depots"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the sites and depots that are present in a study.",
                "operationId":"getStudySitesAndDepots_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C1A37B940984ADB837CB5A6F9D9E99B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of sites and depots for the specified study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDFShortInfo"
                                    }
                                },
                                "examples":{
                                    "SitesAndDepotsList":{
                                        "summary":"Array of SDFShortInfo objects (site or depot short details), showing id and name fields.",
                                        "description":"SitesAndDepotsList",
                                        "value":[
                                            {
                                                "id":"ED8E2A679C844BFE8123D34F4B5073F2",
                                                "name":"Site Alpha"
                                            },
                                            {
                                                "id":"B14B2B10372041168061416DE72EFA1C",
                                                "name":"Depot Beta"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Returned if studyId is missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId must be a valid UUID."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-sdfs-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-sdfs-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/users/{userId}/userrights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get rights for user in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of all rights in a study for a given user.",
                "operationId":"getStudyUserRightById_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"userId",
                        "in":"path",
                        "description":"User ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "example":[
                                    "GeneralStudySettingGet",
                                    "OrsRandFileUploadGet",
                                    "SchedulerDelete"
                                ]
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-users-{userId}-userrights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-users-userid-userrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/userroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get user roles in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves the user roles that are present in a study.",
                "operationId":"getStudyUserRoles_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier. Must be a 32-character uppercase hexadecimal UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C45F17A90D1F4F6981F131AFFF55BC77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"User roles by category, with each role fully expanded, as per schema and including all fields.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayStudyUserRolesDto"
                                    }
                                },
                                "examples":{
                                    "UserRolesCategoryList":{
                                        "description":"UserRolesCategoryList",
                                        "value":[
                                            {
                                                "roleType":"global",
                                                "roles":[
                                                    {
                                                        "id":"F187B5B234B0472E9F49A6B37CC299CC",
                                                        "roleName":"Data Entry",
                                                        "description":"Can enter data for assigned studies.",
                                                        "permissions":[
                                                            "StudyView",
                                                            "FormSubmit"
                                                        ]
                                                    },
                                                    {
                                                        "id":"9FD2E20BC57440D2BBE04B90BEE6C0FA",
                                                        "roleName":"Monitor",
                                                        "description":"Can view and review forms.",
                                                        "permissions":[
                                                            "FormView",
                                                            "QueryComment"
                                                        ]
                                                    }
                                                ]
                                            },
                                            {
                                                "roleType":"design",
                                                "roles":[
                                                    {
                                                        "id":"89A1163140CC43B3A4E2B2B63B5B6F32",
                                                        "roleName":"Study Designer",
                                                        "description":"Designs and configures study protocols.",
                                                        "permissions":[
                                                            "StudyDesignEdit",
                                                            "VisitBuilder"
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId must be a valid UUID."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-userroles-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-userroles-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/siteDepot/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all users who has access to site and depot for a study as logged in user"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the users that belong to a study and have access to site and depot as logged in user",
                "operationId":"getStudyUsersBasedOnLoggedInUserAccessedSiteAndDepot_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Mode of the study. Accepts active, test, or training",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active",
                                "all"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespUserBasicInfo"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-siteDepot-users-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-sitedepot-users-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/depots/{depotId}/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get users for a depot"
                ],
                "summary":"v1.0",
                "description":"Retrieves all authorized users for a depot for given study and depot Id.",
                "operationId":"getUserForDepot_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier for the depot within the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"TBE31741A0E945F6B827048B279F2F19"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of users for the specified depot and study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UsersForDepotExample":{
                                        "summary":"A list of authorized users for a depot, including all child DTO properties.",
                                        "description":"UsersForDepotExample",
                                        "value":{
                                            "usersFound":1,
                                            "firstUserReturned":1,
                                            "usersReturned":1,
                                            "users":[
                                                {
                                                    "id":"D6C3278E95C044D0B2D028D95E0296A3",
                                                    "firstName":"Carol",
                                                    "lastName":"Johnson",
                                                    "userName":"carolj",
                                                    "emailAddress":"carol.johnson@email.com",
                                                    "roles":[
                                                        "Depot Manager"
                                                    ],
                                                    "phone":"+1-444-555-6666"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. studyId or depotId is missing or not a validid.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId and depotId must be valid UUIDs."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-depots-{depotId}-users-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-depots-depotid-users-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/users":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get requested active users for a study with study roles and email address"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the requested users that belong to a study and mode.",
                "operationId":"getUserStudyRoleDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts active, test, or training",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active",
                                "all"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "requestBody":{
                    "description":"Accepts an object with Study user IDs.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/UserIdsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserStudyRolesListDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-users-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-users-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/{mode}/users/studyroles":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all active users for a study with study roles and email address"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the active users that belong to a study.",
                "operationId":"getUserStudyRolesForStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts active, test, or training",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active",
                                "all"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "requestBody":{
                    "description":"Accepts an object with Study role IDs.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRolesIdsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserStudyRolesListDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-{mode}-users-studyroles-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-mode-users-studyroles-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/sites/{siteId}/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get users for a site"
                ],
                "summary":"v1.0",
                "description":"Retrieves all authorized users for a site and given study.",
                "operationId":"getUsersForSite_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier for the site within the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A8C437F7F76D4DBE999FCB110A1DC489"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"User list for the given site in the study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UsersForSiteExample":{
                                        "summary":"Users list for a site, including all user and contact fields.",
                                        "description":"UsersForSiteExample",
                                        "value":{
                                            "usersFound":2,
                                            "firstUserReturned":1,
                                            "usersReturned":2,
                                            "users":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "firstName":"Alice",
                                                    "lastName":"Brown",
                                                    "userName":"alicebrown",
                                                    "emailAddress":"alice.brown@email.com",
                                                    "roles":[
                                                        "Monitor",
                                                        "Site User"
                                                    ],
                                                    "phone":"+1-123-456-7890"
                                                },
                                                {
                                                    "id":"21E0C8A2C11045A584ADEA8760F72E58",
                                                    "firstName":"Bob",
                                                    "lastName":"Smith",
                                                    "userName":"bobsmith",
                                                    "emailAddress":"bob.smith@email.com",
                                                    "roles":[
                                                        "Monitor"
                                                    ],
                                                    "phone":"+1-987-654-3210"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. studyId or siteId is missing or not a valid id.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId and siteId must be valid UUIDs."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-sites-{siteId}-users-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-sites-siteid-users-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/users/detail":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all study users' details"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the users that belong to a study and their details.",
                "operationId":"getUsersForStudy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study. Must be a 32-character uppercase hexadecimal UUID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2A56BCED9A09442B8E3082DCF0F3A229"
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Optional study access mode to filter users (e.g., \"design\").",
                        "schema":{
                            "type":"string"
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Detailed user list for the specified study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayStudyUserDtoV2"
                                    }
                                },
                                "examples":{
                                    "ExampleDetailedStudyUser":{
                                        "summary":"Fully expanded user assignment object with all nested DTO properties.",
                                        "description":"ExampleDetailedStudyUser",
                                        "value":{
                                            "id":"EBE0BCD1163845CF8E16E58722EEAA42",
                                            "firstName":"Jamie",
                                            "lastName":"Taylor",
                                            "userName":"jtaylor",
                                            "lastAccess":"2025-07-10T09:32:45.000Z",
                                            "effectiveStart":"2023-01-05T08:30:00.000Z",
                                            "effectiveEnd":"2026-01-15T17:00:00.000Z",
                                            "roles":[
                                                "Data Viewer",
                                                "Monitor"
                                            ],
                                            "sites":{
                                                "allSites":false,
                                                "associatedSites":[
                                                    "SiteA",
                                                    "SiteB"
                                                ]
                                            },
                                            "depots":{
                                                "allDepots":false,
                                                "associatedDepots":[
                                                    "DepotA"
                                                ]
                                            },
                                            "email":"jamie.taylor@example.com",
                                            "phone":"+1-999-111-2222"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId must be a valid UUID."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-users-detail-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-users-detail-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/paginatedUsers":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all users for a study"
                ],
                "summary":"v1.0",
                "description":"Get all users for a study",
                "operationId":"getUsersForStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9F5087A6C75E4A27AF1CA8B5F24D5992"
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Optional study mode for filtering (e.g., design).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"design"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Index of the first user returned in this page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Number of users to return in this page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search filter for users.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"John Smith"
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"List of fields to sort by.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "userName",
                            "lastName"
                        ]
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Include removed users? \"Y\" for yes, \"N\" for no.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Offset index for pagination.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Pagination limit (page size).",
                        "schema":{
                            "type":"string",
                            "default":"10"
                        },
                        "example":20
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of user assignments for the study returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserListDtoV3"
                                },
                                "examples":{
                                    "PaginatedStudyUsersExample":{
                                        "description":"PaginatedStudyUsersExample",
                                        "value":{
                                            "studyId":"9F5087A6C75E4A27AF1CA8B5F24D5992",
                                            "usersFound":2,
                                            "firstUserReturned":1,
                                            "usersReturned":2,
                                            "users":[
                                                {
                                                    "id":"A1B29F36F5D64B1B95F4BDBBCEA481AB",
                                                    "firstName":"Chris",
                                                    "lastName":"Roberts",
                                                    "userName":"chrisrob",
                                                    "emailAddress":"chris.roberts@email.com",
                                                    "roles":[
                                                        "Rule Designer",
                                                        "Update the Shipment Order Form"
                                                    ]
                                                },
                                                {
                                                    "id":"21E0C8A2C11045A584ADEA8760F72A42",
                                                    "firstName":"Dana",
                                                    "lastName":"Scott",
                                                    "userName":"danascott",
                                                    "emailAddress":"dana.scott@email.com",
                                                    "roles":[
                                                        "Rule Designer"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-paginatedUsers-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-paginatedusers-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authstudies/{studyId}/userdetails":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Users/Retrieves all the users that belong to a study mode."
                ],
                "summary":"v1.0",
                "description":"Retrieves all the users that belong to a study mode.",
                "operationId":"getUsersForStudyMode_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Users index to start from",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of users to return",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    }
                ],
                "requestBody":{
                    "description":"The filter and query object for searching/filtering users within the study context. All query parameters are detailed; use realistic values as shown in the example.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RqstUsersSearchSpecificationsDto"
                            },
                            "example":{
                                "mode":"active",
                                "sites":{
                                    "allSites":false,
                                    "siteIds":[
                                        "F2BA7A6D9932477388AFB8E7795216D1"
                                    ]
                                },
                                "depots":{
                                    "allDepots":false,
                                    "names":[
                                        "DepotA"
                                    ]
                                },
                                "userStatus":"Active",
                                "studyRoles":[
                                    "CCAEBF9856E84C709068A0A1BD45E3CB"
                                ],
                                "studyRoleTypes":[
                                    "Monitor"
                                ],
                                "searchString":"smith",
                                "sortBy":"lastName",
                                "sortOrder":"asc"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserListDtoV3"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authstudies-{studyId}-userdetails-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authstudies-studyid-userdetails-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get the list of study roles for a study ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This endpoint for querying study roles by Study ID is deprecated. Use '/v3.0/studyroles/{studyId}' in AuthStudyRolesResourceV3 for enhanced payload. The v3 endpoint returns additional properties and supports advanced filtering options.",
                "operationId":"getStudyRolesForStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the study. Example: \"37F6B1958D4B4C42A1F5D3B148651073\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"37F6B1958D4B4C42A1F5D3B148651073"
                    },
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Name filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Rule Designer"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Type filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Runtime"
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"Status filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Active"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"String to search for in role attributes.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of study role parameters for the specified study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParams"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Example of deprecated study role param list for a study.",
                                        "value":[
                                            {
                                                "studyRoleId":"B931A89223C2425EAF9574EBA59455CF",
                                                "studyRoleName":"MONITOR",
                                                "studyRoleDesc":"Monitor role grants viewing and edit capabilities.",
                                                "studyRoleType":"SITE",
                                                "studyRoleStatus":"ACTIVE",
                                                "studyRoleCreationType":"AUTO",
                                                "studyId":"37F6B1958D4B4C42A1F5D3B148651073",
                                                "roleId":"E622F2E99B2740C785A927B16A5BDA1A",
                                                "versionStart":"2021-01-01T00:00:00.000Z",
                                                "versionEnd":"2023-12-31T23:59:59.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Invalid query parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyid-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Update a study role group"
                ],
                "summary":"v1.0",
                "description":"Updates a study role group for a study.",
                "operationId":"updateRoleGroup",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRoleDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyRoleDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyId}-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyid-put"
            },
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Create a study role group for a study"
                ],
                "summary":"v1.0",
                "description":"Creates a new study role group for a study.",
                "operationId":"createStudyRoleStudyGroup_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the study for which to create the group. Example: \"37F6B1958D4B4C42A1F5D3B148651073\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"37F6B1958D4B4C42A1F5D3B148651073"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "requestBody":{
                    "description":"Study-specific study role group creation request.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRolePostDto"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"JSON body to create a study role group for a given study.",
                                    "value":{
                                        "studyRoleName":"SITE_COORDINATOR",
                                        "studyRoleDesc":"Can manage subject and site data.",
                                        "studyRoleType":"SITE",
                                        "studyRoleStatus":"ACTIVE",
                                        "studyRoleCreationType":"MANUAL",
                                        "roleList":[
                                            {
                                                "roleId":"C2F3B799BCED4C868E668A002A3F30F3"
                                            }
                                        ],
                                        "reason":"Configured at initial setup.",
                                        "comment":"Primary coordinator assignment for site."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful creation of study-level study role.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyRoleDto"
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"A full response for the created study role group.",
                                        "value":{
                                            "studyRoleId":"6D84A3F9D41E4BB8B5FC99A27DCC2B9B",
                                            "studyRoleName":"SITE_VIEWER",
                                            "studyRoleDesc":"A role allowing access to all site-specific data.",
                                            "studyRoleType":"SITE",
                                            "studyRoleCreationType":"MANUAL",
                                            "roleList":[
                                                {
                                                    "roleId":"ED123C41A2304E21850F4A2B92FED971",
                                                    "objectVersionNumber":1
                                                }
                                            ],
                                            "reason":"Initial assignment.",
                                            "comment":"This group was created as part of baseline configuration."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters supplied; see error response.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyId}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyid-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for an organization"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This endpoint for querying tenant study roles is deprecated. Use '/v3.0/studyroles/' in AuthStudyRolesResourceV3 for improved filtering, parameter names, and response payload that includes enhanced details and field mappings. The new API returns the same information but supports additional query parameters for advanced searches.",
                "operationId":"getStudyRolesForTenant_1",
                "parameters":[
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Name filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MONITOR"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Type filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Design"
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"Status filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"String to search for in role attributes.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful response.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParams"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Example response showing study role parameters for tenant.",
                                        "value":[
                                            {
                                                "studyRoleId":"B931A89223C2425EAF9574EBA59455CF",
                                                "studyRoleName":"MONITOR",
                                                "studyRoleDesc":"Monitor role grants viewing and edit capabilities.",
                                                "studyRoleType":"SITE",
                                                "studyRoleStatus":"ACTIVE",
                                                "studyRoleCreationType":"AUTO",
                                                "studyId":"37F6B1958D4B4C42A1F5D3B148651073",
                                                "roleId":"E622F2E99B2740C785A927B16A5BDA1A",
                                                "versionStart":"2021-01-01T00:00:00.000Z",
                                                "versionEnd":"2023-12-31T23:59:59.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Invalid query parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Update a study role group for an organization"
                ],
                "summary":"v1.0",
                "description":"Updates a study role group for an entire organization.",
                "operationId":"updateRoleGroup_2",
                "parameters":[
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "requestBody":{
                    "description":"StudyRoleDto object containing updated study role group details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRoleDto"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "studyRoleId":"6D84A3F9D41E4BB8B5FC99A27DCC2B9B",
                                        "studyRoleName":"SITE_VIEWER",
                                        "studyRoleDesc":"A role allowing access to all site-specific data.",
                                        "studyRoleType":"SITE",
                                        "studyRoleCreationType":"MANUAL",
                                        "roleList":[
                                            {
                                                "roleId":"ED123C41A2304E21850F4A2B92FED971",
                                                "objectVersionNumber":1
                                            }
                                        ],
                                        "reason":"Updated for new permissions.",
                                        "comment":"Review and approve the access expansion."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Study role group updated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyRoleDto"
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Response Example",
                                        "value":{
                                            "studyRoleId":"6D84A3F9D41E4BB8B5FC99A27DCC2B9B",
                                            "studyRoleName":"SITE_VIEWER",
                                            "studyRoleDesc":"A role allowing access to all site-specific data.",
                                            "studyRoleType":"SITE",
                                            "studyRoleCreationType":"MANUAL",
                                            "roleList":[
                                                {
                                                    "roleId":"ED123C41A2304E21850F4A2B92FED971",
                                                    "objectVersionNumber":1
                                                }
                                            ],
                                            "reason":"Updated for new permissions.",
                                            "comment":"Review and approve the access expansion."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid input or missing fields.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-put"
            },
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Create a study role group for an organization"
                ],
                "summary":"v1.0",
                "description":"Creates a new study role group for an entire organization.",
                "operationId":"createStudyRoleTenantGroup_1",
                "parameters":[
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "requestBody":{
                    "description":"The study role tenant group creation request object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRolePostDto"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Complete body example for creating a tenant-level study role group.",
                                    "value":{
                                        "studyRoleName":"SITE_COORDINATOR",
                                        "studyRoleDesc":"Can manage subject and site data.",
                                        "studyRoleType":"SITE",
                                        "studyRoleStatus":"ACTIVE",
                                        "studyRoleCreationType":"MANUAL",
                                        "roleList":[
                                            {
                                                "roleId":"C2F3B799BCED4C868E668A002A3F30F3"
                                            }
                                        ],
                                        "reason":"Configured at initial setup.",
                                        "comment":"Primary coordinator assignment for site."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful creation of the study role.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyRoleDto"
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"A full response object for the created study role.",
                                        "value":{
                                            "studyRoleId":"6D84A3F9D41E4BB8B5FC99A27DCC2B9B",
                                            "studyRoleName":"SITE_VIEWER",
                                            "studyRoleDesc":"A role allowing access to all site-specific data.",
                                            "studyRoleType":"SITE",
                                            "studyRoleCreationType":"MANUAL",
                                            "roleList":[
                                                {
                                                    "roleId":"ED123C41A2304E21850F4A2B92FED971",
                                                    "objectVersionNumber":1
                                                }
                                            ],
                                            "reason":"Initial assignment.",
                                            "comment":"This group was created as part of baseline configuration."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters supplied; see error response.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/copy/{studyId}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Create study roles list for a study"
                ],
                "summary":"v1.0",
                "description":"Create study roles list for a specific study.",
                "operationId":"createStudyRolesList_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-copy-{studyId}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-copy-studyid-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/remove/{studyId}":{
            "delete":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Delete study roles list for a study"
                ],
                "summary":"v1.0",
                "description":"Remove study roles list for a specific study.",
                "operationId":"deleteStudyRolesList_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the study whose roles should be removed. Example: \"A9F9989BAF4D416BBFFEDCD37B4CC2F1\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A9F9989BAF4D416BBFFEDCD37B4CC2F1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Study roles removed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Study ID supplied.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-remove-{studyId}-delete",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-remove-studyid-delete"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/{studyroleId}/study/{studyId}/rightsgroups":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions for a study role for a study ID"
                ],
                "summary":"v1.0",
                "description":"Get groups of permissions for a study role for a study ID",
                "operationId":"getStudyRightsGroupsForStudyRole_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the study to query. Example: \"9340F1E228C34D28A16B173472BF437E\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9340F1E228C34D28A16B173472BF437E"
                    },
                    {
                        "name":"studyroleId",
                        "in":"path",
                        "description":"UUID of the study role. Example: \"3D2ACEF7D4DC4A719B5F8C8649C5F96F\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3D2ACEF7D4DC4A719B5F8C8649C5F96F"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Study role type string identifier. Example: \"SITE_SPECIFIC\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE_SPECIFIC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of rights groups for the given study role and study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleWithRightsDto"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Response Example",
                                        "value":[
                                            {
                                                "id":"D2FEB81D0E364B22B2EE172CD220A1D1",
                                                "roleName":"Rule Designer",
                                                "roleCategory":"STUDY_SPECIFIC",
                                                "roleSubCategory":"LEAD",
                                                "unblinded":"YES",
                                                "objectVersionNumber":3,
                                                "selected":true,
                                                "rights":[
                                                    {
                                                        "id":"A8C7B83378261E99F4A6823F43A6063B",
                                                        "rightName":"ACCESS_SUBJECT_DATA"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid role ID, study ID, or study role type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyroleId}-study-{studyId}-rightsgroups-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyroleid-study-studyid-rightsgroups-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/{studyId}/rolesRights":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get the list of study roles containing particular rights"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of study roles  containing particular list of rights , the result shows active/inactive status and template/custom role anc can exclude template roles.",
                "operationId":"getStudyRolesForRight_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"rightToFilter",
                        "in":"query",
                        "description":"Provided list of rights to filter",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "example":[
                                    "ADMIN",
                                    "DESIGNER"
                                ]
                            }
                        }
                    },
                    {
                        "name":"excludeTemplateRoles",
                        "in":"query",
                        "description":"Result should exclude the template role",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayStudyRoleRightsDto"
                                    }
                                },
                                "examples":{
                                    "DisplayStudyRoleRightsDto":{
                                        "description":"DisplayStudyRoleRightsDto",
                                        "value":{
                                            "roleId":"B748C913E61B4B18A9B5D80F349BC8FD",
                                            "roleName":"Site User",
                                            "roleCategory":"Site",
                                            "activeStatus":"Active",
                                            "roleType":"Runtime",
                                            "rights":[
                                                {
                                                    "displayName":"Update processing recipe",
                                                    "rightName":"UpdateRecipe"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyId}-rolesRights-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyid-rolesrights-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/{studyId}/{studyRoleId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for study ID and study Role ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of study roles for study ID and study Role ID.",
                "operationId":"getStudyRolesForStudyIdAndStudyRoleId_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Get removed details",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParams"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyId}-{studyRoleId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyid-studyroleid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/studyroleid/{studyRoleId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get study roles list for a study role ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of study roles with details for an organization.",
                "operationId":"getStudyRolesForStudyRoleId_1",
                "parameters":[
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Get removed details",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParams"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-studyroleid-{studyRoleId}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyroleid-studyroleid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/{studyroleid}/rightsgroups":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions"
                ],
                "summary":"v1.0",
                "description":"Retrieves the groups of permissions associated with a study role for a given study.",
                "operationId":"getTenantRightsGroupsForStudyRole_1",
                "parameters":[
                    {
                        "name":"studyroleid",
                        "in":"path",
                        "description":"UUID of the study role at tenant level. Example: \"A093D777F34748E8A03A5D6EDC7E6DA2\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A093D777F34748E8A03A5D6EDC7E6DA2"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Type of the study role (e.g., STUDY_SPECIFIC, SITE_SPECIFIC). Example: \"SITE_SPECIFIC\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE_SPECIFIC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of rights groups for the tenant study role.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleWithRightsDto"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Response Example",
                                        "value":[
                                            {
                                                "id":"D2FEB81D0E364B22B2EE172CD220A1D1",
                                                "roleName":"Rule Designer",
                                                "roleCategory":"STUDY_SPECIFIC",
                                                "roleSubCategory":"LEAD",
                                                "unblinded":"YES",
                                                "objectVersionNumber":3,
                                                "selected":true,
                                                "rights":[
                                                    {
                                                        "id":"A8C7B83378261E99F4A6823F43A6063B",
                                                        "rightName":"ACCESS_SUBJECT_DATA"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid role ID or role type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-{studyroleid}-rightsgroups-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-studyroleid-rightsgroups-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/retire/{studyroleId}":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Retire a study role"
                ],
                "summary":"v1.0",
                "description":"Retire a specific study role for an organization.",
                "operationId":"retireStudyRole_1",
                "parameters":[
                    {
                        "name":"studyroleId",
                        "in":"path",
                        "description":"UUID of the tenant role to retire. Example: \"6B66F9F8B9B845CFA648A6B23F1C34F2\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6B66F9F8B9B845CFA648A6B23F1C34F2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Role retired successfully at tenant level.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid study role ID supplied.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-retire-{studyroleId}-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-retire-studyroleid-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/studyroles/retire/{studyroleId}/study/{studyId}":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Retire study role for a study"
                ],
                "summary":"v1.0",
                "description":"Retire study role for a specific study.",
                "operationId":"retireStudyRolePerStudy_1",
                "parameters":[
                    {
                        "name":"studyroleId",
                        "in":"path",
                        "description":"UUID of the role to retire. Example: \"42E19965BC63497E9A521B4DC2AF189A\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"42E19965BC63497E9A521B4DC2AF189A"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the corresponding study. Example: \"7B5A53744ED242D2A1C0752B1C0A34BC\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7B5A53744ED242D2A1C0752B1C0A34BC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Role retired successfully for the specified study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid study role ID or study ID supplied.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-studyroles-retire-{studyroleId}-study-{studyId}-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyroles-retire-studyroleid-study-studyid-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/studies/{studyId}/bulk":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Users/Create and assign bulk users"
                ],
                "summary":"v1.0",
                "description":"Create multiple users in bulk for a study. Provide studyId in path, and a list of user objects in the body. The request allows for both federated and training users.",
                "operationId":"createUsers_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study where the users will be created.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"85EFD8B9FF11437F8D0DA3F314A9D123"
                    },
                    {
                        "name":"runAsync",
                        "in":"query",
                        "description":"If true, run asynchronously. Defaults to false.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Bulk user creation payload: provide all fields as per BulkUsersUploadDetailsDto schema.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUsersUploadDetailsDto"
                            },
                            "examples":{
                                "BulkUsersRequest":{
                                    "summary":"Sample bulk user creation payload",
                                    "description":"BulkUsersRequest",
                                    "value":{
                                        "isFederatedUser":true,
                                        "isTrainingModeUpload":false,
                                        "comment":"Mass upload for investigators",
                                        "users":[
                                            {
                                                "id":"F6B4E947CA41478DBE30CEF0A823BC43",
                                                "idcsId":"D196BD697CB34E169A7D8E465AB8B2F5",
                                                "firstName":"John",
                                                "lastName":"Smith",
                                                "userName":"jsmith",
                                                "emailId":"john.smith@email.com",
                                                "role":"SiteAdmin",
                                                "sites":"F6B4E947CA41478DBE30CEF0A823BC63,F6B4E947CA42478DBE30CEF0A823BC43",
                                                "depots":"F6B4E947CA41478DBE30CEF0A823BC40",
                                                "startDate":"2025-12-31T00:00:00.000Z",
                                                "endDate":"3099-12-31T00:00:00.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-studies-{studyId}-bulk-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-studies-studyid-bulk-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/study/{studyid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all active and inactive users per study"
                ],
                "summary":"v1.0",
                "description":"Gets the list of users assigned to a specific study. Use studyId to select the study, and optionally exclude system users from the result. All user objects include attributes (ID, userName, email, roles, status, etc.).",
                "operationId":"getAllUsersAuditPerStudy_1",
                "parameters":[
                    {
                        "name":"studyid",
                        "in":"path",
                        "description":"Unique identifier for the study to filter users.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"DDF00A816BED40188DF769B206AD0EC6"
                    },
                    {
                        "name":"excludeSystemUsers",
                        "in":"query",
                        "description":"If true, users created by system processes are excluded.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserDto2"
                                    }
                                },
                                "examples":{
                                    "UsersInStudy":{
                                        "summary":"Sample audit users in study response",
                                        "description":"UsersInStudy",
                                        "value":[
                                            {
                                                "id":"7390B045F5A14F78956CA4D86E1CCD2E",
                                                "userName":"asmith",
                                                "firstName":"Alice",
                                                "lastName":"Smith",
                                                "emailAddress":"alice.smith@email.com",
                                                "roles":[
                                                    "Rule Designer"
                                                ],
                                                "status":"ACTIVE"
                                            },
                                            {
                                                "id":"5B799F3C928A42509A38EFB3CB343F0D",
                                                "userName":"bphillips",
                                                "firstName":"Bob",
                                                "lastName":"Phillips",
                                                "emailAddress":"bob.phillips@email.com",
                                                "roles":[
                                                    "Rule Designer"
                                                ],
                                                "status":"INACTIVE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-study-{studyid}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-study-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get user details by user ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v2.0/authusers/{userid} for current DTOs and additional fields. This endpoint fetches a single user by UUID. v2 support new user schema and additional metadata.",
                "operationId":"getUser_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"Unique identifier for the user to retrieve.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"21E0C8A2C11045A584ADEA8760F72E58"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success: User details returned. Deprecated: Use v2/v3 endpoint for expanded user schema.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserDto"
                                },
                                "examples":{
                                    "SingleUser":{
                                        "summary":"Sample individual user response",
                                        "description":"SingleUser",
                                        "value":{
                                            "id":"21E0C8A2C11045A584ADEA8760F72E58",
                                            "userName":"jsmith",
                                            "firstName":"John",
                                            "lastName":"Smith",
                                            "emailAddress":"john.smith@email.com",
                                            "roles":[
                                                "SiteAdmin"
                                            ],
                                            "status":"ACTIVE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get list of users"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v3.0/authusers for latest features and optimized performance. This endpoint retrieves users with optional search, pagination, or filtering. The latest version supports advanced search and user management capabilities with new DTOs. See v3 APIs for details.",
                "operationId":"getUsers_3",
                "parameters":[
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Free text string to filter/search users by name, email, or attributes. Example: \"smith\"",
                        "schema":{
                            "type":"string"
                        },
                        "example":"smith"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Start index (zero-based) for paginated results. Example: 0",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Number of user records to return in response. Example: 25",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success: List of users in the system. Deprecated: Use the v2 or v3 endpoint for latest structure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UserList":{
                                        "summary":"Sample response for user list",
                                        "description":"UserList",
                                        "value":{
                                            "users":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "userName":"jsmith",
                                                    "firstName":"John",
                                                    "lastName":"Smith",
                                                    "emailAddress":"john.smith@email.com",
                                                    "roles":[
                                                        "SiteAdmin"
                                                    ],
                                                    "status":"ACTIVE"
                                                }
                                            ],
                                            "total":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/studies/{studyId}/users/effectivedates":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Users/Bulk user effective dates update"
                ],
                "summary":"v1.0",
                "description":"Bulk update effective start/end dates for user assignments in a study. Provide a list of user IDs or filter criteria, plus new effective dates, in the request body.",
                "operationId":"updateUserEffectiveDates_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"85EFD8B9FF11437F8D0DA3F314A9D123"
                    }
                ],
                "requestBody":{
                    "description":"Bulk effective date update payload. Provide fields as per BulkUsersEffectiveDatesUpdateDetailsDto.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUsersEffectiveDatesUpdateDetailsDto"
                            },
                            "examples":{
                                "BulkEffectiveDatesUpdateRequest":{
                                    "summary":"Sample bulk effective dates update payload",
                                    "description":"BulkEffectiveDatesUpdateRequest",
                                    "value":{
                                        "userIds":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "21E0C8A2C11045A584ADEA8760F72E58"
                                        ],
                                        "allUsers":false,
                                        "userSearchSpecs":{
                                            "mode":"active",
                                            "sites":{
                                                "ids":[
                                                    "123F0B1426C11EE90C31234567890AAA"
                                                ]
                                            },
                                            "depots":{
                                                "names":[
                                                    "DepotA"
                                                ]
                                            },
                                            "userStatus":"Inactive",
                                            "studyRoles":[
                                                "AF73A2EEA90B4E9394CE6CB40B5BC66E"
                                            ],
                                            "studyRoleTypes":[
                                                "PrincipalInvestigator"
                                            ],
                                            "searchString":"site, US",
                                            "sortBy":"lastName",
                                            "sortOrder":"asc"
                                        },
                                        "effectiveStart":"2024-01-01T08:00:00.000Z",
                                        "effectiveEnd":"2025-12-31T17:30:00.000Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-studies-{studyId}-users-effectivedates-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-studies-studyid-users-effectivedates-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/studies/{studyId}/users/roles":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Users/Bulk user roles update"
                ],
                "summary":"v1.0",
                "description":"Bulk update user roles for a study. Provide studyId and a payload containing mode, studyRoleId, user IDs or search criteria. This endpoint assigns/removes roles in a single call.",
                "operationId":"updateUserRoles_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"85EFD8B9FF11437F8D0DA3F314A9D123"
                    }
                ],
                "requestBody":{
                    "description":"Bulk user roles update payload, provide fields as per BulkUsersRoleUpdateDetailsDto.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUsersRoleUpdateDetailsDto"
                            },
                            "examples":{
                                "BulkRoleUpdateRequest":{
                                    "summary":"Sample bulk user roles update payload",
                                    "description":"BulkRoleUpdateRequest",
                                    "value":{
                                        "mode":"active",
                                        "studyRoleId":"A1B2C3D4E5F647849C1A2B3C4D5E6F78",
                                        "userIds":[
                                            "21E0C8A2C11045A584ADEA8760F72E58",
                                            "F6B4E947CA41478DBE30CEF0A823BC43"
                                        ],
                                        "allUsers":false,
                                        "userSearchSpecs":{
                                            "mode":"active",
                                            "sites":{
                                                "ids":[
                                                    "123F0B1426C11EE90C31234567890AAA"
                                                ]
                                            },
                                            "depots":{
                                                "names":[
                                                    "DepotA"
                                                ]
                                            },
                                            "userStatus":"Inactive",
                                            "studyRoles":[
                                                "AF73A2EEA90B4E9394CE6CB40B5BC66E"
                                            ],
                                            "studyRoleTypes":[
                                                "PrincipalInvestigator"
                                            ],
                                            "searchString":"site, US",
                                            "sortBy":"lastName",
                                            "sortOrder":"asc"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-studies-{studyId}-users-roles-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-studies-studyid-users-roles-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/studies/{studyId}/users/sites":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Users/Bulk user sites update"
                ],
                "summary":"v1.0",
                "description":"Bulk update sites for a list of users or users matching search criteria in the specified study.",
                "operationId":"updateUserSites_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"85EFD8B9FF11437F8D0DA3F314A9D123"
                    }
                ],
                "requestBody":{
                    "description":"Bulk sites update payload. Provide fields as per BulkUsersSitesUpdateDetailsDto.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUsersSitesUpdateDetailsDto"
                            },
                            "examples":{
                                "BulkSitesUpdateRequest":{
                                    "summary":"Sample bulk sites update payload",
                                    "description":"BulkSitesUpdateRequest",
                                    "value":{
                                        "modeName":"active",
                                        "userIds":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "21E0C8A2C11045A584ADEA8760F72E58"
                                        ],
                                        "allUsers":false,
                                        "userSearchSpecs":{
                                            "mode":"active",
                                            "searchString":"site, US"
                                        },
                                        "allSites":false,
                                        "associatedSites":[
                                            "666666D084BB4680AC08AEF5DC8B0EE9",
                                            "88888814875B45D5B700987A23A823E2"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-studies-{studyId}-users-sites-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-studies-studyid-users-sites-put"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}/studies/{studyId}":{
            "delete":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Delete a user's mode and roles"
                ],
                "summary":"v1.0",
                "description":"Removes the modes and roles for a user and a study.",
                "operationId":"deleteUserStudyModeRoles_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EBE31741A0E945F6B827048B279F2F19"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-studies-{studyId}-delete",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-studies-studyid-delete"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}/studies/{studyId}/usersupdatetemplate":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to update users"
                ],
                "summary":"v1.0",
                "description":"Downloads the Clinical One user upload template file to update users, autopopulated with current users and with specific study roles for a study.",
                "operationId":"getBulkUserUpdateTemplate_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID (UUID) whose assignments are being retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647B8B0376A0874DA6ADE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647B8B0376A0874DA6ADE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/vnd.ms-excel.sheet.binary.macroEnabled.12":{
                                "schema":{
                                    "type":"String",
                                    "format":"binary"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-studies-{studyId}-usersupdatetemplate-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-studies-studyid-usersupdatetemplate-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}/studies/{studyId}/usersuploadtemplate":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to create users"
                ],
                "summary":"v1.0",
                "description":"Download the Clinical One upload user template with specific study roles for a study.",
                "operationId":"getBulkUserUploadTemplate_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/vnd.ms-excel.sheet.binary.macroEnabled.12":{
                                "schema":{
                                    "type":"String",
                                    "format":"binary"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-studies-{studyId}-usersuploadtemplate-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-studies-studyid-usersuploadtemplate-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/report/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generate a global report"
                ],
                "summary":"v1.0",
                "description":"Generates global reports for the specified report type. Clients must provide the report name as a path parameter and can supply filter/query criteria in the request payload.\nThe response is a paginated list of results based on the applied filter.",
                "operationId":"generateGlobalReports_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"The name of the report to generate.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"USER_ASSIGNMENT"
                    }
                ],
                "requestBody":{
                    "description":"Request parameters and filters for the report to be generated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "RequestExample":{
                                    "summary":"Example request body for generating a report",
                                    "description":"RequestExample",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteId",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "A1B2C3D4E5F647849C1A2B3C4D5E6F78",
                                                    "2F4892A9A9B84D7E91CDAB2A1B479DF0"
                                                ]
                                            },
                                            {
                                                "fieldName":"role",
                                                "fieldType":"string",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "Rule Designer",
                                                    "Site User"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful report generated. The response is wrapped in AuthResponse with result as PaginatedResponseDto.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "SuccessExample":{
                                        "summary":"Successful response example",
                                        "description":"SuccessExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"false",
                                                "totalResults":350,
                                                "count":20,
                                                "limit":20,
                                                "offset":0,
                                                "columns":[
                                                    "UserName",
                                                    "UserId",
                                                    "SiteName",
                                                    "Role"
                                                ],
                                                "data":[
                                                    [
                                                        "fiona.cobb@example.com",
                                                        "8571341A98694B82B8EB3EB901C88ACD",
                                                        "US-East",
                                                        "Rule Designer"
                                                    ],
                                                    [
                                                        "lucas.james@example.com",
                                                        "225B79C982104415886DE02BC73C1E1E",
                                                        "US-West",
                                                        "Site User"
                                                    ]
                                                ]
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Failed to generate the report due to validation or business errors.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "ErrorExample":{
                                        "summary":"Example error response",
                                        "description":"ErrorExample",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AN-1000",
                                                "errorMessage":"Rightname not found",
                                                "details":null
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-report-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-report-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/report/globalstudyrole/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generate a user assignment report (global level)"
                ],
                "summary":"v1.0",
                "description":"Generates a report of users and their global study assignments for a specific report. Sample usage includes providing the report name as a path parameter and filter criteria in the request payload. The Session Token is required as a query parameter.",
                "operationId":"generateGlobalStudyUserPermissionReport_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"The name of the global study user assignment report.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"GLOBAL_USER_ASSIGNMENT"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session UUID token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8571341A98694B82B8EB3EB901C88ACD"
                    }
                ],
                "requestBody":{
                    "description":"Request parameters and filters for global study role report.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "RequestExample":{
                                    "summary":"Example request body for generating a global study user permission report",
                                    "description":"RequestExample",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteId",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "A1B2C3D4E5F647849C1A2B3C4D5E6F78",
                                                    "2F4892A9A9B84D7E91CDAB2A1B479DF0"
                                                ]
                                            },
                                            {
                                                "fieldName":"role",
                                                "fieldType":"string",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "Rule Designer",
                                                    "Site User"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"User assignment report successfully generated. Response wrapped in AuthResponse with result as PaginatedResponseDto.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "SuccessExample":{
                                        "summary":"Success response for user assignment report",
                                        "description":"SuccessExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"true",
                                                "totalResults":300,
                                                "count":10,
                                                "limit":10,
                                                "offset":0,
                                                "columns":[
                                                    "UserName",
                                                    "UserId",
                                                    "StudyRole",
                                                    "Region"
                                                ],
                                                "data":[
                                                    [
                                                        "john.doe@example.com",
                                                        "A1B2C3D4E5F647849C1A2B3C4D5E6F78",
                                                        "Rule Designer",
                                                        "North America"
                                                    ],
                                                    [
                                                        "jane.smith@sample.com",
                                                        "7B8A92F818BC450D930641CD89A9B3E9",
                                                        "Site User",
                                                        "Europe"
                                                    ]
                                                ]
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request or report could not be generated. See errorData for details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "ErrorExample":{
                                        "summary":"Example error response",
                                        "description":"ErrorExample",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AN-1000",
                                                "errorMessage":"Session token invalid or missing",
                                                "details":null
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-report-globalstudyrole-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-report-globalstudyrole-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generate a user assignment report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v2/{studyId}/{mode}/report/{reportName} for improved filtering, error handling, and extended result structure. This endpoint generates a user assignment report for a study by the provided report name using v1 search criteria. Latest version uses stricter search specs validation and responds with updated DTO format.",
                "operationId":"generateUserAssignmentReport_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Name of the report to be generated.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"userAssignment"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"98E0DFA1F1CA4F3B8C78C876021A0E96"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session authentication token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426614174000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Operating mode (e.g. \"test\", \"design\").",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request payload containing search specifications for report generation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "User Assignment Report Request Example":{
                                    "description":"User Assignment Report Request Example",
                                    "value":{
                                        "limit":100,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "SiteA",
                                                    "SiteB"
                                                ]
                                            },
                                            {
                                                "fieldName":"startDate",
                                                "fieldType":"date",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "2020-01-01T00:00:00.000Z"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "User Assignment Report Response":{
                                        "description":"User Assignment Report Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "count":1,
                                                "limit":100,
                                                "offset":0,
                                                "columns":[
                                                    "UserName",
                                                    "UserId",
                                                    "Role"
                                                ],
                                                "data":[
                                                    [
                                                        "fiona.cobb@example.com",
                                                        "68A3A33446EC4D6C807A41542D3D2A91",
                                                        "Rule Designer"
                                                    ]
                                                ]
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "Error":{
                                        "description":"Error",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AN-1000",
                                                "errorMessage":"Rightname not found",
                                                "details":null
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v1.0-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyid-mode-report-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/{studyId}/{mode}/report/uploaderror/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generates the user upload error report"
                ],
                "summary":"v1.0",
                "description":"Generates a user upload error report for the specified study, mode, and report name using provided search specifications.",
                "operationId":"generateUserUploadErrorReport_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Name of the error report to be generated.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"userUploadError"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"98E0DFA1F1CA4F3B8C78C876021A0E96"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session authentication token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426614174000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Operating mode (e.g. \"test\", \"design\").",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request payload containing search specifications for upload error report generation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Upload Error Report Request Example":{
                                    "description":"Upload Error Report Request Example",
                                    "value":{
                                        "limit":100,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "SiteA",
                                                    "SiteB"
                                                ]
                                            },
                                            {
                                                "fieldName":"uploadStatus",
                                                "fieldType":"string",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "FAILED"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "User Upload Error Report Response":{
                                        "description":"User Upload Error Report Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"false",
                                                "totalResults":0,
                                                "count":0,
                                                "limit":100,
                                                "offset":0,
                                                "columns":[
                                                    "UserName",
                                                    "UserId",
                                                    "UploadError"
                                                ],
                                                "data":[
                                                ]
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "Error":{
                                        "description":"Error",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AN-1000",
                                                "errorMessage":"Rightname not found",
                                                "details":null
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-{studyId}-{mode}-report-uploaderror-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v1.0-studyid-mode-report-uploaderror-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v1.0/globalusers/{userid}/roles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get a global user's roles"
                ],
                "summary":"v1.0",
                "description":"Retrieves a global user's assigned roles.",
                "operationId":"getGlobalUserRoles",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A519EF3C2B73455390CFF812AFF61519"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserRoleDto"
                                    }
                                },
                                "examples":{
                                    "UserRolesResponseExample":{
                                        "summary":"A list of user-role associations",
                                        "description":"UserRolesResponseExample",
                                        "value":[
                                            {
                                                "id":"A519EF3C2B73455390CFF812AFF61519",
                                                "roleName":"STUDY_MANAGER"
                                            },
                                            {
                                                "id":"25E7FBBC0B1A4D7E8CB1C8A1D4F7F54F",
                                                "roleName":"EDC_ANALYST"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalusers-{userid}-roles-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalusers-userid-roles-get"
            },
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Update a global user's roles"
                ],
                "summary":"v1.0",
                "description":"Updates a global user's assigned roles.",
                "operationId":"putGlobalUserRoles",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"94A7C1C2049A4C1590AB52F757AD25A3"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "requestBody":{
                    "description":"An array of global role IDs to assign to the user.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string",
                                    "format":"uuid",
                                    "example":"821DEE0FC2204E7A86BCC65A597F7815"
                                }
                            },
                            "examples":{
                                "PutUserRolesRequestExample":{
                                    "summary":"Role assignment by UUID list",
                                    "description":"PutUserRolesRequestExample",
                                    "value":[
                                        "94A7C1C2049A4C1590AB52F757AD25A3",
                                        "821DEE0FC2204E7A86BCC65A597F7815"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserRoleDto"
                                    }
                                },
                                "examples":{
                                    "PutUserRolesResponseExample":{
                                        "summary":"The user's assigned global roles after update",
                                        "description":"PutUserRolesResponseExample",
                                        "value":[
                                            {
                                                "id":"94A7C1C2049A4C1590AB52F757AD25A3",
                                                "roleName":"USER_ADMIN"
                                            },
                                            {
                                                "id":"821DEE0FC2204E7A86BCC65A597F7815",
                                                "roleName":"EDC_ANALYST"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalusers-{userid}-roles-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalusers-userid-roles-put"
            },
            "delete":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Delete a global user's roles"
                ],
                "summary":"v1.0",
                "description":"Removes a global user's assigned roles.",
                "operationId":"deleteGlobalUserRoles",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"A global user's ID whose roles have to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalusers-{userid}-roles-delete",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalusers-userid-roles-delete"
            }
        },
        "/ec-auth-svc/rest/v1.0/globalroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get all global roles"
                ],
                "summary":"v1.0",
                "description":"Retrieves all global roles.",
                "operationId":"getGlobalRoles",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayGlobalRoleDto"
                                    }
                                },
                                "examples":{
                                    "GlobalRolesResponseExample":{
                                        "summary":"A list of global role objects",
                                        "description":"GlobalRolesResponseExample",
                                        "value":[
                                            {
                                                "id":"07968CA58DAF356CAF7BCD708ADCB159",
                                                "roleName":"Approve Library Objects",
                                                "rights":[
                                                    "READ",
                                                    "WRITE"
                                                ]
                                            },
                                            {
                                                "id":"92B18AF1C81840A4B9C0E6F247AB57F9",
                                                "roleName":"System Administrator",
                                                "rights":[
                                                    "GLOBAL_ADMIN",
                                                    "USER_ADMIN"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalroles-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalroles-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/globalusers/{userid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get a global user's details by user ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a global user's details.",
                "operationId":"getGlobalUser",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3B283947D4C1149AAE16251BFDC8E9FA"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserDto"
                                },
                                "examples":{
                                    "GlobalUserResponseExample":{
                                        "summary":"A single user object",
                                        "description":"GlobalUserResponseExample",
                                        "value":{
                                            "id":"3B283947D4C1149AAE16251BFDC8E9FA",
                                            "firstName":"Eve",
                                            "lastName":"Morris",
                                            "userName":"evemorris",
                                            "emailAddress":"eve.morris@email.com"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-globalusers-{userid}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-globalusers-userid-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/users/role/{role}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get users with a certain role"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the users that have a particular role assigned to them.",
                "operationId":"getUsersForRole",
                "parameters":[
                    {
                        "name":"role",
                        "in":"path",
                        "description":"The role name to look up users for (case-sensitive, must match an existing role).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"APPROVE_LIBRARY_OBJECTS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserDto"
                                    }
                                },
                                "examples":{
                                    "UsersForRoleResponseExample":{
                                        "summary":"A list of users for the given global role",
                                        "description":"UsersForRoleResponseExample",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "firstName":"Alice",
                                                "lastName":"Brown",
                                                "userName":"alicebrown",
                                                "emailAddress":"alice.brown@email.com"
                                            },
                                            {
                                                "id":"C7687F75E4C04D1F8742C869E7F508C4",
                                                "firstName":"David",
                                                "lastName":"Smith",
                                                "userName":"davidsmith",
                                                "emailAddress":"david.smith@email.com"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-users-role-{role}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-users-role-role-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/notifications/{rightname}/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get Users for Notification Right"
                ],
                "summary":"v1.0",
                "description":"Returns all users subscribed to the notification right specified by 'rightname' for the active study and mode.",
                "operationId":"getUsers_2",
                "parameters":[
                    {
                        "name":"rightname",
                        "in":"path",
                        "description":"The technical name of the notification right.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SchedulerDelete"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation. Returns a set of users associated with the notification right.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "status":"success",
                                    "result":[
                                        {
                                            "privilege":"SITE_NOTIFY",
                                            "userId":"A1B2C3D4E5F647849C1A2B3C4D5E6F78",
                                            "userName":"Alex Smith",
                                            "userEmailAddress":"sunita.smith@clinicalone.com",
                                            "subscription":"YES"
                                        }
                                    ],
                                    "errorData":null,
                                    "version":1
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Rightname not found. No users are associated with the provided notification right.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "status":"failure",
                                    "result":null,
                                    "errorData":{
                                        "errorCode":"AN-1000",
                                        "errorMessage":"Rightname not found",
                                        "details":null
                                    },
                                    "version":1
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-notifications-{rightname}-users-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-notifications-rightname-users-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/rightname/{rightname}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Verify Notification Right Name"
                ],
                "summary":"v1.0",
                "description":"Checks if the provided notification right name exists in the authorization system and returns its metadata details if found.",
                "operationId":"verifyRightName",
                "parameters":[
                    {
                        "name":"rightname",
                        "in":"path",
                        "description":"The technical name of the right.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"StudyStatePost"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation. Returns metadata information for the specified right.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "status":"success",
                                    "result":{
                                        "rightId":"ABCD1234EF567890ABCD1234EF567890",
                                        "versionStart":"2025-01-01T10:30:00Z",
                                        "versionEnd":"3099-12-31T23:59:59Z",
                                        "operationType":"ADD",
                                        "userId":"FEDCBA9876543210FEDCBA9876543210",
                                        "objectVersionNumber":1,
                                        "softwareVersionNumber":20.2,
                                        "reason":"Added site notification",
                                        "comment":"Auto-generated by rules system",
                                        "rightName":"SITE_NOTIFY",
                                        "rightDisplayName":"Site Notification",
                                        "category":"SiteOperations",
                                        "rightSeq":10,
                                        "categorySeq":3
                                    },
                                    "errorData":null,
                                    "version":1
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Rightname not found. The given right does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "status":"failure",
                                    "result":null,
                                    "errorData":{
                                        "errorCode":"AN-1000",
                                        "errorMessage":"Rightname not found",
                                        "details":null
                                    },
                                    "version":1
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-rightname-{rightname}-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-rightname-rightname-get"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}/locale":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Users/Update auth user attributes by user ID"
                ],
                "summary":"v1.0",
                "description":"Updates the user's locale preference for UI and communication. Provide a list of locale attributes for the user. All attributes are fully replaced with the provided list.",
                "operationId":"updateUsersLocale",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"UUID of the user for which the locale is to be updated.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UserAttributesDto"
                            },
                            "examples":{
                                "Payload":{
                                    "description":"Payload",
                                    "value":[
                                        {
                                            "key":"Locale",
                                            "value":"en-US"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"User locale updated. Returns updated list of user attributes.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UserAttributesDto"
                                },
                                "examples":{
                                    "updated":{
                                        "description":"updated",
                                        "value":[
                                            {
                                                "key":"Locale",
                                                "value":"en-US"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Invalid input data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-locale-put",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-locale-put"
            },
            "delete":{
                "tags":[
                    "Users, Permissions and Roles/Users/Delete user attributes by user ID"
                ],
                "summary":"v1.0",
                "description":"Deletes all locale settings for the specified user. After deletion, the user will not have any locale information associated.",
                "operationId":"deleteUserLocale",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"UUID of the user whose locale is to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"User locale deleted successfully.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "deleted":{
                                        "description":"deleted",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Invalid userId or error occurred.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-locale-delete",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-locale-delete"
            }
        },
        "/ec-auth-svc/rest/v1.0/authusers/{userid}/language":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get user language by user ID"
                ],
                "summary":"v1.0",
                "description":"Gets the current language setting for the specified user. This endpoint retrieves the user's preferred language, which is used for localization of UI and communications.",
                "operationId":"getUserLanguage",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"UUID of the target user.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Operation successful. Returns the user's language as a string.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "language":{
                                        "description":"language",
                                        "value":"en-US"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"User not found, or language not set.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "notFound":{
                                        "description":"notFound",
                                        "value":{
                                            "errorData":{
                                                "errorCode":"ARS-ERR",
                                                "errorMessage":"Not found"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Invalid userId or other error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v1.0-authusers-{userid}-language-get",
                "x-filename-id":"ec-auth-svc-rest-v1.0-authusers-userid-language-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/userinfo":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Permissions/Get a user's info"
                ],
                "summary":"v2.0",
                "description":"Retrieves details for the currently logged-in user in v2 format. Response includes the user's identity, all global rights, and the complete list of key/value attributes.",
                "operationId":"getUserInfo_1",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UserInfoDtoV2"
                                },
                                "examples":{
                                    "UserInfoDtoV2Example":{
                                        "description":"UserInfoDtoV2Example",
                                        "value":{
                                            "firstName":"Jane",
                                            "lastName":"Doe",
                                            "emailAddress":"jane.doe@example.com",
                                            "globalRights":[
                                                "Lab Get",
                                                "DesignerRandListGet"
                                            ],
                                            "userId":"A1234567890B1234567890C12345678E",
                                            "userAttributes":[
                                                {
                                                    "key":"Locale",
                                                    "value":"en-US"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-userinfo-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-userinfo-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/userinfo/bulk":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get users for rights list"
                ],
                "summary":"v2.0",
                "description":"Returns the list of users having the specified rights for a study in v2, with ability to filter by study, to exclude system users, and to set mode. Users have detailed attributes UUIDs. Example output references all user info fields including nested userAttributes.",
                "operationId":"getUsers_1",
                "parameters":[
                    {
                        "name":"rightnames",
                        "in":"query",
                        "description":"List of user rights to match.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":[
                            "Lab Get",
                            "Rule Designer"
                        ]
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study UUID to filter users.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1234567890B1234567890C12345678E"
                    },
                    {
                        "name":"excludeSystemUsers",
                        "in":"query",
                        "description":"If true, excludes system users from the result.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Study mode to filter users (if applicable), e.g., 'INVESTIGATOR', 'VIEWER'.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"INVESTIGATOR"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/UserInfoDtoV3"
                                    }
                                },
                                "examples":{
                                    "UserInfoDtoV3ListExample":{
                                        "description":"UserInfoDtoV3ListExample",
                                        "value":[
                                            {
                                                "firstName":"Eve",
                                                "lastName":"Johnson",
                                                "emailAddress":"eve.johnson@example.com",
                                                "userId":"EC026DEDC88723C3E053EB944C645812",
                                                "globalRights":[
                                                    "Lab Get",
                                                    "Rule Designer"
                                                ],
                                                "userAttributes":[
                                                    {
                                                        "key":"Locale",
                                                        "value":"en-US"
                                                    },
                                                    {
                                                        "key":"TimeZone",
                                                        "value":"Europe/Paris"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-userinfo-bulk-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-userinfo-bulk-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/dataclassification/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification for a study ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves the list of detailed data classification for a study ID.",
                "operationId":"getDataClassification",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-dataclassification-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-dataclassification-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/dataclassification/studyrole/{studyRoleId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get tenant data classifications for study role"
                ],
                "summary":"v2.0",
                "description":"Retrieves the tenant data classifications with levels for the study role.",
                "operationId":"getDataClassificationByStudyRoleTenant",
                "parameters":[
                    {
                        "name":"studyRoleId",
                        "in":"path",
                        "description":"Study role ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-dataclassification-studyrole-{studyRoleId}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-dataclassification-studyrole-studyroleid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/dataclassification":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification for a tenant"
                ],
                "summary":"v2.0",
                "description":"Retrieves the list of detailed data classification for a tenant.",
                "operationId":"getDataClassificationTenant",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-dataclassification-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-dataclassification-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/dataclassification/{studyId}/{mode}/user/{userId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Data Classification/Get list of data classification with levels"
                ],
                "summary":"v2.0",
                "description":"Retrieves the list of data classification with levels.",
                "operationId":"getDataClassificationWithLevels",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"userId",
                        "in":"path",
                        "description":"User ID of the user that needs to be retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"userDcForCacheKey",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataClassificationDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-dataclassification-{studyId}-{mode}-user-{userId}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-dataclassification-studyid-mode-user-userid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/globalroles/users/unassigned":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get global users unassigned to a study"
                ],
                "summary":"v2.0",
                "description":"Retrieves global users who are not assigned to a study. Results can be filtered by user name and limited to a number.",
                "operationId":"getGlobalRolesUsersUnassigned",
                "parameters":[
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Given name or family name of the user to filter the results.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"John"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Offset from where the results should be retrieved",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Limit for the number of results to be returned",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"oracle.hsgbu.clinicalone.serviceToService",
                        "in":"header",
                        "description":"Service to service header key",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    },
                    {
                        "name":"oracle.hsgbu.clinicalone.serviceToService",
                        "in":"query",
                        "description":"Service to service query key",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UnassignedUsersResponseExample":{
                                        "summary":"Paginated unassigned user list for global roles",
                                        "description":"UnassignedUsersResponseExample",
                                        "value":{
                                            "usersFound":2,
                                            "firstUserReturned":0,
                                            "usersReturned":2,
                                            "users":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "firstName":"Alice",
                                                    "lastName":"Brown",
                                                    "userName":"alicebrown",
                                                    "emailAddress":"alice.brown@email.com"
                                                },
                                                {
                                                    "id":"21E0C8A2C11045A584ADEA8760F72E58",
                                                    "firstName":"Bob",
                                                    "lastName":"Smith",
                                                    "userName":"bobsmith",
                                                    "emailAddress":"bob.smith@email.com"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-globalroles-users-unassigned-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-globalroles-users-unassigned-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/globalusers/{userid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get a global user's details by user ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves a global user's details.",
                "operationId":"getGlobalUser_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID of the user that needs to be retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E219CF8F4A74E2184A668F1D1D6D7B6"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Result should include removed objects.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserDtoV3"
                                    }
                                },
                                "examples":{
                                    "GlobalUserByIdResponseExample":{
                                        "summary":"A list with the matching user by user ID",
                                        "description":"GlobalUserByIdResponseExample",
                                        "value":[
                                            {
                                                "id":"50EDBFAE756541D180B6F7CA002C6F84",
                                                "firstName":"Sam",
                                                "lastName":"Lee",
                                                "userName":"samlee",
                                                "emailAddress":"sam.lee@email.com"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-globalusers-{userid}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-globalusers-userid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/globalusers/{userid}/roles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get a global user's roles"
                ],
                "summary":"v2.0",
                "description":"Retrieves a global user's assigned roles.",
                "operationId":"getGlobalUserRoles_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"A global user's ID whose roles have to be retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Result should include removed objects.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RoleDtoParamsV3"
                                    }
                                },
                                "examples":{
                                    "UserRolesResponseExample":{
                                        "summary":"A list of user's assigned global roles (v3 schema)",
                                        "description":"UserRolesResponseExample",
                                        "value":[
                                            {
                                                "id":"7E219CF8F4A74E2184A668F1D1D6D7B6",
                                                "roleName":"GLOBAL_ADMIN",
                                                "roleLabel":"Global Admin",
                                                "rights":[
                                                    "MANAGE_USERS",
                                                    "VIEW_DASHBOARD"
                                                ]
                                            },
                                            {
                                                "id":"002DC9DC0F474F379C506644AEE34E38",
                                                "roleName":"DATA_ENTRY",
                                                "roleLabel":"Data Entry",
                                                "rights":[
                                                    "ENTER_DATA"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-globalusers-{userid}-roles-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-globalusers-userid-roles-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/globalusers":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get global users"
                ],
                "summary":"v2.0",
                "description":"Retrieves global users. Results can be filtered assigned or unassigned users.",
                "operationId":"getGlobalUsers",
                "parameters":[
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Result should include removed objects.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserDtoV3"
                                    }
                                },
                                "examples":{
                                    "GlobalUsersListResponseExample":{
                                        "summary":"A list of users (including possible removed users)",
                                        "description":"GlobalUsersListResponseExample",
                                        "value":[
                                            {
                                                "id":"45B5F5FA3A814B2983DDD9DC94DF796D",
                                                "firstName":"Nina",
                                                "lastName":"Adams",
                                                "userName":"ninaadams",
                                                "emailAddress":"nina.adams@email.com"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-globalusers-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-globalusers-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get the list of roles"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves all user roles of a specific type.",
                "operationId":"getDisplayRoles",
                "parameters":[
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Role type for which to retrieve roles.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Runtime"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleDtoV2"
                                    }
                                },
                                "examples":{
                                    "RolesListResponseV2":{
                                        "summary":"List of roles for v2",
                                        "description":"RolesListResponseV2",
                                        "value":[
                                            {
                                                "id":"ABE31741A0E945F6B827048B279F2F19",
                                                "roleName":"Lead CRA",
                                                "roleType":"STUDY",
                                                "roleCategory":"Central",
                                                "roleSubCategory":"Region-A",
                                                "unblinded":"false",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v2.0-authroles-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authroles-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authroles/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get list roles"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves roles for a specific study and study role type. Use /v3.0/authroles/{studyId} for improved schema including category, subcategory, unblinded, objectVersionNumber. v3 endpoint adds new properties and enhances response structure.",
                "operationId":"getDisplayRolesForStudy",
                "parameters":[
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Role type for which to retrieve roles.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Design"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E21ECE85DDDA4F37B2A88C2327AE315D"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleDtoV2"
                                    }
                                },
                                "examples":{
                                    "RolesByStudyV2":{
                                        "summary":"List of study roles for a study (v2)",
                                        "description":"RolesByStudyV2",
                                        "value":[
                                            {
                                                "id":"27AA8BCE9D194C7A898C137DE049C4B2",
                                                "roleName":"Study Viewer",
                                                "roleType":"STUDY",
                                                "roleCategory":"Analysis",
                                                "roleSubCategory":"Region-B",
                                                "unblinded":"true",
                                                "objectVersionNumber":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v2.0-authroles-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authroles-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authstudies/{studyId}/userroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get user roles in a study"
                ],
                "summary":"v2.0",
                "description":"Retrieve the list of roles assigned to users for the specified study. The 'studyId' path parameter (UUID, HEX, e.g., \"31BAA8B711634A7997A9E6C71B0819CA\") identifies the target study. The response is an array of DisplayStudyUserRolesDto, where each object describes a role category and contains a list of role objects assigned for that category.",
                "operationId":"getStudyUserRoles",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"31BAA8B711634A7997A9E6C71B0819CA"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of study user roles returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayStudyUserRolesDto"
                                    }
                                },
                                "examples":{
                                    "StudyUserRolesListExample":{
                                        "description":"StudyUserRolesListExample",
                                        "value":[
                                            {
                                                "roleType":"Rule Designer",
                                                "roles":[
                                                    {
                                                        "roleId":"E8D06F3C4F5B4787A516B828178E0B6B",
                                                        "roleName":"Investigator",
                                                        "permissions":[
                                                            "READ",
                                                            "WRITE"
                                                        ]
                                                    }
                                                ]
                                            },
                                            {
                                                "roleType":"Site User",
                                                "roles":[
                                                    {
                                                        "roleId":"C2A98C6C52B44F1BAED150FA36DD86EE",
                                                        "roleName":"Viewer",
                                                        "permissions":[
                                                            "READ"
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authstudies-{studyId}-userroles-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authstudies-studyid-userroles-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authstudies/{studyId}/users/unassigned":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all unassigned users for a study"
                ],
                "summary":"v2.0",
                "description":"Retrieve users who are not assigned to a study.",
                "operationId":"getStudyUsersUnassigned",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BCF73296C9404DFD9ABEC81DEB4A9671"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Index of first user record to return for pagination.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"How many records to return per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Filter for user name or login.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Pat"
                    },
                    {
                        "name":"isSvcToSvc1",
                        "in":"header",
                        "description":"Service-to-service authentication header for privileged calls. Pass 'true' to include service accounts.",
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    },
                    {
                        "name":"isSvcToSvc2",
                        "in":"query",
                        "description":"Service-to-service authentication flag in query param. Pass 'true' to include service accounts.",
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Unassigned users for the specified study returned successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UnassignedUsersListExample":{
                                        "summary":"Sample of an unassigned user list, including all properties and realistic data.",
                                        "description":"UnassignedUsersListExample",
                                        "value":{
                                            "usersFound":1,
                                            "firstUserReturned":1,
                                            "usersReturned":1,
                                            "users":[
                                                {
                                                    "id":"D4B7FEE74A314044A6E9568043BB2399",
                                                    "userName":"noassign",
                                                    "firstName":"Pat",
                                                    "lastName":"Taylor",
                                                    "emailAddress":"pat.taylor@example.org",
                                                    "roles":[
                                                    ],
                                                    "phone":"+1-777-888-9999"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request. Returned when studyId is missing.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId must be a valid UUID."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authstudies-{studyId}-users-unassigned-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authstudies-studyid-users-unassigned-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authstudies/{studyId}/{mode}/users/studyroles":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all active users for a study with study roles and email address"
                ],
                "summary":"v2.0",
                "description":"Returns, for the specified study and mode, all users who are assigned to the given set of studyRoleIds (optionally filtered by siteIds). Request payload must include a non-empty array of studyRoleIds (UUIDs as 32-character uppercase hex) and may include a list of siteIds (site name/ID). Response includes a count of users and per-user details, each with a fully expanded child list of assigned roles including versionStart/versionEnd fields.",
                "operationId":"getUserStudyRolesForStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"947E6B8D3503465BBF9E5FA6909B986F"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study access mode (e.g., design, test, training, active, or all).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"IDs for study roles (required) and sites (optional) to filter for user assignment query.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyRolesIdsReq"
                            },
                            "example":{
                                "studyRoleIds":[
                                    "F3183B73D07340CAB883B592E27C8E58",
                                    "ECBDC5486B63400E9F1DE56E470C7B8F"
                                ],
                                "siteIds":[
                                    "SiteA",
                                    "SiteB"
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"List of users for the given study/mode, and the requested studyRoleIds. Each user entry is fully expanded with all child fields.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserStudyRolesListDto"
                                },
                                "examples":{
                                    "UserStudyRolesListExample":{
                                        "summary":"Example response showing fully expanded user and study role fields for 1 user.",
                                        "description":"UserStudyRolesListExample",
                                        "value":{
                                            "usersFound":1,
                                            "users":[
                                                {
                                                    "id":"92F83ACDEAB9413DAC8D0A2A441F2DEF",
                                                    "firstName":"Kathy",
                                                    "lastName":"Nguyen",
                                                    "userName":"knguyen",
                                                    "email":"kathy.nguyen@site.com",
                                                    "studyRole":[
                                                        {
                                                            "id":"792C8B6D2C9F4212A6EEF7F5B3E7A85D",
                                                            "studyRoleName":"Data Manager",
                                                            "versionStart":"2022-03-01T00:00:00.000Z",
                                                            "versionEnd":"2026-12-31T23:59:59.000Z"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request (Invalid request body structure or missing/invalid studyId, mode, or studyRoleIds.)",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Missing required field: studyRoleIds"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authstudies-{studyId}-{mode}-users-studyroles-post",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authstudies-studyid-mode-users-studyroles-post"
            }
        },
        "/ec-auth-svc/rest/v2.0/studyroles/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get the list of study roles for a study ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Gets the list of study roles for given studyId",
                "operationId":"getStudyRolesForStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID for the study. Example: \"37F6B1958D4B4C42A1F5D3B148651073\"",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"37F6B1958D4B4C42A1F5D3B148651073"
                    },
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Name filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MONITOR"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Type filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Runtime"
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"Status filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"String to search in role data.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Flag to include removed roles (Y/N).",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of study role parameters for the specified study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParamsV2"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Response Example",
                                        "value":[
                                            {
                                                "id":"648C2FC0EA7E4F5B925F7A4FABCFFF04",
                                                "studyRoleId":"B931A89223C2425EAF9574EBA59455CF",
                                                "studyRoleName":"MONITOR",
                                                "studyRoleDesc":"Monitor role grants viewing and edit capabilities.",
                                                "studyRoleType":"SITE",
                                                "studyRoleStatus":"ACTIVE",
                                                "studyRoleCreationType":"AUTO",
                                                "studyId":"37F6B1958D4B4C42A1F5D3B148651073",
                                                "roleId":"E622F2E99B2740C785A927B16A5BDA1A",
                                                "versionStart":"2021-01-01T00:00:00.000Z",
                                                "versionEnd":"2023-12-31T23:59:59.000Z",
                                                "operationType":"UPDATE",
                                                "userId":"C2C1C99E3EF74650B989F2C53177B29E",
                                                "objectVersionNumber":9,
                                                "softwareVersionNumber":4,
                                                "reason":"Role name changed due to protocol amendment.",
                                                "comment":"Role was updated by system admin.",
                                                "studyRoleVersion":"v2.2"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request / invalid query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v2.0-studyroles-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-studyroles-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/studyroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for an organization"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Fetches the list of users",
                "operationId":"getStudyRolesForTenant",
                "parameters":[
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Name filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MONITOR"
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Type filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Design"
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"Status filter for study role.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"String to search for in role attributes.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Flag to include removed roles (Y/N).",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"localize",
                        "in":"query",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful response (deprecated endpoint).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyRoleDtoParamsV2"
                                    }
                                },
                                "examples":{
                                    "Response Example":{
                                        "description":"Response Example",
                                        "value":[
                                            {
                                                "id":"648C2FC0EA7E4F5B925F7A4FABCFFF04",
                                                "studyRoleId":"B931A89223C2425EAF9574EBA59455CF",
                                                "studyRoleName":"Site User",
                                                "studyRoleDesc":"Monitor role grants viewing and edit capabilities.",
                                                "studyRoleType":"Runtime",
                                                "studyRoleStatus":"ACTIVE",
                                                "studyRoleCreationType":"AUTO",
                                                "studyId":"37F6B1958D4B4C42A1F5D3B148651073",
                                                "roleId":"E622F2E99B2740C785A927B16A5BDA1A",
                                                "versionStart":"2021-01-01T00:00:00.000Z",
                                                "versionEnd":"2023-12-31T23:59:59.000Z",
                                                "operationType":"UPDATE",
                                                "userId":"C2C1C99E3EF74650B989F2C53177B29E",
                                                "objectVersionNumber":9,
                                                "softwareVersionNumber":4,
                                                "reason":"Role name changed due to protocol amendment.",
                                                "comment":"Role was updated by system admin.",
                                                "studyRoleVersion":"v2.2"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request / invalid query.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v2.0-studyroles-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-studyroles-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authusers/{userid}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get user details by user ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves a single user by unique ID, with optional inclusion of removed users. Returns user attributes, assignments, and roles in the v3 DTO structure.",
                "operationId":"getUser",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"Unique identifier (UUID) for the user to retrieve.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C2F39B36A5D84A1BAC9D4CA5BCFA4021"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Controls whether to include even users marked as removed: Y include, N exclude (default).",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserDtoV3"
                                },
                                "examples":{
                                    "UserV2Single":{
                                        "summary":"Sample user response for v2 get by ID",
                                        "description":"UserV2Single",
                                        "value":{
                                            "id":"C2F39B36A5D84A1BAC9D4CA5BCFA4021",
                                            "userName":"bphillips",
                                            "firstName":"Bob",
                                            "lastName":"Phillips",
                                            "emailAddress":"bob.phillips@email.com",
                                            "roles":[
                                                "SUBJECT_MANAGER"
                                            ],
                                            "status":"INACTIVE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authusers-{userid}-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authusers-userid-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authusers":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get list of users"
                ],
                "summary":"v2.0",
                "description":"Retrieves a paginated list of users with advanced search and filtering. Specify search string, pagination, and user filtering parameters. Includes users both active and (optionally) marked as removed.",
                "operationId":"getUsers_4",
                "parameters":[
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Free text string to filter/search users by name, email, or attributes.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"smith"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Start index (zero-based) for paginated results.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Number of user records to return in response.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Controls whether to include users marked as removed: Y (include), N (exclude, default).",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"excludeSystemUsers",
                        "in":"query",
                        "description":"If true, users created by system processes are excluded.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserListDto"
                                },
                                "examples":{
                                    "UserListV2":{
                                        "summary":"Sample user list for v2 endpoint",
                                        "description":"UserListV2",
                                        "value":{
                                            "users":[
                                                {
                                                    "id":"B3F29B36A5D84A1BAC9D4CA5BCFA4012",
                                                    "userName":"asmith",
                                                    "firstName":"Alice",
                                                    "lastName":"Smith",
                                                    "emailAddress":"alice.smith@email.com",
                                                    "roles":[
                                                        "Rule Designer"
                                                    ],
                                                    "status":"ACTIVE"
                                                }
                                            ],
                                            "total":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authusers-get",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authusers-get"
            }
        },
        "/ec-auth-svc/rest/v2.0/authusers/{userid}/studies/{studyId}":{
            "put":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Update a user's mode and roles"
                ],
                "summary":"v2.0",
                "description":"Updates the list if user roles are based on the studyRole parameter.",
                "operationId":"updateUserStudyRoleModeRoles",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User ID (UUID) whose assignments are being updated.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647B8B0376A0874DA6ADE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID) whose assignments are being updated.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F94C431A809C4C7D900A0E0E71B4DDFE"
                    }
                ],
                "requestBody":{
                    "description":"Complete request payload for updating user study mode roles.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateUserStudyModeRoleListDtoV2"
                            },
                            "examples":{
                                "Example Request":{
                                    "description":"Example Request",
                                    "value":{
                                        "effectiveStart":"2020-06-17T10:15:30.000Z",
                                        "effectiveEnd":"2025-06-17T10:15:30.000Z",
                                        "modes":[
                                            {
                                                "modeName":"active",
                                                "studyRoleId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "sites":{
                                                    "allSites":false,
                                                    "associatedSites":[
                                                        "946E7D36031941CCA39CD2B2CFF2899B",
                                                        "FE8925CFA8A74193A2E8D8326E7FEA88"
                                                    ]
                                                },
                                                "depots":{
                                                    "allDepots":false,
                                                    "associatedDepots":[
                                                        "CEE624A4E7EB43059C6AEC24673A288B"
                                                    ]
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserStudyModeRoleListDtoV2"
                                },
                                "examples":{
                                    "Successful Response":{
                                        "description":"Successful Response",
                                        "value":{
                                            "effectiveStart":"2020-06-17T10:15:30.000Z",
                                            "effectiveEnd":"2025-06-17T10:15:30.000Z",
                                            "modes":[
                                                {
                                                    "modeName":"active",
                                                    "roles":[
                                                        {
                                                            "id":"F7A0E5390A1F43A9AF5346EB88AC921A",
                                                            "roleName":"Rule Designer"
                                                        },
                                                        {
                                                            "id":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                                            "roleName":"Site User"
                                                        }
                                                    ],
                                                    "studyRole":{
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "studyRoleName":"LEAD_INVESTIGATOR"
                                                    },
                                                    "sites":{
                                                        "allSites":false,
                                                        "associatedSites":[
                                                            {
                                                                "id":"946E7D36031941CCA39CD2B2CFF2899B",
                                                                "siteName":"SiteA"
                                                            },
                                                            {
                                                                "id":"FE8925CFA8A74193A2E8D8326E7FEA88",
                                                                "siteName":"SiteB"
                                                            }
                                                        ]
                                                    },
                                                    "depots":{
                                                        "allDepots":false,
                                                        "associatedDepots":[
                                                            {
                                                                "id":"CEE624A4E7EB43059C6AEC24673A288B",
                                                                "depotName":"DepotA"
                                                            }
                                                        ]
                                                    }
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-authusers-{userid}-studies-{studyId}-put",
                "x-filename-id":"ec-auth-svc-rest-v2.0-authusers-userid-studies-studyid-put"
            }
        },
        "/ec-auth-svc/rest/v2.0/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generate a user assignment report"
                ],
                "summary":"v2.0",
                "description":"Generates a report of users and their study assignments for a specific study and mode. Allows filtering the results by providing a SearchSpecs payload. Returns report data in a paginated format.",
                "operationId":"generateUserAssignmentReport",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"userAssignmentsReport"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A25D7B3F41194F259F4ECA9B401A68C0"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A25D7B3F41194F259F4ECA9B401A68C0"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"TEST"
                    }
                ],
                "requestBody":{
                    "description":"Search parameters for the report in JSON format.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecsExample":{
                                    "description":"SearchSpecsExample",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "83B60DA7159D44F891B54B6E34A2277C"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Report generated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "ReportResponseExample":{
                                        "description":"ReportResponseExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "columns":[
                                                    "userId",
                                                    "userName",
                                                    "role"
                                                ],
                                                "data":[
                                                    [
                                                        "AAAABBBBCCCC11112222333344445555",
                                                        "John Doe",
                                                        "Rule Designer"
                                                    ]
                                                ]
                                            },
                                            "errorData":null,
                                            "version":2
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid input or error in generating the report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AU-4020",
                                                "errorMessage":"Invalid session token or study ID"
                                            },
                                            "version":2
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v2.0-studyid-mode-report-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v2.0/{studyId}/{mode}/report/uploaderror/{reportName}":{
            "post":{
                "tags":[
                    "Users, Permissions and Roles/Reports/Generates the user upload error report"
                ],
                "summary":"v2.0",
                "description":"Generates a report detailing errors encountered during user upload for a specific study and mode. Accepts filters in the SearchSpecs payload, and returns results in a paginated format.",
                "operationId":"generateUserUploadErrorReport",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Type of error report being generated. Example: 'userUploadErrorReport'",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"userUploadErrorReport"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID for which the error report is generated.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DAB12BA442FE43928F82D9A1823A2B0D"
                    },
                    {
                        "name":"sessionId",
                        "in":"query",
                        "description":"Session token identifying the error report generation context.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6A3DA9BFA95C4E50971B3EAA7DFB1EF1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Search parameters for the error report in JSON format.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecsErrorExample":{
                                    "description":"SearchSpecsErrorExample",
                                    "value":{
                                        "limit":20,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"errorType",
                                                "fieldType":"string",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "UPLOAD_FAILED"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Error report generated successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "UploadErrorReportResponseExample":{
                                        "description":"UploadErrorReportResponseExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":"false",
                                                "totalResults":2,
                                                "count":2,
                                                "limit":20,
                                                "offset":0,
                                                "columnData":[
                                                    {
                                                        "keyName":"userId",
                                                        "keyValue":"BB33CC44AABB1111FFEEDD99229911AA",
                                                        "columns":[
                                                            "userId",
                                                            "uploadStatus",
                                                            "errorCode"
                                                        ],
                                                        "data":[
                                                            [
                                                                "BB33CC44AABB1111FFEEDD99229911AA",
                                                                "FAILED",
                                                                "USR-4001"
                                                            ]
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "version":2
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid input or error in generating the error report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "examples":{
                                    "UploadErrorErrorExample":{
                                        "description":"UploadErrorErrorExample",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"AU-4050",
                                                "errorMessage":"No errors found for given parameters"
                                            },
                                            "version":2
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v2.0-{studyId}-{mode}-report-uploaderror-{reportName}-post",
                "x-filename-id":"ec-auth-svc-rest-v2.0-studyid-mode-report-uploaderror-reportname-post"
            }
        },
        "/ec-auth-svc/rest/v3.0/globalroles/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get global roles users"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves users provisioned with global roles. Results can be filtered by user name and limited to a number.",
                "operationId":"getGlobalRolesUsers",
                "parameters":[
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Given name or family name of the user to filter the results.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Joh"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Offset from where the results should be retrieved",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Limit for the number of results to be returned",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"allusers",
                        "in":"query",
                        "description":"All users",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"oracle.hsgbu.clinicalone.serviceToService",
                        "in":"header",
                        "description":"Service to service header key",
                        "schema":{
                            "type":"string"
                        },
                        "example":"name"
                    },
                    {
                        "name":"oracle.hsgbu.clinicalone.serviceToService",
                        "in":"query",
                        "description":"Service to service query key",
                        "schema":{
                            "type":"string"
                        },
                        "example":"role"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Get removed details",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayGlobalRoleUserListDtoV2"
                                },
                                "examples":{
                                    "V3GlobalRolesUsersResponseExample":{
                                        "summary":"V3 structure for role-user assignments",
                                        "description":"V3GlobalRolesUsersResponseExample",
                                        "value":{
                                            "usersFound":1,
                                            "firstUserReturned":0,
                                            "usersReturned":1,
                                            "globalusers":[
                                                {
                                                    "id":"BC752D56AD2D4751BC064BEFC29F17B7",
                                                    "firstName":"Iris",
                                                    "lastName":"Chen",
                                                    "userName":"irischen",
                                                    "lastAccess":"2024-10-01T08:00:00.000Z",
                                                    "globalroles":[
                                                        "SUPER_USER",
                                                        "READER"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v3.0-globalroles-users-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-globalroles-users-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/authroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get the list of roles"
                ],
                "summary":"v3.0",
                "description":"Retrieves the list of roles for a specific role type.",
                "operationId":"getDisplayRoles_1",
                "parameters":[
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Study role type",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayRoleDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RespDisplayRoleDto"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v3.0-authroles-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-authroles-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/authroles/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Authorization Roles/Get list of roles for a study"
                ],
                "summary":"v3.0",
                "description":"Retrieves all roles available for a specific study and role type, with each role object containing category, subcategory, unblinded, version, and all related properties.",
                "operationId":"getDisplayRolesForStudy_1",
                "parameters":[
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Role type for which to retrieve roles.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Design"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier for the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C2C3C8E63B6040D9ADC56D63803B6BC8"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespDisplayRoleDto"
                                    }
                                },
                                "examples":{
                                    "RolesByStudyV3":{
                                        "summary":"List of roles for a study (v3)",
                                        "description":"RolesByStudyV3",
                                        "value":[
                                            {
                                                "id":"9C3EAF7B4F3142B7B0F9A7E4F6B6CEC7",
                                                "roleName":"Principal Investigator",
                                                "roleType":"STUDY",
                                                "roleCategory":"Analysis",
                                                "roleSubCategory":"Region-Alpha",
                                                "unblinded":"true",
                                                "objectVersionNumber":3
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v3.0-authroles-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-authroles-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/authstudies/{studyId}/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all users for a study"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: This version of the endpoint is deprecated. Use the v4 API at '/v4.0/authstudies/{studyId}/users' instead. The v4 endpoint provides paginated, filterable user listings for a study, supports richer search, and returns the latest response structure with more complete user access details. Migrating to the new version ensures all output fields are compliant with the latest schema updates. Prior response structure is less detailed and may omit some child DTO fields.",
                "operationId":"getUsersForStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Mode of the study. Accepts active, test, or training",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active",
                                "all"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Offset from where the results should be retrieved",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":3
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Limit for the number of results to be returned",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Given name or family name of the user to filter the results.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Jon"
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Sort by",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":{
                            "value":[
                                "ADMIN",
                                "DESIGNER"
                            ]
                        }
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Returns a lighter version of response consisting of user details.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserListDtoV2"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v3.0-authstudies-{studyId}-users-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-authstudies-studyid-users-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/studyroles/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get the list of study roles for a study ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves the list of study roles for a study.",
                "operationId":"getStudyRolesForStudy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Study role name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Study role type",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"A study role's status",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string based on studyRole name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespStudyRoleDtoParams"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v3.0-studyroles-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-studyroles-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/studyroles":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for an organization"
                ],
                "summary":"v3.0",
                "description":"Retrieves a list of study roles with details for an organization.",
                "operationId":"getStudyRolesForTenant_2",
                "parameters":[
                    {
                        "name":"studyRoleName",
                        "in":"query",
                        "description":"Study role name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyRoleType",
                        "in":"query",
                        "description":"Study role type",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyRoleStatus",
                        "in":"query",
                        "description":"A study role's status",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string based on studyRole name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespStudyRoleDtoParams"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v3.0-studyroles-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-studyroles-get"
            }
        },
        "/ec-auth-svc/rest/v3.0/authusers/{userid}/studies/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get a user's modes and roles"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the list of study mode role assignments for a user in a study, including roles, sites, and depots in version 3.0 of the API. Use /v5.0/authusers/{userid}/studies/{studyId} instead. The v5 version returns richer details on access mapping and unblinded status, and supports new fields for effective dates per mode. Current version differs by not including granularity at the access mapping or mode assignment levels. Provides expanded details of a user's roles and mode assignments for a particular study, including effective dates and associated site and depot mappings.",
                "operationId":"getUserStudyModeRoles",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"User identifier as UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BE2376BB5B0D469EBFA78DE98D954327"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C66E641816EF4E2798AFFEEDD8D5B1E8"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Flag indicating if assignments marked as removed should be included in the response. Use 'Y' to include, 'N' to exclude.",
                        "schema":{
                            "type":"string",
                            "default":"N",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DisplayUserModeStudyRolesListDtoV3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-auth-svc-rest-v3.0-authusers-{userid}-studies-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v3.0-authusers-userid-studies-studyid-get"
            }
        },
        "/ec-auth-svc/rest/v4.0/authstudies/{studyId}/users":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Users/Get all users for a study"
                ],
                "summary":"v4.0",
                "description":"Returns a paginated, fully detailed list of users assigned to the specified study. Response includes all user identifiers, contact, roles, access modes, sites, depots, and effectivity periods. Result is filterable by study mode, query string, sorting, and can include removed users.",
                "operationId":"getUsersForStudy_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABE31741A0E945F6B827048B279F2F19"
                    },
                    {
                        "name":"viewMode",
                        "in":"query",
                        "description":"Mode of the study. Accepts active, test, or training",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "active",
                                "all"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"firstResult",
                        "in":"query",
                        "description":"Offset from where the results should be retrieved",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"rowsToReturn",
                        "in":"query",
                        "description":"Limit for the number of results to be returned",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Given name or family name of the user to filter the results.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"John"
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Sort by",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":{
                            "value":[
                                "name",
                                "studyRoleName"
                            ]
                        }
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Get removed details",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":false
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Returns a lighter version of response consisting of user details.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"All users for the specified study; all child DTO fields are fully expanded and present.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayStudyUserListDtoV3"
                                },
                                "examples":{
                                    "StudyUserListV4Response":{
                                        "summary":"Response sample showing all user fields, deeply expanded.",
                                        "description":"StudyUserListV4Response",
                                        "value":{
                                            "usersFound":2,
                                            "firstUserReturned":1,
                                            "usersReturned":2,
                                            "users":[
                                                {
                                                    "id":"CBE1B06A7E544E808BF37DC1B4DBA912",
                                                    "firstName":"Sam",
                                                    "lastName":"Stone",
                                                    "userName":"sam.stone",
                                                    "email":"ss@example.com",
                                                    "phone":"+1-222-333-4444",
                                                    "lastAccess":"2023-09-15T16:33:00.000Z",
                                                    "effectiveStart":"2020-01-01T00:00:00.000Z",
                                                    "effectiveEnd":"2025-12-31T23:59:59.000Z",
                                                    "modes":[
                                                        {
                                                            "modeName":"active",
                                                            "roles":[
                                                                {
                                                                    "id":"B7B801DAB5A44329B649FF20F5D9A1AB",
                                                                    "roleName":"Site User"
                                                                }
                                                            ],
                                                            "studyRole":[
                                                                {
                                                                    "id":"F7DD864FF49B40139EA8EA12B9357E53",
                                                                    "studyRoleName":"Monitor",
                                                                    "versionStart":"2021-04-01T00:00:00.000Z",
                                                                    "versionEnd":"2024-12-31T23:59:59.000Z"
                                                                }
                                                            ],
                                                            "sites":{
                                                                "allSites":false,
                                                                "associatedSites":[
                                                                    "SiteX",
                                                                    "SiteY"
                                                                ]
                                                            },
                                                            "depots":{
                                                                "allDepots":true,
                                                                "associatedDepots":[
                                                                ]
                                                            }
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                },
                                "example":{
                                    "error":"Invalid parameters; studyId must be a valid UUID."
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v4.0-authstudies-{studyId}-users-get",
                "x-filename-id":"ec-auth-svc-rest-v4.0-authstudies-studyid-users-get"
            }
        },
        "/ec-auth-svc/rest/v5.0/authusers/{userid}/studies/{studyId}":{
            "get":{
                "tags":[
                    "Users, Permissions and Roles/Roles/Get a user's modes and roles"
                ],
                "summary":"v5.0",
                "description":"Retrieves all role, mode, site, and depot assignments for the specified user within a single study. Response returns a full list of user mode assignments with all effective dates, roles, sites, depots, and comprehensive assignments information.",
                "operationId":"getUserStudyModeRoles_1",
                "parameters":[
                    {
                        "name":"userid",
                        "in":"path",
                        "description":"UUID of the user whose study assignments are being retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647B8B0376A0874DA6ADE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"UUID of the study whose assignments are being retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F94C431A809C4C7D900A0E0E71B4DDFE"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Flag (Y/N) to include removed assignments in the response.",
                        "schema":{
                            "type":"string",
                            "default":"N",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"N"
                    },
                    {
                        "name":"includeRoles",
                        "in":"query",
                        "description":"Boolean: whether to include global roles/sub-roles in the results.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Comprehensive user study access assignments for all supported modes.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DisplayUserStudyAccessDetails"
                                },
                                "examples":{
                                    "Example Response":{
                                        "description":"Example Response",
                                        "value":{
                                            "lastAccess":"2024-10-26T18:41:00.000Z",
                                            "userStudyModeDetails":[
                                                {
                                                    "modeName":"active",
                                                    "effectiveStart":"2021-01-01T00:00:00.000Z",
                                                    "effectiveEnd":"2026-01-01T00:00:00.000Z",
                                                    "roles":[
                                                        {
                                                            "roleId":"A519EF3C2B73455390CFF812AFF61519",
                                                            "roleName":"Rule Designer"
                                                        },
                                                        {
                                                            "roleId":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                                            "roleName":"Site User"
                                                        }
                                                    ],
                                                    "studyRole":{
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "studyRoleName":"LEAD_INVESTIGATOR"
                                                    },
                                                    "sites":{
                                                        "allSites":false,
                                                        "associatedSites":[
                                                            "946E7D36031941CCA39CD2B2CFF2899B",
                                                            "FE8925CFA8A74193A2E8D8326E7FEA88"
                                                        ]
                                                    },
                                                    "depots":{
                                                        "allDepots":false,
                                                        "associatedDepots":[
                                                            "CEE624A4E7EB43059C6AEC24673A288B"
                                                        ]
                                                    }
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request parameters: missing or malformed user or study ID.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AuthResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-auth-svc-rest-v5.0-authusers-{userid}-studies-{studyId}-get",
                "x-filename-id":"ec-auth-svc-rest-v5.0-authusers-userid-studies-studyid-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist":{
            "get":{
                "tags":[
                    "Codelist/List codelists"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"List available codelists. You can filter by type and optionally scope results to a study or a group.",
                "operationId":"getAllCodes",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Code"
                                },
                                "examples":{
                                    "GetAllCodesV1DeprecatedResponse":{
                                        "description":"GetAllCodesV1DeprecatedResponse",
                                        "value":{
                                            "Resources":[
                                                {
                                                    "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                    "versionStart":"2026-03-03T12:20:51.409Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"MODIFIED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-03T17:50:51.480Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"Affidavit",
                                                    "codeType":"String"
                                                }
                                            ],
                                            "schemas":[
                                                "urn:nextgen:schemas:resource:1.0::ListResponse"
                                            ],
                                            "totalResults":334
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-get"
            },
            "put":{
                "tags":[
                    "Codelist/Update codelist (legacy path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This method is no longer used to update system-level specific code list based on the given payload. The API used to update code lists at a user-level will be provided in the future. <br><b>Right:</b> <i>CodeListPost</i>.",
                "operationId":"updateCode",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTO"
                            },
                            "examples":{
                                "UpdateCodelistV1DeprecatedRequest":{
                                    "description":"UpdateCodelistV1DeprecatedRequest",
                                    "value":{
                                        "code":{
                                            "id":"6B0BE74E22865269898DCD7F2E55A130",
                                            "codeName":"test 65",
                                            "displayCodeName":"test 65",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "id":"8F4F40F689294265A2A1208932DC87BD",
                                                "sequence":1,
                                                "codeValue":"test value 65",
                                                "codeLabel":"test Label 652",
                                                "code":"test code 65",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV1DeprecatedResponse":{
                                        "description":"UpdateCodelistV1DeprecatedResponse",
                                        "value":{
                                            "code":{
                                                "id":"6B0BE74E22865269898DCD7F2E55A130",
                                                "codeName":"test 65",
                                                "displayCodeName":"test 65",
                                                "tag":"LabTest",
                                                "codeLevel":"CUSTOM",
                                                "description":"test 1 Description",
                                                "objectVersionNumber":1
                                            },
                                            "values":[
                                                {
                                                    "id":"8F4F40F689294265A2A1208932DC87BD",
                                                    "sequence":1,
                                                    "codeValue":"test value 65",
                                                    "codeLabel":"test Label 652",
                                                    "code":"test code 65",
                                                    "loinc":null,
                                                    "hidden":false,
                                                    "objectVersionNumber":1,
                                                    "language":"en",
                                                    "modeSiteMappings":null
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Code not found', 'Missing required field (ID)',",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-put",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-put"
            },
            "post":{
                "tags":[
                    "Codelist/Create codelist (legacy path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: This method is no longer used to insert a new system-level code list based on the given payload. The API used to insert code lists at a user-level will be provided in the future. <br><b>Right:</b> <i>CodeListPost</i>.",
                "operationId":"addCode",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTO"
                            },
                            "examples":{
                                "CreateCodelistV1DeprecatedRequest":{
                                    "description":"CreateCodelistV1DeprecatedRequest",
                                    "value":{
                                        "code":{
                                            "id":null,
                                            "codeName":"test 65",
                                            "displayCodeName":"test 65",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "id":null,
                                                "sequence":1,
                                                "codeValue":"test value 65",
                                                "codeLabel":"test Label 652",
                                                "code":"test code 65",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV1DeprecatedResponse":{
                                        "description":"CreateCodelistV1DeprecatedResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"3818F73F98E048508263ED09C786AF1E",
                                                    "versionStart":"2026-03-05T06:59:08.865Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:29:08.876Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 65",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null
                                                },
                                                "values":[
                                                    {
                                                        "id":"E90B5162311646A4AD9C612D91090FE5",
                                                        "versionStart":"2026-03-05T06:59:08.876Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"3818F73F98E048508263ED09C786AF1E",
                                                        "codeValue":"test value 65",
                                                        "codeLabel":"test Label 652",
                                                        "code":"test code 65",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "optLock":"2026-03-05T12:29:08.879Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code":{
            "post":{
                "tags":[
                    "Codelist/Create codelist"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Create a new codelist with its values.",
                "operationId":"addCode_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV1"
                            },
                            "examples":{
                                "CodeListRequestV1":{
                                    "description":"CodeListRequestV1",
                                    "value":{
                                        "code":{
                                            "codeName":"AE_SEVERITY",
                                            "codeType":"SYSTEM",
                                            "codeLevel":"SYSTEM",
                                            "description":"Severity of adverse event."
                                        },
                                        "values":[
                                            {
                                                "codeValue":"MILD",
                                                "codeLabel":"Mild",
                                                "sequence":1,
                                                "locale":"en"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code/tag":{
            "post":{
                "tags":[
                    "Codelist/Create codelist with tag (deprecated path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Inserts a new code list with tag.",
                "operationId":"addCodeWithTag",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTagRequestV1"
                            },
                            "examples":{
                                "CodeListTagRequestV1":{
                                    "description":"CodeListTagRequestV1",
                                    "value":{
                                        "code":{
                                            "codeName":"AE_SEVERITY"
                                        },
                                        "values":[
                                            {
                                                "id":"D1D8327AFAA6412287106192AB5984EF",
                                                "tag":"safety"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "id":"d1d8327afaa6412287106192ab5984ef",
                                                        "tag":"safety"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-tag-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-tag-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/groups/study/{studyId}":{
            "post":{
                "tags":[
                    "Codelist/Associate codelist group to a study"
                ],
                "summary":"v1.0",
                "description":"Link a codelist group to a study. This lets the study use the codelists from that group (or the default system codelists if no group is provided).",
                "operationId":"associateGroupToStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a CodeList group. If not set, the default System codelist is associated with the Study",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                },
                                "examples":{
                                    "AssociateGroupToStudyResponse":{
                                        "description":"AssociateGroupToStudyResponse",
                                        "value":{
                                            "result":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request: invalid parameters or request body",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-groups-study-{studyId}-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-groups-study-studyid-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/dynamic/copy":{
            "post":{
                "tags":[
                    "Codelist/Copy dynamic codelist mappings"
                ],
                "summary":"v1.0",
                "description":"Copy dynamic codelist mappings from one study to another.",
                "operationId":"bulkCopyDynamicCodelist",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"targetStudyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string",
                                    "format":"uuid"
                                }
                            },
                            "examples":{
                                "DynamicCodeListIds":{
                                    "description":"DynamicCodeListIds",
                                    "value":[
                                        "D1D8327AFAA6412287106192AB5984EF",
                                        "B1B8327AFAA6412287106192AB5984EF"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                },
                                "examples":{
                                    "BulkCopyDynamicCodelistResponse":{
                                        "description":"BulkCopyDynamicCodelistResponse",
                                        "value":{
                                            "result":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-dynamic-copy-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-dynamic-copy-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code/copy/{codeId}":{
            "post":{
                "tags":[
                    "Codelist/Copy codelist"
                ],
                "summary":"v1.0",
                "description":"Create a copy of an existing codelist under a new name.",
                "operationId":"copyCodeList",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist value.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"codeName",
                        "in":"query",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"codelistType",
                        "in":"query",
                        "description":"Type of the codelist. Allowed values are USER, CUSTOM, SYSTEM, APPLICATION.",
                        "schema":{
                            "type":"string",
                            "default":"CUSTOM",
                            "enum":[
                                "USER",
                                "CUSTOM",
                                "SYSTEM",
                                "APPLICATION",
                                "DYNAMIC",
                                "DESIGN"
                            ]
                        },
                        "example":"String"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Code"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "codeName":"AE_SEVERITY_COPY"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-copy-{codeId}-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-copy-codeid-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/values/export/{codeId}":{
            "get":{
                "tags":[
                    "Codelist/Export codelist values"
                ],
                "summary":"v1.0",
                "description":"Download codelist values as a file for offline review or sharing.",
                "operationId":"exportCodeList",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"ID of a CodeList group. When specified, returns codelists of the group (including non-customized SYSTEM default codelists)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"FileType: csv or xlsx",
                        "schema":{
                            "type":"string",
                            "default":"xlsx"
                        },
                        "example":"xlsx"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/vnd.ms-excel.sheet.binary.macroEnabled.12":{
                                "schema":{
                                    "type":"String",
                                    "format":"binary"
                                },
                                "examples":{
                                    "ExportCodeListResponse":{
                                        "description":"ExportCodeListResponse",
                                        "value":"<binary>"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request: invalid parameters or request body",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-values-export-{codeId}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-values-export-codeid-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/all":{
            "get":{
                "tags":[
                    "Codelist/Get all codelist values"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Get all codelist values for the requested scope (tenant or study) and optional filters.",
                "operationId":"getAllCodes_1",
                "parameters":[
                    {
                        "name":"codelistType",
                        "in":"query",
                        "description":"Type of the codelist. Allowed values are USER, CUSTOM, SYSTEM, APPLICATION.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SYSTEM"
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "versionStart":null,
                                                    "versionEnd":null,
                                                    "operationType":null,
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":null,
                                                    "optlock":null,
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"ScreenFailureReason",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null
                                                },
                                                {
                                                    "id":"4A7D1AFCB81111A9E06326994C64C134",
                                                    "versionStart":null,
                                                    "versionEnd":null,
                                                    "operationType":null,
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":null,
                                                    "optlock":null,
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"SubjectStateType",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-all-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-all-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/tag/{tagName}":{
            "get":{
                "tags":[
                    "Codelist/Get codelists by tag (deprecated path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the list of all code lists associated with a given tag.",
                "operationId":"getAllCodesByTag",
                "parameters":[
                    {
                        "name":"tagName",
                        "in":"path",
                        "description":"Tag for the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"safety"
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "code":{
                                                        "codeName":"AE_SEVERITY",
                                                        "tag":"safety"
                                                    },
                                                    "values":[
                                                        {
                                                            "codeValue":"MILD",
                                                            "codeLabel":"Mild"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-tag-{tagName}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-tag-tagname-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/{name}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by name"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Get the values for a single codelist using its name.",
                "operationId":"getByName",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "GetCodelistByNameV1DeprecatedResponse":{
                                        "description":"GetCodelistByNameV1DeprecatedResponse",
                                        "value":{
                                            "status":"success",
                                            "error":null,
                                            "codelist":{
                                                "codeName":"KitReplaceReason",
                                                "codeType":"String",
                                                "comment":null,
                                                "id":"4A7D1AFCB81411A9E06326994C64C134",
                                                "objectVersionNumber":1,
                                                "operationType":"CREATED",
                                                "optLock":"2026-02-10T23:37:59.000Z",
                                                "softwareVersionNumber":1,
                                                "userId":"00000000000000000000000000000001",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2026-02-10T23:37:59.000Z",
                                                "values":[
                                                    {
                                                        "codeId":"4A7D1AFCB81411A9E06326994C64C134",
                                                        "codeLabel":"Damaged",
                                                        "codeValue":"Damaged",
                                                        "comment":null,
                                                        "id":"133F178DBF404ED59D949815D993D700",
                                                        "locale":"en-US",
                                                        "objectVersionNumber":1,
                                                        "operationType":"CREATED",
                                                        "optLock":"2026-02-10T23:38:06.000Z",
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "versionStart":"2026-02-10T23:38:06.000Z"
                                                    },
                                                    {
                                                        "codeId":"4A7D1AFCB81411A9E06326994C64C134",
                                                        "codeLabel":"Lost",
                                                        "codeValue":"Lost",
                                                        "comment":null,
                                                        "id":"890A54BD72354BC9BC841C1DF3A08000",
                                                        "locale":"en-US",
                                                        "objectVersionNumber":1,
                                                        "operationType":"CREATED",
                                                        "optLock":"2026-02-10T23:38:06.000Z",
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "versionStart":"2026-02-10T23:38:06.000Z"
                                                    }
                                                ]
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-name-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/values/{fieldName}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist values"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Get codelist values by code name, tag, or id. You can optionally scope the request to a study or group and choose current/history data.",
                "operationId":"getByName_1",
                "parameters":[
                    {
                        "name":"fieldName",
                        "in":"path",
                        "description":"Name of the fields. It can be code name, tag name or code ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Field Type. Allowed values are code, tag and ID. Default is code.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"code"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    },
                    {
                        "name":"isHierarchial",
                        "in":"query",
                        "description":"Indicates whether hierarchial code values need to be retrieved. Allowed values are true or false.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetValuesByFieldNameV1Response":{
                                        "description":"GetValuesByFieldNameV1Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "code":{
                                                        "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                        "versionStart":"2026-03-03T12:20:51.409Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "objectVersionNumber":2,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-03-03T17:50:51.480Z",
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"Affidavit",
                                                        "description":"Affidavit",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null
                                                    },
                                                    "values":[
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-10T23:38:08.000Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"By supplying my user name and password and clicking the button marked Sign below,\nI, <username>, am approving and electronically signing the selected electronic case report forms as complete and accurate\nPursuant to Section 11.100 of Title 21 of the United States Code of Federal Regulations (CFR),\nI acknowledge this electronic signature is the legally binding equivalent of my handwritten signature.",
                                                            "language":"en",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"en-US",
                                                            "optLock":"2026-02-10T23:38:08.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-10T23:38:14.000Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????<username>????????????????????????(CFR) Title 21 Section 11.100???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",
                                                            "language":"ja",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"ja-JP",
                                                            "optLock":"2026-02-10T23:38:14.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-10T23:39:30.000Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"????????????????????????????????????????????????????????????????????????????????????\n?????? <username> ??????????????????????????????????????????????????????????????????????????????????????????\n???????????????????????? (CFR) ??? 21 ?????? 11.100 ??????\n???????????????????????????????????????????????????????????????????????????",
                                                            "language":"zh",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"zh-CN",
                                                            "optLock":"2026-02-10T23:39:30.000Z"
                                                        },
                                                        {
                                                            "id":"853C0929C4E04170AA7FBFE27031B04C",
                                                            "versionStart":"2026-03-03T12:20:51.360Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"0000000000000000000000000000000A",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Test value",
                                                            "codeLabel":"Test Lable",
                                                            "language":"en",
                                                            "code":null,
                                                            "sequence":2,
                                                            "locale":"en-US",
                                                            "optLock":"2026-03-03T17:50:51.484Z"
                                                        },
                                                        {
                                                            "id":"853C0929C4E04170AA7FBFE27031B04C",
                                                            "versionStart":"2026-03-03T12:20:51.408Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"0000000000000000000000000000000A",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Test value",
                                                            "codeLabel":"Test Lable",
                                                            "language":"ja",
                                                            "code":null,
                                                            "sequence":2,
                                                            "locale":"ja-JP",
                                                            "optLock":"2026-03-03T17:50:51.495Z"
                                                        },
                                                        {
                                                            "id":"853C0929C4E04170AA7FBFE27031B04C",
                                                            "versionStart":"2026-03-03T12:20:51.388Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"0000000000000000000000000000000A",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Test value",
                                                            "codeLabel":"Test Lable",
                                                            "language":"zh",
                                                            "code":null,
                                                            "sequence":2,
                                                            "locale":"zh-CN",
                                                            "optLock":"2026-03-03T17:50:51.497Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-values-{fieldName}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-values-fieldname-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/{codeId}/code":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by id (deprecated path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a list of all code list values matching the given code list ID and by data type.",
                "operationId":"getCodeById",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "versionStart":"2026-02-10T23:37:59.000Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-02-10T23:37:59.000Z",
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"ScreenFailureReason",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null
                                                },
                                                "values":[
                                                    {
                                                        "id":"BC78923FA24C48B695D75B4B4B50C672",
                                                        "versionStart":"2026-02-10T23:38:06.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"4A7D1AFCB81011A9E06326994C64C134",
                                                        "codeValue":"Lost to follow-up",
                                                        "codeLabel":"Lost to follow-up",
                                                        "code":null,
                                                        "sequence":10,
                                                        "locale":"en-US",
                                                        "optLock":"2026-02-10T23:38:06.000Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeId).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-{codeId}-code-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-codeid-code-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code/{name}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by name (deprecated path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves code list value matching the given code name and data type.",
                "operationId":"getCodeByName",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AE_SEVERITY"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "versionStart":"2026-02-10T23:37:59.000Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-02-10T23:37:59.000Z",
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"ScreenFailureReason",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null
                                                },
                                                "values":[
                                                    {
                                                        "id":"BC78923FA24C48B695D75B4B4B50C672",
                                                        "versionStart":"2026-02-10T23:38:06.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"4A7D1AFCB81011A9E06326994C64C134",
                                                        "codeValue":"Lost to follow-up",
                                                        "codeLabel":"Lost to follow-up",
                                                        "code":null,
                                                        "sequence":10,
                                                        "locale":"en-US",
                                                        "optLock":"2026-02-10T23:38:06.000Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-name-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code/{codeId}/tag":{
            "get":{
                "tags":[
                    "Codelist/Get codelist tags by id (deprecated path)"
                ],
                "summary":"v1.0",
                "description":"Retrieves code list for the given code list ID with tag information.",
                "operationId":"getCodeWithTagById",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetCodeWithTagByIdResponse":{
                                        "description":"GetCodeWithTagByIdResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "versionStart":"2026-02-10T23:37:59.000Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-02-10T23:37:59.000Z",
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"ScreenFailureReason",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null,
                                                    "tag":null
                                                },
                                                "values":[
                                                    {
                                                        "id":"BC78923FA24C48B695D75B4B4B50C672",
                                                        "versionStart":"2026-02-10T23:38:06.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"4A7D1AFCB81011A9E06326994C64C134",
                                                        "codeValue":"Lost to follow-up",
                                                        "codeLabel":"Lost to follow-up",
                                                        "code":null,
                                                        "sequence":10,
                                                        "locale":"en-US",
                                                        "optLock":"2026-02-10T23:38:06.000Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeId).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-{codeId}-tag-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-codeid-tag-get"
            },
            "put":{
                "tags":[
                    "Codelist/Update codelist tag by id (deprecated path)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Updates existing code list with tags for association, disassociation and updates tag names. <br><b>Right:</b> <i>CustomCodeListPost</i>.",
                "operationId":"updateCodeWithTag",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTagRequestV1"
                            },
                            "examples":{
                                "CodeListTagRequestV1":{
                                    "description":"CodeListTagRequestV1",
                                    "value":{
                                        "code":{
                                            "codeName":"AE_SEVERITY"
                                        },
                                        "values":[
                                            {
                                                "id":"D1D8327AFAA6412287106192AB5984EF",
                                                "tag":"safety"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "id":"d1d8327afaa6412287106192ab5984ef",
                                                        "tag":"safety"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-{codeId}-tag-put",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-codeid-tag-put"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/values/asOfDate/{id}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist snapshot (as of date)"
                ],
                "summary":"v1.0",
                "description":"Get a snapshot of codelist values as they were on a specific date.",
                "operationId":"getDetailsAsOfDate",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Name of the fields. It can be code name, tag name or code ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeHidden",
                        "in":"query",
                        "description":"Indicates whether hidden code values should be returned. Allowed values are true or false. Default is false",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        }
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Date till where data is required ",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetSnapshotAsOfDateResponse":{
                                        "description":"GetSnapshotAsOfDateResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "codeName":"AESEV"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-values-asOfDate-{id}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-values-asofdate-id-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/groups/{groupId}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist group by id"
                ],
                "summary":"v1.0",
                "description":"View the available codelist groups. Groups help you organize and reuse codelists across studies.",
                "operationId":"getGroupById",
                "parameters":[
                    {
                        "name":"groupId",
                        "in":"path",
                        "description":"ID of a CodeList group. When specified, returns codelists of the group (including non-customized SYSTEM default codelists)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListGroupDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                "codeGroupName":"Default Group"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-groups-{groupId}-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-groups-groupid-get"
            },
            "put":{
                "tags":[
                    "Codelist/Update codelist group"
                ],
                "summary":"v1.0",
                "description":"Rename or update an existing codelist group.",
                "operationId":"updateGroup",
                "parameters":[
                    {
                        "name":"groupId",
                        "in":"path",
                        "description":"ID of a CodeList group. When specified, returns codelists of the group (including non-customized SYSTEM default codelists)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListGroupRequest"
                            },
                            "examples":{
                                "CodeListGroupRequest":{
                                    "description":"CodeListGroupRequest",
                                    "value":{
                                        "codeGroupName":"Renamed Group"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListGroupDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                "codeGroupName":"Renamed Group"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request: invalid parameters or request body",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-groups-{groupId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-groups-groupid-put"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/groups":{
            "get":{
                "tags":[
                    "Codelist/Get all codelist groups"
                ],
                "summary":"v1.0",
                "description":"View the available codelist groups. Groups help you organize and reuse codelists across studies.",
                "operationId":"getGroups",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CodeListGroupDto"
                                    }
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                    "codeGroupName":"Default Group"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-groups-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-groups-get"
            },
            "post":{
                "tags":[
                    "Codelist/Add codelist group"
                ],
                "summary":"v1.0",
                "description":"Create a new codelist group to manage and reuse related codelists together.",
                "operationId":"insertGroup",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListGroupRequest"
                            },
                            "examples":{
                                "CodeListGroupRequest":{
                                    "description":"CodeListGroupRequest",
                                    "value":{
                                        "codeGroupName":"Default Group"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListGroupDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                "codeGroupName":"Default Group"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request: invalid parameters or request body",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-groups-post",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-groups-post"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/search":{
            "get":{
                "tags":[
                    "Codelist/Get codelist history (search)"
                ],
                "summary":"v1.0",
                "description":"View historical changes to codelists for a given name and (optionally) study.",
                "operationId":"getHistoricalCodes",
                "parameters":[
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AE_SEVERITY"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) ID of a Study. Only required if level path parameter equals to 'studies'",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Code"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "tenantCodeList":[
                                                    {
                                                        "code":{
                                                            "codeName":"AE_SEVERITY"
                                                        },
                                                        "values":[
                                                            {
                                                                "codeValue":"MILD",
                                                                "codeLabel":"Mild"
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "studyCodeList":[
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-search-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-search-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/code/{codeId}":{
            "put":{
                "tags":[
                    "Codelist/Update codelist"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Update an existing codelist and/or its values.",
                "operationId":"updateCode_1",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV1"
                            },
                            "examples":{
                                "CodeListRequestV1":{
                                    "description":"CodeListRequestV1",
                                    "value":{
                                        "code":{
                                            "codeName":"AE_SEVERITY",
                                            "codeType":"SYSTEM",
                                            "codeLevel":"SYSTEM",
                                            "description":"Severity of adverse event."
                                        },
                                        "values":[
                                            {
                                                "codeValue":"MILD",
                                                "codeLabel":"Mild",
                                                "sequence":1,
                                                "locale":"en"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "id":"d1d8327a-faa6-4122-8710-6192ab5984ef",
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-code-{codeId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-code-codeid-put"
            }
        },
        "/ec-codelist-svc/rest/v1.0/codelist/tag":{
            "put":{
                "tags":[
                    "Codelist/Update codelist tags (deprecated path)"
                ],
                "summary":"v1.0",
                "description":"Updates a code list with tag values for association or disassociation as well as tag names.",
                "operationId":"updateCodesByTag",
                "parameters":[
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CodeListTagV1"
                                }
                            },
                            "examples":{
                                "UpdateCodesByTagRequest":{
                                    "description":"UpdateCodesByTagRequest",
                                    "value":[
                                        {
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "tag":"safety"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "UpdateCodesByTagResponse":{
                                        "description":"UpdateCodesByTagResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "code":{
                                                        "codeName":"AE_SEVERITY",
                                                        "tag":"safety"
                                                    },
                                                    "values":[
                                                        {
                                                            "codeValue":"MILD",
                                                            "codeLabel":"Mild"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-codelist-tag-put",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-codelist-tag-put"
            }
        },
        "/ec-codelist-svc/rest/v1.0/history/codevalues":{
            "get":{
                "tags":[
                    "Codelist/Get codelist audit history (code values)"
                ],
                "summary":"v1.0",
                "description":"View historical changes to codelists for a given name and (optionally) study.",
                "operationId":"getAllCodeValues",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"codeId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the code",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeValueV4"
                                },
                                "examples":{
                                    "GetCodeValuesAuditHistoryResponse":{
                                        "description":"GetCodeValuesAuditHistoryResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "totalResults":21294,
                                                "count":2,
                                                "limit":2,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"AAAAAC3888DA44E1E0534C0B4D5E1130",
                                                        "versionStart":"2026-02-10T00:00:00.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":12,
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"AAAAAC3888DA44E1E0534C0B4D5E02E0",
                                                        "codeValue":"%",
                                                        "codeLabel":"%",
                                                        "language":"en",
                                                        "code":"%",
                                                        "sequence":10,
                                                        "locale":"en-US",
                                                        "studyId":null,
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":null,
                                                        "loinc":null,
                                                        "optLock":"2026-02-10T00:00:00.000Z"
                                                    },
                                                    {
                                                        "id":"4A7D1AFCB85811A9E06326994C64C134",
                                                        "versionStart":"2026-02-10T00:00:00.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":3,
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"4A7D1AFCB85711A9E06326994C64C134",
                                                        "codeValue":"0",
                                                        "codeLabel":"NOT SENT",
                                                        "language":"en",
                                                        "code":null,
                                                        "sequence":10,
                                                        "locale":"en-US",
                                                        "studyId":null,
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":null,
                                                        "loinc":null,
                                                        "optLock":"2026-02-10T00:00:00.000Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-history-codevalues-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-history-codevalues-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/history/codes":{
            "get":{
                "tags":[
                    "Codelist/Get codelist audit history (codes)"
                ],
                "summary":"v1.0",
                "description":"View historical changes to codelists for a given name and (optionally) study.",
                "operationId":"getAllCodes_2",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"codeId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the code",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeV3"
                                },
                                "examples":{
                                    "GetCodesAuditHistoryResponse":{
                                        "description":"GetCodesAuditHistoryResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "totalResults":477,
                                                "count":2,
                                                "limit":2,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"DFDBEF42F1A04DB5BF8B5D75BE7428F0",
                                                        "versionStart":"2026-02-10T00:00:00.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-02-10T00:00:00.000Z",
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"AgeUnits",
                                                        "description":null,
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":null,
                                                        "codeGroupId":null,
                                                        "displayCodeName":null,
                                                        "canAddValues":true,
                                                        "canHideValues":true,
                                                        "customizable":false,
                                                        "tenantLevelOnly":false
                                                    },
                                                    {
                                                        "id":"151E9A76CD5D4571893F292208F7BA25",
                                                        "versionStart":"2026-02-10T00:00:00.000Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":9,
                                                        "optlock":"2026-02-10T00:00:00.000Z",
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"ArchivesNotificationBody",
                                                        "description":"Available Variables: {REQUESTNAME} {STUDYNAME} {SITENAME} {REQUESTSTARTDATE}",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":null,
                                                        "codeGroupId":null,
                                                        "displayCodeName":null,
                                                        "canAddValues":false,
                                                        "canHideValues":false,
                                                        "customizable":true,
                                                        "tenantLevelOnly":false
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-history-codes-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-history-codes-get"
            }
        },
        "/ec-codelist-svc/rest/v1.0/history/groups":{
            "get":{
                "tags":[
                    "Codelist/Get codelist audit history (groups)"
                ],
                "summary":"v1.0",
                "description":"View historical changes to codelists for a given name and (optionally) study.",
                "operationId":"getCodeGroupHistory",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeGroup"
                                },
                                "examples":{
                                    "GetGroupsAuditHistoryResponse":{
                                        "description":"GetGroupsAuditHistoryResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":2,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"699FA3CE14A440E599452932F9CAA5A8",
                                                        "versionStart":"2026-03-03T12:19:58.584Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-03-03T17:49:58.748Z",
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "groupName":"group-ccb0de73-73d7-4a5b-80b7-b815adf7f28a"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v1.0-history-groups-get",
                "x-filename-id":"ec-codelist-svc-rest-v1.0-history-groups-get"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist":{
            "get":{
                "tags":[
                    "Codelist/List codelists"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"List available codelists. You can filter by type and optionally scope results to a study or a group.",
                "operationId":"getAllCodes_3",
                "parameters":[
                    {
                        "name":"softwareReleaseNumber",
                        "in":"query",
                        "description":"Maximum version of the codelist to be retrieved.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"R1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Code"
                                    }
                                },
                                "examples":{
                                    "GetCodelistsV2Response":{
                                        "description":"GetCodelistsV2Response",
                                        "value":"{ \"Resources\": [ { \"id\": \"4A7D1AFCB81011A9E06326994C64C134\", \"versionStart\": \"2026-02-10T23:37:59.000Z\", \"versionEnd\": \"3099-12-31T00:00:00.000Z\", \"operationType\": \"CREATED\", \"objectVersionNumber\": 1, \"softwareVersionNumber\": 1, \"optlock\": \"2026-02-10T23:37:59.000Z\", \"userId\": \"00000000000000000000000000000001\", \"reason\": null, \"comment\": null, \"codeName\": \"ScreenFailureReason\", \"codeType\": \"String\" } ], \"schemas\": [ \"urn:nextgen:schemas:resource:1.0::ListResponse\" ], \"totalResults\": 330"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid version number.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-get",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-get"
            },
            "put":{
                "tags":[
                    "Codelist/Update codelist (legacy path)"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: This method is no longer used to update system-level specific code list based on the given payload. The API used to update code lists at a user-level will be provided in the future. <br><b>Right:</b> <i>CodeListPost</i>.",
                "operationId":"updateCode_2",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTO"
                            },
                            "examples":{
                                "UpdateCodelistV2DeprecatedRequest":{
                                    "description":"UpdateCodelistV2DeprecatedRequest",
                                    "value":{
                                        "code":{
                                            "id":"6B0BE74E22864269898DCD7F2E55A130",
                                            "codeName":"test 64",
                                            "displayCodeName":"test 64",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "id":"8F4F40F689294265A2A1208932DC87BD",
                                                "sequence":1,
                                                "codeValue":"test value 64",
                                                "codeLabel":"test Label 642",
                                                "code":"test code 64",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV2DeprecatedResponse":{
                                        "description":"UpdateCodelistV2DeprecatedResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"6B0BE74E22864269898DCD7F2E55A130",
                                                    "versionStart":"2026-03-05T06:56:01.013Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:26:01.086Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 64",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest"
                                                },
                                                "values":[
                                                    {
                                                        "id":"8F4F40F689294265A2A1208932DC87BD",
                                                        "versionStart":"2026-03-05T06:56:01.049Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"6B0BE74E22864269898DCD7F2E55A130",
                                                        "codeValue":"test value 64",
                                                        "codeLabel":"test Label 64",
                                                        "language":"en",
                                                        "code":"test code 64",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "optLock":"2026-03-05T12:26:01.117Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Code not found', 'Missing required field (ID)','Internal server error''Concurrency violation: An invalid objectVersionNumber passed in request body'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-put",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-put"
            },
            "post":{
                "tags":[
                    "Codelist/Create codelist (legacy path)"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: This method is no longer used to insert a new system-level code list based on the given payload. The API used to insert code lists at a user-level will be provided in the future. <br><b>Right:</b> <i>CodeListPost</i>.",
                "operationId":"addCode_2",
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListTO"
                            },
                            "examples":{
                                "CreateCodelistV2DeprecatedRequest":{
                                    "description":"CreateCodelistV2DeprecatedRequest",
                                    "value":{
                                        "code":{
                                            "id":null,
                                            "codeName":"test 64",
                                            "displayCodeName":"test 64",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 64",
                                                "codeLabel":"test Label 64",
                                                "code":"test code 64",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV2DeprecatedResponse":{
                                        "description":"CreateCodelistV2DeprecatedResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"6B0BE74E22864269898DCD7F2E55A130",
                                                    "versionStart":"2026-03-05T06:56:01.013Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:26:01.086Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 64",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest"
                                                },
                                                "values":[
                                                    {
                                                        "id":"8F4F40F689294265A2A1208932DC87BD",
                                                        "versionStart":"2026-03-05T06:56:01.049Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"6B0BE74E22864269898DCD7F2E55A130",
                                                        "codeValue":"test value 64",
                                                        "codeLabel":"test Label 64",
                                                        "language":"en",
                                                        "code":"test code 64",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "optLock":"2026-03-05T12:26:01.117Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-post",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-post"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/code":{
            "post":{
                "tags":[
                    "Codelist/Create codelist"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Create a new codelist with its values.",
                "operationId":"addCode_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV2"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV2Response":{
                                        "description":"CreateCodelistV2Response",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-code-post",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-code-post"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/all":{
            "get":{
                "tags":[
                    "Codelist/Get all codelist values"
                ],
                "summary":"v2.0",
                "description":"Get all codelist values for the requested scope (tenant or study) and optional filters.",
                "operationId":"getAllCodes_4",
                "parameters":[
                    {
                        "name":"codelistType",
                        "in":"query",
                        "description":"Type of the codelist. Allowed values are USER, CUSTOM, SYSTEM, APPLICATION.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SYSTEM"
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/BaseCodeListDto"
                                    }
                                },
                                "examples":{
                                    "GetAllCodelistsV2Response":{
                                        "description":"GetAllCodelistsV2Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "versionStart":null,
                                                    "versionEnd":null,
                                                    "operationType":null,
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":null,
                                                    "optlock":null,
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"ScreenFailureReason",
                                                    "description":null,
                                                    "codeType":"String",
                                                    "codeLevel":"SYSTEM",
                                                    "parCodeName":null,
                                                    "tag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-all-get",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-all-get"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/{name}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by name"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Get the values for a single codelist using its name.",
                "operationId":"getByName_2",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"softwareReleaseNumber",
                        "in":"query",
                        "description":"Maximum version of the codelist to be retrieved.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"R1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "GetCodelistByNameV2Response":{
                                        "description":"GetCodelistByNameV2Response",
                                        "value":{
                                            "status":"success",
                                            "error":null,
                                            "codelist":{
                                                "codeName":"ScreenFailureReason",
                                                "codeType":"String",
                                                "comment":null,
                                                "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                "objectVersionNumber":1,
                                                "operationType":"CREATED",
                                                "optLock":"2026-02-10T23:37:59.000Z",
                                                "softwareVersionNumber":1,
                                                "userId":"00000000000000000000000000000001",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2026-02-10T23:37:59.000Z",
                                                "values":[
                                                    {
                                                        "codeId":"4A7D1AFCB81011A9E06326994C64C134",
                                                        "codeLabel":"Lost to follow-up",
                                                        "codeValue":"Lost to follow-up",
                                                        "comment":null,
                                                        "id":"BC78923FA24C48B695D75B4B4B50C672",
                                                        "locale":"en-US",
                                                        "objectVersionNumber":1,
                                                        "operationType":"CREATED",
                                                        "optLock":"2026-02-10T23:38:06.000Z",
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "versionStart":"2026-02-10T23:38:06.000Z"
                                                    }
                                                ]
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Internal server error', 'Invalid version number','Missing required field (codeName)'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-name-get"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/values/{fieldName}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist values"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Get codelist values by code name, tag, or id. You can optionally scope the request to a study or group and choose current/history data.",
                "operationId":"getCodeListValues",
                "parameters":[
                    {
                        "name":"fieldName",
                        "in":"path",
                        "description":"Name of the fields. It can be code name, tag name or code ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Field Type. Allowed values are code, tag and ID. Default is code.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "code",
                                "tag",
                                "id",
                                "siteId"
                            ]
                        },
                        "example":"code"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "current",
                                "history"
                            ]
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    },
                    {
                        "name":"isHierarchial",
                        "in":"query",
                        "description":"Indicates whether hierarchial code values need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"includeHidden",
                        "in":"query",
                        "description":"Indicates whether hidden code values should be returned. Allowed values are true or false. Default is false",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetCodelistValuesV2Response":{
                                        "description":"GetCodelistValuesV2Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "code":{
                                                        "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                        "versionStart":"2026-02-11T10:17:54.923Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-02-10T23:38:08.000Z",
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"Affidavit",
                                                        "description":"Affidavit",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "displayCodeName":null,
                                                        "canAddValues":true,
                                                        "canHideValues":true,
                                                        "customizable":true,
                                                        "tenantLevelOnly":false
                                                    },
                                                    "values":[
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:43.382Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"By supplying my user name and password and clicking the button marked Sign below,\nI, <username>, am approving and electronically signing the selected electronic case report forms as complete and accurate\nPursuant to Section 11.100 of Title 21 of the United States Code of Federal Regulations (CFR),\nI acknowledge this electronic signature is the legally binding equivalent of my handwritten signature.",
                                                            "language":"en",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"en-US",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "optLock":"2026-02-10T23:38:08.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:16:59.396Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????<username>????????????????????????(CFR) Title 21 Section 11.100???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",
                                                            "language":"ja",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"ja-JP",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "optLock":"2026-02-10T23:38:14.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:12.963Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"????????????????????????????????????????????????????????????????????????????????????\n?????? <username> ??????????????????????????????????????????????????????????????????????????????????????????\n???????????????????????? (CFR) ??? 21 ?????? 11.100 ??????\n???????????????????????????????????????????????????????????????????????????",
                                                            "language":"zh",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"zh-CN",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "optLock":"2026-02-10T23:39:30.000Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-values-{fieldName}-get",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-values-fieldname-get"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/history/{name}":{
            "get":{
                "tags":[
                    "Codelist/Codelist history"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves historic code list changes matching the given code name.",
                "operationId":"getHistoryByName",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "GetHistoryByNameV2Response":{
                                        "description":"GetHistoryByNameV2Response",
                                        "value":{
                                            "status":"success",
                                            "error":null,
                                            "codelist":[
                                                {
                                                    "codeName":"ScreenFailureReason",
                                                    "codeType":"String",
                                                    "comment":null,
                                                    "id":"4A7D1AFCB81011A9E06326994C64C134",
                                                    "objectVersionNumber":1,
                                                    "operationType":"CREATED",
                                                    "optLock":"2026-02-10T23:37:59.000Z",
                                                    "softwareVersionNumber":1,
                                                    "userId":"00000000000000000000000000000001",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "versionStart":"2026-02-10T23:37:59.000Z",
                                                    "values":[
                                                        {
                                                            "codeId":"4A7D1AFCB81011A9E06326994C64C134",
                                                            "codeLabel":"Lost to follow-up",
                                                            "codeValue":"Lost to follow-up",
                                                            "comment":null,
                                                            "id":"BC78923FA24C48B695D75B4B4B50C672",
                                                            "locale":"en-US",
                                                            "objectVersionNumber":1,
                                                            "operationType":"CREATED",
                                                            "optLock":"2026-02-10T23:38:06.000Z",
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "versionStart":"2026-02-10T23:38:06.000Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Internal server error', 'Invalid version number','Missing required field (codeName)'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-history-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-history-name-get"
            }
        },
        "/ec-codelist-svc/rest/v2.0/codelist/code/{codeId}":{
            "put":{
                "tags":[
                    "Codelist/Update codelist"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Update an existing codelist and/or its values.",
                "operationId":"updateCode_3",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV2"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV2Response":{
                                        "description":"UpdateCodelistV2Response",
                                        "value":{
                                            "result":{
                                                "code":{
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "codeName":"AE_SEVERITY"
                                                },
                                                "values":[
                                                    {
                                                        "codeValue":"MILD",
                                                        "codeLabel":"Mild"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v2.0-codelist-code-{codeId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v2.0-codelist-code-codeid-put"
            }
        },
        "/ec-codelist-svc/rest/v3.0/codelist/code":{
            "post":{
                "tags":[
                    "Codelist/Create codelist"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Create a new codelist with its values.",
                "operationId":"addCode_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV3"
                            },
                            "examples":{
                                "CodeListRequestV3":{
                                    "description":"CodeListRequestV3",
                                    "value":{
                                        "code":{
                                            "id":null,
                                            "codeName":"test 4",
                                            "displayCodeName":"test 4",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV3Response":{
                                        "description":"CreateCodelistV3Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"41D8346E49674215AC6D637C89025469",
                                                    "versionStart":"2026-03-05T06:48:21.743Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:18:21.753Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 4",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest",
                                                    "studyId":"909947B881974511942B768082826043",
                                                    "codeGroupId":null,
                                                    "displayCodeName":"test 4",
                                                    "canAddValues":true,
                                                    "canHideValues":true,
                                                    "customizable":true,
                                                    "tenantLevelOnly":false
                                                },
                                                "values":[
                                                    {
                                                        "id":"96493224CB3048A899DAA688919D7DF9",
                                                        "versionStart":"2026-03-05T06:48:21.757Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"41D8346E49674215AC6D637C89025469",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"en",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "optLock":"2026-03-05T12:18:21.769Z"
                                                    },
                                                    {
                                                        "id":"96493224CB3048A899DAA688919D7DF9",
                                                        "versionStart":"2026-03-05T06:48:21.773Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"41D8346E49674215AC6D637C89025469",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"ja",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"ja-JP",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "optLock":"2026-03-05T12:18:21.784Z"
                                                    },
                                                    {
                                                        "id":"96493224CB3048A899DAA688919D7DF9",
                                                        "versionStart":"2026-03-05T06:48:21.785Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"41D8346E49674215AC6D637C89025469",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"zh",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"zh-CN",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "optLock":"2026-03-05T06:48:21.773Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v3.0-codelist-code-post",
                "x-filename-id":"ec-codelist-svc-rest-v3.0-codelist-code-post"
            }
        },
        "/ec-codelist-svc/rest/v3.0/codelist":{
            "get":{
                "tags":[
                    "Codelist/List codelists"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"List available codelists. You can filter by type and optionally scope results to a study or a group.",
                "operationId":"getAllCodes_5",
                "parameters":[
                    {
                        "name":"codelistType",
                        "in":"query",
                        "description":"Type of the codelist. Allowed values are USER, CUSTOM, SYSTEM, APPLICATION.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "USER",
                                "CUSTOM",
                                "SYSTEM",
                                "APPLICATION",
                                "DYNAMIC",
                                "DESIGN"
                            ]
                        }
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Code"
                                    }
                                },
                                "examples":{
                                    "GetCodelistsV3Response":{
                                        "description":"GetCodelistsV3Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"A4FFC63E06B884D1E053020011AC57E6",
                                                    "versionStart":"2026-02-10T23:38:08.000Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-02-10T23:38:08.000Z",
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"EDCYearRange",
                                                    "codeType":"Integer"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v3.0-codelist-get",
                "x-filename-id":"ec-codelist-svc-rest-v3.0-codelist-get"
            }
        },
        "/ec-codelist-svc/rest/v3.0/codelist/{name}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by name"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Get the values for a single codelist using its name.",
                "operationId":"getByName_3",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "GetCodelistByNameV3Response":{
                                        "description":"GetCodelistByNameV3Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "codeName":"testYear",
                                                "codeType":"Integer",
                                                "comment":null,
                                                "id":"A4FFC63E06B884D1E053020011AC57E6",
                                                "objectVersionNumber":1,
                                                "operationType":"CREATED",
                                                "optLock":"2026-02-10T23:38:08.000Z",
                                                "softwareVersionNumber":1,
                                                "userId":"00000000000000000000000000000001",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2026-02-10T23:38:08.000Z",
                                                "values":[
                                                    {
                                                        "codeId":"A4FFC63E06B884D1E053020011AC57E6",
                                                        "codeLabel":"Min Year",
                                                        "codeValue":"1800",
                                                        "comment":null,
                                                        "id":"A4FFC63E06B984D1E053020011AC57E6",
                                                        "locale":"en-US",
                                                        "objectVersionNumber":1,
                                                        "operationType":"CREATED",
                                                        "optLock":"2026-02-10T23:38:08.000Z",
                                                        "softwareVersionNumber":1,
                                                        "userId":"00000000000000000000000000000001",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "versionStart":"2026-02-10T23:38:08.000Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Internal server error', 'Invalid version number','Missing required field (codeName)'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v3.0-codelist-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v3.0-codelist-name-get"
            }
        },
        "/ec-codelist-svc/rest/v3.0/codelist/values/{fieldName}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist values"
                ],
                "summary":"v3.0",
                "description":"Get codelist values by code name, tag, or id. You can optionally scope the request to a study or group and choose current/history data.",
                "operationId":"getCodeListValues_1",
                "parameters":[
                    {
                        "name":"fieldName",
                        "in":"path",
                        "description":"Name of the fields. It can be code name, tag name or code ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Field Type. Allowed values are code, tag and ID. Default is code.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "code",
                                "tag",
                                "id",
                                "siteId"
                            ]
                        },
                        "example":"code"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "current",
                                "history"
                            ]
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    },
                    {
                        "name":"isHierarchial",
                        "in":"query",
                        "description":"Indicates whether hierarchial code values need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"includeHidden",
                        "in":"query",
                        "description":"Indicates whether hidden code values should be returned. Allowed values are true or false. Default is false",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetCodelistValuesV3Response":{
                                        "description":"GetCodelistValuesV3Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "code":{
                                                        "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                        "versionStart":"2026-02-11T10:17:54.923Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-02-10T23:38:08.000Z",
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"Affidavit",
                                                        "description":"Affidavit",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "displayCodeName":null,
                                                        "canAddValues":true,
                                                        "canHideValues":true,
                                                        "customizable":true,
                                                        "tenantLevelOnly":false
                                                    },
                                                    "values":[
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:43.382Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"By supplying my user name and password and clicking the button marked Sign below,\nI, <username>, am approving and electronically signing the selected electronic case report forms as complete and accurate\nPursuant to Section 11.100 of Title 21 of the United States Code of Federal Regulations (CFR),\nI acknowledge this electronic signature is the legally binding equivalent of my handwritten signature.",
                                                            "language":"en",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"en-US",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "optLock":"2026-02-10T23:38:08.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:16:59.396Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????<username>????????????????????????(CFR) Title 21 Section 11.100???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",
                                                            "language":"ja",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"ja-JP",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "optLock":"2026-02-10T23:38:14.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:12.963Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"????????????????????????????????????????????????????????????????????????????????????\n?????? <username> ??????????????????????????????????????????????????????????????????????????????????????????\n???????????????????????? (CFR) ??? 21 ?????? 11.100 ??????\n???????????????????????????????????????????????????????????????????????????",
                                                            "language":"zh",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"zh-CN",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "optLock":"2026-02-10T23:39:30.000Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v3.0-codelist-values-{fieldName}-get",
                "x-filename-id":"ec-codelist-svc-rest-v3.0-codelist-values-fieldname-get"
            }
        },
        "/ec-codelist-svc/rest/v3.0/codelist/code/{codeId}":{
            "put":{
                "tags":[
                    "Codelist/Update codelist"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Update an existing codelist and/or its values.",
                "operationId":"updateCode_4",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV3"
                            },
                            "examples":{
                                "CodeListRequestV3":{
                                    "description":"CodeListRequestV3",
                                    "value":{
                                        "code":{
                                            "id":"F06BC1B69C1E4983A345F42A9E947C57",
                                            "codeName":"test 3",
                                            "displayCodeName":"test 3",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 32",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV3Response":{
                                        "description":"UpdateCodelistV3Response",
                                        "value":{
                                            "code":{
                                                "id":null,
                                                "codeName":"test 4",
                                                "displayCodeName":"test 4",
                                                "tag":"LabTest",
                                                "codeLevel":"CUSTOM",
                                                "description":"test 1 Description",
                                                "objectVersionNumber":1
                                            },
                                            "values":[
                                                {
                                                    "sequence":1,
                                                    "codeValue":"test value 3",
                                                    "codeLabel":"test Label 3",
                                                    "code":"test code 3",
                                                    "loinc":null,
                                                    "hidden":false,
                                                    "objectVersionNumber":1,
                                                    "language":"en",
                                                    "modeSiteMappings":null
                                                },
                                                {
                                                    "sequence":1,
                                                    "codeValue":"test value 3",
                                                    "codeLabel":"test Label 3",
                                                    "code":"test code 3",
                                                    "loinc":null,
                                                    "hidden":false,
                                                    "objectVersionNumber":1,
                                                    "language":"ja",
                                                    "modeSiteMappings":null
                                                },
                                                {
                                                    "sequence":1,
                                                    "codeValue":"test value 3",
                                                    "codeLabel":"test Label 3",
                                                    "code":"test code 3",
                                                    "loinc":null,
                                                    "hidden":false,
                                                    "objectVersionNumber":1,
                                                    "language":"zh",
                                                    "modeSiteMappings":null
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v3.0-codelist-code-{codeId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v3.0-codelist-code-codeid-put"
            }
        },
        "/ec-codelist-svc/rest/v4.0/codelist/code":{
            "post":{
                "tags":[
                    "Codelist/Create codelist"
                ],
                "summary":"v4.0",
                "description":"Create a new codelist with its values.",
                "operationId":"addCode_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV4"
                            },
                            "examples":{
                                "CodeListRequestV4":{
                                    "description":"CodeListRequestV4",
                                    "value":{
                                        "code":{
                                            "id":null,
                                            "codeName":"test 3",
                                            "displayCodeName":"test 3",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV4Response":{
                                        "description":"CreateCodelistV4Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"F06BC1B69C1E4983A345F42A9E947C57",
                                                    "versionStart":"2026-03-05T06:44:22.005Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:14:22.016Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 3",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest",
                                                    "studyId":"909947B881974511942B768082826043",
                                                    "codeGroupId":null,
                                                    "displayCodeName":"test 3",
                                                    "canAddValues":true,
                                                    "canHideValues":true,
                                                    "customizable":true,
                                                    "tenantLevelOnly":false
                                                },
                                                "values":[
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:44:22.020Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"en",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "optLock":"2026-03-05T12:14:22.030Z"
                                                    },
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:44:22.034Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"ja",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"ja-JP",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "optLock":"2026-03-05T12:14:22.044Z"
                                                    },
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:44:22.046Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"zh",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"zh-CN",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "optLock":"2026-03-05T06:44:22.034Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v4.0-codelist-code-post",
                "x-filename-id":"ec-codelist-svc-rest-v4.0-codelist-code-post"
            }
        },
        "/ec-codelist-svc/rest/v4.0/codelist":{
            "get":{
                "tags":[
                    "Codelist/List codelists"
                ],
                "summary":"v4.0",
                "description":"List available codelists. You can filter by type and optionally scope results to a study or a group.",
                "operationId":"getAllCodes_6",
                "parameters":[
                    {
                        "name":"codelistType",
                        "in":"query",
                        "description":"Type of the codelist. Allowed values are CUSTOM, and SYSTEM. USER and APPLICATION are not supported",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "USER",
                                "CUSTOM",
                                "SYSTEM",
                                "APPLICATION",
                                "DYNAMIC",
                                "DESIGN"
                            ]
                        }
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"ID of a CodeList group. When specified, returns codelists of the group (including non-customized SYSTEM default codelists)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"sortBy. By default list is sorted by name in alphabetical order",
                        "schema":{
                            "type":"string",
                            "default":"codeName:asc"
                        },
                        "example":"displayCodeName:asc"
                    },
                    {
                        "name":"codeName",
                        "in":"query",
                        "description":"codeName. Search codelists by a query (code name or a part of it). Case-Insensitive",
                        "schema":{
                            "type":"string"
                        },
                        "example":"AE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Code"
                                    }
                                },
                                "examples":{
                                    "GetCodelistsV4Response":{
                                        "description":"GetCodelistsV4Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "code":{
                                                        "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                        "versionStart":"2026-03-03T12:20:51.409Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "objectVersionNumber":2,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-03-03T17:50:51.480Z",
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"Affidavit",
                                                        "description":"Affidavit",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":null,
                                                        "codeGroupId":null,
                                                        "displayCodeName":"Affidavit",
                                                        "canAddValues":true,
                                                        "canHideValues":true,
                                                        "customizable":true,
                                                        "tenantLevelOnly":false
                                                    },
                                                    "values":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid request URL.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v4.0-codelist-get",
                "x-filename-id":"ec-codelist-svc-rest-v4.0-codelist-get"
            }
        },
        "/ec-codelist-svc/rest/v4.0/codelist/{name}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist by name"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Get the values for a single codelist using its name.",
                "operationId":"getByName_4",
                "parameters":[
                    {
                        "name":"name",
                        "in":"path",
                        "description":"Name of the codelist.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListDto"
                                },
                                "examples":{
                                    "GetCodelistByNameV4DeprecatedResponse":{
                                        "description":"GetCodelistByNameV4DeprecatedResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"A4FFC63E06B884D1E053020011AC57E6",
                                                    "versionStart":"2026-02-10T23:38:08.000Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-02-10T23:38:08.000Z",
                                                    "userId":"00000000000000000000000000000001",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"testYear",
                                                    "codeType":"Integer",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "values":[
                                                        {
                                                            "codeId":"A4FFC63E06B884D1E053020011AC57E6",
                                                            "codeLabel":"Min Year",
                                                            "codeValue":"1800",
                                                            "comment":null,
                                                            "id":"A4FFC63E06B984D1E053020011AC57E6",
                                                            "locale":"en-US",
                                                            "objectVersionNumber":1,
                                                            "operationType":"CREATED",
                                                            "optLock":"2026-02-10T23:38:08.000Z",
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "versionStart":"2026-02-10T23:38:08.000Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Internal server error', 'Invalid version number','Missing required field (codeName)'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-codelist-svc-rest-v4.0-codelist-{name}-get",
                "x-filename-id":"ec-codelist-svc-rest-v4.0-codelist-name-get"
            }
        },
        "/ec-codelist-svc/rest/v4.0/codelist/values/{fieldName}":{
            "get":{
                "tags":[
                    "Codelist/Get codelist values"
                ],
                "summary":"v4.0",
                "description":"Get codelist values by code name, tag, or id. You can optionally scope the request to a study or group and choose current/history data.",
                "operationId":"getCodeListValues_2",
                "parameters":[
                    {
                        "name":"fieldName",
                        "in":"path",
                        "description":"Name of the fields. It can be code name, tag name or code ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AESEV"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Field Type. Allowed values are code, tag, ID and siteId. Default is code.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "code",
                                "tag",
                                "id",
                                "siteId"
                            ]
                        },
                        "example":"code"
                    },
                    {
                        "name":"dataType",
                        "in":"query",
                        "description":"Data Type. Allowed values are current, history. Default is current.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "current",
                                "history"
                            ]
                        },
                        "example":"current"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Language for expected response codelist. This overrides user preference for language. This field is case sensitive and accepts values like en, ja etc. By default it's english (en)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    },
                    {
                        "name":"isHierarchial",
                        "in":"query",
                        "description":"Indicates whether hierarchial code values need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"allFields",
                        "in":"query",
                        "description":"Indicates whether hidden fields need to be retrieved. Allowed values are true or false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"includeHidden",
                        "in":"query",
                        "description":"Indicates whether hidden code values should be returned. Allowed values are true or false. Default is false",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "GetCodelistValuesV4Response":{
                                        "description":"GetCodelistValuesV4Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "code":{
                                                        "id":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                        "versionStart":"2026-02-11T10:17:54.923Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "optlock":"2026-02-10T23:38:08.000Z",
                                                        "userId":"00000000000000000000000000000001",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeName":"Affidavit",
                                                        "description":"Affidavit",
                                                        "codeType":"String",
                                                        "codeLevel":"SYSTEM",
                                                        "parCodeName":null,
                                                        "tag":null,
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "displayCodeName":null,
                                                        "canAddValues":true,
                                                        "canHideValues":true,
                                                        "customizable":true,
                                                        "tenantLevelOnly":false
                                                    },
                                                    "values":[
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:43.382Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"By supplying my user name and password and clicking the button marked Sign below,\nI, <username>, am approving and electronically signing the selected electronic case report forms as complete and accurate\nPursuant to Section 11.100 of Title 21 of the United States Code of Federal Regulations (CFR),\nI acknowledge this electronic signature is the legally binding equivalent of my handwritten signature.",
                                                            "language":"en",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"en-US",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "modeSiteMappings":null,
                                                            "optLock":"2026-02-10T23:38:08.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:16:59.396Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????<username>????????????????????????(CFR) Title 21 Section 11.100???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????",
                                                            "language":"ja",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"ja-JP",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "modeSiteMappings":null,
                                                            "optLock":"2026-02-10T23:38:14.000Z"
                                                        },
                                                        {
                                                            "id":"56B7D39029424986ADC86DC4B976DD5E",
                                                            "versionStart":"2026-02-11T10:17:12.963Z",
                                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "userId":"00000000000000000000000000000001",
                                                            "reason":null,
                                                            "comment":null,
                                                            "codeId":"B5FE6A6F6F784B8D93EF367717EEFA3E",
                                                            "codeValue":"Electronic Signature Affidavit",
                                                            "codeLabel":"????????????????????????????????????????????????????????????????????????????????????\n?????? <username> ??????????????????????????????????????????????????????????????????????????????????????????\n???????????????????????? (CFR) ??? 21 ?????? 11.100 ??????\n???????????????????????????????????????????????????????????????????????????",
                                                            "language":"zh",
                                                            "code":null,
                                                            "sequence":1,
                                                            "locale":"zh-CN",
                                                            "studyId":"909947B881974511942B768082826043",
                                                            "codeGroupId":null,
                                                            "hidden":false,
                                                            "customizationType":null,
                                                            "loinc":null,
                                                            "modeSiteMappings":null,
                                                            "optLock":"2026-02-10T23:39:30.000Z"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Missing required field (codeName).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v4.0-codelist-values-{fieldName}-get",
                "x-filename-id":"ec-codelist-svc-rest-v4.0-codelist-values-fieldname-get"
            }
        },
        "/ec-codelist-svc/rest/v4.0/codelist/code/{codeId}":{
            "put":{
                "tags":[
                    "Codelist/Update codelist"
                ],
                "summary":"v4.0",
                "description":"Update an existing codelist and/or its values.",
                "operationId":"updateCode_5",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV4"
                            },
                            "examples":{
                                "CodeListRequestV4":{
                                    "description":"CodeListRequestV4",
                                    "value":{
                                        "code":{
                                            "id":"F06BC1B69C1E4983A345F42A9E947C57",
                                            "codeName":"test 3",
                                            "displayCodeName":"test 3",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test 1 Description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 32",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 3",
                                                "codeLabel":"test Label 3",
                                                "code":"test code 3",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV4Response":{
                                        "description":"UpdateCodelistV4Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"F06BC1B69C1E4983A345F42A9E947C57",
                                                    "versionStart":"2026-03-05T06:46:43.762Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"MODIFIED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:16:43.766Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test 3",
                                                    "description":"test 1 Description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest",
                                                    "studyId":"909947B881974511942B768082826043",
                                                    "codeGroupId":null,
                                                    "displayCodeName":"test 3",
                                                    "canAddValues":true,
                                                    "canHideValues":true,
                                                    "customizable":true,
                                                    "tenantLevelOnly":false
                                                },
                                                "values":[
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:44:22.034Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"ja",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"ja-JP",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:14:22.044Z"
                                                    },
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:44:22.046Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 3",
                                                        "language":"zh",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"zh-CN",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:14:22.048Z"
                                                    },
                                                    {
                                                        "id":"B0D7FCF5EAA942088C8F287687161DFD",
                                                        "versionStart":"2026-03-05T06:46:43.741Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "objectVersionNumber":2,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"F06BC1B69C1E4983A345F42A9E947C57",
                                                        "codeValue":"test value 3",
                                                        "codeLabel":"test Label 32",
                                                        "language":"en",
                                                        "code":"test code 3",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_UPDATE",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:16:43.768Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v4.0-codelist-code-{codeId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v4.0-codelist-code-codeid-put"
            }
        },
        "/ec-codelist-svc/rest/v5.0/codelist/code":{
            "post":{
                "tags":[
                    "Codelist/Create codelist"
                ],
                "summary":"v5.0",
                "description":"Create a new codelist with its values.",
                "operationId":"addCode_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV5"
                            },
                            "examples":{
                                "CodeListRequestV5":{
                                    "description":"CodeListRequestV5",
                                    "value":{
                                        "code":{
                                            "id":null,
                                            "codeName":"test",
                                            "displayCodeName":"test",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 1",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 1",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 1",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "CreateCodelistV5Response":{
                                        "description":"CreateCodelistV5Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"45767C47682C40C28DF066997555DC24",
                                                    "versionStart":"2026-03-05T06:37:02.189Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:07:02.262Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test",
                                                    "description":"test description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest",
                                                    "studyId":"909947B881974511942B768082826043",
                                                    "codeGroupId":null,
                                                    "displayCodeName":"test",
                                                    "canAddValues":true,
                                                    "canHideValues":true,
                                                    "customizable":true,
                                                    "tenantLevelOnly":false
                                                },
                                                "values":[
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:37:02.290Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 1",
                                                        "language":"en",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:07:02.305Z"
                                                    },
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:37:02.315Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 1",
                                                        "language":"ja",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"ja-JP",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:07:02.328Z"
                                                    },
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:37:02.329Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 1",
                                                        "language":"zh",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"zh-CN",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T06:37:02.316Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v5.0-codelist-code-post",
                "x-filename-id":"ec-codelist-svc-rest-v5.0-codelist-code-post"
            }
        },
        "/ec-codelist-svc/rest/v5.0/codelist/code/{codeId}":{
            "put":{
                "tags":[
                    "Codelist/Update codelist"
                ],
                "summary":"v5.0",
                "description":"Update an existing codelist and/or its values.",
                "operationId":"updateCode_6",
                "parameters":[
                    {
                        "name":"codeId",
                        "in":"path",
                        "description":"ID of the codelist (depending on 'type' parameter, ID can be used as UUID, code name, or tag)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the group",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Allowed values are active, test and training",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESIGN"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeListRequestV5"
                            },
                            "examples":{
                                "CodeListRequestV5":{
                                    "description":"CodeListRequestV5",
                                    "value":{
                                        "code":{
                                            "id":"45767C47682C40C28DF066997555DC24",
                                            "codeName":"test",
                                            "displayCodeName":"test",
                                            "tag":"LabTest",
                                            "codeLevel":"CUSTOM",
                                            "description":"test description",
                                            "objectVersionNumber":1
                                        },
                                        "values":[
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 11",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"en",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 1",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"ja",
                                                "modeSiteMappings":null
                                            },
                                            {
                                                "sequence":1,
                                                "codeValue":"test value 1",
                                                "codeLabel":"test label 1",
                                                "code":"test code 1",
                                                "loinc":null,
                                                "hidden":false,
                                                "objectVersionNumber":1,
                                                "language":"zh",
                                                "modeSiteMappings":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseCodeListDto"
                                },
                                "examples":{
                                    "UpdateCodelistV5Response":{
                                        "description":"UpdateCodelistV5Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "code":{
                                                    "id":"45767C47682C40C28DF066997555DC24",
                                                    "versionStart":"2026-03-05T06:38:41.863Z",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"MODIFIED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":1,
                                                    "optlock":"2026-03-05T12:08:41.881Z",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "reason":null,
                                                    "comment":null,
                                                    "codeName":"test",
                                                    "description":"test description",
                                                    "codeType":"String",
                                                    "codeLevel":"CUSTOM",
                                                    "parCodeName":null,
                                                    "tag":"LabTest",
                                                    "studyId":"909947B881974511942B768082826043",
                                                    "codeGroupId":null,
                                                    "displayCodeName":"test",
                                                    "canAddValues":true,
                                                    "canHideValues":true,
                                                    "customizable":true,
                                                    "tenantLevelOnly":false
                                                },
                                                "values":[
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:37:02.315Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 1",
                                                        "language":"ja",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"ja-JP",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:07:02.328Z"
                                                    },
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:37:02.329Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 1",
                                                        "language":"zh",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"zh-CN",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_ADD",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:07:02.333Z"
                                                    },
                                                    {
                                                        "id":"87CE31A3805B482CA0A95062711BE5FF",
                                                        "versionStart":"2026-03-05T06:38:41.826Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "objectVersionNumber":2,
                                                        "softwareVersionNumber":1,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "reason":null,
                                                        "comment":null,
                                                        "codeId":"45767C47682C40C28DF066997555DC24",
                                                        "codeValue":"test value 1",
                                                        "codeLabel":"test label 11",
                                                        "language":"en",
                                                        "code":"test code 1",
                                                        "sequence":1,
                                                        "locale":"en-US",
                                                        "studyId":"909947B881974511942B768082826043",
                                                        "codeGroupId":null,
                                                        "hidden":false,
                                                        "customizationType":"STUDY_UPDATE",
                                                        "loinc":null,
                                                        "modeSiteMappings":null,
                                                        "optLock":"2026-03-05T12:08:41.899Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing required code definition', 'Missing required values definition','Missing required field (codeName)','Missing required field (codeType)','Duplicate code name', 'Internal server error'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeListResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-codelist-svc-rest-v5.0-codelist-code-{codeId}-put",
                "x-filename-id":"ec-codelist-svc-rest-v5.0-codelist-code-codeid-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/clear/{scope}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Clear data elements scope by study ID and mode"
                ],
                "summary":"[Deprecated]:V1.0",
                "description":"Clears the scope of data elements by study ID and mode.",
                "operationId":"clearData",
                "parameters":[
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"Scope of the dataElement. Scope can be - ITEM or VSD .",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call is from Digital Gateway / Digital Gateway Builder, isDgCall set to true, Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "requestBody":{
                    "description":"DataElement value to clear",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearRequestDto"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-clear-{scope}-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-clear-scope-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/clear/forms":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Clear form data"
                ],
                "summary":"V1.0",
                "description":"Skeleton endpoint for clearing form data.",
                "operationId":"clearForms",
                "requestBody":{
                    "description":"Clear forms request payload",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearFormsRequestDto"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClearFormsResponseDto10"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-clear-forms-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-clear-forms-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/dataelements":{
            "delete":{
                "tags":[
                    "Data Capture/Data Elements/Delete data elements in a form within a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Removes the data elements in a form within a given visit. This API supports tabular forms and is mainly used for both repeating forms. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"deleteForm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"ID of the Visit for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"ID of the form for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Form Repeat Sequence Number of the form for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-dataelements-delete",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-dataelements-delete"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the audit history for a data element. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementAuditHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"ID of the data element for which you want to get the audit history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/{dataelementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the current status of a data element"
                ],
                "summary":"V1.0",
                "description":"Retrieves the current status of a data element. Inactive record can also be fetched by passing the queryParam <i>includeInactiveRecords</i> value as true.",
                "operationId":"getDataElementById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"dataelementId",
                        "in":"path",
                        "description":"ID of the data element for which response is expected.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"includeInactiveRecords",
                        "in":"query",
                        "description":"If the value of includeInactiveRecords is true, then the latest record for the data element - if inactive, it will be fetched.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto90"
                                    }
                                },
                                "examples":{
                                    "GetDataElementByIdResponseV1":{
                                        "description":"GetDataElementByIdResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "comment":"Sample",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "dateTimeValueUTC":"2023-01-01T10:10:20.000Z",
                                                "dayValue":1,
                                                "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                "eventInstanceNum":3,
                                                "floatValue":13.5,
                                                "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "hourValue":10,
                                                "id":"906F37FB48E3421D899E1EBF885FF959",
                                                "itemD":"1",
                                                "itemF":"MALE",
                                                "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                "itemR":"MALE",
                                                "itemType":"CHOICE",
                                                "measureUnit":"g/dL",
                                                "minuteValue":10,
                                                "monthValue":1,
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":13,
                                                "objectVersionNumber":1,
                                                "operationType":"MODIFIED",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                "reason":"CREATED",
                                                "repeatSequenceNumber":1,
                                                "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                "secondValue":20,
                                                "signedStatus":"NOT_APPLICABLE",
                                                "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                "softwareVersionNumber":8,
                                                "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                "studyName":"SignVerifyRegStudy",
                                                "studyVersion":"3.1.0.10",
                                                "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                "transactionEnd":"2023-01-01T10:20:20.000Z",
                                                "transactionStart":"2023-01-01T10:10:20.000Z",
                                                "validationFailure":null,
                                                "validationStatus":"SUCCESS",
                                                "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "vendorCode":"VENDOR1",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2022-05-16T07:29:18.325Z",
                                                "yearValue":2021
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-{dataelementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before startDate. If case current query parameter is set to true, it returns the latest data. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsByFormIDSubjectId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID from the Designer API response.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve data elements, as it appears in Clinical One.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"ID of the event for which you want to retrieve details. From Designer API.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, it retrieves the current data values. Otherwise, it retrieves the data just before the visit is complete.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Retrieves the data just before startDate. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/forms/{formId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements based on subject, visit, and form"
                ],
                "summary":"V1.0",
                "description":"Filters and retrieves data elements for a subject for a form or for a form-visit combination",
                "operationId":"getDataElementsByFormId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                },
                                "examples":{
                                    "GetDataElementsByFormIdResponseV1":{
                                        "description":"GetDataElementsByFormIdResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "comment":"Sample",
                                                    "dateTimeValueUTC":"2023-01-01T09:00:00.000Z",
                                                    "dayValue":1,
                                                    "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                    "floatValue":13.5,
                                                    "formId":"8113D20557904EDAAECF15CA629685D2",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "hourValue":9,
                                                    "id":"906F37FB48E3421D899E1EBF885FF959",
                                                    "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                    "measureUnit":"g/dL",
                                                    "minuteValue":0,
                                                    "monthValue":1,
                                                    "normalizedUnitId":"NU1",
                                                    "normalizedValue":"13.5",
                                                    "numValue":13,
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "reason":"Initial",
                                                    "repeatSequenceNumber":1,
                                                    "secondValue":0,
                                                    "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                    "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                    "studyName":"AutomationStudy",
                                                    "studyVersion":"1.0.0.1",
                                                    "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                    "transactionEnd":"2023-01-01T10:10:20.000Z",
                                                    "transactionStart":"2023-01-01T09:10:20.000Z",
                                                    "validationFailure":null,
                                                    "validationStatus":"SUCCESS",
                                                    "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "vendorCode":"VENDOR1",
                                                    "versionStart":"2022-05-16T07:29:18.325Z",
                                                    "yearValue":2023
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-forms-{formId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-forms-formid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/sites/{siteId}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the data element for a subject for a form and a site"
                ],
                "summary":"V1.0",
                "description":"Retrieves data elements based on the form ID and site ID.",
                "operationId":"getDataElementsBySiteFormIDSubjectId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElement"
                                    }
                                },
                                "examples":{
                                    "GetDataElementsBySiteFormSubjectResponse":{
                                        "description":"GetDataElementsBySiteFormSubjectResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "comment":"Sample comment",
                                                    "dataEventType":"UPDATE",
                                                    "dataFlag":"6FCBB303F8D24A3FB7DABCACF7600629",
                                                    "dataflagValue":"Y",
                                                    "documentId":"7FCBB303F8D24A3FB7DABCACF7600629",
                                                    "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                    "eventInstanceNum":1,
                                                    "formId":"8113D20557904EDAAECF15CA629685D2",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "hdiId":"9FCBB303F8D24A3FB7DABCACF7600629",
                                                    "id":"906F37FB48E3421D899E1EBF885FF959",
                                                    "innerRepeat":1,
                                                    "isSafetyDefaultSelected":true,
                                                    "isSafetyTrigger":false,
                                                    "itemF":"MALE",
                                                    "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                    "itemR":"MALE",
                                                    "itemType":"CHOICE",
                                                    "lockedDateTime":"2023-01-01T10:10:20.000Z",
                                                    "lockedStatus":"UNLOCKED",
                                                    "measureUnit":"g/dL",
                                                    "operationType":"CREATED",
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "outerRepeat":1,
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                    "reason":"Initial entry",
                                                    "repeatFormNumber":1,
                                                    "repeatSequenceNumber":1,
                                                    "signedStatus":"NOT_APPLICABLE",
                                                    "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                    "studyName":"AutomationStudy",
                                                    "studyVersion":"1.0.0.1",
                                                    "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                    "transactionEnd":"2023-01-01T11:10:20.000Z",
                                                    "transactionStart":"2023-01-01T10:10:20.000Z",
                                                    "validationRules":[
                                                        {
                                                            "queryId":"9FCBB303F8D24A3FB7DABCACF7600629",
                                                            "queryStatus":"OPEN",
                                                            "ruleId":"R456"
                                                        }
                                                    ],
                                                    "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "vendorCode":"VENDOR1",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "visitStartDate":"2023-01-01T09:00:00.000Z",
                                                    "visitStatus":"NEW"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-sites-{siteId}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-sites-siteid-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Filters and retrieves data elements for a subject and visit or for all subjects or visits. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsByStudyId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"ID of the event from which to retrieve details. From Designer API.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"ID of the subject for whom you want to retrieve data elements.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/all":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements history with pagination"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves all data elements with history for a subject and a visit or for all subjects and all of their visits, with the possibility of using pagination.",
                "operationId":"getDataElementsByStudyId_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unscheduled visit instance.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto90"
                                    }
                                },
                                "examples":{
                                    "GetDataElementByIdResponse":{
                                        "description":"GetDataElementByIdResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"906F37FB48E3421D899E1EBF885FF959",
                                                "versionStart":"2022-05-16T07:29:18.325Z",
                                                "transactionStart":null,
                                                "transactionEnd":null,
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":null,
                                                "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                "studyName":"SignVerifyRegStudy",
                                                "studyVersion":"3.1.0.10",
                                                "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                "measureUnit":"g/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":13,
                                                "floatValue":13.5,
                                                "dateTimeValueUTC":"2021-01-01T10:10:20.000Z",
                                                "monthValue":1,
                                                "dayValue":1,
                                                "yearValue":2021,
                                                "hourValue":10,
                                                "minuteValue":10,
                                                "secondValue":20,
                                                "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "reason":"CREATED",
                                                "comment":"Initial entry",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":8,
                                                "eventInstanceNum":3,
                                                "targets":[
                                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                                ],
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"FROZEN",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "itemType":"CHOICE",
                                                "itemD":"1",
                                                "itemF":"MALE",
                                                "itemR":"MALE"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-all-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-all-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves data elements for a list of items. Separate the item IDs with commas. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsBySubjectIdItemIds",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject for which you want to retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/formassociations":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements with form associations"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves data elements along with form associations. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsWithFormAssociations",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of the visit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-formassociations-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-formassociations-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data element records for a subject and date range"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the latest data elements for a subject updated or inserted for a date range. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDatatElementsForChngEvntInRangeBySubjectId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to get the data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-subjectId-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-subjectid-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get deleted data elements"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of data elements that have been deleted.",
                "operationId":"getDeletedItemsForAVisit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"ID of the Visit for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/formassociations":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get form associations by study ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves form associations based on study ID. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/formassociations",
                "operationId":"getFormAssociations",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"ID of the subject.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"ID of the visit.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                },
                                "examples":{
                                    "GetDataElementsByFormIdResponse":{
                                        "description":"GetDataElementsByFormIdResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "validationStatus":"SUCCESS",
                                                    "studyName":"AutomationStudy",
                                                    "studyVersion":"1.0.0.1",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "value":"18",
                                                    "numValue":18
                                                },
                                                {
                                                    "validationStatus":"SUCCESS",
                                                    "studyName":"AutomationStudy",
                                                    "studyVersion":"1.0.0.1",
                                                    "itemId":"CAFEBABECAFEBABECAFEBABECAFEBABE",
                                                    "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-formassociations-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-formassociations-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/formassociations/history/sourceForm/{sourceFormId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get audit history for a form association"
                ],
                "summary":"V1.0",
                "description":"Retrieves the audit history for a form association.",
                "operationId":"getFormAssociationsHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"sourceRepeatSequenceNumber",
                        "in":"query",
                        "description":"Repeat Sequence Number of Source Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"associatedFormId",
                        "in":"query",
                        "description":"ID of the Associated Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"sourceFormId",
                        "in":"path",
                        "description":"ID of the Source Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormsAssociations"
                                    }
                                },
                                "examples":{
                                    "FormsAssociationsHistory":{
                                        "description":"FormsAssociationsHistory",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"2F3C8B1BFE784C7E86E0B29899B13E3D",
                                                    "versionStart":"2021-03-03T12:56:08.070Z",
                                                    "objectVersionNumber":2,
                                                    "subjectId":"A13F9C2E7B1D4F0A92CE31A4B6D9E8F1",
                                                    "siteId":"9B7A13D4C2F84E1AA6D2E3F9BC18A457",
                                                    "srcEventId":"5D3AA89CE2B04729A1F1C7E62D9F44B2",
                                                    "srcEventInstanceNum":1,
                                                    "srcFormId":"C41E8B2D73A54F0C9AFE22D6A1138B90",
                                                    "srcRepeatSequenceNumber":1,
                                                    "srcStudyVersion":"1.0.0.3",
                                                    "associatedEventId":"5D3AA89CE2B04729A1F1C7E62D9F44B2",
                                                    "associatedEventInstanceNum":1,
                                                    "associatedFormId":"8AA41F6E5D9B4F1A94E3C7B22A6610EF",
                                                    "associatedRepeatSequenceNumber":1,
                                                    "associatedStudyVersion":"1.0.0.3",
                                                    "reason":"Change for encoding",
                                                    "comment":null,
                                                    "srcItemId":"E2C77AB91F58443DB89A1D99F2F44C33",
                                                    "operationType":"REMOVED",
                                                    "userId":"TESTUSER10"
                                                },
                                                {
                                                    "id":"2F3C8B1BFE784C7E86E0B29899B13E3D",
                                                    "versionStart":"2021-03-03T11:26:49.732Z",
                                                    "objectVersionNumber":1,
                                                    "subjectId":"A13F9C2E7B1D4F0A92CE31A4B6D9E8F1",
                                                    "siteId":"9B7A13D4C2F84E1AA6D2E3F9BC18A457",
                                                    "srcEventId":"5D3AA89CE2B04729A1F1C7E62D9F44B2",
                                                    "srcEventInstanceNum":1,
                                                    "srcFormId":"C41E8B2D73A54F0C9AFE22D6A1138B90",
                                                    "srcRepeatSequenceNumber":1,
                                                    "srcStudyVersion":"1.0.0.3",
                                                    "associatedEventId":"5D3AA89CE2B04729A1F1C7E62D9F44B2",
                                                    "associatedEventInstanceNum":1,
                                                    "associatedFormId":"8AA41F6E5D9B4F1A94E3C7B22A6610EF",
                                                    "associatedRepeatSequenceNumber":1,
                                                    "associatedStudyVersion":"1.0.0.3",
                                                    "reason":null,
                                                    "comment":null,
                                                    "srcItemId":"E2C77AB91F58443DB89A1D99F2F44C33",
                                                    "operationType":"CREATED",
                                                    "userId":"TESTUSER10"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-formassociations-history-sourceForm-{sourceFormId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-formassociations-history-sourceform-sourceformid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for multiple items"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves multiple data elements for multiple requested items.",
                "operationId":"getMultiDataElements",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"visits status details",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleDataElementsRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto7"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/repeatinginstances/subjectId/{subjectId}":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get all existing data elements across all repeating form and visit instances"
                ],
                "summary":"V1.0",
                "description":"Returns all existing data elements across all repeating form and visit instances.",
                "operationId":"getRepeatInstances",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "requestBody":{
                    "description":"Repeating Instance Request DTO",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RepeatingMultipleDataElementsRequestDto"
                            },
                            "examples":{
                                "RepeatingMultipleDataElementsRequestDto":{
                                    "description":"RepeatingMultipleDataElementsRequestDto",
                                    "value":{
                                        "dataElementDetails":[
                                            {
                                                "eventId":"A3F27C5D9B1E4D55A8E0C4F19A2D7F31",
                                                "formId":"7C1E5AB4D9F648E4A93B21EF0A67C9D2",
                                                "itemId":"3F9D2A7C6E1B4C35B8D0F1239A45E8CD"
                                            },
                                            {
                                                "eventId":"8B4E2FA17D9546C5890AC32F7E4B19D0",
                                                "formId":"C2D97F1A4B3C4E59A8D1E0F72A6B8C14",
                                                "itemId":"F14D3A9B2C8E4F67A1D29C30B7E6F582"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto110"
                                    }
                                },
                                "examples":{
                                    "RepeatInstancesResponse":{
                                        "description":"RepeatInstancesResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                [
                                                    {
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                        "id":null,
                                                        "versionStart":null,
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":null,
                                                        "validationFailure":null,
                                                        "studyId":"D6A7847133CA42D9BC207F46F7CC9576",
                                                        "studyName":"S1",
                                                        "studyVersion":"1.3.0.9",
                                                        "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                        "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                        "formId":"8113D20557904EDAAECF15CA629685D2",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":1,
                                                        "repeatFormNumber":null,
                                                        "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                        "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":null,
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "eventInstanceNum":3,
                                                        "dataFlag":null,
                                                        "itemD":null,
                                                        "itemR":null,
                                                        "itemF":null,
                                                        "itemType":"CHOICE",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null
                                                    },
                                                    {
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                        "id":null,
                                                        "versionStart":null,
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":null,
                                                        "validationFailure":null,
                                                        "studyId":"D6A7847133CA42D9BC207F46F7CC9576",
                                                        "studyName":"S1",
                                                        "studyVersion":"1.3.0.9",
                                                        "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                        "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                        "formId":"8113D20557904EDAAECF15CA629685D2",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":2,
                                                        "repeatFormNumber":null,
                                                        "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                        "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":null,
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "eventInstanceNum":3,
                                                        "dataFlag":null,
                                                        "itemD":null,
                                                        "itemR":null,
                                                        "itemF":null,
                                                        "itemType":"CHOICE",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null
                                                    },
                                                    {
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"REMOVED",
                                                        "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                        "id":null,
                                                        "versionStart":null,
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":null,
                                                        "validationFailure":null,
                                                        "studyId":"D6A7847133CA42D9BC207F46F7CC9576",
                                                        "studyName":"S1",
                                                        "studyVersion":"1.3.0.8",
                                                        "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                        "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                        "formId":"8113D20557904EDAAECF15CA629685D2",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":1,
                                                        "repeatFormNumber":null,
                                                        "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                        "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":null,
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "eventInstanceNum":1,
                                                        "dataFlag":null,
                                                        "itemD":null,
                                                        "itemR":null,
                                                        "itemF":null,
                                                        "itemType":"CHOICE",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null
                                                    },
                                                    {
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                        "id":null,
                                                        "versionStart":null,
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":null,
                                                        "validationFailure":null,
                                                        "studyId":"D6A7847133CA42D9BC207F46F7CC9576",
                                                        "studyName":"S1",
                                                        "studyVersion":"1.3.0.8",
                                                        "subjectId":"C5EDB9AEDFE5401F9EE8002FBC5CC59A",
                                                        "eventId":"D803C898CCC6499693FE3D8D70FAF303",
                                                        "formId":"8113D20557904EDAAECF15CA629685D2",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":2,
                                                        "repeatFormNumber":null,
                                                        "itemId":"E0235AE64B5F4EE5AD28AD7E6C66CA95",
                                                        "siteId":"05637D551590402DAD3356F8C4DF0A4B",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":null,
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "eventInstanceNum":1,
                                                        "dataFlag":null,
                                                        "itemD":null,
                                                        "itemR":null,
                                                        "itemF":null,
                                                        "itemType":"CHOICE",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null
                                                    }
                                                ]
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-repeatinginstances-subjectId-{subjectId}-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-repeatinginstances-subjectid-subjectid-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/sdv":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all items with source data verification information"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves all items with Source Data Verification (SDV) settings information.,  API has been deprecated and moved to DAS(Data Action Service) Path: /ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/sdv",
                "operationId":"getSdvItemSelection",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"ID of the subject.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"ID of the event.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SdvItemSelectionResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-sdv-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-sdv-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/visitdata":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by subject and event ID"
                ],
                "summary":"[Deprecated]:V1.0",
                "description":"Retrieves data elements by subject and event ID for a given study and mode.",
                "operationId":"getVisitData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of the visit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDataDto10"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-visitdata-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-visitdata-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Updates a single data element for a subject based on the data element ID. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"mergeSingleDataElement",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"ID of the data element to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Values to updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/formassociations":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements in a form with form associations"
                ],
                "summary":"V1.0",
                "description":"Creates multiple data elements in a particular form with form associations, within a visit for a given subject. ",
                "operationId":"saveFormAssociationsDataElement",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq"
                            },
                            "examples":{
                                "DataElementFormAssociationsReq":{
                                    "description":"DataElementFormAssociationsReq",
                                    "value":{
                                        "context":{
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"9FCBB303F8D24A3FB7DABCACF7600629",
                                            "eventId":"7FCBB303F8D24A3FB7DABCACF7600629",
                                            "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "studyVersion":"1.0.0.2",
                                            "eventInstanceNum":1,
                                            "repeatSequenceNumber":1
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "value":"13.5",
                                                "measureUnit":"g/dL",
                                                "numValue":13,
                                                "floatValue":13.5,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":1,
                                                "dayValue":1,
                                                "yearValue":2023,
                                                "hourValue":9,
                                                "minuteValue":0,
                                                "secondValue":0
                                            }
                                        ],
                                        "formsAssociations":[
                                            {
                                                "associatedEventId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "associatedEventInstanceNum":"1",
                                                "associatedFormId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "associatedRepeatSequenceNumber":"1",
                                                "srcItemId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto"
                                    }
                                },
                                "examples":{
                                    "SaveFormAssociationsDataElementResponseV1":{
                                        "description":"SaveFormAssociationsDataElementResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "comment":"Sample",
                                                        "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "dateTimeValueUTC":"2023-01-01T10:10:20.000Z",
                                                        "dayValue":1,
                                                        "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                        "eventInstanceNum":3,
                                                        "floatValue":13.5,
                                                        "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                        "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                        "freezedStatus":"NOT_FROZEN",
                                                        "hourValue":10,
                                                        "id":"906F37FB48E3421D899E1EBF885FF959",
                                                        "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                        "measureUnit":"g/dL",
                                                        "minuteValue":10,
                                                        "monthValue":1,
                                                        "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "numValue":13,
                                                        "objectVersionNumber":1,
                                                        "operationType":"CREATED",
                                                        "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                        "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                        "reason":"Initial",
                                                        "repeatSequenceNumber":1,
                                                        "secondValue":20,
                                                        "signedStatus":"UNSIGNED",
                                                        "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                        "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                        "studyName":"SignVerifyRegStudy",
                                                        "studyVersion":"3.1.0.10",
                                                        "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                        "transactionEnd":"2023-01-01T10:20:20.000Z",
                                                        "transactionStart":"2023-01-01T10:10:20.000Z",
                                                        "validationFailure":null,
                                                        "validationStatus":"SUCCESS",
                                                        "value":"[{\"value\":\"25\"}]",
                                                        "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                        "vendorCode":"VENDOR1",
                                                        "verifiedStatus":"NOT_VERIFIED",
                                                        "versionStart":"2022-05-16T07:29:18.325Z",
                                                        "yearValue":2021
                                                    }
                                                ],
                                                "formsAssociations":[
                                                    {
                                                        "associatedEventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                        "associatedEventInstanceNum":1,
                                                        "associatedFormId":"8AA41F6E5D9B4F1A94E3C7B22A6610EF",
                                                        "associatedRepeatSequenceNumber":1,
                                                        "associatedStudyVersion":"1.0.0.3",
                                                        "comment":"Copied",
                                                        "id":"2F3C8B1BFE784C7E86E0B29899B13E3D",
                                                        "objectVersionNumber":1,
                                                        "reason":"COPY",
                                                        "siteId":"9B7A13D4C2F84E1AA6D2E3F9BC18A457",
                                                        "srcEventId":"5D3AA89CE2B04729A1F1C7E62D9F44B2",
                                                        "srcEventInstanceNum":1,
                                                        "srcFormId":"C41E8B2D73A54F0C9AFE22D6A1138B90",
                                                        "srcItemId":"E2C77AB91F58443DB89A1D99F2F44C33",
                                                        "srcRepeatSequenceNumber":1,
                                                        "srcStudyVersion":"1.0.0.3",
                                                        "subjectId":"A13F9C2E7B1D4F0A92CE31A4B6D9E8F1",
                                                        "versionStart":"2021-03-03T12:56:08.070Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-formassociations-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-formassociations-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/migratedata":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create migrate data elements for a subject"
                ],
                "summary":"V1.0",
                "description":"Creates migrate data elements for a subject for a particular visit and particular form. ",
                "operationId":"saveMigrateDataElement",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto6"
                            },
                            "examples":{
                                "DataElementsRequestDto6":{
                                    "description":"DataElementsRequestDto6",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"3.1.0.10",
                                            "siteId":"9F2E4C1A8D5B4E83A1FBC2D6E90A1B33",
                                            "subjectId":"A34F91CE72C54CAAA6F8B44D9E3A9F10",
                                            "eventId":"BC12D8F4AE7A4EBD9B5F3C993D88F322",
                                            "formId":"C8F1A2B7E3CC45B6950F7BB91E1F3D77",
                                            "eventInstanceNum":null,
                                            "outerRepeat":null,
                                            "innerRepeat":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"D7A5C3E29F4B4C27A88E51C92F0CBA99",
                                                "value":"[{\"value\":\"1\"}]",
                                                "sourceTimeStamp":"2021-01-01T10:10:20.000Z"
                                            },
                                            {
                                                "itemId":"F1C4A5D37F8E4B8E9A72CC19F3097EB2",
                                                "value":"25",
                                                "measureUnit":null,
                                                "sourceTimeStamp":"2021-01-02T10:10:20.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto13"
                                    }
                                },
                                "examples":{
                                    "SaveMigrateDataElementResponseV1":{
                                        "description":"SaveMigrateDataElementResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"906F37FB48E3421D899E1EBF885FF959",
                                                    "versionStart":"2022-05-16T07:29:18.325Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"3.1.0.10",
                                                    "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                    "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                    "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                    "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"TESTUSER9",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"MALE",
                                                    "itemR":"MALE",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "sourceTimeStamp":"2021-01-01T10:10:20.000Z"
                                                },
                                                {
                                                    "id":"906F37FB48E3421D899E1EBF885FF959",
                                                    "versionStart":"2022-05-16T07:29:18.325Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"3.1.0.10",
                                                    "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                    "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                    "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"AB19E72C4FF44A3E8C7FB9953AAED022",
                                                    "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"25",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":25,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"TESTUSER9",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"25",
                                                    "itemR":"25",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "sourceTimeStamp":"2021-01-02T10:10:20.000Z"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-migratedata-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-migratedata-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/multirepeatingform":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for repeating form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates multiple data elements in a repeating form, for a particular subject, visit and form. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"saveMultipleRepeatingFormsDataElement",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRepeatingFormsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-multirepeatingform-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-multirepeatingform-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/dataelements/subject/{subjectId}/event/{eventId}/form/{formId}/formassociations":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update multiple data elements for a given form, event and subject"
                ],
                "summary":"V1.0",
                "description":"Updates form associations, if any, for a given form, event and subject. Deletes all associations for the data element if request is empty.",
                "operationId":"updateFormAssociations",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatSequenceNum",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":2
                    }
                ],
                "requestBody":{
                    "description":"Form associations to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormAssociationsUpdateDto"
                            },
                            "examples":{
                                "FormAssociationsUpdateDto":{
                                    "description":"FormAssociationsUpdateDto",
                                    "value":{
                                        "reason":"Change for encoding",
                                        "comment":"",
                                        "formsAssociations":[
                                            {
                                                "associatedEventId":"7F3A9E2B1C4D4B3A9A1C9D8B7E6F5A41",
                                                "associatedEventInstanceNum":1,
                                                "associatedFormId":"3A9B7C5D8E1F4A2B9C7D6E5F1A2B3C4D",
                                                "associatedRepeatSequenceNumber":1,
                                                "associatedStudyVersion":"1.0.0.3",
                                                "srcItemId":"8C7D6E5F1A2B3C4D9E8F7A6B5C4D3E2F",
                                                "siteId":"4F6A8C2E1B3D5F7A9C8E2D1F3B5A7C9E",
                                                "srcStudyVersion":"1.0.0.3"
                                            },
                                            {
                                                "associatedEventId":"7F3A9E2B1C4D4B3A9A1C9D8B7E6F5A41",
                                                "associatedEventInstanceNum":1,
                                                "associatedFormId":"9E8F7A6B5C4D3E2F1A2B3C4D8C7D6E5F",
                                                "associatedRepeatSequenceNumber":null,
                                                "associatedStudyVersion":"1.0.0.3",
                                                "srcItemId":"8C7D6E5F1A2B3C4D9E8F7A6B5C4D3E2F",
                                                "siteId":"4F6A8C2E1B3D5F7A9C8E2D1F3B5A7C9E",
                                                "srcStudyVersion":"1.0.0.3"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormAssociationsUpdateRespDto"
                                    }
                                },
                                "examples":{
                                    "UpdateFormAssociationsResponseV1":{
                                        "description":"UpdateFormAssociationsResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "formsAssociations":[
                                                    {
                                                        "id":"4D6C5B82F8D0464298A3A1BE5842AA82",
                                                        "versionStart":"2021-03-08T11:03:23.092Z",
                                                        "objectVersionNumber":1,
                                                        "subjectId":"9A3F7C2B5E8D4A7F9C1B2E3D4F6A8C10",
                                                        "siteId":"A8F3C2E1B4D6F7A9C3E2D1F4B8A7C6D2",
                                                        "srcEventId":"3E5A9C1D7B4F6A2E8C0D1F3B9A7E5C4D",
                                                        "srcEventInstanceNum":null,
                                                        "srcFormId":"2C7E4A9D1B5F3C8A6E0D2F4B9C1A7E5D",
                                                        "srcRepeatSequenceNumber":1,
                                                        "srcStudyVersion":"1.0.0.3",
                                                        "associatedEventId":"7F3A9E2B1C4D4B3A9A1C9D8B7E6F5A41",
                                                        "associatedEventInstanceNum":1,
                                                        "associatedFormId":"3A9B7C5D8E1F4A2B9C7D6E5F1A2B3C4D",
                                                        "associatedRepeatSequenceNumber":1,
                                                        "associatedStudyVersion":"1.0.0.3",
                                                        "reason":null,
                                                        "comment":null,
                                                        "srcItemId":"8C7D6E5F1A2B3C4D9E8F7A6B5C4D3E2F"
                                                    },
                                                    {
                                                        "id":"04B7E53F84FE4E21AC2FBC11E7041E68",
                                                        "versionStart":"2021-03-08T11:03:23.097Z",
                                                        "objectVersionNumber":1,
                                                        "subjectId":"9A3F7C2B5E8D4A7F9C1B2E3D4F6A8C10",
                                                        "siteId":"A8F3C2E1B4D6F7A9C3E2D1F4B8A7C6D2",
                                                        "srcEventId":"3E5A9C1D7B4F6A2E8C0D1F3B9A7E5C4D",
                                                        "srcEventInstanceNum":null,
                                                        "srcFormId":"2C7E4A9D1B5F3C8A6E0D2F4B9C1A7E5D",
                                                        "srcRepeatSequenceNumber":1,
                                                        "srcStudyVersion":"1.0.0.3",
                                                        "associatedEventId":"7F3A9E2B1C4D4B3A9A1C9D8B7E6F5A41",
                                                        "associatedEventInstanceNum":1,
                                                        "associatedFormId":"9E8F7A6B5C4D3E2F1A2B3C4D8C7D6E5F",
                                                        "associatedRepeatSequenceNumber":null,
                                                        "associatedStudyVersion":"1.0.0.3",
                                                        "reason":null,
                                                        "comment":null,
                                                        "srcItemId":"8C7D6E5F1A2B3C4D9E8F7A6B5C4D3E2F"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-dataelements-subject-{subjectId}-event-{eventId}-form-{formId}-formassociations-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-dataelements-subject-subjectid-event-eventid-form-formid-formassociations-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/{dataelementId}/{opeartionType}/childItems":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all elements required to be cleared to modify a data element"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves all the child items, forms and visits required to be cleared in order to modify a given data element.",
                "operationId":"getAllChildItemsGET",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to filter and retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataelementId",
                        "in":"path",
                        "description":"DataElement ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"opeartionType",
                        "in":"path",
                        "description":"Scope of the API is it clear/update",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"value",
                        "in":"query",
                        "description":"Values of the data element getting passed.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ChildInfoDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-{dataelementId}-{opeartionType}-childItems-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-dataelementid-opeartiontype-childitems-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/form/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the deleted data elements in a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the list of data elements which are deleted, mainly used for Repeating Forms. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDeletedItemsForAVisit2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to filter and retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"ID of the Visit for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance number of the visit for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto12"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-form-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-form-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/repeatinginstances/multiple/subjectId/{subjectId}":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/v1.0"
                ],
                "summary":"V1.0",
                "description":"Consolidated API for Rule Service to fetch repeatinginstances and multiple data elements in one call.",
                "operationId":"getRepeatingInstancesMultipleConsolidated",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to filter and retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Consolidated request body",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleConsolidatedRequestDto10"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleConsolidatedResponseDto10"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-repeatinginstances-multiple-subjectId-{subjectId}-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-repeatinginstances-multiple-subjectid-subjectid-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/events/{eventId}/dataelements/delete":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Delete data elements for a visit and form"
                ],
                "summary":"V1.0",
                "description":"Deletes data for a visit and for a form by vendor code, mainly used for Repeating Form.",
                "operationId":"DeleteDataElements",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"60DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"vendorCode",
                        "in":"query",
                        "description":"A code identifying the external vendor or source system associated with the transaction or data.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"VENDOR1"
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "description":"Reason and comment for deleting data elements",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "ReasonCommentRequest":{
                                    "description":"ReasonCommentRequest",
                                    "value":{
                                        "reason":"Investigator Correction",
                                        "comment":"Removing incorrect data captured by mistake"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto90"
                                    }
                                },
                                "examples":{
                                    "DeleteFormResponseV1":{
                                        "description":"DeleteFormResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"3A19C843C06C43B89B425DB4796A48D2",
                                                    "versionStart":"2021-12-23T05:50:43.959Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A93F18B2E0B348E1974C7A5324C6BC1F",
                                                    "eventId":"D1FA2A55F3D7465B967C92A1B874F4F3",
                                                    "formId":"E0D5C94FA3E948CA9C5822634D8BE7AA",
                                                    "formSectionId":"7F0A1B9C3D8746E0B9F21A44D5EC98C0",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"C2A8D0F34B7C4D21A621892FFD9E37BA",
                                                    "siteId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row2",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"24BF13E9C5D74440A1A52C8880F59D02",
                                                    "reason":"Investigator Correction",
                                                    "comment":"Removing incorrect data captured by mistake",
                                                    "operationType":"REMOVED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"2021-12-23T05:50:43.959Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes"
                                                },
                                                {
                                                    "id":"58D1C2C5E9F54096A645E1D0E675A703",
                                                    "versionStart":"2021-12-23T05:50:43.962Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A93F18B2E0B348E1974C7A5324C6BC1F",
                                                    "eventId":"D1FA2A55F3D7465B967C92A1B874F4F3",
                                                    "formId":"E0D5C94FA3E948CA9C5822634D8BE7AA",
                                                    "formSectionId":"7F0A1B9C3D8746E0B9F21A44D5EC98C0",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"9E1B47C0C6FA4E63A2C3B98455E78B1C",
                                                    "siteId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row2",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Asthma\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"24BF13E9C5D74440A1A52C8880F59D02",
                                                    "reason":"Investigator Correction",
                                                    "comment":"Removing incorrect data captured by mistake",
                                                    "operationType":"REMOVED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"2021-12-23T05:50:43.962Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Asthma",
                                                    "itemR":"Asthma"
                                                },
                                                {
                                                    "id":"FC95ECF5358C4CDFB826B884FEC2E23F",
                                                    "versionStart":"2021-12-23T05:50:43.961Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A93F18B2E0B348E1974C7A5324C6BC1F",
                                                    "eventId":"D1FA2A55F3D7465B967C92A1B874F4F3",
                                                    "formId":"E0D5C94FA3E948CA9C5822634D8BE7AA",
                                                    "formSectionId":"7F0A1B9C3D8746E0B9F21A44D5EC98C0",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"6B8C13DA92F54A22B9F85D684422ABF1",
                                                    "siteId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row2",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"24BF13E9C5D74440A1A52C8880F59D02",
                                                    "reason":"Investigator Correction",
                                                    "comment":"Removing incorrect data captured by mistake",
                                                    "operationType":"REMOVED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"2021-12-23T05:50:43.961Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes"
                                                },
                                                {
                                                    "id":"609FA147723B48D9B798F1C2718593DF",
                                                    "versionStart":"2021-12-23T05:50:43.956Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A93F18B2E0B348E1974C7A5324C6BC1F",
                                                    "eventId":"D1FA2A55F3D7465B967C92A1B874F4F3",
                                                    "formId":"E0D5C94FA3E948CA9C5822634D8BE7AA",
                                                    "formSectionId":"7F0A1B9C3D8746E0B9F21A44D5EC98C0",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"3D6E8A81F4C44F78A9C0B665D32D1E9A",
                                                    "siteId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row2",
                                                    "value":"6",
                                                    "measureUnit":"mm",
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":6,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"24BF13E9C5D74440A1A52C8880F59D02",
                                                    "reason":"Investigator Correction",
                                                    "comment":"Removing incorrect data captured by mistake",
                                                    "operationType":"REMOVED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"2021-12-23T05:50:43.956Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":"mm",
                                                    "itemF":"6",
                                                    "itemR":"6"
                                                },
                                                {
                                                    "id":"1D9676871AC34164A9A63977611612D8",
                                                    "versionStart":"2021-12-23T05:50:43.962Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A93F18B2E0B348E1974C7A5324C6BC1F",
                                                    "eventId":"D1FA2A55F3D7465B967C92A1B874F4F3",
                                                    "formId":"E0D5C94FA3E948CA9C5822634D8BE7AA",
                                                    "formSectionId":"7F0A1B9C3D8746E0B9F21A44D5EC98C0",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"C2A8D0F34B7C4D21A621892FFD9E37BA",
                                                    "siteId":"8F4E3A9C12D849A9A1C2F4B6E8D73B55",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row2",
                                                    "value":"2021",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":2021,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"24BF13E9C5D74440A1A52C8880F59D02",
                                                    "reason":"Investigator Correction",
                                                    "comment":"",
                                                    "operationType":"REMOVED",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"2021-12-23T05:50:43.962Z",
                                                    "itemType":"DATETIME",
                                                    "itemD":"2021",
                                                    "itemF":null,
                                                    "itemR":"2021"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-events-{eventId}-dataelements-delete-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-forms-formid-subjects-subjectid-events-eventid-dataelements-delete-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/events/{eventId}/vendorCode/{vendorCode}/dataelements/withvendorcode":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves data elements based on form ID, Subject ID, Event ID and Vendor code.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/events/{eventId}/vendorCode/{vendorCode}/dataelements/withvendorcode",
                "operationId":"getDataElementsForVendorCode",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Event ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC"
                    },
                    {
                        "name":"vendorCode",
                        "in":"path",
                        "description":"Vendor code.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACME"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto90"
                                    }
                                },
                                "examples":{
                                    "GetWithVendorCodeResponseV1":{
                                        "description":"GetWithVendorCodeResponseV1",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyVersion":"1.0.0.1",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "vendorCode":"ACME"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"svc-rest-v1.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-events-{eventId}-vendorCode-{vendorCode}-dataelements-withvendorcode-get",
                "x-filename-id":"svc-rest-v1.0-studies-studyid-mode-forms-formid-subjects-subjectid-events-eventid-vendorcode-vendorcode-dataelements-withvendorcode-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/withvendorcode":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update data elements for a visit and form"
                ],
                "summary":"V1.0",
                "description":"Updates data for a visit and for a form by vendor code, mainly used for Repeating Form. ",
                "operationId":"updateDataElementsByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"vendorCode",
                        "in":"query",
                        "description":"A code identifying the external vendor or source system associated with the transaction or data.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACME"
                    }
                ],
                "requestBody":{
                    "description":"Update data elements with vendor code",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto3"
                            },
                            "examples":{
                                "DataElementsRequestDto3":{
                                    "description":"DataElementsRequestDto3",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_AUT_ActiveStudy",
                                            "studyVersion":"1.5.0.11",
                                            "siteId":"A1B2C3D4E5F64789A0B1C2D3E4F50611",
                                            "subjectId":"B2C3D4E5F6A14789B0C1D2E3F4A50612",
                                            "eventId":"C3D4E5F6A1B24789C0D1E2F3A4B50613",
                                            "formId":"D4E5F6A1B2C34789D0E1F2A3B4C50614",
                                            "eventInstanceNum":4,
                                            "repeatSequenceNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F6A1B2C3D44789E0F1A2B3C4D50615",
                                                "value":"26",
                                                "measureUnit":null,
                                                "vendorCode":"V000001",
                                                "reason":"Other",
                                                "comment":"Data Intake update"
                                            },
                                            {
                                                "itemId":"F6A1B2C3D4E54789F0A1B2C3D4E50616",
                                                "value":"UpdatedUnscheduled",
                                                "vendorCode":"V000001",
                                                "reason":"Other",
                                                "comment":"Data Intake update"
                                            },
                                            {
                                                "itemId":"A7B1C2D3E4F64789A1B2C3D4E5F60617",
                                                "value":"21-Jan-2020",
                                                "vendorCode":"V000001",
                                                "reason":"Other",
                                                "comment":"Data Intake update"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto50"
                                },
                                "examples":{
                                    "UpdateWithVendorCodeResponseV1":{
                                        "description":"UpdateWithVendorCodeResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"E8093CCF76764C72823CD537F6C0AB5A",
                                                    "versionStart":"2022-01-28T01:24:39.543Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"1BECC4EEBDA64F6495FB2662B7404010",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.5.0.11",
                                                    "subjectId":"60B82AAEFECF4D61AAFB47003D6B85CA",
                                                    "eventId":"3D93B6FB8CAC416389FCF1A58A32E3AE",
                                                    "formId":"7C8483A6EE0D478D8F8B61DAFA705046",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"4830A48E39584BB58E974DAC1BBDF36C",
                                                    "siteId":"1BF8090E06CB433291662637F483A217",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"V000001",
                                                    "value":"26",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":26,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":"Other",
                                                    "comment":"Data Intake update",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":4,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"E91E01A6F41246ED8E5710D2DF89D3AC",
                                                    "versionStart":"2022-01-28T01:24:40.048Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"1BECC4EEBDA64F6495FB2662B7404010",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.5.0.11",
                                                    "subjectId":"60B82AAEFECF4D61AAFB47003D6B85CA",
                                                    "eventId":"3D93B6FB8CAC416389FCF1A58A32E3AE",
                                                    "formId":"7C8483A6EE0D478D8F8B61DAFA705046",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"C772CD86D936413F87E2FC2FDEB616B7",
                                                    "siteId":"1BF8090E06CB433291662637F483A217",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"V000001",
                                                    "value":"UpdatedUnscheduled",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":"Other",
                                                    "comment":"Data Intake update",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":4,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"46D3DF3D2ECB428AB2DE4F72AACD14A0",
                                                    "versionStart":"2022-01-28T01:24:40.504Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"1BECC4EEBDA64F6495FB2662B7404010",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.5.0.11",
                                                    "subjectId":"60B82AAEFECF4D61AAFB47003D6B85CA",
                                                    "eventId":"3D93B6FB8CAC416389FCF1A58A32E3AE",
                                                    "formId":"7C8483A6EE0D478D8F8B61DAFA705046",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DF90BA079F084B668B091521D2006847",
                                                    "siteId":"1BF8090E06CB433291662637F483A217",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"V000001",
                                                    "value":"21-Jan-2020",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":"2020-01-21T00:00:00.000Z",
                                                    "monthValue":1,
                                                    "dayValue":21,
                                                    "yearValue":2020,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":"Other",
                                                    "comment":"Data Intake update",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":4,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create data elements for a visit and form"
                ],
                "summary":"V1.0",
                "description":"Creates data for a visit and for a form by vendor code, mainly used for Repeating Form. ",
                "operationId":"saveDataElements",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto3"
                            },
                            "examples":{
                                "DataElementsRequestDto3":{
                                    "description":"DataElementsRequestDto3",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_AUT_ActiveStudy",
                                            "studyVersion":"1.3.0.8",
                                            "siteId":"A1F34C9B12DE4A2E8B9FA7C1D88901F2",
                                            "subjectId":"BB92E14A77FF42E4A8CE991BE34C7D1A",
                                            "eventId":"C8D2F3AEB1844A50B87EBB2F4F229B3E",
                                            "formId":"D91AB23C45F949CBBACD8EAA764F2C11",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E12F98BC34AD4F1FB77BE99812AB55C0",
                                                "value":"22",
                                                "measureUnit":null,
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            },
                                            {
                                                "itemId":"F88C13AED99A43C2A1CC90FE2A1DE4FA",
                                                "value":"Unscheduled3",
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            },
                                            {
                                                "itemId":"ABC98122D44F4D9DA33C7F9B2C44E182",
                                                "value":"23-Jan-2020",
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto50"
                                },
                                "examples":{
                                    "DataElementDto50ResponseWithVendorCode":{
                                        "description":"DataElementDto50ResponseWithVendorCode",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"9FCBB303F8D24A3FB7DABCACF7600629",
                                                    "versionStart":"2021-08-17T10:31:18.207Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"830614E101E34087ADE2D1E3C4864651",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"22",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":22,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"BB5DAEBDD07B452C8C2895B6FFC7997D",
                                                    "versionStart":"2021-08-17T10:31:18.243Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"B4E329B580F24F4AB003844DE5FE9228",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"Unscheduled3",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"D21196F6A80A432589A7C48232D362C1",
                                                    "versionStart":"2021-08-17T10:31:18.247Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"E93D1AF212DC47EC9F304F3E862FADFA",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"23-Jan-2020",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":"2020-01-23T00:00:00.000Z",
                                                    "monthValue":1,
                                                    "dayValue":23,
                                                    "yearValue":2020,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/withvendorcode/multisectionflat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update data elements for the flat part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Updates data for a visit and for the flat part of a multi a section form by vendor code, mainly used for Repeating Form. ",
                "operationId":"updateDataElementsMultiSectionFlatByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Update data elements with vendor code for multi-section flat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"4B91E0A1F6C948B884E725F8A9F0C3D2",
                                            "subjectId":"A8F2C71139B7405EAC891F0D88934FFB",
                                            "eventId":"91E3A77D4F9C4C42B8B203D44E7A9921",
                                            "formId":"F3C92AEE0B6D4E3C9C0D8F11AB2297FA",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"BE12F5A44F8D4B8BA19D66E1C08F99DA",
                                                "value":"Stomach1",
                                                "vendorCode":"RFN:Form1",
                                                "reason":"Other",
                                                "comment":"location updated"
                                            },
                                            {
                                                "itemId":"C7AB31094E1242BEBE0E71244EB7AD33",
                                                "value":"StomachSurgery1",
                                                "vendorCode":"RFN:Form1",
                                                "reason":"Other",
                                                "comment":"Method updated"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "WithVendorCodeMultiSectionFlatUpdateResponseV1":{
                                        "description":"WithVendorCodeMultiSectionFlatUpdateResponseV1",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "id":"58F70634E6234D25838AC430FD3BDAEE",
                                                    "versionStart":"2021-12-23T13:23:00.744Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"C9D83F4B7E9C47DDBA8E7D65C58A9132",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A8F2C71139B7405EAC891F0D88934FFB",
                                                    "eventId":"91E3A77D4F9C4C42B8B203D44E7A9921",
                                                    "formId":"F3C92AEE0B6D4E3C9C0D8F11AB2297FA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"BE12F5A44F8D4B8BA19D66E1C08F99DA",
                                                    "siteId":"4B91E0A1F6C948B884E725F8A9F0C3D2",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1",
                                                    "value":"Stomach1",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"7F4E1D8A9C3B4E0A8D4B9930E83A7726",
                                                    "reason":"Other",
                                                    "comment":"location updated",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "repeatFormNumber":1
                                                },
                                                "errorData":null
                                            },
                                            {
                                                "status":"success",
                                                "result":{
                                                    "id":"B35459A27AA54005808B93D653B97195",
                                                    "versionStart":"2021-12-23T13:23:01.132Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"C9D83F4B7E9C47DDBA8E7D65C58A9132",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"A8F2C71139B7405EAC891F0D88934FFB",
                                                    "eventId":"91E3A77D4F9C4C42B8B203D44E7A9921",
                                                    "formId":"F3C92AEE0B6D4E3C9C0D8F11AB2297FA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"C7AB31094E1242BEBE0E71244EB7AD33",
                                                    "siteId":"4B91E0A1F6C948B884E725F8A9F0C3D2",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1",
                                                    "value":"StomachSurgery1",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"7F4E1D8A9C3B4E0A8D4B9930E83A7726",
                                                    "reason":"Other",
                                                    "comment":"Method updated",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "repeatFormNumber":1
                                                },
                                                "errorData":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionflat-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-multisectionflat-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create data elements for the flat part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Adds data in the flat part of a multi section form in a visit by vendor code.",
                "operationId":"saveDataElementsMultiSectionFlat",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code for multi-section flat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"A1B2C3D4E5F60718293A4BC5D6E7F8A9",
                                            "subjectId":"B2C3D4E5F60718293A4BC5D6E7F8A9A1",
                                            "eventId":"C3D4E5F60718293A4BC5D6E7F8A9A1B2",
                                            "formId":"D4E5F60718293A4BC5D6E7F8A9A1B2C3",
                                            "eventInstanceNum":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F60718293A4BC5D6E7F8A9A1B2C3D4",
                                                "value":"India",
                                                "vendorCode":"RFN:Form1"
                                            },
                                            {
                                                "itemId":"F60718293A4BC5D6E7F8A9A1B2C3D4E5",
                                                "value":"Automation",
                                                "vendorCode":"RFN:Form1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "WithVendorCodeFlatResponseV1":{
                                        "description":"WithVendorCodeFlatResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"7EE447E2BD7C4D2A8ACB958C7D976EDD",
                                                    "versionStart":"2021-12-17T08:54:40.537Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F60718293A4BC5D6E7F8A9",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F60718293A4BC5D6E7F8A9A1",
                                                    "eventId":"C3D4E5F60718293A4BC5D6E7F8A9A1B2",
                                                    "formId":"D4E5F60718293A4BC5D6E7F8A9A1B2C3",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F60718293A4BC5D6E7F8A9A1B2C3D4",
                                                    "siteId":"F60718293A4BC5D6E7F8A9A1B2C3D4E5",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1",
                                                    "value":"India",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"BC9EE8BCE5074F41BAC33645C09A501A",
                                                    "versionStart":"2021-12-17T08:54:40.551Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F60718293A4BC5D6E7F8A9",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F60718293A4BC5D6E7F8A9A1",
                                                    "eventId":"C3D4E5F60718293A4BC5D6E7F8A9A1B2",
                                                    "formId":"D4E5F60718293A4BC5D6E7F8A9A1B2C3",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"1A2B3C4D5E6F708192A3B4C5D6E7F8A9",
                                                    "siteId":"F60718293A4BC5D6E7F8A9A1B2C3D4E5",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1",
                                                    "value":"Automation",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionflat-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-multisectionflat-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/withvendorcode/multisectionrepeat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update data elements for a repeating part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Updates data for a visit and for the repeat part of a multi section form by vendor code. ",
                "operationId":"updateDataElementsMultiSectionRepeatByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code for multi repeat",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"A1B2C3D4E5F64789A0B1C2D3E4F50021",
                                            "subjectId":"B2C3D4E5F6A14789B0C1D2E3F4A50022",
                                            "eventId":"C3D4E5F6A1B24789C0D1E2F3A4B50023",
                                            "formId":"D4E5F6A1B2C34789D0E1F2A3B4C50024",
                                            "eventInstanceNum":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F6A1B2C3D44789E0F1A2B3C4D50025",
                                                "value":"15",
                                                "measureUnit":"mm",
                                                "formSectionId":"A7B1C2D3E4F64789A1B2C3D4E5F50027",
                                                "vendorCode":"RFN:Form2;RSN:Row2",
                                                "reason":"Other",
                                                "comment":"size updated"
                                            },
                                            {
                                                "itemId":"F6A1B2C3D4E54789F0A1B2C3D4E50026",
                                                "value":"[{\"value\":\"2\"}]",
                                                "measureUnit":null,
                                                "formSectionId":"A7B1C2D3E4F64789A1B2C3D4E5F50027",
                                                "vendorCode":"RFN:Form2;RSN:Row2",
                                                "reason":"Other",
                                                "comment":"measurement increased no"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto8"
                                    }
                                },
                                "examples":{
                                    "DataElementDto8":{
                                        "description":"DataElementDto8",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "id":"3F19A3FA7F4144E1991E0B959AD4EF23",
                                                    "versionStart":"2021-12-21T15:40:37.102Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"FAILED",
                                                    "validationFailure":"Question type choice is a required field",
                                                    "studyId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A147839ABCDEF012345678",
                                                    "eventId":"C3D4E5F6A1B247839ABCDEF012345678",
                                                    "formId":"D4E5F6A1B2C347839ABCDEF012345678",
                                                    "formSectionId":"E5F6A1B2C3D447839ABCDEF012345678",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"F6A1B2C3D4E547839ABCDEF012345678",
                                                    "siteId":"1A2B3C4D5E6F47839ABCDEF012345678",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"valueOfItem",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "reason":"Other",
                                                    "comment":"No SurgeryHistory updated",
                                                    "objectVersionNumber":2,
                                                    "eventInstanceNum":null,
                                                    "dataFlag":null,
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "repeatFormNumber":1
                                                },
                                                "errorData":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionrepeat-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-multisectionrepeat-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create data elements for the repeating part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Adds data in the repeating part of a multi section form in a visit by vendor code. ",
                "operationId":"saveDataElementsMultiSectionRepeat",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code for multi-section repeating forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                            "subjectId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                            "eventId":"123E4567E89B12D3A456426655440000",
                                            "formId":"FEDCBA9876543210ABCDEF1234567890",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"1F2E3D4C5B6A7980C1D2E3F4A5B6C7D8",
                                                "value":"5",
                                                "measureUnit":"mm",
                                                "numValue":5,
                                                "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                "vendorCode":"RFN:Form1;RSN:Row1"
                                            },
                                            {
                                                "itemId":"2F3E4D5C6B7A8901D2E3F4A5B6C7D8E9",
                                                "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                "vendorCode":"RFN:Form1;RSN:Row1"
                                            },
                                            {
                                                "itemId":"3F4E5D6C7B8A9012E3F4A5B6C7D8E9F0",
                                                "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                "vendorCode":"RFN:Form1;RSN:Row1"
                                            },
                                            {
                                                "itemId":"4F5E6D7C8B9A0123F4E5D6C7B8A9F012",
                                                "value":"[{\"value\":\"1\",\"label\":\"Asthma\"}]",
                                                "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                "vendorCode":"RFN:Form1;RSN:Row1"
                                            },
                                            {
                                                "itemId":"5F6E7D8C9B0A1234F5E6D7C8B9A0F123",
                                                "value":"2021",
                                                "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                "vendorCode":"RFN:Form1;RSN:Row1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "WithVendorCodeRepeatResponseV1":{
                                        "description":"WithVendorCodeRepeatResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"EE4C4B6E50644BABB75E07F2FA8802D6",
                                                    "versionStart":"2021-12-17T09:51:12.433Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F67890ABCDEF1234567890",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"123E4567E89B12D3A456426655440000",
                                                    "eventId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                                    "formId":"FEDCBA9876543210ABCDEF1234567890",
                                                    "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"1F2E3D4C5B6A7980C1D2E3F4A5B6C7D8",
                                                    "siteId":"0F1E2D3C4B5A69788E0D1C2B3A4F5E6D",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"5",
                                                    "measureUnit":"mm",
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":5,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"42E06AA46B8D465FBEE17D68BD5869B0",
                                                    "versionStart":"2021-12-17T09:51:12.436Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F67890ABCDEF1234567890",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"123E4567E89B12D3A456426655440000",
                                                    "eventId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                                    "formId":"FEDCBA9876543210ABCDEF1234567890",
                                                    "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"2F3E4D5C6B7A8901D2E3F4A5B6C7D8E9",
                                                    "siteId":"0F1E2D3C4B5A69788E0D1C2B3A4F5E6D",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"CF1267E5E40B4FB5A5D72B355B3D3A4F",
                                                    "versionStart":"2021-12-17T09:51:12.439Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F67890ABCDEF1234567890",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"123E4567E89B12D3A456426655440000",
                                                    "eventId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                                    "formId":"FEDCBA9876543210ABCDEF1234567890",
                                                    "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"3F4E5D6C7B8A9012E3F4A5B6C7D8E9F0",
                                                    "siteId":"0F1E2D3C4B5A69788E0D1C2B3A4F5E6D",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"C64D7353A6F74C78B4EE2560E8A99075",
                                                    "versionStart":"2021-12-17T09:51:12.442Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F67890ABCDEF1234567890",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"123E4567E89B12D3A456426655440000",
                                                    "eventId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                                    "formId":"FEDCBA9876543210ABCDEF1234567890",
                                                    "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"4F5E6D7C8B9A0123F4E5D6C7B8A9F012",
                                                    "siteId":"0F1E2D3C4B5A69788E0D1C2B3A4F5E6D",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Asthma\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"DED9CAD5473F46169EBE958CE0262AC9",
                                                    "versionStart":"2021-12-17T09:51:12.444Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F67890ABCDEF1234567890",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"123E4567E89B12D3A456426655440000",
                                                    "eventId":"F1E2D3C4B5A69788E0D1C2B3A4F5E6D7",
                                                    "formId":"FEDCBA9876543210ABCDEF1234567890",
                                                    "formSectionId":"9A8B7C6D5E4F3210ABCDEF9876543210",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"5F6E7D8C9B0A1234F5E6D7C8B9A0F123",
                                                    "siteId":"0F1E2D3C4B5A69788E0D1C2B3A4F5E6D",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"RFN:Form1;RSN:Row1",
                                                    "value":"2021",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":2021,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"AB12CD34EF56AB78CD90EF12AB34CD56",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionrepeat-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-withvendorcode-multisectionrepeat-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/upsert/withvendorcode":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Upsert data elements for a visit and form"
                ],
                "summary":"V1.0",
                "description":"Upserts data for a visit and for a form by vendor code, mainly used for Repeating Form. ",
                "operationId":"upsertDataElementsByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Upsert data elements with vendor code",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto3"
                            },
                            "examples":{
                                "DataElementsRequestDto3":{
                                    "description":"DataElementsRequestDto3",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_AUT_ActiveStudy",
                                            "studyVersion":"1.3.0.8",
                                            "siteId":"A1F34C9B12DE4A2E8B9FA7C1D88901F2",
                                            "subjectId":"BB92E14A77FF42E4A8CE991BE34C7D1A",
                                            "eventId":"C8D2F3AEB1844A50B87EBB2F4F229B3E",
                                            "formId":"D91AB23C45F949CBBACD8EAA764F2C11",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E12F98BC34AD4F1FB77BE99812AB55C0",
                                                "value":"22",
                                                "measureUnit":null,
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            },
                                            {
                                                "itemId":"F88C13AED99A43C2A1CC90FE2A1DE4FA",
                                                "value":"Unscheduled3",
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            },
                                            {
                                                "itemId":"ABC98122D44F4D9DA33C7F9B2C44E182",
                                                "value":"23-Jan-2020",
                                                "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "UpsertWithVendorCodeResponseV1":{
                                        "description":"UpsertWithVendorCodeResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"9FCBB303F8D24A3FB7DABCACF7600629",
                                                    "versionStart":"2021-08-17T10:31:18.207Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"830614E101E34087ADE2D1E3C4864651",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"22",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":22,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"BB5DAEBDD07B452C8C2895B6FFC7997D",
                                                    "versionStart":"2021-08-17T10:31:18.243Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"B4E329B580F24F4AB003844DE5FE9228",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"Unscheduled3",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                },
                                                {
                                                    "id":"D21196F6A80A432589A7C48232D362C1",
                                                    "versionStart":"2021-08-17T10:31:18.247Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"AEEF4ED6D72644AB9E6494984A6FE367",
                                                    "studyName":"DCS_AUT_ActiveStudy",
                                                    "studyVersion":"1.3.0.8",
                                                    "subjectId":"94F10BD78EEF416D92FE4BE440E2535E",
                                                    "eventId":"10E277716E96496A992AA0976A650C6E",
                                                    "formId":"B642FBD903E6418B8C7D54AFBF0D7964",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":5,
                                                    "itemId":"E93D1AF212DC47EC9F304F3E862FADFA",
                                                    "siteId":"BD57A54E34244AC9B4FC987B3A965658",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:7/29/2021T10:10:00;RSN:row1",
                                                    "value":"23-Jan-2020",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":"2020-01-23T00:00:00.000Z",
                                                    "monthValue":1,
                                                    "dayValue":23,
                                                    "yearValue":2020,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "userId":"33D0D74837F6454B836AAB5BA2574445",
                                                    "reason":null,
                                                    "comment":null,
                                                    "objectVersionNumber":1,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-upsert-withvendorcode-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-upsert-withvendorcode-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/upsert/withvendorcode/multisectionflat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Upsert data elements for the flat part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Updates data in the flat part of a multi section form in a visit by vendor code. Mainly used for Repeating Form. .",
                "operationId":"upsertDataElementsMultiSectionFlatByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Upsert data elements with vendor code for multi-section flat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"3A9F1C22B8E54F8A9E4B1E9D2C889A11",
                                            "subjectId":"B7F23A5E4C9041D3A1F96477E2030F8B",
                                            "eventId":"8D21FE3349014C5DB2C4A77E1D92A6F",
                                            "formId":"F91A0C773AB64A3E9F6E0B6F5F1022C9",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"A2F51933C6AB4D98A3D7FB9901EC55FA",
                                                "value":"India",
                                                "vendorCode":"RFN:Form1",
                                                "reason":"Other",
                                                "comment":"Data Intake update"
                                            },
                                            {
                                                "itemId":"E51C9F00A72D46FD8D51AC0A4371D25C",
                                                "value":"Automation",
                                                "vendorCode":"RFN:Form1",
                                                "reason":"Other",
                                                "comment":"Data Intake update"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "UpsertWithVendorCodeRepeatResponseV1":{
                                        "description":"UpsertWithVendorCodeRepeatResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "comment":"Sample",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "dateTimeValueUTC":"2023-01-01T10:10:20.000Z",
                                                "dayValue":1,
                                                "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                "eventInstanceNum":3,
                                                "floatValue":13.5,
                                                "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "hourValue":10,
                                                "id":"906F37FB48E3421D899E1EBF885FF959",
                                                "itemD":"1",
                                                "itemF":"MALE",
                                                "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                "itemR":"MALE",
                                                "itemType":"CHOICE",
                                                "measureUnit":"g/dL",
                                                "minuteValue":10,
                                                "monthValue":1,
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":13,
                                                "objectVersionNumber":1,
                                                "operationType":"MODIFIED",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                "reason":"CREATED",
                                                "repeatSequenceNumber":1,
                                                "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                "secondValue":20,
                                                "signedStatus":"NOT_APPLICABLE",
                                                "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                "softwareVersionNumber":8,
                                                "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                "studyName":"SignVerifyRegStudy",
                                                "studyVersion":"3.1.0.10",
                                                "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                "transactionEnd":"2023-01-01T10:20:20.000Z",
                                                "transactionStart":"2023-01-01T10:10:20.000Z",
                                                "validationFailure":null,
                                                "validationStatus":"SUCCESS",
                                                "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "vendorCode":"VENDOR1",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2022-05-16T07:29:18.325Z",
                                                "yearValue":2021
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-upsert-withvendorcode-multisectionflat-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-upsert-withvendorcode-multisectionflat-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/upsert/withvendorcode/multisectionrepeat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update data elements for the repeating part of a multi section form"
                ],
                "summary":"V1.0",
                "description":"Updates data in the repeating part of a multi section form by vendor code. ",
                "operationId":"upsertDataElementsMultiSectionRepeatByVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Upsert data elements with vendor code for multi-section repeating forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_AUT_ActiveStudy",
                                            "studyVersion":"1.5.0.11",
                                            "siteId":"A1D4C8B9F23E4D12A9F83C1B77E9A445",
                                            "subjectId":"BB92F0A4E6CD4E0EA1AF4B9D5E0034C2",
                                            "eventId":"CC11AA22BB33CC44DD55EE66FF778899",
                                            "formId":"9F8E7D6C5B4A392817160F1E2D3C4B5A",
                                            "eventInstanceNum":4
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                "value":"22",
                                                "measureUnit":null,
                                                "vendorCode":"V000001"
                                            },
                                            {
                                                "itemId":"11223344556677889900AABBCCDDEEFF",
                                                "value":"Unscheduled3",
                                                "vendorCode":"V000001"
                                            },
                                            {
                                                "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                "value":"23-Jan-2020",
                                                "vendorCode":"V000001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "UpsertWithVendorCodeRepeatResponseV1":{
                                        "description":"UpsertWithVendorCodeRepeatResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "comment":"Sample",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "dateTimeValueUTC":"2023-01-01T10:10:20.000Z",
                                                "dayValue":1,
                                                "eventId":"FA77C1B9D2344F8DA9910E7AC99D2BA1",
                                                "eventInstanceNum":3,
                                                "floatValue":13.5,
                                                "formId":"B2D71C99E88E4E7E8F2AC522A998C40D",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "hourValue":10,
                                                "id":"906F37FB48E3421D899E1EBF885FF959",
                                                "itemD":"1",
                                                "itemF":"MALE",
                                                "itemId":"F13AC0D8C1AA49D5826B9910F4B22B90",
                                                "itemR":"MALE",
                                                "itemType":"CHOICE",
                                                "measureUnit":"g/dL",
                                                "minuteValue":10,
                                                "monthValue":1,
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":13,
                                                "objectVersionNumber":1,
                                                "operationType":"MODIFIED",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2022-05-16T07:29:18.325Z",
                                                "reason":"CREATED",
                                                "repeatSequenceNumber":1,
                                                "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                "secondValue":20,
                                                "signedStatus":"NOT_APPLICABLE",
                                                "siteId":"8E19B75CC9D74728A6D53C3FDB4F8E11",
                                                "softwareVersionNumber":8,
                                                "studyId":"4A1F9BE2C8D048C7A91E3D9D8E7F4C22",
                                                "studyName":"SignVerifyRegStudy",
                                                "studyVersion":"3.1.0.10",
                                                "subjectId":"91F3A8C2E4BB4F0A9A1C2B77EE9F0D13",
                                                "transactionEnd":"2023-01-01T10:20:20.000Z",
                                                "transactionStart":"2023-01-01T10:10:20.000Z",
                                                "validationFailure":null,
                                                "validationStatus":"SUCCESS",
                                                "value":"[{\"value\":\"1\",\"label\":\"MALE\"}]",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "vendorCode":"VENDOR1",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "versionStart":"2022-05-16T07:29:18.325Z",
                                                "yearValue":2021
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-upsert-withvendorcode-multisectionrepeat-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-upsert-withvendorcode-multisectionrepeat-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/withvendorcode/multisectionflat":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create data elements for the flat part of a multi section form"
                ],
                "summary":"V2.0",
                "description":"Adds data in the flat part of a multi section form in a visit by vendor code. The response also includes the repeatFormNumber of the dataElement.",
                "operationId":"saveDataElementsMultiSectionFlat_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code for multi-section flat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "subjectId":"A9B8C7D6E5F44123A1B2C3D4E5F60011",
                                            "eventId":"B1C2D3E4F5A64123B1C2D3E4F5A60012",
                                            "formId":"C2D3E4F5A6B74123C1D2E3F4A5B60013",
                                            "siteId":"D3E4F5A6B7C84123D1E2F3A4B5C60014",
                                            "eventInstanceNum":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E4F5A6B7C8D94123E1F2A3B4C5D60015",
                                                "value":"Brain",
                                                "vendorCode":"RFN:Form3"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto11"
                                },
                                "examples":{
                                    "DataElementWithVendorCodeFlatResponseV11":{
                                        "description":"DataElementWithVendorCodeFlatResponseV11",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionflat-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-withvendorcode-multisectionflat-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/withvendorcode/multisectionrepeat":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create data elements for the repeating part of a multi section form"
                ],
                "summary":"V2.0",
                "description":"Adds data in the repeating part of a multi section form in a visit by vendor code. The response also contains the repeatFormNumber of the dataElement.",
                "operationId":"saveDataElementsMultiSectionRepeat_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Data elements request with vendor code for multi-section repeating forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                            "subjectId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                            "eventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                            "formId":"D4E5F6A7B8C97123D0E1F20011A2B3C4",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":1,
                                            "repeatFormNumber":4
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F6A7B8C9D08123E1F20011A2B3C4D5",
                                                "value":"66",
                                                "measureUnit":"mm",
                                                "numValue":66,
                                                "formSectionId":"F6A7B8C9D0E19123F20011A2B3C4D5E6",
                                                "vendorCode":"RFN:Form4;RSN:Row1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto11"
                                },
                                "examples":{
                                    "WithVendorCodeRepeatResponseV2":{
                                        "description":"WithVendorCodeRepeatResponseV2",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-withvendorcode-multisectionrepeat-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-withvendorcode-multisectionrepeat-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/upsert/withvendorcode/multisectionflat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Upsert data elements for the flat part of a multi section form"
                ],
                "summary":"V2.0",
                "description":"Updates data in the flat part of a multi section form in a visit by vendor code. Mainly used for Repeating Form. The new version of this Api performs additional validation check on the vendorCode of the dataElement.",
                "operationId":"upsertDataElementsMultiSectionFlatByVendorCode_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Upsert data elements with vendor code for multi-section flat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "subjectId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                            "eventId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                            "formId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                            "siteId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":null,
                                            "repeatFormNumber":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                "value":"Brain2-Added",
                                                "vendorCode":"RFN:Form5",
                                                "reason":null,
                                                "comment":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "UpsertWithVendorCodeFlatResponseV2":{
                                        "description":"UpsertWithVendorCodeFlatResponseV2",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":[
                                                    {
                                                        "id":"11CAD280272840CA963B5D85D66A8A62",
                                                        "versionStart":"2022-01-04T05:17:32.366Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                        "studyName":"SignVerifyRegStudy",
                                                        "studyVersion":"2.0.0.6",
                                                        "subjectId":"B2C3D4E5F64123A7B8C9D0E1F20011A1",
                                                        "eventId":"C3D4E5F64123A7B8C9D0E1F20011A1B2",
                                                        "formId":"D4E5F64123A7B8C9D0E1F20011A1B2C3",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"E5F64123A7B8C9D0E1F20011A1B2C3D4",
                                                        "siteId":"F64123A7B8C9D0E1F20011A1B2C3D4E5",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":"RFN:Form5",
                                                        "value":"Brain2-Added",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"TESTUSER10",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"Brain2-Added",
                                                        "itemR":"Brain2-Added",
                                                        "repeatFormNumber":5
                                                    }
                                                ],
                                                "errorData":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-upsert-withvendorcode-multisectionflat-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-upsert-withvendorcode-multisectionflat-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/upsert/withvendorcode/multisectionrepeat":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update data elements for the repeating part of a multi section form"
                ],
                "summary":"V2.0",
                "description":"Updates data in the repeating part of a multi section form by vendor code. This new version of the Api has additional validation on the vendorCode of the dataElement.",
                "operationId":"upsertDataElementsMultiSectionRepeatByVendorCode_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Upsert data elements with vendor code for multi-section repeat forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            },
                            "examples":{
                                "DataElementsRequestDto4":{
                                    "description":"DataElementsRequestDto4",
                                    "value":{
                                        "context":{
                                            "studyName":"SignVerifyRegStudy",
                                            "studyVersion":"2.0.0.6",
                                            "siteId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                            "subjectId":"B2C3D4E5F64123A7B8C9D0E1F20011A1",
                                            "eventId":"C3D4E5F64123A7B8C9D0E1F20011A1B2",
                                            "formId":"D4E5F64123A7B8C9D0E1F20011A1B2C3",
                                            "eventInstanceNum":null,
                                            "repeatSequenceNumber":1,
                                            "repeatFormNumber":5
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"E5F64123A7B8C9D0E1F20011A1B2C3D4",
                                                "value":"77",
                                                "measureUnit":"mm",
                                                "numValue":77,
                                                "formSectionId":"F64123A7B8C9D0E1F20011A1B2C3D4E5",
                                                "vendorCode":"RFN:Form5;RSN:Row1",
                                                "reason":null,
                                                "comment":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto90"
                                },
                                "examples":{
                                    "UpsertWithVendorCodeRepeatResponseV2":{
                                        "description":"UpsertWithVendorCodeRepeatResponseV2",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":[
                                                    {
                                                        "id":"5A1A5C4AB1BB4E88B997CD086161558A",
                                                        "versionStart":"2022-01-04T06:15:49.668Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A11B22C33D44E55F66778899AABBCCDD",
                                                        "studyName":"SignVerifyRegStudy",
                                                        "studyVersion":"2.0.0.6",
                                                        "subjectId":"B22C33D44E55F66778899AABBCCDD0011",
                                                        "eventId":"C33D44E55F66778899AABBCCDD001122",
                                                        "formId":"D44E55F66778899AABBCCDD00112233AA",
                                                        "formSectionId":"E55F66778899AABBCCDD00112233AA44",
                                                        "repeatSequenceNumber":1,
                                                        "itemId":"F66778899AABBCCDD00112233AA4455",
                                                        "siteId":"A11B22C33D44E55F66778899AABBCCDD",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":"RFN:Form5;RSN:Row1",
                                                        "value":"77",
                                                        "measureUnit":"mm",
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":77,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"11223344556677889900AABBCCDDEEFF",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"NUMERIC",
                                                        "itemD":"mm",
                                                        "itemF":"77",
                                                        "itemR":"77",
                                                        "repeatFormNumber":5
                                                    }
                                                ],
                                                "errorData":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-upsert-withvendorcode-multisectionrepeat-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-upsert-withvendorcode-multisectionrepeat-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/esign/geturl/orgId/{orgId}/subjectId/{subjectId}":{
            "post":{
                "tags":[
                    "Data Capture/Electronic Signature/Get URL for IAMS login page"
                ],
                "summary":"V1.0",
                "description":"Retrieves the URL for the IAMS login page.",
                "operationId":"getUrl",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1A30945DC9A3462B9CE95C7BC0C2FBDC"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"orgId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the organization.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C51D1FE6C3804B6D8F1FE906CB6EAD16"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B8103C474F614AF789ADF3031B516DF2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ESignUrlDto"
                                },
                                "examples":{
                                    "ESign Url":{
                                        "description":"E SignUrl Example",
                                        "value":{
                                            "url":"https://esign.example.com/process/7AB12CD3E4F5413C9BF46C56A9ED9B7A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-esign-geturl-orgId-{orgId}-subjectId-{subjectId}-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-esign-geturl-orgid-orgid-subjectid-subjectid-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/enrollmentsettings":{
            "get":{
                "tags":[
                    "Data Capture/Enrollment Settings/Get specific enrollment settings"
                ],
                "summary":"V1.0",
                "description":"Fetch all persisted enrollment settings for a given study and mode. Returns a response containing an array of EnrollmentSetting objects, each representing the settings for a group.",
                "operationId":"getAllEnrollmentSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success: Returns an array of persisted enrollment settings for the specified study and mode.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EnrollmentSetting"
                                },
                                "examples":{
                                    "EnrollmentSettingsResponse":{
                                        "summary":"Enrollment Settings Response Result",
                                        "description":"EnrollmentSettingsResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2023-01-01T09:00:00Z",
                                                    "groupTitle":"Cohort A",
                                                    "operationType":"Created",
                                                    "subjectLimit":100,
                                                    "notificationLimit":80,
                                                    "description":"Phase 1 - First cohort group",
                                                    "enableSetting":true,
                                                    "reason":"Initial import.",
                                                    "comment":"Imported via migration tool."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-enrollmentsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-enrollmentsettings-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Enrollment Settings/Update enrollment setting"
                ],
                "summary":"V1.0",
                "description":"Updates an enrollment setting. This operation is needed to update enrollment setting and its groups.",
                "operationId":"updateEnrollmentSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Enrollment setting DTO payload representing the full record to update. All fields required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EnrollmentSettingDto"
                            },
                            "examples":{
                                "EnrollmentSettingDtoUpdateRequest":{
                                    "summary":"Update Enrollment Settings Request Example",
                                    "description":"EnrollmentSettingDtoUpdateRequest",
                                    "value":"{\n  \"id\": \"11223344556677889900AABBCCDDEEFF\",\n  \"groupTitle\": \"Cohort C\",\n  \"enableSetting\": false,\n  \"subjectLimit\": 200,\n  \"notificationLimit\": 150,\n  \"description\": \"Updated settings for Cohort C\",\n  \"objectVersionNumber\": 2,\n  \"count\": 20,\n  \"settingType\": \"Rand_limit\",\n  \"groupCriteria\": [\n    {\n      \"id\": \"AACCBBDDEEFF11223344556677889900\",\n      \"title\": \"Females over 65\",\n      \"groupId\": \"AABBCCDDEEFF00112233445566778899\",\n      \"visitId\": \"98DF4DDEEFF00112233445566778899\",\n      \"formId\": \"1E3BCCDDEEFF00112233445566778899\",\n      \"itemId\": \"1J8BCCDDEEFF00112233445566778899\",\n      \"criteriaType\": \"choice\",\n      \"startRange\": 66.0,\n      \"endRange\": 99.0,\n      \"choiceValue\": \"[{\"value\":\"1\",\"label\":\"Male\"}]\",\n      \"studyVersion\": \"1.0.0.0\",\n      \"objectVersionNumber\": 2\n    }\n  ]\n  }\n"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success: The enrollment setting was updated. Returns the updated enrollment setting DTO.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EnrollmentSettingDto"
                                },
                                "examples":{
                                    "UpdateEnrollmentSettingsResponse":{
                                        "summary":"Update Enrollment Settings Response Example",
                                        "description":"UpdateEnrollmentSettingsResponse",
                                        "value":"{\n  \"result\": {\n    \"id\": \"11223344556677889900AABBCCDDEEFF\",\n    \"groupTitle\": \"Cohort C\",\n    \"enableSetting\": false,\n    \"subjectLimit\": 200,\n    \"notificationLimit\": 150,\n    \"description\": \"Updated settings for Cohort C\",\n    \"objectVersionNumber\": 2,\n    \"count\": 20,\n    \"settingType\": \"Rand_limit\",\n    \"groupCriteria\": [\n      {\n        \"id\": \"AACCBBDDEEFF11223344556677889900\",\n        \"title\": \"Females over 65\",\n        \"groupId\": \"DABBCCDDEEFF00112233445566778899\",\n        \"visitId\": \"21BBCCDDEEFF00112233445566778899\",\n        \"formId\": \"3D2BCCDDEEFF00112233445566778899\",\n        \"itemId\": \"5E2RCCDDEEFF00112233445566778899\",\n        \"criteriaType\": \"choice\",\n        \"startRange\": 66.0,\n        \"endRange\": 99.0,\n        \"choiceValue\": \"[{\"value\":\"1\",\"label\":\"Male\"}]\",\n        \"studyVersion\": \"1.0.0.0\",\n        \"objectVersionNumber\": 2\n      }\n    ]\n  }\n}"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-enrollmentsettings-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-enrollmentsettings-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Enrollment Settings/Create enrollment settings"
                ],
                "summary":"V1.0",
                "description":"Creates new enrollment settings for the specified study and mode. Validates the supplied configuration persists the settings, and returns the created enrollment setting record.",
                "operationId":"createEnrollmentSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Enrollment setting details payload. All fields should be fully populated for creation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EnrollmentSettingDto"
                            },
                            "examples":{
                                "EnrollmentSettingDtoRequest":{
                                    "summary":"Enrollment Setting Request Example",
                                    "description":"EnrollmentSettingDtoRequest",
                                    "value":"{\n  \"id\": \"AABBCCDDEEFF00112233445566778899\",\n  \"groupTitle\": \"Cohort B\",\n  \"enableSetting\": true,\n  \"subjectLimit\": 150,\n  \"notificationLimit\": 125,\n \"operationType\": \"MODIFIED\",\n  \"description\": \"Enrollment for cohort B in phase II\",\n  \"objectVersionNumber\": 1,\n  \"count\": 10,\n  \"settingType\": \"Rand_limit\",\n  \"groupCriteria\": [\n    {\n      \"id\": \"1234567890AABBCCDDEEFF1122334455\",\n      \"title\": \"Male subjects age 18-65\",\n      \"groupId\": \"BEEF11223344556677889900AABBCCDD\",\n      \"visitId\": \"CDEF11223344556677889900AABBCCDD\",\n      \"formId\": \"DFEF11223344556677889900AABBCCDD\",\n      \"itemId\": \"EREF11223344556677889900AABBCCDD\",\n      \"criteriaType\": \"choice\",\n      \"startRange\": 18.0,\n      \"endRange\": 65.0,\n      \"choiceValue\": \"[{\"value\":\"1\",\"label\":\"Male\"}]\",\n      \"studyVersion\": \"1.0.0.0\",\n      \"objectVersionNumber\": 1\n    }\n  ]\n}"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success: The enrollment setting was created. Returns the created enrollment setting(s).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EnrollmentSetting"
                                },
                                "examples":{
                                    "CreateEnrollmentSettingsResponse":{
                                        "summary":"Create Enrollment Settings Response Example",
                                        "description":"CreateEnrollmentSettingsResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"ABCD1234ABCD1234ABCD1234ABCD1234",
                                                    "versionStart":"2023-04-16T10:00:00Z",
                                                    "groupTitle":"Test group",
                                                    "operationType":"MODIFIED",
                                                    "subjectLimit":55,
                                                    "notificationLimit":40,
                                                    "description":"Enrollment for testing",
                                                    "enableSetting":true,
                                                    "reason":"Initial config.",
                                                    "comment":"Set by API test."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-enrollmentsettings-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-enrollmentsettings-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/labnormals":{
            "put":{
                "tags":[
                    "Data Capture/Lab/Update lab normals for a subject"
                ],
                "summary":"V1.0",
                "description":"Updates lab normals for a subject for a particular visit and particular form.",
                "operationId":"updateLabPropertyData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabUpdateRequestDto"
                            },
                            "examples":{
                                "LabNormalsUpdateRequest":{
                                    "description":"LabNormalsUpdateRequest",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                        "siteId":"699EF3745FC545589F186D2198F3C65E",
                                        "studyVersion":"1.0.0.3",
                                        "eventId":"799EF3745FC545589F186D2198F3C65E",
                                        "eventInstanceNum":1,
                                        "formId":"899EF3745FC545589F186D2198F3C65E",
                                        "labId":"999EF3745FC545589F186D2198F3C65E",
                                        "reason":"Correction",
                                        "comment":"Updated lab normal based on new measurement",
                                        "outerRepeat":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseDTO"
                                },
                                "examples":{
                                    "LabNormalsUpdateResponse":{
                                        "description":"LabNormalsUpdateResponse",
                                        "value":{
                                            "labnormalsStatus":[
                                                "GENDER_MISSING"
                                            ],
                                            "items":[
                                                {
                                                    "dataElement":{
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "studyName":"STUDY-ABC",
                                                        "studyVersion":"1.0.0.3",
                                                        "subjectId":"10F75668189F422F9A461A315D211111",
                                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                        "formId":"2BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                        "repeatSequenceNumber":1,
                                                        "repeatFormNumber":2,
                                                        "innerRepeat":1,
                                                        "outerRepeat":1,
                                                        "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                        "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                        "vendorCode":"VENDOR1",
                                                        "value":"14.0",
                                                        "measureUnit":"g/dL",
                                                        "itemD":"DETAIL",
                                                        "itemR":"REASON",
                                                        "itemF":"FLAG",
                                                        "itemType":"NUMERIC",
                                                        "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "hdiId":"D3C9A4B5E6F78123456789ABCDEF1234",
                                                        "lockedStatus":"LOCKED",
                                                        "lockedDateTime":"2025-05-20T10:30:00Z",
                                                        "visitStatus":"NEW",
                                                        "visitStartDate":"2025-05-19",
                                                        "isSafetyTrigger":false,
                                                        "isSafetyDefaultSelected":true,
                                                        "dataflagValue":"Not Done",
                                                        "dataEventType":"FORM_RESTORED",
                                                        "eventInstanceNum":1,
                                                        "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "documentId":"26C7C2DF6B2546E6BBA8331738FACD1E",
                                                        "documentVersion":"2.0"
                                                    },
                                                    "targets":[
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                                    ],
                                                    "labs":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "labId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                            "outerRepeat":1,
                                                            "reason":"Correction",
                                                            "comment":"Updated lab normal based on new measurement"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-labnormals-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-labnormals-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Lab/Create lab for a subject"
                ],
                "summary":"V1.0",
                "description":"Creates lab data elements for a subject for a particular visit and particular form.",
                "operationId":"saveLabPropertyData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabRequestDto"
                            },
                            "examples":{
                                "LabNormalsSaveRequest":{
                                    "description":"LabNormalsSaveRequest",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                        "siteId":"699EF3745FC545589F186D2198F3C65E",
                                        "studyVersion":"1.0.0.3",
                                        "eventId":"AAAAAAAAAAAA4AAA8AAA8AAA8AAA8AAA",
                                        "eventInstanceNum":1,
                                        "formId":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
                                        "labId":"11111111111111111111111111111111"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponse"
                                },
                                "examples":{
                                    "LabNormalsSaveResponse":{
                                        "description":"LabNormalsSaveResponse",
                                        "value":{
                                            "labnormalsStatus":[
                                                "SUCCESS"
                                            ],
                                            "items":[
                                                {
                                                    "itemId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "value":"13.5",
                                                    "unit":"g/dL",
                                                    "targets":[
                                                        "DERIVED",
                                                        "VALIDATED"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-labnormals-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-labnormals-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/properties/history/{id}":{
            "get":{
                "tags":[
                    "Data Capture/DCProperties APIs/Get audit history of a property"
                ],
                "summary":"V1.0",
                "description":"Retrieves the audit history of a property.",
                "operationId":"getDataElementsHistoryById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of DCProperties.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PropertyDto1"
                                },
                                "examples":{
                                    "PropertyHistoryResponse":{
                                        "description":"PropertyHistoryResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "propertyType":"CODING_PROPERTY",
                                            "propertyKey":"2EC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "propertyValue":"UTC",
                                            "propertyAttr":"{}",
                                            "propertyStatus":1,
                                            "reason":"Initial configuration",
                                            "comment":"Configured during study setup",
                                            "versionEnd":"2023-01-01T10:00:00Z",
                                            "operationType":"MODIFIED",
                                            "userId":"699EF3745FC545589F186D2198F3C65E",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":300
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-properties-history-{id}-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-properties-history-id-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/properties/{id}":{
            "get":{
                "tags":[
                    "Data Capture/DCProperties APIs/Get Data Capture properties"
                ],
                "summary":"V1.0",
                "description":"Retrieves the Data Capture properties.",
                "operationId":"getPropertiesById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of DC properties",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PropertyDto1"
                                },
                                "examples":{
                                    "PropertyDtoResponse":{
                                        "description":"PropertyDtoResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "propertyType":"CODING_PROPERTY",
                                            "propertyKey":"2AE29B36F5D64B1B95F4BDBBCEA481BE",
                                            "propertyValue":"UTC",
                                            "propertyAttr":"{}",
                                            "propertyStatus":1,
                                            "reason":"Initial configuration",
                                            "comment":"Configured during study setup",
                                            "versionEnd":"2023-01-01T10:00:00Z",
                                            "operationType":"MODIFIED",
                                            "userId":"699EF3745FC545589F186D2198F3C65E",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":300
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-properties-{id}-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-properties-id-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/properties/{type}/{subjectId}/{id}":{
            "put":{
                "tags":[
                    "Data Capture/Lab/Update lab for a subject"
                ],
                "summary":"V1.0",
                "description":"Updates lab data elements for a subject for a particular visit and particular form.",
                "operationId":"updateLabProperty",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"type",
                        "in":"path",
                        "description":"type",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LAB"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/PropertyRquestDto"
                            },
                            "examples":{
                                "LabPropertyUpdateRequest":{
                                    "description":"LabPropertyUpdateRequest",
                                    "value":{
                                        "labId":"ABB2C3D4E5F6471890ABCDEF12345678",
                                        "reason":"Correction",
                                        "comment":"Updated property after review"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseDto2"
                                },
                                "examples":{
                                    "LabPropertyUpdateResponse":{
                                        "description":"LabPropertyUpdateResponse",
                                        "value":{
                                            "labnormalsStatus":[
                                                "GENDER_MISSING"
                                            ],
                                            "items":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionEnd":"2025-10-16T14:35:00.000Z",
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"STUDY-ABC",
                                                    "studyVersion":"1.0.0.3",
                                                    "subjectId":"10F75668189F422F9A461A315D211111",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formId":"BDF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "vendorCode":"VENDOR1",
                                                    "value":"13.5",
                                                    "measureUnit":"g/dL",
                                                    "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "numValue":13,
                                                    "floatValue":13.5,
                                                    "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                    "monthValue":10,
                                                    "dayValue":16,
                                                    "yearValue":2025,
                                                    "hourValue":14,
                                                    "minuteValue":30,
                                                    "secondValue":31,
                                                    "reason":"Initial entry",
                                                    "comment":"Captured by device",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "targets":[
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                                    ],
                                                    "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "operationType":"MODIFIED",
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                    "versionEnd":"2025-10-16T15:30:31.892Z",
                                                    "softwareVersionNumber":14,
                                                    "itemType":"TEXT",
                                                    "itemD":"DETAIL",
                                                    "itemF":"FLAG",
                                                    "itemR":"REASON",
                                                    "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                    "repeatFormNumber":2,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-properties-{type}-{subjectId}-{id}-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-properties-type-subjectid-id-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/safetycase/{id}":{
            "put":{
                "tags":[
                    "Data Capture/Safety Case/Update safety case status"
                ],
                "summary":"V1.0",
                "description":"Updates the safety case status based on ID.",
                "operationId":"updateSafetyCaseStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of the safety case record being updated.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    }
                ],
                "requestBody":{
                    "description":"Safety case status update payload with required fields.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SafetyCaseRequestDto"
                            },
                            "examples":{
                                "Request Example":{
                                    "summary":"Update status of safety case.",
                                    "description":"Request Example",
                                    "value":{
                                        "status":"CREATED",
                                        "reason":"Other",
                                        "comment":"Follow up with site on AE form",
                                        "externalSafetyCaseId":"12345"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SafetyCasePutResponseDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "summary":"Successfully updated safety case status.",
                                        "description":"Success Response",
                                        "value":{
                                            "id":"123E4567E89B12D3A456426655440000",
                                            "externalSafetyCaseId":"345E4567E89B12D3A456426655440000",
                                            "status":"CLOSED",
                                            "studyVersion":"v2.5",
                                            "reason":"Case finalized",
                                            "comment":"No further action required",
                                            "versionStart":"2023-07-01T10:20:30Z",
                                            "lastSubmittedDate":"2023-07-10T15:30:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-safetycase-{id}-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-safetycase-id-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/freeze":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Freeze multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Freezes multiple data elements for a subject based on the data element ID. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"freezeMultipleDataElements",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be freezed.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-freeze-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-freeze-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/visit/freeze":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Freeze visit data with dataelements and Visit start date"
                ],
                "summary":"V1.0",
                "description":"Freeze visit data including data items and visit start date for a subject visit.",
                "operationId":"freezeVisitData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Request body containing the elements/VSD to be frozen",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FreezeRequestDTO"
                            },
                            "examples":{
                                "Freeze  Request":{
                                    "summary":"Freeze Request Example",
                                    "description":"Freeze  Request",
                                    "value":{
                                        "subjectId":"2A132AC327DB422AA4178926846CA6AB",
                                        "eventId":"D5736BE0CBE04652803DAF378D7DAFA7",
                                        "studyVersion":"2.23.0.110",
                                        "eventInstanceNum":null,
                                        "elements":[
                                            {
                                                "formId":"F8C3DC863E8E4711AC305A47D03D4914",
                                                "innerRepeat":null,
                                                "itemId":null
                                            },
                                            {
                                                "formId":"F20C846B7E014E75977AC3F1B0B2CC32",
                                                "innerRepeat":null,
                                                "itemId":null
                                            }
                                        ],
                                        "freezeVisitStartDate":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-visit-freeze-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-visit-freeze-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/visit/verify/history":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get latest audit records for Source Data Verification"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the latest audit records for visit verification.",
                "operationId":"getSDVSelectedSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Request to get the visits verification for a date range.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitVerifyHistoryRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-visit-verify-history-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-visit-verify-history-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/svf":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get latest records for sign, verify and freeze"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves latest records for Sign, Verify and Freeze actions.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/svf",
                "operationId":"getSVF",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID to fetch the record for.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of records.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignVerifyFreezeDTOv20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-svf-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-svf-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/studyVersion/{studyVersion}/signSubject/subject/{subjectId}/code/{code}/orgId/{orgId}":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Sign subject and visits"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Signs a subject and all completed visits in the subject.",
                "operationId":"signSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Study version associated to subject's site.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the current subject to sign.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"code",
                        "in":"path",
                        "description":"Code is sent via IAMS as initial sign",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"orgId",
                        "in":"path",
                        "description":"IAMS Tenant Short Org ID in format of UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"redirectUriHostname",
                        "in":"query",
                        "description":"Redirect URI",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects sign success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignVerifyDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-studyVersion-{studyVersion}-signSubject-subject-{subjectId}-code-{code}-orgId-{orgId}-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-studyversion-studyversion-signsubject-subject-subjectid-code-code-orgid-orgid-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/unfreeze/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Unfreeze single data element of a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Unfreezes single data element of a visit.API has been deprecated,  API has been deprecated and moved to DAS(Data Action Service) Path: /ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unfreeze/{dataElementId}",
                "operationId":"unfreezeDataElements",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data element ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Unfreeze request.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/UnFreezeRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-unfreeze-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-unfreeze-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/verify":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Verify multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Verifies multiple data elements for a subject based on the data element ID. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"verifyMultipleDataElements",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be verified.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-verify-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-dataelements-verify-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/visit/verify":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Verify VSD and multiple data elements for a subject"
                ],
                "summary":"V1.0",
                "description":"Verifies multiple data elements and Visit Start date for a subject based on the data element ID.",
                "operationId":"verifyMultipleDataElements_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be verified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto2"
                            },
                            "examples":{
                                "VerifyRequest":{
                                    "description":"VerifyRequest",
                                    "value":{
                                        "subjectId":"VBCDEF1234567890ABCDEF1234567890",
                                        "eventId":"BBCDEF1234567890ABCDEF1234567890",
                                        "eventInstanceNum":1,
                                        "studyVersion":"3.0.0.1",
                                        "reason":"Verification batch",
                                        "comment":"Verifying data elements",
                                        "verifyVisitStartDate":"true",
                                        "elements":[
                                            {
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "eventInstanceNum":1,
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":1,
                                                "innerRepeat":1,
                                                "outerRepeat":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-visit-verify-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-visit-verify-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/sdvGroup":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update source data verification group"
                ],
                "summary":"V1.0",
                "description":"Updates a source data verification group with unique name and values for keys (INITIAL_SUBJECTS_COUNT, REMAINING_SUBJECTS_PERCENTAGE, INITIAL_SUBJECTS_SDV_TYPE and REMAINING_SUBJECTS_SDV_TYPE).",
                "operationId":"updateSDVGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4F9C2E18B341E3A6C42E8B9F6D3A11"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"SDV (source data verification) group name and key value pairs.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDVGroupRequest"
                            },
                            "examples":{
                                "SDVGroupRequest":{
                                    "description":"SDVGroupRequest",
                                    "value":{
                                        "sdvGroupOldName":"TestSDV_GROUP1Updated",
                                        "sdvGroupNewName":"TestSDV_GROUP1Updated_New",
                                        "sdvGroupKeyValPairs":[
                                            {
                                                "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                "attributeValue":"123456789"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDVGroupInfo"
                                    }
                                },
                                "examples":{
                                    "UpdateSDVGroupResponseV1":{
                                        "description":"UpdateSDVGroupResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "sdvGroupName":"TestSDV_GROUP1Updated",
                                                    "sdvGroupId":"7A4F9C2E18B341E3A6C42E8B9F6D3A11",
                                                    "id":"8A4F9C2E18B341E3A6C42E8B9F6D3A11",
                                                    "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                    "reason":"Incorrect Data",
                                                    "comment":"Incorrect Data",
                                                    "operationType":"MODIFIED",
                                                    "attributeValue":"123456789",
                                                    "versionStart":"2023-01-01T09:00:00Z"
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-sdvGroup-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-sdvgroup-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create source data verification group"
                ],
                "summary":"V1.0",
                "description":"Creates a source data verification group with unique name and values for keys (initial subjects count,remaining subject percentage, initial subjects SDF type and remaining subject SDF type).",
                "operationId":"createSDVGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"SDV group details",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDVGroupDto"
                            },
                            "examples":{
                                "SDVGroupDto":{
                                    "description":"SDVGroupDto",
                                    "value":{
                                        "sdvGroupName":"StrategyTestSite",
                                        "sdvGroupKeyValPairs":[
                                            {
                                                "attributeKey":"INITIAL_SUBJECTS_SDV_TYPE",
                                                "attributeValue":"All Questions"
                                            },
                                            {
                                                "attributeKey":"REMAINING_SUBJECTS_SDV_TYPE",
                                                "attributeValue":"Critical Questions Only"
                                            },
                                            {
                                                "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                "attributeValue":"20"
                                            },
                                            {
                                                "attributeKey":"REMAINING_SUBJECTS_PERCENTAGE",
                                                "attributeValue":"40"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDVGroupDto"
                                    }
                                },
                                "examples":{
                                    "CreateSDVGroupResponseV1":{
                                        "description":"CreateSDVGroupResponseV1",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "sdvGroupName":"StrategyTestSite",
                                                    "sdvGroupId":"EFC64B3862FD4C85BB8DBEAE2AE26B13",
                                                    "sdvGroupKeyValPairs":[
                                                        {
                                                            "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                            "attributeValue":"20"
                                                        },
                                                        {
                                                            "attributeKey":"REMAINING_SUBJECTS_PERCENTAGE",
                                                            "attributeValue":"40"
                                                        },
                                                        {
                                                            "attributeKey":"REMAINING_SUBJECTS_SDV_TYPE",
                                                            "attributeValue":"Critical Questions Only"
                                                        },
                                                        {
                                                            "attributeKey":"INITIAL_SUBJECTS_SDV_TYPE",
                                                            "attributeValue":"All Questions"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-sdvGroup-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-sdvgroup-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/sdvGroup/all":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all source data verification groups"
                ],
                "summary":"V1.0",
                "description":"Retrieves all source data verification groups.",
                "operationId":"getAllSDVGroups",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDVGroupDto"
                                    }
                                },
                                "examples":{
                                    "GetAllSDVGroupsResponse":{
                                        "description":"GetAllSDVGroupsResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "sdvGroupName":"TestSDV_GROUP1",
                                                    "sdvGroupId":"4F7A2C1B9D8E4A0FB3C12D7A9E6F55AA",
                                                    "sdvGroupKeyValPairs":[
                                                        {
                                                            "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                            "attributeValue":"0"
                                                        },
                                                        {
                                                            "attributeKey":"REMAINING_SUBJECTS_PERCENTAGE",
                                                            "attributeValue":"100"
                                                        },
                                                        {
                                                            "attributeKey":"REMAINING_SUBJECTS_SDV_TYPE",
                                                            "attributeValue":"All Questions"
                                                        },
                                                        {
                                                            "attributeKey":"INITIAL_SUBJECTS_SDV_TYPE",
                                                            "attributeValue":"All Questions"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-sdvGroup-all-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-sdvgroup-all-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}/codebreak":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Perform code break on a subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Performs code break for the specified subject. <br><br><b>Caution:<b> This operation unblinds subject information. Depending on subject settings, this action might also withdraw the subject. <br><b>Rights:</b> <i>DataCaptureCodeBreakPost</i>.",
                "operationId":"codeBreakSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject on whom you want to perform code break.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DcsResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-codebreak-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-codebreak-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}/codeview":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Code view on a subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Performs code view (debugging) on the specified subject. <br><b>Caution:</b> this operation unblinds subject medication information only. This will not withdraw the subject. <br><b>Rights:</b> <i>DataCaptureCodeViewPost</i>.",
                "operationId":"codeViewSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to perform code view.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DcsResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-codeview-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-codeview-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Lists all subjects for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects",
                "operationId":"getSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Subjects/Add a subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Adds a subject to a study. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"createSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Subject details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/enroll":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Enroll a subject"
                ],
                "summary":"V1",
                "description":"Adds a subject to a Rollover study in Enrolled state.",
                "operationId":"enrollSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Subject details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EnrollSubjectRequest"
                            },
                            "examples":{
                                "Request to code view a subject":{
                                    "summary":"Code View Request",
                                    "description":"Request to code view a subject",
                                    "value":{
                                        "subjectNumber":"SUBJ-2001",
                                        "fromStudyId":"367D03FD5B6146C08F874CE4A6E101F6",
                                        "toStudyOrgId":"ABCDEF1234567890ABCDEF1234567890"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto5"
                                },
                                "examples":{
                                    "Response example for successful subject enrollment":{
                                        "summary":"EnrollSubject Response",
                                        "description":"Response example for successful subject enrollment",
                                        "value":{
                                            "id":"ABCDEF1234567890ABCDEF1234567890",
                                            "versionStart":"2025-12-01T07:00:00.000Z",
                                            "description":"Subject in date range",
                                            "subjectNumber":"SUBJ-2024",
                                            "studyId":"1AAAABBBBCCCCDDDDEEEEFFFF00001111",
                                            "siteId":"0022446688AABBCCDDEEFF1122334455",
                                            "dob":null,
                                            "screeningDate":"2025-11-15T11:15:00.000Z",
                                            "state":"Completed",
                                            "stateDate":"2025-12-01T07:00:00.000Z",
                                            "screeningFailure":"Not applicable",
                                            "enrollmentFailure":"None",
                                            "enrollmentOverride":null,
                                            "informedConsentDate":"2025-11-01T10:30:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":"N",
                                            "reason":"Standard completion",
                                            "comment":"Subject completed all visits",
                                            "studyVersion":"1.0.0.0",
                                            "objectVersionNumber":8,
                                            "eventType":"VisitCompleted",
                                            "subjectTransferId":"12341234123412341234123412341234",
                                            "fromStudyId":"CFGD1234123412341234123412341234",
                                            "mhealthSubjectId":"MNBF1234123412341234123412341234"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-enroll-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-enroll-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/dateRange":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get events within a date range"
                ],
                "summary":"V1",
                "description":"Lists changes related to any subjects in the specified in a date range",
                "operationId":"getAllSubjectsInRange",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2025-JUN-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2025-DEC-31"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectEventDto"
                                    }
                                },
                                "examples":{
                                    "DateRange Response":{
                                        "summary":"Subjects list in date range",
                                        "description":"DateRange Response",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "versionStart":"2025-12-01T07:00:00.000Z",
                                                "description":"Subject in date range",
                                                "subjectNumber":"SUBJ-2024",
                                                "studyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "siteId":"0022446688AABBCCDDEEFF1122334455",
                                                "dob":null,
                                                "screeningDate":"2025-11-15T11:15:00.000Z",
                                                "state":"Completed",
                                                "stateDate":"2025-12-01T07:00:00.000Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"None",
                                                "enrollmentOverride":null,
                                                "informedConsentDate":"2025-11-01T10:30:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Standard completion",
                                                "comment":"Subject completed all visits",
                                                "studyVersion":"1.0.0.0",
                                                "eventType":"VisitCompleted",
                                                "subjectTransferId":"ECDDEF1234567890ABCDEF1234567890"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-dateRange-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-daterange-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/availableSubjectNumbers":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get last added subject number"
                ],
                "summary":"V1",
                "description":"Retrieves available subject numbers and last added subject number according to the subject settings. ",
                "operationId":"getAvailableSubjectNumbers",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"CDEF1234567890AB4567890EFEEDCBA12"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectNumberSelectionDTO"
                                    }
                                },
                                "examples":{
                                    "AvailableSubjectNumbers Response":{
                                        "summary":"Example list of available subject numbers",
                                        "description":"AvailableSubjectNumbers Response",
                                        "value":[
                                            {
                                                "lastAssignedNumber":"D1E2F3A4B5C60718273645AABBCCDDEE",
                                                "availableNumbers":[
                                                    "SUBJ-5555"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-availableSubjectNumbers-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-availablesubjectnumbers-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}/{studyVersion}/demographicstatus":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get list of subjects with specific demographic details"
                ],
                "summary":"V1",
                "description":"Retrieves list of subjects that have specific demographic details available, like gender, race and date of birth.",
                "operationId":"getDemographicStatusOfSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.1.0.0"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DemographicStatusResponse"
                                    }
                                },
                                "examples":{
                                    "DemographicStatus Response":{
                                        "summary":"Example demographic status result",
                                        "description":"DemographicStatus Response",
                                        "value":[
                                            {
                                                "genderDataAvailable":true,
                                                "dobDataAvailable":false,
                                                "raceDataAvailable":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-{studyVersion}-demographicstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-studyversion-demographicstatus-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/randlimitexceeded":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Check the study randomization limit"
                ],
                "summary":"V1",
                "description":"Determines whether the randomization limit was reached for the specified study and mode.",
                "operationId":"getIfRandLimitExceeded",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "Returns true if site's randomization limit is exceeded":{
                                        "summary":"RandLimitExceeded Response",
                                        "description":"Returns true if site's randomization limit is exceeded",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-randlimitexceeded-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-randlimitexceeded-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}/orgid":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get organization ID used to generate subject number"
                ],
                "summary":"V1",
                "description":"Retrieves the organization ID (OrgId) used to generate subject number.",
                "operationId":"getOrgIdBySubjectId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectOrgIdDto"
                                    }
                                },
                                "examples":{
                                    "SubjectOrgId Response":{
                                        "summary":"Example response for org ID lookup",
                                        "description":"SubjectOrgId Response",
                                        "value":[
                                            {
                                                "orgId":"FEDCBA1234567890FEDCBA0987654321"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-orgid-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-orgid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/randrestricted":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Check status of study randomization limit or restriction"
                ],
                "summary":"V1",
                "description":"Checks whether the randomization limit has been reached (randomization has stopped) and if randomization is restricted (not randomizing) for the study and mode or a particular site. ",
                "operationId":"getRandRestricted",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationStatus"
                                },
                                "examples":{
                                    "RandRestricted Response":{
                                        "summary":"response example for RandomizationStatus",
                                        "description":"RandRestricted Response",
                                        "value":{
                                            "randomizationRestricted":true,
                                            "randomizationLimitReached":"false"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-randrestricted-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-randrestricted-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/sdvselected":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get latest audit records for Source Data Verification"
                ],
                "summary":"V1",
                "description":"Retrieves the list of subjects selected for SDV for the specified study and mode, filtered by site(s) and optional date range. Accepts a body with site IDs and start/end dates, validates the date window, and returns subject-level SDV selection entries.",
                "operationId":"getSDVSelectedSubjects_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Example selection payload for SDV.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSDVSelectionRequest"
                            },
                            "examples":{
                                "SDVSelected Request":{
                                    "summary":"SDV selection request",
                                    "description":"SDVSelected Request",
                                    "value":{
                                        "sites":[
                                            "AA11BB22CC33DD44EE55FF6677889900"
                                        ],
                                        "startDate":"01-JAN-2023",
                                        "endDate":"10-JAN-2023"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSDVDto2"
                                },
                                "examples":{
                                    "SDVSelected Response":{
                                        "summary":"Example SDV selected subjects result",
                                        "description":"SDVSelected Response",
                                        "value":[
                                            {
                                                "studyId":"11112222333344445555666677778888",
                                                "subjectNumber":"SUBJ-1101",
                                                "siteId":"FEDCBA0987654321FEDCBA0987654321",
                                                "versionStart":"01-JAN-2023",
                                                "versionEnd":"01-DEC-2024",
                                                "id":"CSDCBA0987654321FEDCBA0987654321",
                                                "sdvSelectionStatus":"NOT_SELECTED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-sdvselected-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-sdvselected-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/odmsubmit/visitsMetadata/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get Visits MetaData which is part of ODMSubmit"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Returns all visits metadata for the specified subject.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/odmsubmit/visitsMetadata/{subjectId}",
                "operationId":"getStudyOdmMetaData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve history.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"date",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ODM1"
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-odmsubmit-visitsMetadata-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-odmsubmit-visitsmetadata-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves the current details for the specified subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjectById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to get the current details.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Forbidden request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Updates a subject's details with the specified values. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"updateSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to update details.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Provide the subject details as you want them updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/events":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get list of events by type"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves all events for all subjects within the specified study and mode. Can restrict to events of a particular type that occurred within a specified date range. For example, you can retrieve a list of all screening events that took place in the previous month. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/events",
                "operationId":"getSubjectEvents",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"events",
                        "in":"query",
                        "description":"The type of event you want to retrieve. Accepts (case-sensitive): New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Transferred, Screen_Failed, Code_Break, Complete, Undo_Complete, Undo_ScrFailed, Visit_Complete, or DataElement_Change. You can specify more than one event type by repeating this parameter with different values.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectEventsInfoDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-events-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-events-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Returns the history for the specified subject as multiple subject records for each change that was made, including current details. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjectHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get history of all subjects in a study mode"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves the history of all subjects in a given study mode.",
                "operationId":"getSubjectHistory4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site ID.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/idsforsitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get all subjects by study version"
                ],
                "summary":"V1",
                "description":"Lists all subjects for sites that you have access to and that have a study version.",
                "operationId":"getSubjectIdsWithSiteStudyVersion",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BBAADD11223345566777889900CCDDEE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectNumberDto"
                                    }
                                },
                                "examples":{
                                    "Example list of SubjectNumberDto entries":{
                                        "summary":"SubjectNumberDto Response",
                                        "description":"Example list of SubjectNumberDto entries",
                                        "value":[
                                            {
                                                "id":"A1B2C3D4E5F60718273645AABBCCDDEE",
                                                "subjectNumber":"SUBJ-0021",
                                                "state":"Withdrawn",
                                                "siteId":"BBAADD11223345566777889900CCDDEE",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "objectVersionNumber":3,
                                                "studyVersion":"3.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-idsforsitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-idsforsitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get a subject's events within a date range"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves the events for a specific subject within a specified date range. Used by Integration Hub to retrieve events associated with a specific subject. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjectInRange",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject whose events you want to retrieve, as it appears in Clinical One.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/lov/{pathAttr}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get a list of subject-related values"
                ],
                "summary":"V1",
                "description":"Retrieves all possible values for the study and mode for the specified subject-related list of values. For example, get all subject numbers for the study ",
                "operationId":"getSubjectLovByColumn",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"pathAttr",
                        "in":"path",
                        "description":"Attribute for which you want to get all values. Accepts (case-sensitive): codeBreak, comment, description, dob, anrollmentFailure, enrollmentOrverride, gender, id, informedConsentDate, reason, screeningDate, screeningFailure, siteId, state, stateDate, studyId, studyVersion, subjectNumber, userId, or versionStart.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"studyVersion"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Subject List of values Response":{
                                        "summary":"Example response for subject List",
                                        "description":"Subject List of values Response",
                                        "value":[
                                            {
                                                "studyId":"40DB4EF4847849CCB24EFCCB71CDA436"
                                            },
                                            {
                                                "studyId":"CDDB4EF4847849CCB24EFCCB71CDA436"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-lov-{pathAttr}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-lov-pathattr-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/numberstatus":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get a list of subject numbers"
                ],
                "summary":"V1",
                "description":"Retrieves all possible subject numbers for the study and mode.",
                "operationId":"getSubjectNumberStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Example response for subject number status":{
                                        "summary":"SubjectNumberStatus Response",
                                        "description":"Example response for subject number status",
                                        "value":[
                                            {
                                                "subjectNumber":"SUBJ-0012",
                                                "id":"659FD5CD3FCA448D9B8C072F218B98D7"
                                            },
                                            {
                                                "subjectNumber":"SUBJ-0013",
                                                "id":"184FD5CD3FCA448D9B8C072F218B98D7"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-numberstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-numberstatus-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/odmsubmit/clinicaldata/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get Clinical Data which is part of ODMSubmit"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Returns history for the specified subject as multiple subject records for each change that was made, including current details. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/odmsubmit/clinicaldata/{subjectId}",
                "operationId":"getSubjectOdmClinicalData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve history.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"date",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ClinicalData1"
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-odmsubmit-clinicaldata-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-odmsubmit-clinicaldata-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/selectionStatus/{siteId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get source data verification selection status for all subjects"
                ],
                "summary":"V1",
                "description":"Retrieves the SDV subject selection status for the provided site. Returns current and previous selection information for all subjects under the site.",
                "operationId":"getSubjectSelectionStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"FEDCBA1234567890FEDCBA1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of SDV subjects for the given siteId with their selection status and previous subject number.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSDVDtoList"
                                },
                                "examples":{
                                    "SuccessfulResponse":{
                                        "summary":"Example: SDV subject selection status result",
                                        "description":"SuccessfulResponse",
                                        "value":{
                                            "subjectsList":[
                                                {
                                                    "id":"22223333444455556666777788889999",
                                                    "subjectNumber":"SUBJ-0204",
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "siteId":"FEDCBA1234567890FEDCBA1234567890",
                                                    "sdvSelectionStatus":"NOT_SELECTED"
                                                }
                                            ],
                                            "prevSelectedSubjectNumber":"SUBJ-0001"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-selectionStatus-{siteId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-selectionstatus-siteid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: This consolidated API retrieves subjects and their visit schedule along with filter capabilities.",
                "operationId":"getSubjectsVisitSchedule",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Lists all subjects for sites in a specific study version that you have access to and that have a study version. ",
                "operationId":"getSubjectsWithSiteStudyVersion",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"ID of the site for which you want to retrieve subjects. The site must have a study version to return any results.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which subject you want to start retrieving subjects. If provided, you also need to specify a value for the limit parameter. Offset is affected by the value of the order parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"The sorting order for subjects. Sorting is done by subject number. If you don't specify a value, the order is ascending by default. Accepts asc or desc.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                "operationId":"randomizeordispense",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study where a subject is being randomized or dispensed.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV11"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/mhealthRegister":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Register subject to mHealth"
                ],
                "summary":"V1",
                "description":"Registers a subject in the mHealth system for tracking. Requires subject and mHealth identifiers in the request payload. Returns the full extended subject record after registration.",
                "operationId":"registerSubjectToMhealth",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"mHealth registration request payload",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MhealthSubjectDto"
                            },
                            "examples":{
                                "MhealthRegisterRequest":{
                                    "summary":"Minimal mHealth subject registration request",
                                    "description":"MhealthRegisterRequest",
                                    "value":{
                                        "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                        "subjectId":"ABCDEF1234567890ABCDEF1234567890"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Full details of the subject as registered in mHealth.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto4"
                                },
                                "examples":{
                                    "MhealthRegisterResponse":{
                                        "summary":"Successful mHealth subject registration",
                                        "description":"MhealthRegisterResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"FEDCBA1234567890FEDCBA1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "eventType":"Screened",
                                            "subjectTransferId":"11223344556677889900AABBCCDDEEFF",
                                            "objectVersionNumber":14,
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-mhealthRegister-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-mhealthregister-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/state/{subjectId}":{
            "delete":{
                "tags":[
                    "Data Capture/Subjects/Revert to the latest subject state"
                ],
                "summary":"V1",
                "description":"Deletes or reverts a subject to a previous state. Provide a reason and comment in the request body for auditing. Returns the updated subject details.",
                "operationId":"revertSubjectState",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Details for revert/delete operation including reason and descriptive comment.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RevertSubjectRequest"
                            },
                            "examples":{
                                "RevertRequest":{
                                    "summary":"Request to revert subject state",
                                    "description":"RevertRequest",
                                    "value":{
                                        "reason":"Duplicate entry detected",
                                        "comment":"Subject was mistakenly created twice and needs removal"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subject details after successful revert or deletion.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                },
                                "examples":{
                                    "RevertSubjectStateResponse":{
                                        "summary":"Example subject state after revert",
                                        "description":"RevertSubjectStateResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"FEDCBA1234567890FEDCBA1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid input or failed validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-state-{subjectId}-delete",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-state-subjectid-delete"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/migratesubject":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Migrate a subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Adds or migrates a subject to a study. This API has been built without any validation: <ul><li>API expects the Subject Number provided as part of payload to match exactly the Subject Number settings.</li> <li>It ignores the Subject Number Settings and creates the Subject with Subject Number provided as part of payload.</li> <li>Caller needs to ensure it provides Site Prefix, hyphen, leading zeros and any pattern defined as part of Subject Number Settings.</li></ul> <br><b>Rights:</b> <i>MigrationDataPost</i>.",
                "operationId":"saveMigrateSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Subject details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto_3"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-migratesubject-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-migratesubject-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/{subjectId}/subjectnumber":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject number"
                ],
                "summary":"V1",
                "description":"Updates the subject number for the provided subjectId. The request must include the new subject number, a reason, and the current object version. Returns the updated subject record.",
                "operationId":"updateSubjectNumber",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3467ABCD9012EF341011AABBCCDDEEFF"
                    }
                ],
                "requestBody":{
                    "description":"New subject number assignment with justification and latest version number.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectNumberRequestDto"
                            },
                            "examples":{
                                "UpdateSubjectNumberRequest":{
                                    "summary":"Request to update subject number",
                                    "description":"UpdateSubjectNumberRequest",
                                    "value":{
                                        "subjectNumber":"SUBJ-0111",
                                        "reason":"Subject number update required",
                                        "comment":"Correction due to site transfer",
                                        "objectVersionNumber":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subject details after successful subject number update.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                },
                                "examples":{
                                    "UpdateSubjectNumberResponse":{
                                        "summary":"Updated subject after subject number change",
                                        "description":"UpdateSubjectNumberResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"FEDCBA1234567890FEDCBA1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-{subjectId}-subjectnumber-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectid-subjectnumber-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjects/subjectnumber":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Updates subject numbers in bulk"
                ],
                "summary":"V1",
                "description":"Updates subject numbers in bulk. Each item in the array specifies one subject to update, with new subject number, reason, and version. Returns a list of updated subjects.",
                "operationId":"updateSubjectNumbers",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Array of subject number updates reason, and comments.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectNumbersRequestDto"
                            },
                            "examples":{
                                "BulkUpdateRequest":{
                                    "summary":"Bulk subject number update request",
                                    "description":"BulkUpdateRequest",
                                    "value":{
                                        "subjects":[
                                            {
                                                "subjectId":"3BF8356C6E4B49678D0609FF244DB4E3",
                                                "newSubjectNumber":"SUB-10",
                                                "objectVersionNumber":5
                                            }
                                        ],
                                        "reason":"Wrong data entered.",
                                        "comment":"Wrong data entered."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk updated subject details (with previous subject numbers, if applicable).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectNumbersResponseV1"
                                },
                                "examples":{
                                    "BulkUpdateResponse":{
                                        "summary":"Bulk subject number update response",
                                        "description":"BulkUpdateResponse",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "id":"ABCDEF1234567890ABCDEF1234567890",
                                                    "versionStart":"2025-12-01T07:00:00.000Z",
                                                    "description":"Subject in date range",
                                                    "subjectNumber":"SUBJ-2024",
                                                    "studyId":"1AAAABBBBCCCCDDDDEEEEFFFF00001111",
                                                    "siteId":"0022446688AABBCCDDEEFF1122334455",
                                                    "dob":null,
                                                    "screeningDate":"2025-11-15T11:15:00.000Z",
                                                    "state":"Completed",
                                                    "stateDate":"2025-12-01T07:00:00.000Z",
                                                    "screeningFailure":"Not applicable",
                                                    "enrollmentFailure":"None",
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":"2025-11-01T10:30:00.000Z",
                                                    "gender":[
                                                        {
                                                            "value":"1",
                                                            "label":"male"
                                                        }
                                                    ],
                                                    "codeBreak":"N",
                                                    "reason":"Standard completion",
                                                    "comment":"Subject completed all visits",
                                                    "studyVersion":"1.0.0.0",
                                                    "objectVersionNumber":8,
                                                    "eventType":"VisitCompleted",
                                                    "subjectTransferId":"12341234123412341234123412341234",
                                                    "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                    "subjectStudySerialNumber":"SUBJECT-0001-OLD",
                                                    "subjectSiteSerialNumber":"site-0001-OLD",
                                                    "signedStatus":"NOT_APPLICABLE",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjects-subjectnumber-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjects-subjectnumber-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/screenfaildates":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject event details"
                ],
                "summary":"V1.0",
                "description":"Returns detailed subject information including screening, randomization, completion and re-screen event data as well as study/site context. Supports re-screening enabled events. Includes all current and previous subject properties as per the latest API model.",
                "operationId":"getSubjectById_1",
                "parameters":[
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject information with screenfail dates retrieved successfully. The response includes all relevant current and historical subject and screening event fields.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto15"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto15FullExample":{
                                        "summary":"Fully expanded example covering all SubjectRespDto15 fields",
                                        "description":"SubjectRespDto15FullExample",
                                        "value":[
                                            {
                                                "id":"AABBCCDDEEFF00112233445566778899",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject record",
                                                "subjectNumber":"SUBJ-0199",
                                                "studyId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"BEEFAABBCCDDEEDDFF00112233445566",
                                                "dob":null,
                                                "screeningDate":"2025-10-01T09:00:00.000Z",
                                                "state":"Screened",
                                                "stateDate":"2025-10-01T09:00:01.000Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-09-25T09:01:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "reason":"Initial screening",
                                                "comment":"Subject eligible for randomization",
                                                "studyVersion":"3.1.0.2",
                                                "screeningNumber":"SCR-0199",
                                                "randomizationNumber":"RND-00813",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                                "studyCompletionDate":"2025-12-16T10:15:00.000Z",
                                                "withdrawalReason":"Not applicable",
                                                "withdrawalComment":"Subject withdrew consent",
                                                "screenFailureComment":"None",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                                "screenFailureDate":"2025-10-01T10:00:00.000Z",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                                "previousSubjectNumber":"SUBJ-0398-OLD",
                                                "softwareVersionNumber":14,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":"STUDY-0001-0199",
                                                "subjectSiteSerialNumber":"SITE-0001-0009",
                                                "versionEnd":"2025-10-20T16:05:34.000Z",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"FROZEN",
                                                "lastSigned":"2025-10-19T17:25:16.100Z",
                                                "fromStudyId":"BEEF1234567890ABCDEF123456789012",
                                                "subjNumSiteOrgId":"FEDCBA98765432100123456789ABCDEF",
                                                "mhealthSubjectId":"AA00BB11CC22DD33EE44FF55GG66HH77",
                                                "objectVersionNumber":33,
                                                "eventType":"Screened",
                                                "subjectTransferId":"DC9EEE0000112233445566778899AABB",
                                                "replaceRand":"Y",
                                                "unResolvedQueries":1,
                                                "incompleteVisits":0,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":false,
                                                "reScreenEventInstanceNum":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid subject ID or parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-screenfaildates-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-screenfaildates-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/screendates":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get screen subject details"
                ],
                "summary":"V1.0",
                "description":"Returns subject information for screened and screen failed events, enriched with rescreen event data where applicable.",
                "operationId":"getSubjectByIdWithScreenDates",
                "parameters":[
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject screened/screen failed information retrieved successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto16"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid subject ID or parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-screendates-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-screendates-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/count":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get Subject count"
                ],
                "summary":"V1.0",
                "description":"Retrieve the subject count summary for a study. Includes totals for new, active, withdrawn, enrolled, screened, failed, completed subjects.",
                "operationId":"getSubjectCount",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject count summary successfully retrieved.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectCountResponseDto"
                                },
                                "examples":{
                                    "Subject Count Response":{
                                        "description":"Subject Count Response Example",
                                        "value":{
                                            "totalSubjects":200,
                                            "newSubjects":12,
                                            "activeSubjects":160,
                                            "withdrwanSubjects":5,
                                            "enrolledSubjects":89,
                                            "screendSubjects":180,
                                            "screenFailedSubjects":4,
                                            "completedSubjects":23
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-count-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-count-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/nextVisitAction":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get the next visit action and rescreen eligibility for subject"
                ],
                "summary":"V1.0",
                "description":"Fetches the next recommended action for the subject's visit schedule, such as dispensing medication or collecting samples.",
                "operationId":"getSubjectNextVisitAction",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Next visit action for the subject returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubectNextVisitActionResultDto"
                                },
                                "examples":{
                                    "Subect Next Visit Action Result":{
                                        "description":"Subect Next VisitA ction Result Example",
                                        "value":{
                                            "nextVisitAction":"SCREEN_ENABLE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-nextVisitAction-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-nextvisitaction-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/screeningnumber":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get all subject Numbers for a site"
                ],
                "summary":"V1.0",
                "description":"Returns a list of subjects with their screening numbers and site details for the specified study.",
                "operationId":"getSubjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful retrieval of subject screening numbers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectScreeningNumberResponseDto"
                                    }
                                },
                                "examples":{
                                    "Subject Screening Number Response":{
                                        "description":"Subject Screening Number Response",
                                        "value":{
                                            "id":"9876543210ABCDEF1234567890ABCDEF",
                                            "screeningNumber":"SCR-00123",
                                            "siteId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "objectVersionNumber":3,
                                            "subjNumSiteOrgId":"50DB4EF4847849CCB24EFCCB71CDA436"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"400",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-screeningnumber-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-screeningnumber-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/forResupply":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get screened and randomized subjects for resupply"
                ],
                "summary":"V1.0",
                "description":"Retrieve the list of subjects per site eligible for resupply evaluation. Subjects are filtered based on visit windows, skip rules, and site selection.",
                "operationId":"getSubjectsForResupply",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"ignoreIfOutsideOfVisitWindowBy",
                        "in":"query",
                        "description":"Integer value for the number of days a subject can be outside its next dispensation visit window after which it will not be returned in the response.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":2
                    },
                    {
                        "name":"ignoreSubjectsWhichSkippedVisit",
                        "in":"query",
                        "description":"Boolean value to decide whether to return a subject that skipped a dispensation visit.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of resupply-eligible subjects retrieved per site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplySubjectsListDto"
                                    }
                                },
                                "examples":{
                                    "Resupply Subjects List":{
                                        "description":"Resupply Subjects List Response Example",
                                        "value":{
                                            "siteResupplySubjectsList":[
                                                {
                                                    "siteId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "screenedSubjects":[
                                                        "A3F1C4B2D8E947F0A1B2C3D4E5F6A7B8",
                                                        "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                                                    ],
                                                    "randomizedSubjects":[
                                                        "3C1D5E7F9A0B2C4D6E8F0A1B2C3D4E5F",
                                                        "ABCDEF1234567890ABCDEF1234567890"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-forResupply-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-forresupply-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get list of visits status for a subject"
                ],
                "summary":"V1.0",
                "description":"Returns the visit status list for the specified subject, including visit dates, expected actions, and current states.",
                "operationId":"getVisitsStatusForSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful retrieval of visits status for the subject.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto12"
                                    }
                                },
                                "examples":{
                                    "Visits Status response Example":{
                                        "description":"Visits Status response Example",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                                "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                                "associatedStudyVersion":"3.0.0.1",
                                                "visitAction":"SCREEN_ENABLE",
                                                "lockedStatus":"LOCKED",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "repeatingFormCount":"2",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid subject ID or parameters.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/linkehr/{mrn}":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Link subject with patient MRN"
                ],
                "summary":"V1.0",
                "description":"Link the given subject to a medical record number (MRN) in the EHR. Returns the updated subject details.",
                "operationId":"linkSubjectToMRN",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mrn",
                        "in":"path",
                        "description":"Medical Record Number for Electronic Health Record.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MRN-123456"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject successfully linked to MRN.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto13"
                                },
                                "examples":{
                                    "Subject Response ":{
                                        "description":"Subject Response example",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":null,
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventType":"Screened",
                                                "signedStatus":"SIGNED",
                                                "subjectTransferId":"5D5F9311C591424F852B99FD902E98A4",
                                                "subjNumSiteOrgId":"8D5F9311C591424F852B99FD902E98A4",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "objectVersionNumber":"1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid subject ID or MRN.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-linkehr-{mrn}-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-linkehr-mrn-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/replaceSubject":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Perform replace randomization on a subject"
                ],
                "summary":"V1.0",
                "description":"Replace an existing subject as per the study protocol (randomization). Returns updated subject replacement details.",
                "operationId":"replaceSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject replacement processed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto14"
                                },
                                "examples":{
                                    "Subject Response":{
                                        "description":"Subject Response Example",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "description":"Subject record version start",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":null,
                                            "screeningDate":"2023-01-01T09:00:00Z",
                                            "state":"Active",
                                            "stateDate":"2023-02-01T10:00:00Z",
                                            "screeningFailure":"Not applicable",
                                            "enrollmentFailure":"Not applicable",
                                            "enrollmentOverride":"None",
                                            "informedConsentDate":"2023-01-01T09:00:00Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":"N",
                                            "reason":"Initial enrollment",
                                            "comment":"Subject created",
                                            "studyVersion":"3.0.0.1",
                                            "subjectStudySerialNumber":"STUDY-0001-001",
                                            "subjectSiteSerialNumber":"SITE-0001-001",
                                            "versionEnd":"2023-02-01T10:00:00Z",
                                            "softwareVersionNumber":13,
                                            "operationType":"CREATED",
                                            "previousSubjectNumber":null,
                                            "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                            "screenFailureDate":"2023-01-01T09:00:00Z",
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2023-02-02T11:00:00Z",
                                            "canBeCompleted":true,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-001",
                                            "ehrLinkStatus":1,
                                            "withdrawalDate":"2023-03-01T09:00:00Z",
                                            "studyCompletionDate":"2023-06-01T09:00:00Z",
                                            "withdrawalReason":"Subject withdrew consent",
                                            "withdrawalComment":"No longer participating",
                                            "screenFailureComment":"Not applicable",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "signedStatus":"NOT_APPLICABLE",
                                            "verifiedStatus":"NOT_APPLICABLE",
                                            "freezedStatus":"FROZEN",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "eventType":"Screened",
                                            "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                            "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "objectVersionNumber":14
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-replaceSubject-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-replacesubject-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/screen":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Save data and screen subject to assign subject number"
                ],
                "summary":"V1.0",
                "description":"Screens a candidate subject for enrollment. Returns the assigned screening number and validation result.",
                "operationId":"screenSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Complete example request payload for subject screening. Includes context and forms with all relevant fields.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectScreenRequestDto"
                            },
                            "examples":{
                                " Subject Screen Request Payload":{
                                    "summary":" Subject Screen Request Payload example",
                                    "description":" Subject Screen Request Payload",
                                    "value":{
                                        "context":{
                                            "siteId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "eventId":"EEEEEEEE777777778888888899999999",
                                            "subjectNumber":"SUBJ-0123",
                                            "visitStartDate":"2025-12-01T09:00:00.000Z"
                                        },
                                        "forms":[
                                            {
                                                "formId":"CDBBCCDDEEFF00112233445566778899",
                                                "dataElements":[
                                                    {
                                                        "id":"AABBCCDDEEFF00112233445566778899",
                                                        "formSectionId":"D9876543D9876543D9876543D9876543",
                                                        "repeatSequenceNumber":2,
                                                        "variableId":"E5554444E5554444E5554444E5554444",
                                                        "originatorId":"F4443333F4443333F4443333F4443333",
                                                        "vendorCode":"VENDOR42",
                                                        "itemId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "value":"29",
                                                        "measureUnit":"years",
                                                        "reason":"provided by patient",
                                                        "comment":"Recent measurement provided",
                                                        "numValue":29,
                                                        "floatValue":29,
                                                        "propertyId":"299BC76CF0F943E6BAC1D209BC3D1CDC",
                                                        "propertyVersionStart":"2024-01-01T00:00:00Z",
                                                        "hdiId":"A86F2D0BB610404DB62D37AFA9C20B50",
                                                        "dataFlag":"B1B8327AFAA6412287106192AB5984EF",
                                                        "documentId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "documentVersion":1,
                                                        "repeatFormNumber":1,
                                                        "innerRepeat":1,
                                                        "outerRepeat":1,
                                                        "sourceTimeStamp":"2025-12-01T10:30:00.000Z"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Candidate subject successfully screened.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "oneOf":[
                                        {
                                            "$ref":"#/components/schemas/SubjectScreenCandidateResponseDto"
                                        },
                                        {
                                            "$ref":"#/components/schemas/RuleMemoryRespTO"
                                        }
                                    ]
                                },
                                "examples":{
                                    "Full Subject Screen Response Example":{
                                        "summary":"Complete response fields for successful subject screening",
                                        "description":"Full Subject Screen Response Example",
                                        "value":{
                                            "subject":{
                                                "id":"AABBCCDDEEFF00112233445566778899",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject record",
                                                "subjectNumber":"SUBJ-0199",
                                                "studyId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"BEEFAABBCCDDEEDDFF00112233445566",
                                                "dob":null,
                                                "screeningDate":"2025-10-01T09:00:00.000Z",
                                                "state":"Screened",
                                                "stateDate":"2025-10-01T09:00:01.000Z",
                                                "screeningFailure":"None",
                                                "enrollmentFailure":"N/A",
                                                "enrollmentOverride":"N/A",
                                                "informedConsentDate":"2025-09-25T09:01:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "reason":"Initial screening",
                                                "comment":"Subject eligible for randomization",
                                                "studyVersion":"3.1.0.2",
                                                "objectVersionNumber":33,
                                                "eventType":"Screen",
                                                "subjectTransferId":"DC9EEE0000112233445566778899AABB",
                                                "mhealthSubjectId":"F1E2D3C4B5A697887766554433221100",
                                                "fromStudyId":"AA11BB22CC33DD44EE55FF6677889900",
                                                "subjNumSiteOrgId":"AABBCC11223344556677",
                                                "randomizationNumber":"RND-08213",
                                                "screenFailureDate":"2025-10-01T10:00:00.000Z",
                                                "withdrawalDate":null,
                                                "studyCompletionDate":null,
                                                "unblindDate":null,
                                                "unblindReason":null,
                                                "unblindComment":null,
                                                "withdrawalReason":null,
                                                "withdrawalComment":null,
                                                "screenFailureComment":null,
                                                "replaceRand":null
                                            },
                                            "visit":{
                                                "id":"EEDDCCBBAA9988776655443322110000",
                                                "subjectId":"AABBCCDDEEFF00112233445566778899",
                                                "eventId":"MCDAAABBCCDDEEDDFF00112233445566",
                                                "siteId":"BEEFAABBCCDDEEDDFF00112233445566",
                                                "studyVersion":"3.1.0.2",
                                                "visitStatus":"COMPLETE",
                                                "visitStartDate":"2025-12-04T10:10:00.000Z",
                                                "visitType":"BASELINE",
                                                "eventType":"Visit_Completed",
                                                "eventInstanceNum":1,
                                                "associatedStudyVersion":"3.1.0.2",
                                                "visitOrder":1,
                                                "leadingDataelementId":"F0A1B2C3D4E5F60718273645AABBCCDD",
                                                "visitWindowWarning":null,
                                                "lockedStatus":"UNLOCKED",
                                                "signedStatus":"NOT_SIGNED",
                                                "verifiedStatus":"NOT_VERIFIED",
                                                "freezedStatus":"NOT_FROZEN",
                                                "visitAction":"ENROLLMENT"
                                            },
                                            "dataElements":[
                                                {
                                                    "id":"B58C5C21BFC94E1384D0F4C6BA7566F3",
                                                    "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                    "formSectionId":"7C4A320F1E2D3C4B5A69788766554433",
                                                    "itemId":"FFFEEE11122233344455566677788899",
                                                    "subjectId":"AABBCCDDEEFF00112233445566778899",
                                                    "eventId":"CDFFAABBCCDDEEDDFF00112233445566",
                                                    "siteId":"BEEFAABBCCDDEEDDFF00112233445566",
                                                    "variableId":"E8EB947A8B684C8B8A30C6070A65BD76",
                                                    "originatorId":"D340A21830F6465C8466A2B42EF370D5",
                                                    "eventInstanceNum":1,
                                                    "repeatSequenceNumber":2,
                                                    "repeatFormNumber":1,
                                                    "outerRepeat":2,
                                                    "innerRepeat":1,
                                                    "value":"29",
                                                    "measureUnit":"years",
                                                    "itemD":"AGE_D",
                                                    "itemR":"AGE_RESULT",
                                                    "itemF":"AGE_FREE",
                                                    "itemType":"INTEGER",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"VERIFIED",
                                                    "freezedStatus":"NOT_FROZEN",
                                                    "validationRules":null,
                                                    "dataflagValue":null,
                                                    "dataEventType":null,
                                                    "lockedStatus":"UNLOCKED",
                                                    "lockedDateTime":"2025-12-04T10:20:00.000Z",
                                                    "visitStatus":"COMPLETE",
                                                    "visitStartDate":"2025-12-04T10:10:00.000Z",
                                                    "studyName":"Screening Study",
                                                    "studyVersion":"3.1.0.2"
                                                }
                                            ]
                                        }
                                    },
                                    "Readonly Custom Rule Failure Response":{
                                        "summary":"Readonly item fails custom rule validation and returns rule-memory response only",
                                        "description":"Readonly Custom Rule Failure Response",
                                        "value":{
                                            "ruleResults":[
                                                {
                                                    "status":"Failed",
                                                    "message":"Custom rule AGE_CHECK failed for readonly item AGE_AUTO."
                                                }
                                            ],
                                            "ruleTargets":[
                                                {
                                                    "eventId":"11223344556677889900AABBCCDDEEFF",
                                                    "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                    "itemId":"DA1B647C20834350BC2086E1AB8FDFFE",
                                                    "itemValue":"16",
                                                    "itemValidation":false,
                                                    "validationComment":"Custom rule AGE_CHECK failed for readonly item AGE_AUTO.",
                                                    "ruleName":"AGE_CHECK"
                                                }
                                            ]
                                        }
                                    },
                                    "Readonly Item Design Failure Response":{
                                        "summary":"Readonly item design-rule failure returns rule-memory response only",
                                        "description":"Readonly Item Design Failure Response",
                                        "value":{
                                            "ruleResults":[
                                                {
                                                    "status":"Failed",
                                                    "message":"Value does not match item design."
                                                }
                                            ],
                                            "ruleTargets":[
                                                {
                                                    "eventId":"99AABBCCDDEEFF001122334455667788",
                                                    "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                    "itemId":"AA11BB22CC33DD44EE55FF6677889900",
                                                    "itemValue":"2026-15-99",
                                                    "itemValidation":false,
                                                    "validationComment":"Value does not match item design.",
                                                    "ruleName":"READONLY_DATE_RULE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid payload or subject info.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "Missing Required Screen Field Response":{
                                        "summary":"Validation failure when a required screen field is missing",
                                        "description":"Missing Required Screen Field Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"must not be blank",
                                                        "contextItem":"context.eventId"
                                                    }
                                                ]
                                            }
                                        }
                                    },
                                    "Invalid Subject Number Response":{
                                        "summary":"Validation failure when the subject number is invalid",
                                        "description":"Invalid Subject Number Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"Invalid subject number",
                                                        "contextItem":"context.subjectNumber"
                                                    }
                                                ]
                                            }
                                        }
                                    },
                                    "Screening Limit Reached Response":{
                                        "summary":"Validation failure when screening limit criteria are already met",
                                        "description":"Screening Limit Reached Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"Enrollment is closed or the screening limit has been reached for the site.",
                                                        "contextItem":"subject",
                                                        "errorCode":"SCR_LIM_REACHED"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-screen-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-screen-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/undoSubject":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Undo the Add subject action in a study"
                ],
                "summary":"V1.0",
                "description":"Reverts the addition of the specified subject. May be used in case of errors or if enrollment was performed mistakenly. Returns the updated subject state after revert.",
                "operationId":"undoSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Reason and optional comment for code break. All fields required unless specified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RevertSubjectRequest"
                            },
                            "examples":{
                                "Revert Subject Request":{
                                    "summary":"Request to Revert Subject",
                                    "description":"Revert Subject Request",
                                    "value":{
                                        "reason":"Duplicate entry",
                                        "comment":"Subject registered twice in error - reverting state."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subject successfully reverted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                },
                                "examples":{
                                    "Undo Subject Reponse":{
                                        "description":"undo Subject Response Example",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"400",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-undoSubject-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-undosubject-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/linkehr":{
            "delete":{
                "tags":[
                    "Data Capture/Subjects/Unlink subject from patient MRN"
                ],
                "summary":"V1.0",
                "description":"Unlinks the subject from their medical record number (MRN) in the EHR system. Returns the updated subject details.",
                "operationId":"unlinkSubjectFromMRN",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject successfully unlinked from MRN.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto13"
                                },
                                "examples":{
                                    "Subject Response ":{
                                        "description":"Subject Response example",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":null,
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventType":"Screened",
                                                "signedStatus":"SIGNED",
                                                "subjectTransferId":"5D5F9311C591424F852B99FD902E98A4",
                                                "subjNumSiteOrgId":"8D5F9311C591424F852B99FD902E98A4",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "objectVersionNumber":"1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-linkehr-delete",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-linkehr-delete"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/screen/validate":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Validate and save data to screen subject and assign subject number"
                ],
                "summary":"V1.0",
                "description":"Pre-validates enrollment status and screening limits for one or more sites before entering Screen Candidate flow.",
                "operationId":"validateScreenSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Site IDs to pre-validate for screening eligibility.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectScreenPreValidationRequestDto"
                            },
                            "examples":{
                                "Screen pre-validation request":{
                                    "summary":"Multiple site IDs",
                                    "description":"Screen pre-validation request",
                                    "value":{
                                        "siteIds":[
                                            "40DB4EF4847849CCB24EFCCB71CDA436",
                                            "50DB4EF4847849CCB24EFCCB71CDA437",
                                            "60DB4EF4847849CCB24EFCCB71CDA438"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Pre-validation result returned for all requested sites.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectScreenPreValidationResponseDto"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid payload or site IDs.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-screen-validate-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-subjects-screen-validate-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/codebreak":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Perform code break on a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Performs code break for the specified subject. <br><br><b>Caution:</b> This operation unblinds subject information. Depending on subject settings, this action might also withdraw the subject. <br><br><b>Rights:</b> <i>DataCaptureCodeBreakPost</i>.",
                "operationId":"codeBreakSubject2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject on whom you want to perform code break.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Reason for code break.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-codebreak-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-codebreak-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/codeview":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Code view on a subject"
                ],
                "summary":"V2.0",
                "description":"Performs code view for a given subject based on the provided reason and comment. Returns the updated subject details. This API allows authorized users to temporarily reveal treatment assignment for a subject in a blinded study when medically necessary. Use only with proper justification in 'reasonRequest'.",
                "operationId":"codeViewSubject2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABBCCDDEEFF11223344556677889900"
                    }
                ],
                "requestBody":{
                    "description":"Reason and optional comment for code break. All fields required unless specified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "Code View Request":{
                                    "summary":"Request to code view a subject",
                                    "description":"Code View Request",
                                    "value":{
                                        "reason":"other",
                                        "comment":"Subject withdrew consent after randomization. Investigator approval documented."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subject details after code view.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                },
                                "examples":{
                                    "SuccessfulResponse":{
                                        "description":"SuccessfulResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":"N",
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"5D5F9311C591424F852B99FD902E98A4",
                                            "mhealthSubjectId":"AA00BB11CC22DD33EE44FF55GG66HH77",
                                            "fromStudyId":"BEEF1234567890ABCDEF123456789012",
                                            "subjNumSiteOrgId":"FEDCBA98765432100123456789ABCDEF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-codeview-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-codeview-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves a list of all subjects for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjects_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Subjects/Add a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Adds a subject to a study. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"createSubject2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    }
                ],
                "requestBody":{
                    "description":"Subject details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/dateRange":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get events within a date range"
                ],
                "summary":"V2.0",
                "description":"Retrieves all subjects in the study for the specified start and end date range, optionally filtered by events. Returns a list of subject details including previous subject number references. Uses event and date filtering for flexible extraction of subject subsets.",
                "operationId":"getAllSubjectsInRange_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Start date from which to retrieve subjects, in ISO format (yyyy-MM-dd).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2025-01-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"End date up to which to retrieve subjects, in ISO format (yyyy-MM-dd).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2025-12-31"
                    },
                    {
                        "name":"events",
                        "in":"query",
                        "description":"List ofEvent Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "New",
                            "Screened"
                        ]
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of subjects within the given date range.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto8"
                                    }
                                },
                                "examples":{
                                    "Subject Successful Response":{
                                        "description":"Subject Successful Response",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "versionStart":"2025-12-01T07:00:00.000Z",
                                                "description":"Subject in date range",
                                                "subjectNumber":"SUBJ-2024",
                                                "studyId":"1AAAABBBBCCCCDDDDEEEEFFFF00001111",
                                                "siteId":"0022446688AABBCCDDEEFF1122334455",
                                                "dob":null,
                                                "screeningDate":"2025-11-15T11:15:00.000Z",
                                                "state":"Completed",
                                                "stateDate":"2025-12-01T07:00:00.000Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"None",
                                                "enrollmentOverride":null,
                                                "informedConsentDate":"2025-11-01T10:30:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Standard completion",
                                                "comment":"Subject completed all visits",
                                                "studyVersion":"1.0.0.0",
                                                "objectVersionNumber":8,
                                                "eventType":"VisitCompleted",
                                                "subjectTransferId":"12341234123412341234123412341234",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "subjectStudySerialNumber":"SUBJECT-0001-OLD",
                                                "subjectSiteSerialNumber":"site-0001-OLD",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-dateRange-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-daterange-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/dispensedvisits/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get visit data by subject ID"
                ],
                "summary":"V2.0",
                "description":"Returns all dispensed visits associated with the given subject in the study. Use subjectId as path parameter (UUID, uppercase hex). Response contains an array of DispensedVisit objects, each with visitId and visitName.",
                "operationId":"getDispensedVisitsBySubjectId2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"List of dispensed visits by subject.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensedVisit"
                                    }
                                },
                                "examples":{
                                    "SuccessfulResponse":{
                                        "description":"SuccessfulResponse",
                                        "value":[
                                            {
                                                "visitId":"ABCDEF1234567890ABCDEF1234567890",
                                                "visitName":"Baseline"
                                            },
                                            {
                                                "visitId":"1234567890ABCDEF1234567890ABCDEF",
                                                "visitName":"Follow-up"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-dispensedvisits-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-dispensedvisits-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the current details for the specified subject.",
                "operationId":"getSubjectById2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to get the current details.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto_3"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Replaces subject details with the specified values. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"updateSubject2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to update details.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Provide the subject details as you want them updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest30"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/count":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get Subject count"
                ],
                "summary":"V2.0",
                "description":"Returns the number of subjects in the study for the given mode and site. Use this to quickly retrieve subject population statistics per site (including summary information).",
                "operationId":"getSubjectCount_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"00AA11BB22CC33DD44EE55FF66GG77HH"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subject count response with summary per site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectCountResponseDto20"
                                    }
                                },
                                "examples":{
                                    "SuccessfulResponse":{
                                        "description":"SuccessfulResponse",
                                        "value":[
                                            {
                                                "totalSubjects":250,
                                                "newSubjects":50,
                                                "activeSubjects":180,
                                                "withdrwanSubjects":5,
                                                "enrolledSubjects":120,
                                                "screendSubjects":200,
                                                "screenFailedSubjects":10,
                                                "completedSubjects":70,
                                                "siteSummary":[
                                                    {
                                                        "siteId":"AABBCCDDEEFF1234567890ABCDEF1234",
                                                        "totalSubjects":125,
                                                        "newSubjects":20,
                                                        "activeSubjects":110,
                                                        "withdrwanSubjects":2,
                                                        "enrolledSubjects":80,
                                                        "screendSubjects":120,
                                                        "screenFailedSubjects":3,
                                                        "completedSubjects":28
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-count-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-count-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Returns the history for the specified subject as multiple subject records for each change that was made, including current details. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjectHistory2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get history of all subjects in a study mode"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves a list of all subjects for the specified study and mode and their history. Includes sourceTimeStamp value in response. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>. ",
                "operationId":"getSubjectHistory2_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto8"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get a subject's events within a date range"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the events for a specific subject within a specified date range. Used by Integration Hub to retrieve events associated with a specific subject. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}",
                "operationId":"getSubjectInRange_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject whose events you want to retrieve, as it appears in Clinical One.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/nextVisitAction":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get the next visit action and rescreen eligibility for subject"
                ],
                "summary":"V2.0",
                "description":"Retrieves the next visit action for the specified subject and also indicates whether rescreening can be initiated with the help of new field enableRescreen.",
                "operationId":"getSubjectNextVisitAction_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DDEEFF00112233445566778899AABBCC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Result containing the subject's next visit action and rescreen eligibility.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectNextVisitActionResultDto20"
                                },
                                "examples":{
                                    "Subect Next Visit Action Successful Response":{
                                        "description":"Subect Next Visit Action Successful Response",
                                        "value":"  {\n    \"nextVisitAction\": \"DISPENSE_DISABLE\"\n    \"enableRescreen\": \"true\"\n  }"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-nextVisitAction-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-nextvisitaction-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: This consolidated API retrieves subjects and their visit schedule along with filter capabilities.",
                "operationId":"getSubjectsVisitSchedule_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves all subjects for the specified study and mode. Only returns subjects for the sites having a study version and to which the requesting user has access. Details are described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjectsWithSiteStudyVersion2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"ID of site from which subjects are to be retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which subject you want to start retrieving subjects. If provided, you also need to specify a value for the limit parameter. Offset is affected by the value of the order parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Specify the sorting order for subjects. Sorting is done by subject number. If you don't specify a value, the order is ascending by default. Accepts asc or desc.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                "operationId":"randomizeordispense_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study where a subject is being randomized or dispensed.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV11"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/state/{subjectId}":{
            "delete":{
                "tags":[
                    "Data Capture/Subjects/Revert to the latest subject state"
                ],
                "summary":"V2.0",
                "description":"Deletes or reverts the state of a subject. V2 provides more information of subject including object version number, event Type.",
                "operationId":"revertSubjectState_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Reason and optional comment for code break. All fields required unless specified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RevertSubjectRequest"
                            },
                            "examples":{
                                "Revert Subject Request":{
                                    "summary":"Request to Revert Subject",
                                    "description":"Revert Subject Request",
                                    "value":{
                                        "reason":"Duplicate entry",
                                        "comment":"Subject registered twice in error - reverting state."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects successfully reverted/deleted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto4"
                                    }
                                },
                                "examples":{
                                    "Subject Response":{
                                        "description":"Subject Response",
                                        "value":[
                                            {
                                                "id":"1234567890ABCDEF1234567890ABCDEF",
                                                "versionStart":"2025-01-10T10:00:00.000Z",
                                                "description":"Screen failure reversion",
                                                "subjectNumber":"SUBJ-1234",
                                                "studyId":"FFEECCDDBBAA99887766554433221100",
                                                "siteId":"00112233445566778899AABBCCDDEEFF",
                                                "dob":null,
                                                "screeningDate":"2025-01-01T09:00:00.000Z",
                                                "state":"ScreenFailed",
                                                "stateDate":"2025-01-10T10:00:00.000Z",
                                                "screeningFailure":"Exclusion criteria",
                                                "enrollmentFailure":"Patient withdrew consent",
                                                "enrollmentOverride":"Manual override by coordinator",
                                                "informedConsentDate":"2025-01-01T09:00:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Reversion per PI decision",
                                                "comment":"Patient eligible upon re-evaluation",
                                                "studyVersion":"3.1.1.2",
                                                "objectVersionNumber":11,
                                                "eventType":"Undo_Withdrawn",
                                                "subjectTransferId":"FEDCBA98765432100123456789ABCDEF",
                                                "mhealthSubjectId":"00112233445566778899AABBCCDDEEFF",
                                                "fromStudyId":"AABBCCDDEEFFAABBCCDDEEFFAABBCCDD",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-state-{subjectId}-delete",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-state-subjectid-delete"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/migratesubject":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Migrate a subject"
                ],
                "summary":"V2.0",
                "description":"Migrates a subject to current study context. Accepts a object, fully specifying subject number, site, state and timestamp. Returns the saved response with status and full migration metadata.",
                "operationId":"saveMigrateSubject2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    }
                ],
                "requestBody":{
                    "description":"Subject migration data. All fields required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectMigrationRequestDTO"
                            },
                            "examples":{
                                "subjectRequest":{
                                    "summary":"Subject migration data. All fields required.",
                                    "description":"subjectRequest",
                                    "value":{
                                        "subject":{
                                            "subjectNumber":"SUBJ-1234",
                                            "siteId":"AABBCCDDEEFF1234567890ABCDEF1234",
                                            "state":"Active",
                                            "sourceTimeStamp":"2025-12-01T09:50:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Migration successful, SubjectMigrationResponseDTO returned.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectMigrationResponseDTO"
                                },
                                "examples":{
                                    "Subject Migration Successful Response":{
                                        "description":"Subject Migration Successful Response",
                                        "value":{
                                            "id":"ABCDEF1234567890ABCDEF1234567890",
                                            "versionStart":"2025-12-01T11:11:00.000Z",
                                            "description":"Migrated subject",
                                            "subjectNumber":"SUBJ-MIGRATE-01",
                                            "studyId":"112233445566778899AABBCCDDEEFF00",
                                            "siteId":"99887766554433221100AABBCCDDEEFF",
                                            "dob":null,
                                            "screeningDate":"2025-11-20T10:00:00.000Z",
                                            "state":"Migrated",
                                            "stateDate":"2025-12-01T11:11:00.000Z",
                                            "screeningFailure":"None",
                                            "enrollmentFailure":"None",
                                            "enrollmentOverride":"Data migrated by admin",
                                            "informedConsentDate":"2025-11-20T10:30:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":"N",
                                            "reason":"Migration batch 2025Q4",
                                            "comment":"Imported from legacy system",
                                            "studyVersion":"1.0.0.0",
                                            "objectVersionNumber":5,
                                            "eventType":"MIGRATED",
                                            "subjectTransferId":"1234567890ABCDEF1234567890ABCDEF",
                                            "sourceTimeStamp":"2025-12-01T10:30:51.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DCSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-migratesubject-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-migratesubject-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/screen":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Save data and screen subject to assign subject number"
                ],
                "summary":"V2.0",
                "description":"Screens a candidate subject.",
                "operationId":"screenSubject_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Subject screening request.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectScreenRequestDto20"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Screening payload processed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "oneOf":[
                                        {
                                            "$ref":"#/components/schemas/SubjectScreenCandidateResponseDto20"
                                        },
                                        {
                                            "$ref":"#/components/schemas/RuleMemoryRespTO"
                                        }
                                    ]
                                },
                                "examples":{
                                    "Readonly Custom Rule Failure Response":{
                                        "summary":"Readonly item fails custom rule validation and returns rule-memory response only",
                                        "description":"Readonly Custom Rule Failure Response",
                                        "value":{
                                            "ruleResults":[
                                                {
                                                    "status":"Failed",
                                                    "message":"Custom rule AGE_CHECK failed for readonly item AGE_AUTO."
                                                }
                                            ],
                                            "ruleTargets":[
                                                {
                                                    "eventId":"11223344556677889900AABBCCDDEEFF",
                                                    "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                    "itemId":"DA1B647C20834350BC2086E1AB8FDFFE",
                                                    "itemValue":"16",
                                                    "itemValidation":false,
                                                    "validationComment":"Custom rule AGE_CHECK failed for readonly item AGE_AUTO.",
                                                    "ruleName":"AGE_CHECK"
                                                }
                                            ]
                                        }
                                    },
                                    "Readonly Item Design Failure Response":{
                                        "summary":"Readonly item design-rule failure returns rule-memory response only",
                                        "description":"Readonly Item Design Failure Response",
                                        "value":{
                                            "ruleResults":[
                                                {
                                                    "status":"Failed",
                                                    "message":"Value does not match item design."
                                                }
                                            ],
                                            "ruleTargets":[
                                                {
                                                    "eventId":"99AABBCCDDEEFF001122334455667788",
                                                    "formId":"360E6122F84A43CAAF70E3BECC471A7C",
                                                    "itemId":"AA11BB22CC33DD44EE55FF6677889900",
                                                    "itemValue":"2026-15-99",
                                                    "itemValidation":false,
                                                    "validationComment":"Value does not match item design.",
                                                    "ruleName":"READONLY_DATE_RULE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request - invalid payload or subject info.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "Missing Required Screen Field Response":{
                                        "summary":"Validation failure when a required screen field is missing",
                                        "description":"Missing Required Screen Field Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"must not be blank",
                                                        "contextItem":"context.eventId"
                                                    }
                                                ]
                                            }
                                        }
                                    },
                                    "Invalid Subject Number Response":{
                                        "summary":"Validation failure when the subject number is invalid",
                                        "description":"Invalid Subject Number Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"Invalid subject number",
                                                        "contextItem":"context.subjectNumber"
                                                    }
                                                ]
                                            }
                                        }
                                    },
                                    "Screening Limit Reached Response":{
                                        "summary":"Validation failure when screening limit criteria are already met",
                                        "description":"Screening Limit Reached Response",
                                        "value":{
                                            "status":"FAILED",
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation error",
                                                "details":[
                                                    {
                                                        "message":"Enrollment is closed or the screening limit has been reached for the site.",
                                                        "contextItem":"subject",
                                                        "errorCode":"SCR_LIM_REACHED"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-screen-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjects-screen-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjectsettings":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get all subject settings"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves subject settings for a specific subject setting ID. <br><b>Rights:</b> <i>SubjectSettingRightsGet</i>.",
                "operationId":"getAllSubjectSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSetting"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subject Settings/Update subject settings"
                ],
                "summary":"V1.0",
                "description":"Updates a list of subject settings. This endpoint updates subject settings for the given study and mode. The request payload must contain all subject setting fields.",
                "operationId":"updateSubjectSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "requestBody":{
                    "description":"Setting details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest"
                            },
                            "examples":{
                                "updateSubjectSettingsRequest":{
                                    "description":"update Subject Settings Request Example",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"A591839ABCC4431C8B9FF80219DA1D9A",
                                                "versionStart":"2023-01-01T08:00:00Z",
                                                "attributeKey":"limit_screened_subjects",
                                                "attributeValue":"true",
                                                "reason":"Initial creation",
                                                "comment":"No remarks.",
                                                "operationType":"Modified"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSettingDto1"
                                },
                                "examples":{
                                    "updateSubjectSettingsResponse":{
                                        "description":"update Subject Settings Response Example",
                                        "value":{
                                            "id":"A591839ABCC4431C8B9FF80219DA1D9A",
                                            "versionStart":"2023-01-01T08:00:00Z",
                                            "attributeKey":"limit_screened_subjects",
                                            "attributeValue":"true",
                                            "reason":"Initial creation",
                                            "comment":"No remarks."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Subject Settings/Create subject settings"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates a list of subject settings so that settings, such as region and country, can be dynamically created. <br><b>Rights:</b> <i>SubjectSettingRightsPost</i>.",
                "operationId":"createSubjectSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "requestBody":{
                    "description":"Setting details to create.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSetting"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-post"
            },
            "delete":{
                "tags":[
                    "Data Capture/Subject Settings/Remove subject settings"
                ],
                "summary":"V1.0",
                "description":"Removes subject settings. This endpoint deletes subject settings for the given study. Provide an array of subject setting objects to be removed.",
                "operationId":"deleteSubjectSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "requestBody":{
                    "description":"Settings to delete.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest"
                            },
                            "examples":{
                                "DeleteRequest":{
                                    "description":"Delete Request Example",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"3B15FDCDE4F94B1A85BE35F9415BB9D1",
                                                "versionStart":"2023-05-22T14:20:00Z",
                                                "attributeKey":"sequential_across_study_or_site",
                                                "attributeValue":"default",
                                                "reason":"Trial reset",
                                                "comment":"Obsolete setting, removed.",
                                                "operationType":"Removed"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"No content.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Delete Subject Settings Response":{
                                        "description":"Delete Subject Settings Response",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-delete",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-delete"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjectsettings/mhealthsettings":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get all the mHealth settings"
                ],
                "summary":"V1.0",
                "description":"Retrieves all mHealth subject settings configured for the specified study and mode.",
                "operationId":"getAllMhealthSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "Mhealth Get Response":{
                                        "description":"Mhealth Get Response Example",
                                        "value":[
                                            {
                                                "id":"AB23524119E841C38A423E3F4E5AAF16",
                                                "versionStart":"2023-09-01T11:00:00Z",
                                                "attributeKey":"sequential_across_study_or_site",
                                                "attributeValue":"Fitbit",
                                                "reason":"Initial sync",
                                                "comment":"Wearable added to profile.",
                                                "objectVersionNumber":"1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-mhealthsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-mhealthsettings-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subject Settings/Update mHealth settings"
                ],
                "summary":"V1.0",
                "description":"Updates a list of mHealth settings. This endpoint updates mHealth subject settings for the study/mode in v2 format.",
                "operationId":"updateMhealthSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "requestBody":{
                    "description":"Setting details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest20"
                            },
                            "examples":{
                                "Mhealth Request":{
                                    "description":"Mhealth Request Example",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"F9614E8BA982434F8A464F65DB058DF3",
                                                "versionStart":"2023-08-18T16:10:00Z",
                                                "attributeKey":"limit_screened_subjects",
                                                "attributeValue":"yes",
                                                "reason":"Enabling device sync",
                                                "comment":"Patient provided consent",
                                                "objectVersionNumber":"1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "Mhealth Response":{
                                        "description":"Mhealth update Response",
                                        "value":[
                                            {
                                                "id":"F9614E8BA982434F8A464F65DB058DF3",
                                                "versionStart":"2023-08-18T16:10:00Z",
                                                "attributeKey":"limit_screened_subjects",
                                                "attributeValue":"yes",
                                                "reason":"Enabling device sync",
                                                "comment":"Patient provided consent",
                                                "objectVersionNumber":"1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-mhealthsettings-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-mhealthsettings-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjectsettings/sdvsettings":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get all source data verification settings"
                ],
                "summary":"V1.0",
                "description":"Returns all the source data verification settings for a study.",
                "operationId":"getAllSDVSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "SDVGetResponse":{
                                        "description":"SDV Get Response Example",
                                        "value":[
                                            {
                                                "id":"DBB3C487D116490CBB3E9B9C849A922E",
                                                "versionStart":"2023-10-10T22:00:00Z",
                                                "attributeKey":"sequential_across_study_or_site",
                                                "attributeValue":"complete",
                                                "reason":"Monitor update",
                                                "comment":"All visits SDV'd.",
                                                "objectVersionNumber":"1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-sdvsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-sdvsettings-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subject Settings/Update source data verification settings"
                ],
                "summary":"V1.0",
                "description":"Updates a list of source data verification settings.",
                "operationId":"updateSDVSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    }
                ],
                "requestBody":{
                    "description":"Setting details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest20"
                            },
                            "examples":{
                                "Sdv Put Request":{
                                    "description":"Sdv update Request",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"77E154F701284BC2BB72B2BF0D0D7154",
                                                "versionStart":"2023-11-29T16:44:00Z",
                                                "attributeKey":"sequential_across_study_or_site",
                                                "attributeValue":"true",
                                                "reason":"Study protocol change",
                                                "comment":"SDV required after mid-study update.",
                                                "objectVersionNumber":"1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSettingDto"
                                },
                                "examples":{
                                    "Sdv Put Response":{
                                        "description":"Sdv update Response",
                                        "value":{
                                            "status":"SUCCESS",
                                            "result":[
                                                {
                                                    "id":"77E154F701284BC2BB72B2BF0D0D7154",
                                                    "versionStart":"2023-11-29T16:44:00Z",
                                                    "attributeKey":"limit_screened_subjects",
                                                    "attributeValue":"true",
                                                    "reason":"Study protocol change",
                                                    "comment":"SDV required after mid-study update.",
                                                    "objectVersionNumber":"1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-sdvsettings-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-sdvsettings-put"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjectsettings/{id}":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get the subject settings based on settings ID"
                ],
                "summary":"V1.0",
                "description":"Retrieves the settings for a given ID.",
                "operationId":"getSubjectSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7E355221FB2B4B698E4C37952778A8E0"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject settings.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B681839ABCC4431C8B9FF80219DA1D9A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectSetting"
                                },
                                "examples":{
                                    "SubjectSettingResponse":{
                                        "description":"Subject Setting Response Example",
                                        "value":{
                                            "id":"A591839ABCC4431C8B9FF80219DA1D9A",
                                            "versionStart":"2023-01-01T08:00:00Z",
                                            "attributeKey":"sequential_across_study_or_site",
                                            "attributeValue":"true",
                                            "reason":"Initial creation",
                                            "comment":"No remarks.",
                                            "operationType":"Modified"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjectsettings-{id}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjectsettings-id-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjectsettings":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get all subject settings"
                ],
                "summary":"V2.0",
                "description":"Retrieves all subject settings.",
                "operationId":"getAllSubjectSettings2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C0A8012B4F8B4475B7A3350CC6C7EA21"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "Get All Subject Settings":{
                                        "description":"Get All Subject Settings Example ",
                                        "value":[
                                            {
                                                "id":"9C67E72C1F2A4BE997B5C0F7A3C91E45",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial setup",
                                                "comment":"Enabled based on protocol",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjectsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjectsettings-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subject Settings/Update subject settings"
                ],
                "summary":"V2.0",
                "description":"Updates subject settings for the specified study and mode, by utilizing additional field object version number.",
                "operationId":"updateSubjectSettings2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C0A8012B4F8B4475B7A3350CC6C7EA21"
                    }
                ],
                "requestBody":{
                    "description":"Setting details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest20"
                            },
                            "examples":{
                                "Update Subject Settings Request":{
                                    "description":"Update Subject Settings Request Example ",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"9C67E72C1F2A4BE997B5C0F7A3C91E45",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial update",
                                                "comment":"Protocol driven",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "Update Subject Settings":{
                                        "description":"Update Subject Settings Example ",
                                        "value":[
                                            {
                                                "id":"9C67E72C1F2A4BE997B5C0F7A3C91E45",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial setup",
                                                "comment":"Enabled based on protocol",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjectsettings-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjectsettings-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Subject Settings/Create subject settings"
                ],
                "summary":"V2.0",
                "description":"Creates a list of subject settings. This is needed to dynamically create new settings such as region, country limits setting. use V2, it returns with additional value of object version number.",
                "operationId":"createSubjectSettings2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C0A8012B4F8B4475B7A3350CC6C7EA21"
                    }
                ],
                "requestBody":{
                    "description":"Subject settings to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectSettingRequest"
                            },
                            "examples":{
                                "Create Subject Settings Request":{
                                    "description":"Create Subject Settings Request Example ",
                                    "value":{
                                        "subjectSettings":[
                                            {
                                                "id":"9C67E72C1F2A4BE997B5C0F7A3C91E45",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial create",
                                                "comment":"Added by admin",
                                                "operationType":"Modified"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "Create Subject Settings Response":{
                                        "description":"Create Subject Settings Response Example ",
                                        "value":[
                                            {
                                                "id":"9C67E72C1F2A4BE997B5C0F7A3C91E45",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial create",
                                                "comment":"Added by admin",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjectsettings-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjectsettings-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjectsettings":{
            "get":{
                "tags":[
                    "Data Capture/Subject Settings/Get all subject settings"
                ],
                "summary":"V3.0",
                "description":"Retrieves all subject settings. Adds new query parameters:\n\n- `key`: allows filtering to return a specific subject setting by key.\n- `showEnableAssignSubjectNumber`: boolean, changes retrieval logic for assignment.\n",
                "operationId":"getAllSubjectSettings2_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"key",
                        "in":"query",
                        "description":"<b>Key of the subject setting attribute. Possible values:</b><br/><ul><li>sequential_across_study_or_site</li><li>limit_screened_subjects</li><li>withdraw_subject_codebreak</li><li>limit_randomize_subjects</li><li>user_enters_screening_visit_date</li><li>user_edits_screening_visit_date</li><li>user_enters_randomization_visit_date</li><li>user_edits_randomization_visit_date</li><li>user_enters_dispensation_visit_date</li><li>user_edits_dispensation_visit_date</li><li>user_enters_non_dispensation_visit_date</li><li>user_edits_non_dispensation_visit_date</li><li>user_enters_optional_visit_date</li><li>user_edits_optional_visit_date</li><li>user_enters_withdraw_visit_date</li><li>user_edits_withdraw_visit_date</li><li>randomization_visit_date_additional_setting</li><li>dispensation_visit_date_additional_setting</li><li>can_dispensation_visit_be_skipped</li><li>can_non_dispensation_visit_be_skipped</li><li>separate_siteid_and_subjectid_hyphen</li><li>limit_study_status</li><li>limit_site_scr</li><li>limit_site_rand</li><li>limit_site_alerts</li><li>limit_site_status</li><li>limit_country_scr</li><li>limit_country_rand</li><li>limit_country_alerts</li><li>limit_country_status</li><li>padding_for_subject_id</li><li>max_randomize_subject</li><li>subject_alerts</li><li>max_screened_subject</li><li>subject_addition_allowed</li><li>subject_number_selection_allowed</li><li>subject_number_format</li><li>retry_partial_sdv_selection</li><li>notify_unsched_visit_failure_only</li><li>notify_screening_failure_only</li><li>notify_optional_visit_failure_only</li><li>notify_nondisp_visit_failure_only</li><li>notify_randomization_failure_only</li><li>notify_dispensation_failure_only</li><li>notify_subjcomplete_visit_failure_only</li><li>show_visit_window</li><li>notify_first_screened_in_study</li><li>notify_first_screened_at_site</li><li>notify_first_randomized_in_study</li><li>notify_first_randomized_at_site</li><li>allow_withdrawal_before_enrollment</li><li>allow_display_signature_elements</li><li>replace_subject_number_rand_number</li><li>code_data_for_new_and_screen_failed_subjects</li><li>blind_rand_number_enabled</li><li>replace_randomisation_enabled</li><li>replace_randomisation_prefix</li><li>replace_randomisation_max_limit</li><li>allow_rescreening</li><li>number_of_rescreen_allowed</li><li>lock_screen_data_on_failure</li><li>user_enters_rescreening_visit_date</li><li>user_edits_rescreening_visit_date</li><li>notify_rescreening_failure_only</li><li>replace_subject_number_enabled</li><li>assign_subject_number</li><li>allow_screen_fail_before_screened</li><li>limit_country_AF_status</li><li>limit_country_AF_scr</li><li>limit_country_AF_alerts</li><li>limit_country_AF_name</li><li>limit_country_AF_rand</li><li>limit_country_DZ_alerts</li><li>limit_country_DZ_rand</li><li>limit_country_DZ_status</li><li>limit_country_DZ_name</li><li>limit_country_DZ_scr</li><li>minimum_subject_number</li><li>allow_withdrawal_for_screen_failed</li><li>allow_completion_for_screen_failed</li><li>enable_assign_subject_number</li><li>limit_study_forced_rand</li><li>limit_site_forced_rand</li><li>enable_assign_subject_number</li></ul>",
                        "schema":{
                            "type":"string"
                        },
                        "example":"assign_subject_number"
                    },
                    {
                        "name":"showEnableAssignSubjectNumber",
                        "in":"query",
                        "description":"If set to true, the API returns the setting enable_assign_subject_number.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectSettingDto"
                                    }
                                },
                                "examples":{
                                    "SubjectSettingsResponse":{
                                        "summary":"Successful subject settings retrieval",
                                        "description":"SubjectSettingsResponse",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T00:00:00Z",
                                                "attributeKey":"assign_subject_number",
                                                "attributeValue":"YES",
                                                "reason":"Initial setup",
                                                "comment":"Enabled based on protocol",
                                                "objectVersionNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjectsettings-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjectsettings-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjecttransfers":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a study"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves all transfers for a study based on the study mode. <br><b>Rights:</b> <i>DataCaptureSubjectTransferGet</i>.",
                "operationId":"getAllSubjectTransfers",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransfer"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjecttransfers-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjecttransfers-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Subjects/Create a subject transfer"
                ],
                "summary":"V1",
                "description":"This endpoint creates a new subject transfer record in the system. Provide all details for a subject transfer in the request body.",
                "operationId":"subjectTransfer",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    }
                ],
                "requestBody":{
                    "description":"Subject transfer details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectTransferRequestDto"
                            },
                            "examples":{
                                "Example of a subject transfer request":{
                                    "summary":"SubjectTransferRequestDto Example",
                                    "description":"Example of a subject transfer request",
                                    "value":{
                                        "subjectTransfer":{
                                            "id":"A1B2C3D4E5F64789AABBCCDDEEFF1122",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjectNumber":"SUBJ-0001",
                                            "newSubjectNumber":"SUBJ-0001-NEW",
                                            "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                            "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                            "reason":"Site change",
                                            "comment":"Moved subject to new site"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTransferDto"
                                },
                                "examples":{
                                    "Example of a successful transfer response":{
                                        "summary":"SuccessfulResponse",
                                        "description":"Example of a successful transfer response",
                                        "value":{
                                            "id":"A1B2C3D4E5F64789AABBCCDDEEFF1122",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjectNumber":"SUBJ-0001",
                                            "newSubjectNumber":"SUBJ-0001-NEW",
                                            "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                            "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                            "reason":"Site change",
                                            "comment":"Moved subject to new site"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjecttransfers-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjecttransfers-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjecttransfers/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a subject and date range"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves all the transfers for a subject that happened in a specific date range. Used by Integration Hub. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers/dateRange/{subjectId}",
                "operationId":"getAllSubjectTransfersInRange",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve transfer details.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransfer"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjecttransfers-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjecttransfers-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjecttransfers/{transferId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get information for a transfer ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves subject transfer records for the specified transfer ID. <br><b>Rights:</b> <i>DataCaptureSubjectTransferGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers/{transferId}",
                "operationId":"getSubjectTransferById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"transferId",
                        "in":"path",
                        "description":"ID for the transfer details to retrieve.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTransfer"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjecttransfers-{transferId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjecttransfers-transferid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/subjecttransfers/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a subject"
                ],
                "summary":"[Deprecated]: V1",
                "description":"Deprecated: Retrieves all transfer records for a specific subject. <br><b>Rights:</b> <i>DataCaptureSubjectTransferGet</i>.",
                "operationId":"getSubjectTransferBySubjectId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID for which you want to retrieve transfer records.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransfer"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-subjecttransfers-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-subjecttransfers-subjects-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the list of visits status for a event ID. If the event ID is null, then it lists all the visit status records for a subject.",
                "operationId":"getVisitsStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID for which you want to retrieve the visits.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer for which you want to retrieve the visit details.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates a new visit status record for a given subject and event ID.",
                "operationId":"addVisitsStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a date range"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the list of visit statuses records for a given date range for a subject. This is mainly used by Integration Hub.",
                "operationId":"getAllVisitsStatusInRange",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visit statuses for given entries"
                ],
                "summary":"V1.0",
                "description":"Retrieves the list of visits status for a given set of entries that include Subject and Event IDs (Designer visit ID).",
                "operationId":"getMultipleVisitsStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Visits details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleVisitsStatusRequestDto"
                            },
                            "examples":{
                                "MultipleVisitsStatusRequestDtoExample":{
                                    "description":"MultipleVisitsStatusRequestDtoExample",
                                    "value":{
                                        "visitDetails":[
                                            {
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventId":"53915DD9B758466AB2226CBCC4466B7E"
                                            },
                                            {
                                                "subjectId":"2ABC8A2C11045A584ADEA8760F72B114",
                                                "eventId":"6A2B3C4D5E6F4781A2B3C4D5E6F78901"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto4"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto4ListExample":{
                                        "description":"VisitsStatusDto4ListExample",
                                        "value":[
                                            {
                                                "id":"A1B2C3D4E5F6471890ABCDEF12345678",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                                "eventInstanceNum":1,
                                                "siteId":"8F2B7E6C5D4A3B2C1D0E9F8A7B6C5D4E",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "objectVersionNumber":14,
                                                "visitStartDate":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a list of subjects"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the list of visits status records for a given list of subjects IDs.",
                "operationId":"getVisStatusForSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of subjects for which you want to retrieve the visit details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/forms/studyVersion/{studyVersion}/subject/{subjectId}/event/{eventId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get associated and dynamic forms for a subject visit"
                ],
                "summary":"V1.0",
                "description":"Retrieves the Associated and Dynamic forms for a subject visit.",
                "operationId":"getVisitDynamicAssignedFormsForSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDynamicAssoFormsResponse"
                                    }
                                },
                                "examples":{
                                    "VisitDynamicAssoFormsResponseListExample":{
                                        "description":"VisitDynamicAssoFormsResponseListExample",
                                        "value":[
                                            {
                                                "formId":"ABCDEF1234567890ABCDEF1234567890",
                                                "isVisible":true,
                                                "formType":0
                                            },
                                            {
                                                "formId":"1234567890ABCDEF1234567890ABCDEF",
                                                "isVisible":false,
                                                "formType":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-forms-studyVersion-{studyVersion}-subject-{subjectId}-event-{eventId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-forms-studyversion-studyversion-subject-subjectid-event-eventid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves the audit history records of the visit status for the given visit ID.",
                "operationId":"getVisitStartDetails",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/subjects/aeCount":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get adverse event visits for a list of subjects"
                ],
                "summary":"V1.0",
                "description":"Retrieves the list of adverse event visit counts for a given list of subjects.",
                "operationId":"getaeCountForSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of subjects for which you want to retrieve adverse event counts.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReqExample":{
                                    "description":"SubjectVisitsReqExample",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectAECountDto"
                                    }
                                },
                                "examples":{
                                    "SubjectAECountDtoListExample":{
                                        "description":"SubjectAECountDtoListExample",
                                        "value":[
                                            {
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                                "studyVersion":"3.0.0.1",
                                                "repeatingFormCount":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-subjects-aeCount-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-subjects-aecount-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/migratevisit":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Post migrated visit data"
                ],
                "summary":"V1.0",
                "description":"Persists migrated visit data.",
                "operationId":"migrateVisitData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Visit details to be migrated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDataMigrationRequest"
                            },
                            "examples":{
                                "VisitDataMigrationRequestExample":{
                                    "description":"VisitDataMigrationRequestExample",
                                    "value":{
                                        "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                        "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                        "eventInstanceNum":1,
                                        "siteId":"8F2B7E6C5D4A3B2C1D0E9F8A7B6C5D4E",
                                        "visitStatus":"COMPLETE",
                                        "studyVersion":"3.0.0.1",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "sourceTimeStamp":"2023-01-01T09:00:00Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDataMigrationDtoV1"
                                },
                                "examples":{
                                    "VisitDataMigrationDtoV1Example":{
                                        "description":"VisitDataMigrationDtoV1Example",
                                        "value":{
                                            "id":"A1B2C3D4E5F6471890ABCDEF12345678",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                            "eventInstanceNum":1,
                                            "visitType":"SCREENING",
                                            "eventType":"Visit_Not_Started",
                                            "siteId":"8F2B7E6C5D4A3B2C1D0E9F8A7B6C5D4E",
                                            "studyVersion":"3.0.0.1",
                                            "visitStatus":"COMPLETE",
                                            "reason":"Subject completed the visit successfully",
                                            "comment":"All data verified",
                                            "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                            "objectVersionNumber":14,
                                            "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                            "visitStartDate":"2023-01-01T09:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-migratevisit-post",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-migratevisit-post"
            }
        },
        "/ec-dc-svc/rest/v1/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Updates the visit status record for a given ID.",
                "operationId":"updateVisitsStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatus"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v1-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/visits/subjectvisitsinfo":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits' start dates for subjects"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of visits' start dates for subjects, as well as the subject number and randomization number.",
                "operationId":"getSubjectVisitInfo",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E6C7BC17E0F041D5B79B21A165911AC3"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitInfoRequest"
                            },
                            "examples":{
                                "SubjectVisitInfoRequestExample":{
                                    "description":"SubjectVisitInfoRequestExample",
                                    "value":{
                                        "subjects":[
                                            {
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "visits":[
                                                    {
                                                        "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                                        "eventInstanceNum":1
                                                    },
                                                    {
                                                        "eventId":"6A2B3C4D5E6F4781A2B3C4D5E6F78901",
                                                        "eventInstanceNum":2
                                                    }
                                                ]
                                            },
                                            {
                                                "subjectId":"2ABC8A2C11045A584ADEA8760F72B114",
                                                "visits":[
                                                    {
                                                        "eventId":"7B8C9D0E1F2A3B4C5D6E7F8091A2B3C4",
                                                        "eventInstanceNum":1
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitInfoResponse"
                                },
                                "examples":{
                                    "SubjectVisitInfoResponseExample":{
                                        "description":"SubjectVisitInfoResponseExample",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                                    "subjectNumber":"SUBJ-001",
                                                    "screeningNumber":"SCR-0001",
                                                    "visits":[
                                                        {
                                                            "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                                            "eventInstanceNum":1,
                                                            "visitStartDate":"2023-01-01T09:00:00Z"
                                                        },
                                                        {
                                                            "eventId":"6A2B3C4D5E6F4781A2B3C4D5E6F78901",
                                                            "eventInstanceNum":2,
                                                            "visitStartDate":"2023-02-01T09:00:00Z"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-visits-subjectvisitsinfo-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-visits-subjectvisitsinfo-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/codingstatus":{
            "get":{
                "tags":[
                    "Data Capture/Coding Status/Get data elements to be coded by code Type"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieve data elements to be coded based on 'codeType' parameter.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/codingstatus",
                "operationId":"getVerbatimTerms",
                "parameters":[
                    {
                        "name":"codeType",
                        "in":"query",
                        "description":"Type of coded questions to be fetched. Allowed values: 'NeedsCodingOrDeleted' and 'NeedsCoding'.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"bookMark",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CodedDerrivedItemsRequest"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-codingstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-codingstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Coding Status/Get data elements to be coded using source IDs"
                ],
                "summary":"V1.0",
                "description":"Retrieve data elements to be coded based on 'codeType' parameter and list of source IDs.",
                "operationId":"getVerbatimTermsUsingSourceId",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"codeType",
                        "in":"query",
                        "description":"Type of coded questions to be fetched. Allowed values: NeedsCodingOrDeleted, NeedsCoding.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"NeedsCodingOrDeleted"
                    }
                ],
                "requestBody":{
                    "description":"Request payload containing an array of sourceIds that indicate the source questions of interest.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeDataRequest"
                            },
                            "examples":{
                                "Code Data Request Example":{
                                    "description":"Code Data Request Example",
                                    "value":{
                                        "sourceIds":[
                                            "123E4567E89B12D3A456426655440000",
                                            "123E4567E89B12D3A45642665544AAAA"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Coded question data for the requested sources.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CodedDataDTO"
                                    }
                                },
                                "examples":{
                                    "Getting Verbatim Terms Using Source Id":{
                                        "summary":"Successful response example",
                                        "description":"Getting Verbatim Terms Using Source Id",
                                        "value":[
                                            {
                                                "subjectInitials":"AB",
                                                "siteName":"Site A",
                                                "siteMnemonic":"SITEA",
                                                "formRefName":"FORM_REF_001",
                                                "formName":"Demographics",
                                                "itemRefName":"ITEM_REF_001",
                                                "itemName":"Age",
                                                "eventRefName":"EVENT_REF_001",
                                                "eventName":"Screening",
                                                "Id":"4ECD1234F78A4C2FAB1BCD213456789A",
                                                "studyVersion":"1.0.0.0",
                                                "subjectId":"7CDE9A6F5D18432DB4C3CBBA56789FED",
                                                "visitId":"F123456789ABCDEF123456789ABCDEFA",
                                                "siteId":"A23F5D4C7896ABDEF123456789BCADE0",
                                                "itemId":"D45FAE891236B7CD89ABCD12345AB789",
                                                "formId":"B6789CDEF123456789ABCDE6789F4321",
                                                "value":"36",
                                                "subjectNumber":"SUB-1001",
                                                "context":"{}",
                                                "verstionStart":"2024-12-01T00:00:00Z",
                                                "dataElementId":"D45FAE891236B7CD89ABCD12345AB789"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-codingstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-codingstatus-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/codingstatus/codedItems":{
            "put":{
                "tags":[
                    "Data Capture/Coding Status/Update multiple coded data elements"
                ],
                "summary":"V1.0",
                "description":"Updates or inserts multiple coded data elements with value for a source data element and source value.",
                "operationId":"putDerivedItemsForCodedQuestions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Coded values to be inserted or updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodedDerrivedItemsRequest"
                            },
                            "examples":{
                                "CodedDerrivedItemsRequestDTO":{
                                    "description":"CodedDerrivedItemsRequestExample",
                                    "value":{
                                        "source_propertyId":"A3B9C7D6E8F041BBA1C7B3C8E182D43A",
                                        "source_value":"ALT",
                                        "codeValuesList":[
                                            {
                                                "coding_info_id":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                "item_id":"5B3B7E0ED4F24E30B5A3A44C5A896C90",
                                                "target_id":"F843B5478028498882E3AF11FEBA3F2A",
                                                "code_value":"R79.0"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successfully updated coded item(s). Response contains Coded Derrived Items Response with all mapped results.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodedDerrivedItemsResponse"
                                },
                                "examples":{
                                    "Coded Derrived Items Response result":{
                                        "summary":"succesful example of Coded Derrived Items",
                                        "description":"Coded Derrived Items Response result",
                                        "value":{
                                            "source_propertyId":"A3B9C7D6E8F041BBA1C7B3C8E182D43A",
                                            "source_value":"ALT",
                                            "codeValuesList":[
                                                {
                                                    "coding_info_id":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                    "dataElement":{
                                                        "id":"FD726D1439144076A4DC2E0441192530",
                                                        "versionStart":"2022-09-05T09:04:06.061Z",
                                                        "transactionStart":"2023-01-05T09:04:06.061Z",
                                                        "transactionEnd":"2023-01-05T09:04:06.061Z",
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "studyName":"SignVerifyRegStudy",
                                                        "studyVersion":"1.1.0.2",
                                                        "subjectId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "eventId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "formId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "formSectionId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "repeatSequenceNumber":1,
                                                        "itemId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "siteId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "variableId":"7D1A5E8B0F894A9CA9F324D04B162F23",
                                                        "originatorId":"9F6D5E8B0F894A9CA9F324D04B162F23",
                                                        "vendorCode":"VEANDOR12",
                                                        "value":"System Organ Class Coded Once",
                                                        "measureUnit":"mg/dL",
                                                        "normalizedValue":120,
                                                        "normalizedUnitId":"7DRD5E8B0F894A9CA9F324D04B162F23",
                                                        "numValue":1,
                                                        "floatValue":1.2,
                                                        "dateTimeValueUTC":"2024-12-01T00:00:00Z",
                                                        "monthValue":11,
                                                        "dayValue":21,
                                                        "yearValue":2021,
                                                        "hourValue":12,
                                                        "minuteValue":25,
                                                        "secondValue":35,
                                                        "userId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "reason":"Other",
                                                        "comment":"Coded value from Coding svc"
                                                    },
                                                    "source_propertyId":"A3B9C7D6E8F041BBA1C7B3C8E182D43A",
                                                    "source_value":"ALT"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request (missing or invalid data).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-codingstatus-codedItems-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-codingstatus-codeditems-put"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/ehrdata/subjects/{subjectId}/visit/{eventId}/studyversion/{studyVersion}/{category}":{
            "get":{
                "tags":[
                    "Data Capture/EHR Data/Get EHR Data for a particular subject and visit"
                ],
                "summary":"V1.0",
                "description":"Retrieves EHR Data for a particular subject and a visit. Fetches for the category provided, which can be any of the following:<ul><li>LABS</li><li>MEDICAL</li><li>MEDICATIONHISTORY</li><li>VITALS</li><li>DEMOGRAPHICS</li><li>PROCEDURES</li></ul>",
                "operationId":"getEHRData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AEBC7137B253422D8A23C8C12B8DF125"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2E4567890ABCDEF1234567890ABCDEF0"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.0"
                    },
                    {
                        "name":"category",
                        "in":"path",
                        "description":"EHR category name can be any of these LABS, MEDICAL, MEDICATIONHISTORY, VITALS, DEMOGRAPHICS, PROCEDURES.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABS"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"65DFE0E1F48C4097A0F6B1F7A1F9F8C8"
                    },
                    {
                        "name":"startDateTime",
                        "in":"query",
                        "description":"Date for which you want to retrieve the data values.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2023-01-01"
                    },
                    {
                        "name":"endDateTime",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2023-01-31"
                    },
                    {
                        "name":"dictionaryIds",
                        "in":"query",
                        "description":"Values from codelist of specific choice",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "DCT1",
                            "DCT2"
                        ]
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"sortOrder",
                        "in":"query",
                        "description":"Order of sorting for records. DESC by default",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ASC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"EHR category data successfully retrieved with paginated result.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OCCCategoryDataDto"
                                },
                                "examples":{
                                    "Get EHR Data":{
                                        "summary":"Get EHR Data Example",
                                        "description":"Get EHR Data",
                                        "value":{
                                            "category":"LABS",
                                            "categoryData":[
                                                {
                                                    "recordedDate":"2023-10-01T08:15:00.000Z",
                                                    "recordedData":[
                                                        {
                                                            "hdiId":"D2E9219A568740A78CC570066F56C2D6",
                                                            "attributes":[
                                                                {
                                                                    "parentName":"Lab Panel",
                                                                    "name":"Hemoglobin",
                                                                    "values":[
                                                                        "13.7"
                                                                    ],
                                                                    "units":"g/dL",
                                                                    "hdiId":"C091C9D975C44E87B8D417C3AC867A43",
                                                                    "occCodes":[
                                                                        "12345-6"
                                                                    ],
                                                                    "sourceUnit":"258677007",
                                                                    "sourceValue":"13.7"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-ehrdata-subjects-{subjectId}-visit-{eventId}-studyversion-{studyVersion}-{category}-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-ehrdata-subjects-subjectid-visit-eventid-studyversion-studyversion-category-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/ehrdata/medicalrecordnumber/{siteId}/{medicalRecordNumber}":{
            "get":{
                "tags":[
                    "Data Capture/EHR Data/Get patient information based on the Medical Record Number"
                ],
                "summary":"V1.0",
                "description":"Retrieves patient information based on the Medical Record Number (MRN). If MRN is not found, returns an empty response.",
                "operationId":"getPatientInfoUsingMRN",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"medicalRecordNumber",
                        "in":"path",
                        "description":"Medical Record Number (MRN) for which we need to fetch patient information.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MRN13456"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EHRtoEDCPatientInfoDTO"
                                },
                                "examples":{
                                    "Get Patient Info Using MRN":{
                                        "summary":"Get Patient Info Using MRN Example",
                                        "description":"Get Patient Info Using MRN",
                                        "value":{
                                            "id":"C0A8010AC8ED432F8A2AD12B28F95C84",
                                            "mrn":"MRN13456",
                                            "name":"Jane Doe",
                                            "gender":"FEMALE",
                                            "dateOfBirth":"1979-03-22",
                                            "address":{
                                                "city":"Los Angeles",
                                                "state":"CA"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-ehrdata-medicalrecordnumber-{siteId}-{medicalRecordNumber}-get",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-ehrdata-medicalrecordnumber-siteid-medicalrecordnumber-get"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/ehrdata/subjectslinkstatus":{
            "post":{
                "tags":[
                    "Data Capture/EHR Data/Get patient link status based on the site ID"
                ],
                "summary":"V1.0",
                "description":"Retrieves the EHR,EDC link status for subjects at the provided sites within the specified study and mode. ",
                "operationId":"getSitePatientLinkStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EHRtoEDCPatientLinkStatusRequestDTO"
                            },
                            "examples":{
                                "Get Site and Patient Link Status Payload":{
                                    "summary":"Site and Patient Link Status",
                                    "description":"Get Site and Patient Link Status Payload",
                                    "value":{
                                        "siteIds":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "FDEE433FB5547EE83DE99E4BC36A3197"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/EHRtoEDCPatientLinkStatusCollectionDTO"
                                    }
                                },
                                "examples":{
                                    "Get Site and Patient Link Status Response":{
                                        "summary":"Get Site and Patient Link Status Example",
                                        "description":"Get Site and Patient Link Status Response",
                                        "value":{
                                            "siteId":"AB12CD34EF56A7890B12C34D56EF7890",
                                            "subjectLinkStatus":"LINKED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-ehrdata-subjectslinkstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-ehrdata-subjectslinkstatus-post"
            }
        },
        "/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/ehrdata":{
            "put":{
                "tags":[
                    "Data Capture/EHR Data/Add EHR Data for a particular subject and a visit"
                ],
                "summary":"V1.0",
                "description":"This API would act as upsert it would insert if the data is not present else it would update.",
                "operationId":"saveEHRData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsEhrRequestDto"
                            },
                            "examples":{
                                "Save EHR Data Request":{
                                    "summary":"Save EHR Data Request Example",
                                    "description":"Save EHR Data Request",
                                    "value":{
                                        "context":{
                                            "studyVersion":"1.0.0.0",
                                            "siteId":"65DFE0E1F48C4097A0F6B1F7A1F9F8C8",
                                            "subjectId":"AEBC7137B253422D8A23C8C12B8DF125",
                                            "eventId":"2E4567890ABCDEF1234567890ABCDEF0",
                                            "eventInstanceNum":1,
                                            "validateOCCData":false,
                                            "studyName":"Clinical Study ABC"
                                        },
                                        "forms":[
                                            {
                                                "formId":"85B29A9062BD4C8B9584E0907A37A84A",
                                                "dataElements":[
                                                    {
                                                        "id":"C1234567C1234567C1234567C1234567",
                                                        "formSectionId":"D9876543D9876543D9876543D9876543",
                                                        "repeatSequenceNumber":2,
                                                        "variableId":"E5554444E5554444E5554444E5554444",
                                                        "originatorId":"F4443333F4443333F4443333F4443333",
                                                        "vendorCode":"VENDOR42",
                                                        "itemId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "value":"42.0",
                                                        "measureUnit":"mg/dL",
                                                        "reason":"Other",
                                                        "comment":"Measured after fasting",
                                                        "numValue":42,
                                                        "floatValue":42.5,
                                                        "outerRepeat":1,
                                                        "innerRepeat":1,
                                                        "recordedDate":"2023-01-01T07:00:00.000Z",
                                                        "occCodes":[
                                                            "2.16.840.1.113883.5.50"
                                                        ],
                                                        "sourceUnit":"258677007",
                                                        "sourceValue":"2024-08-26T14:57:36.039373-07:00"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto15"
                                },
                                "examples":{
                                    "DataElementDto15":{
                                        "summary":"DataElementDto15Example",
                                        "description":"DataElementDto15",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2024-11-14T17:17:03.810Z",
                                            "transactionStart":"2025-11-14T17:17:03.810Z",
                                            "transactionEnd":"2025-12-14T17:17:03.810Z",
                                            "validationStatus":"SUCCESS",
                                            "validationFailure":"Number format expected",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyName":"DCS_EHR2EDC",
                                            "studyVersion":"1.0.0.1",
                                            "subjectId":"D56A3197FDEE433FB5547EE83DE99E9s",
                                            "eventId":"4F6A3197FDEE433FB5547EE83DE99E9x",
                                            "formId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "formSectionId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "repeatSequenceNumber":2,
                                            "itemId":"B56A3197FDEE433FB5547EE83DE99E4B",
                                            "siteId":"J23D3197FDEE433FB5547EE83DE99E4B",
                                            "variableId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "originatorId":"E29A3197FDEE433FB5547EE83DE99E4B",
                                            "vendorCode":"VENDOR123",
                                            "value":"Pap",
                                            "measureUnit":"mg/dl",
                                            "normalizedValue":"120",
                                            "normalizedUnitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "numValue":12,
                                            "floatValue":0.7,
                                            "dateTimeValueUTC":"2024-11-14T17:17:03.810Z",
                                            "monthValue":9,
                                            "dayValue":13,
                                            "yearValue":1999,
                                            "hourValue":9,
                                            "minuteValue":35,
                                            "secondValue":12,
                                            "parentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "rootId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "reason":"Other",
                                            "comment":"Data Originator",
                                            "operationType":"CREATED",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":8,
                                            "eventInstanceNum":3,
                                            "targets":[
                                                "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5"
                                            ],
                                            "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                            "signedStatus":"NOT_APPLICABLE",
                                            "verifiedStatus":"NOT_APPLICABLE",
                                            "freezedStatus":"NOT_APPLICABLE",
                                            "propertyId":"93CC828113AC439181071CB44D2C6FE5",
                                            "propertyVersionStart":"3099-12-31T00:00:00.000Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "itemType":"TEXT",
                                            "itemD":"Pap",
                                            "itemF":"Pap",
                                            "itemR":"Pap",
                                            "repeatFormNumber":2,
                                            "innerRepeat":0,
                                            "outerRepeat":2,
                                            "sourceTimeStamp":"3099-12-31T00:00:00.000Z",
                                            "hdiId":"adc07a0f7d62da22eece277b96b22e4ab84484785cb812d849065e8a01474e49",
                                            "operation":"insert"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v1.0-studies-{studyId}-{mode}-ehrdata-put",
                "x-filename-id":"ec-dc-svc-rest-v1.0-studies-studyid-mode-ehrdata-put"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory_1",
                "parameters":[
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto130"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/dataelements":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form, with form associations if any.",
                "operationId":"saveFormAssociationsDataElement10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values and form associations to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq21"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto31"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Updates single data element with support for the fields <i>lockStatus</i> and <i>lockDateTime</i>. Supports the features of PUT operation of v9.0 of this API along with the additional fields <i>lockStatus</i> and <i>lockDateTime</i>.",
                "operationId":"updateSingleDataElementv10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto14"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto14"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"V10.0",
                "description":"Retrieves the history of given subject from a given study mode, with Study withdrawn and completion date in response.",
                "operationId":"getSubjectHistory_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "Subject History Response":{
                                        "description":"Subject History Response Example",
                                        "value":[
                                            {
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "withdrawalReason":"Protocol violation",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2025-10-17T14:30:31.892Z",
                                                "studyCompletionDate":"2025-10-20T14:30:31.892Z",
                                                "withdrawalComment":"Subject breached protocols",
                                                "screenFailureComment":"Failed initial screening",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "lockedStatus":"LOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2025-10-17T14:30:31.892Z",
                                                "screenFailureDate":"2025-09-10T14:30:31.892Z",
                                                "sourceTimeStamp":"2025-09-10T14:30:31.892Z",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "softwareVersionNumber":4,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2025-09-15T14:30:31.892Z",
                                                "objectVersionNumber":14,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "lastSigned":"2025-10-18T14:30:31.892Z",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "mhealthSubjectId":"F2A5C13B9D8E47E3914179A914EF6B60",
                                                "eventType":"Screened",
                                                "subjectTransferId":"D6CF65791C85479F8A9F932A9250CAA7",
                                                "id":"AABBCCDDEEFF11223344556677889900",
                                                "versionStart":"2025-09-01T14:30:31.892Z",
                                                "description":"Subject record details",
                                                "subjectNumber":"SUB-0001",
                                                "studyId":"12BBCCDDEEFF11223344556677889900",
                                                "siteId":"GGBBCCDDEEFF11223344556677889900",
                                                "dob":"1980-01-01T10:00:00Z",
                                                "screeningDate":"2025-08-10T10:00:00Z",
                                                "state":"COMPLETE",
                                                "stateDate":"2025-10-20T15:00:00Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-08-01T10:00:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Subject screened",
                                                "comment":"No additional comments",
                                                "studyVersion":"3.0.0.4",
                                                "visitStartDateLockedStatus":"UNLOCKED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"V10.0",
                "description":"Retrieve scheduled visit data for one or more subjects, filtered and sorted by sites, review status, state and other criteria. The response returns paginated scheduled and actual visit details for each subject.",
                "operationId":"getSubjectsVisitSchedule_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"Show all undo ScreenFail/Withdrawal/Completion visits. Default: true.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    },
                    {
                        "name":"view",
                        "in":"query",
                        "description":"Dynamic rendering view for the schedule (optional)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"dmView"
                    }
                ],
                "requestBody":{
                    "description":"Request object for subject visit schedules (see ExampleObject for structure and values)",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequestV3"
                            },
                            "examples":{
                                "Get Subjects Visit Schedule":{
                                    "description":"Get Subjects Visit Schedule",
                                    "value":{
                                        "sites":[
                                            "D3C9A4B5E6F78123456789ABCDEF1234",
                                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                                        ],
                                        "limit":25,
                                        "offset":0,
                                        "order":"asc",
                                        "reviewStatus":"ALL",
                                        "subjectStates":[
                                            "Active",
                                            "Complete"
                                        ],
                                        "exactSearchKeywords":[
                                            "1001"
                                        ],
                                        "containsSearchKeywords":[
                                            "100"
                                        ],
                                        "nextVisitOnly":false,
                                        "notStarted":false,
                                        "projectionTillDate":"16-Oct-2025",
                                        "safetyCaseStatus":"ALL",
                                        "dmViewReviewStatus":[
                                            "readytoverify"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectsVisitScheduleDto100"
                                },
                                "examples":{
                                    "Get Subjects Visit Schedule":{
                                        "description":"et Subjects Visit Schedule Response Example",
                                        "value":{
                                            "subject":{
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-0456",
                                                "replaceRand":"Y",
                                                "unResolvedQueries":3,
                                                "incompleteVisits":2,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":false,
                                                "withdrawalReason":"Adverse Event",
                                                "ehrLinkStatus":2,
                                                "withdrawalDate":"2025-11-04T10:15:22.123Z",
                                                "studyCompletionDate":"2025-12-15T19:45:00.000Z",
                                                "withdrawalComment":"Lost to follow-up",
                                                "screenFailureComment":"Incomplete consent",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.1.2.5",
                                                "lockedStatus":"LOCKED",
                                                "hasLockData":true,
                                                "lockedDateTime":"2025-11-05T08:25:00.000Z",
                                                "screenFailureDate":"2025-10-28T12:00:00.000Z",
                                                "sourceTimeStamp":"2025-11-05T14:00:00.000Z",
                                                "previousSubjectNumber":"SCR-0020",
                                                "softwareVersionNumber":7,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":"STUDY-0101-001",
                                                "subjectSiteSerialNumber":"SITE-0012-045",
                                                "versionEnd":"2025-11-06T09:12:00.000Z",
                                                "objectVersionNumber":17,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "lastSigned":"2025-11-05T12:00:00.000Z",
                                                "fromStudyId":"A1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"6F5D5F9311C591424F852B99FD902E98A",
                                                "mhealthSubjectId":"1234567890ABCDEF1234567890ABCDEF",
                                                "eventType":"Randomized",
                                                "subjectTransferId":"9F932A9250CAA7D6CF65791C85479F8A",
                                                "id":"AABBCCDDEEFF11223344556677889900",
                                                "versionStart":"2025-09-01T14:30:31.892Z",
                                                "description":"Subject record details",
                                                "subjectNumber":"SUB-0001",
                                                "studyId":"12BBCCDDEEFF11223344556677889900",
                                                "siteId":"GGBBCCDDEEFF11223344556677889900",
                                                "dob":"1980-01-01T10:00:00Z",
                                                "screeningDate":"2025-08-10T10:00:00Z",
                                                "state":"COMPLETE",
                                                "stateDate":"2025-10-20T15:00:00Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-08-01T10:00:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Subject screened",
                                                "comment":"No additional comments",
                                                "studyVersion":"3.0.0.4"
                                            },
                                            "visits":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                    "studyVersion":"3.0.0.1",
                                                    "visitStatus":"COMPLETE",
                                                    "reason":"Subject completed the visit successfully",
                                                    "comment":"All data verified",
                                                    "visitStartDate":"2023-01-01T09:00:00Z",
                                                    "visitType":"SCREENING",
                                                    "eventType":"Visit_Not_Started",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "repeatingFormCount":2,
                                                    "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                                    "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                                    "associatedStudyVersion":"3.0.0.1",
                                                    "visitAction":"SCREEN_ENABLE",
                                                    "lockedStatus":"NOT_APPLICABLE",
                                                    "visitStartDateLockedStatus":"UNLOCKED",
                                                    "lockedDateTime":"2023-01-01T09:00:00Z",
                                                    "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                    "visitWindowWarning":"NONE",
                                                    "doseHoldAction":"NONE",
                                                    "unResolvedQueries":0
                                                }
                                            ],
                                            "scheduledVisits":[
                                                {
                                                    "eventId":"BDF5A7800A954FA5B831E7B6B9CA39BC",
                                                    "title":"Baseline",
                                                    "scheduledWindowStartDate":"2025-11-03T08:00:00.000Z",
                                                    "scheduledDate":"2025-11-05T10:00:00.000Z",
                                                    "scheduledWindowEndDate":"2025-11-10T17:00:00.000Z",
                                                    "eventInstanceNum":1,
                                                    "cycleCount":1,
                                                    "visitAction":"SCREEN_ENABLE"
                                                }
                                            ],
                                            "crntStateStudyVrsn":"3.1.2.5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/subjects/{subjectId}/visitWindowInfo/{visitId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get visit window information"
                ],
                "summary":"V10.0",
                "description":"Returns visit window details for the specified subject and visit",
                "operationId":"getVisitWindow",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0A1B2C3D4E5F6A7B8C9D0E1F2A3B4C5D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BABA5F5A7F48455BAC61D2B9337C2F48"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F5B35F6A8B7C4ED6B0A63D2B9A7E227F"
                    },
                    {
                        "name":"requiredVisit",
                        "in":"query",
                        "description":"Flag indicating if only required visits should be included. Example: Y for required, N for all.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Y"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful response. Returns the visit window information for the specified subject and visit.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitWindowInfoDTO"
                                    }
                                },
                                "examples":{
                                    "VisitWindowInfoDTO List Example":{
                                        "description":"Example response containing visit window info.",
                                        "value":[
                                            {
                                                "eventId":"0A1B2C3D4E5F6A7B8C9D0E1F2A3B4C5D",
                                                "visitName":"Screening",
                                                "eventInstanceNum":1,
                                                "scheduledDate":"2025-11-05T10:00:00.000Z",
                                                "scheduledWindowStartDate":"2025-11-01T08:00:00.000Z",
                                                "scheduledWindowEndDate":"2025-11-10T17:00:00.000Z",
                                                "isSkipped":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-subjects-{subjectId}-visitWindowInfo-{visitId}-get",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-subjects-subjectid-visitwindowinfo-visitid-get"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_1",
                "parameters":[
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"This is to specify to return only the next visit else this would return future visits as well ",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"This is the site study version for which the visit schedule needs to be calculated",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"This is the site for which the subjects and there schedule needs to be computed",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If this is set then non started visits would be included in the response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse80"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse80":{
                                        "description":"SubjectVisitsStatusResponse80",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "visits":[
                                                    ],
                                                    "scheduledVisits":[
                                                    ],
                                                    "crntStateStudyVrsn":"3.0.0.1",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"VERIFIED",
                                                    "freezedStatus":"FROZEN",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "lockedStatus":"LOCKED",
                                                    "canBeCompleted":true,
                                                    "ehrLinkStatus":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"V10.0",
                "description":"Retrieves the list of visit statuses for a visit along with Locked status. If the event ID is null, then it lists all the visit statuses records for a subject along with Locked status.",
                "operationId":"getVisitsStatus_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto14"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto14List":{
                                        "description":"VisitsStatusDto14List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "objectVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "repeatingFormCount":2,
                                                "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                                "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                                "associatedStudyVersion":"3.0.0.1",
                                                "visitAction":"SCREEN_ENABLE",
                                                "lockedStatus":"NOT_APPLICABLE",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitWindowWarning":"NONE",
                                                "doseHoldAction":"ENABLE",
                                                "unResolvedQueries":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v10.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"V10.0",
                "description":"Updates the visit status for given ID. It supports unscheduled visits.",
                "operationId":"updateVisitsStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "objectVersionNumber":14,
                                        "eventInstanceNum":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatusRuleTargetsDto7"
                                },
                                "examples":{
                                    "VisitsStatusRuleTargetsDto7":{
                                        "description":"VisitsStatusRuleTargetsDto7",
                                        "value":{
                                            "visitStatusId":"53915DD9B758466AB2226CBCC4466B7E",
                                            "id":"53915DD9B758466AB2226CBCC4466B7E",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                            "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                            "studyVersion":"3.0.0.1",
                                            "visitStatus":"NEW",
                                            "reason":"Subject completed the visit successfully",
                                            "comment":"All data verified",
                                            "visitStartDate":"2023-01-01T09:00:00Z",
                                            "visitType":"SCREENING",
                                            "eventType":"Visit_Not_Started",
                                            "objectVersionNumber":14,
                                            "eventInstanceNum":1,
                                            "associatedStudyVersion":"3.0.0.1",
                                            "targets":[
                                                "53915DD9B758466AB2226CBCC4466B7E.A3915DD9B758466AB2226CBCC4466B7E"
                                            ],
                                            "visitAction":"SCREEN_ENABLE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v10.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v10.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory_2",
                "parameters":[
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto131"
                                    }
                                },
                                "examples":{
                                    "HistoryListV11":{
                                        "description":"HistoryListV11",
                                        "value":"[\n  {\n    \\\"id\\\": \\\"1BC29B36F5D64B1B95F4BDBBCEA481BE\\\",\n    \\\"studyId\\\": \\\"ABCDEF1234567890ABCDEF1234567890\\\",\n    \\\"studyVersion\\\": \\\"3.0.0.1\\\",\n    \\\"subjectId\\\": \\\"10F75668189F422F9A461A315D211111\\\",\n    \\\"eventId\\\": \\\"ADF5A7800A954FA5B831E7B6B9CA39A9\\\",\n    \\\"formId\\\": \\\"40DB4EF4847849CCB24EFCCB71CDA436\\\",\n    \\\"itemId\\\": \\\"DEADBEEFDEADBEEFDEADBEEFDEADBEEF\\\",\n    \\\"versionStart\\\": \\\"2023-01-01T09:00:00Z\\\",\n    \\\"validationStatus\\\": \\\"SUCCESS\\\",\n    \\\"value\\\": \\\"120\\\",\n    \\\"measureUnit\\\": \\\"mg/dL\\\",\n    \\\"numValue\\\": 120,\n    \\\"floatValue\\\": 12.34,\n    \\\"dateTimeValueUTC\\\": \\\"2023-01-01T09:00:00Z\\\",\n    \\\"eventInstanceNum\\\": 1,\n    \\\"lockedStatus\\\": \\\"UNLOCKED\\\",\n    \\\"lockedDateTime\\\": \\\"2023-01-02T09:00:00Z\\\"\n  }\n]"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/dataelements":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"V11.0",
                "description":"Creates multiple data elements for a subject for a particular visit and particular form, with form associations if any.",
                "operationId":"saveMultipleDataElement11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Create multiple data elements",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq2"
                            },
                            "examples":{
                                "CreateDataElementsRequest":{
                                    "description":"CreateDataElementsRequest",
                                    "value":{
                                        "context":{
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"10F75668189F422F9A461A315D211111",
                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                            "eventInstanceNum":1,
                                            "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "repeatSequenceNumber":1,
                                            "innerRepeat":1,
                                            "outerRepeat":1
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "value":"120"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto12"
                                    }
                                },
                                "examples":{
                                    "CreatedDataElements":{
                                        "description":"CreatedDataElements",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "screeningDate":"2023-10-18T07:48:52.000Z",
                                                "codeBreak":null,
                                                "userId":"1319D94CFF4240A7914FED42DFBE7988",
                                                "eventType":"Screened",
                                                "subjectTransferId":null,
                                                "objectVersionNumber":2,
                                                "mhealthSubjectId":null,
                                                "fromStudyId":null,
                                                "subjNumSiteOrgId":"AutomationStudyActive",
                                                "signedStatus":null,
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "lastSigned":null,
                                                "softwareVersionNumber":7,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":null,
                                                "subjectSiteSerialNumber":null,
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "previousSubjectNumber":null,
                                                "screenFailureDate":null,
                                                "id":"4F92A1C3D7B54E2F9A8C13D4F6B8E2A1",
                                                "versionStart":"2023-10-18T07:48:53.039Z",
                                                "description":null,
                                                "subjectNumber":"AutomationStudyActive4000",
                                                "studyId":"91AB23CD45EF67A8B9CD01EF23AB45CD",
                                                "siteId":"AABBCCDD11223344FFEEDDCCBBAA9988",
                                                "dob":null,
                                                "state":"Screening_Initiated",
                                                "stateDate":"2023-10-18T07:48:52000Z",
                                                "screeningFailure":null,
                                                "enrollmentFailure":null,
                                                "enrollmentOverride":null,
                                                "informedConsentDate":null,
                                                "gender":null,
                                                "reason":"",
                                                "comment":null,
                                                "studyVersion":"1.0.0.1",
                                                "sourceTimeStamp":null
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Updates a single data element to return the additional information of list of child data elements getting cleared with the update of the parent data element.",
                "operationId":"updateSingleDataElementv10_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call from Digital Gateway / Digital Gateway Builder isDgCall will true and Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto14"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto14"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"V11.0",
                "description":"Retrieves the history of given subject from a given study mode, with Study withdrawn and completion date in response.",
                "operationId":"getSubjectHistory11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto16"
                                    }
                                },
                                "examples":{
                                    "Subject History Response":{
                                        "description":"Subject History Response Example",
                                        "value":[
                                            {
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "withdrawalReason":"Protocol violation",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2025-10-17T14:30:31.892Z",
                                                "studyCompletionDate":"2025-10-20T14:30:31.892Z",
                                                "withdrawalComment":"Subject breached protocols",
                                                "screenFailureComment":"Failed initial screening",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "lockedStatus":"LOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2025-10-17T14:30:31.892Z",
                                                "screenFailureDate":"2025-09-10T14:30:31.892Z",
                                                "sourceTimeStamp":"2025-09-10T14:30:31.892Z",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "softwareVersionNumber":4,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2025-09-15T14:30:31.892Z",
                                                "objectVersionNumber":14,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "lastSigned":"2025-10-18T14:30:31.892Z",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "mhealthSubjectId":"F2A5C13B9D8E47E3914179A914EF6B60",
                                                "eventType":"Screened",
                                                "subjectTransferId":"D6CF65791C85479F8A9F932A9250CAA7",
                                                "id":"AABBCCDDEEFF11223344556677889900",
                                                "versionStart":"2025-09-01T14:30:31.892Z",
                                                "description":"Subject record details",
                                                "subjectNumber":"SUB-0001",
                                                "studyId":"12BBCCDDEEFF11223344556677889900",
                                                "siteId":"GGBBCCDDEEFF11223344556677889900",
                                                "dob":"1980-01-01T10:00:00Z",
                                                "screeningDate":"2025-08-10T10:00:00Z",
                                                "state":"COMPLETE",
                                                "stateDate":"2025-10-20T15:00:00Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-08-01T10:00:00Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Subject screened",
                                                "comment":"No additional comments",
                                                "studyVersion":"3.0.0.4",
                                                "visitStartDateLockedStatus":"UNLOCKED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"V11.0",
                "description":"Retrieve scheduled visit data for one or more subjects, filtered and sorted by sites, review status, state and other criteria. The response returns paginated scheduled and actual visit details for each subject.",
                "operationId":"getSubjectsVisitSchedule_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"Show all undo ScreenFail/Withdrawal/Completion visits. Default: true.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    },
                    {
                        "name":"view",
                        "in":"query",
                        "description":"Dynamic rendering view for the schedule (optional)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"dmView"
                    }
                ],
                "requestBody":{
                    "description":"Request object for subject visit schedules (see ExampleObject for structure and values)",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequestV3"
                            },
                            "examples":{
                                "Get Subjects Visit Schedule":{
                                    "description":"Get Subjects Visit Schedule",
                                    "value":{
                                        "sites":[
                                            "D3C9A4B5E6F78123456789ABCDEF1234",
                                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                                        ],
                                        "limit":25,
                                        "offset":0,
                                        "order":"asc",
                                        "reviewStatus":"ALL",
                                        "subjectStates":[
                                            "Active",
                                            "Complete"
                                        ],
                                        "exactSearchKeywords":[
                                            "1001"
                                        ],
                                        "containsSearchKeywords":[
                                            "100"
                                        ],
                                        "nextVisitOnly":false,
                                        "notStarted":false,
                                        "projectionTillDate":"16-Oct-2025",
                                        "safetyCaseStatus":"ALL",
                                        "dmViewReviewStatus":[
                                            "readytoverify"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectsVisitScheduleDto110"
                                },
                                "examples":{
                                    "Get Subjects Visit Schedule":{
                                        "description":"et Subjects Visit Schedule Response Example",
                                        "value":"{\n \"subject\":{\n \"screeningNumber\":\"SCR-0001\",\n \"randomizationNumber\":\"RND-0456\",\n \"replaceRand\":\"Y\",\n \"unResolvedQueries\":3,\n \"incompleteVisits\":2,\n \"canBeReplaced\":true,\n \"canBeUndoWithdrawn\":false,\n \"withdrawalReason\":\"Adverse Event\",\n \"ehrLinkStatus\":2,\n \"withdrawalDate\":\"2025-11-04T10:15:22.123Z\",\n \"studyCompletionDate\":\"2025-12-15T19:45:00.000Z\",\n \"withdrawalComment\":\"Lost to follow-up\",\n \"screenFailureComment\":\"Incomplete consent\",\n \"canBeCompleted\":true,\n \"lockedInStudyVersion\":\"3.1.2.5\",\n \"lockedStatus\":\"LOCKED\",\n \"hasLockData\":true,\n \"lockedDateTime\":\"2025-11-05T08:25:00.000Z\",\n \"screenFailureDate\":\"2025-10-28T12:00:00.000Z\",\n \"sourceTimeStamp\":\"2025-11-05T14:00:00.000Z\",\n \"previousSubjectNumber\":\"SCR-0020\",\n \"softwareVersionNumber\":7,\n \"operationType\":\"MODIFIED\",\n \"subjectStudySerialNumber\":\"STUDY-0101-001\",\n \"subjectSiteSerialNumber\":\"SITE-0012-045\",\n \"versionEnd\":\"2025-11-06T09:12:00.000Z\",\n \"objectVersionNumber\":17,\n \"signedStatus\":\"SIGNED\",\n \"verifiedStatus\":\"VERIFIED\",\n \"freezedStatus\":\"NOT_APPLICABLE\",\n \"lastSigned\":\"2025-11-05T12:00:00.000Z\",\n \"fromStudyId\":\"A1BC29B36F5D64B1B95F4BDBBCEA481BE\",\n \"subjNumSiteOrgId\":\"6F5D5F9311C591424F852B99FD902E98A\",\n \"mhealthSubjectId\":\"1234567890ABCDEF1234567890ABCDEF\",\n \"eventType\":\"Randomized\",\n \"subjectTransferId\":\"9F932A9250CAA7D6CF65791C85479F8A\",\n \"id\":\"AABBCCDDEEFF11223344556677889900\",\n \"versionStart\":\"2025-09-01T14:30:31.892Z\",\n \"description\":\"Subject record details\",\n \"subjectNumber\":\"SUB-0001\",\n \"studyId\":\"12BBCCDDEEFF11223344556677889900\",\n \"siteId\":\"GGBBCCDDEEFF11223344556677889900\",\n \"dob\":\"1980-01-01T10:00:00Z\",\n \"screeningDate\":\"2025-08-10T10:00:00Z\",\n \"state\":\"COMPLETE\",\n \"stateDate\":\"2025-10-20T15:00:00Z\",\n \"screeningFailure\":\"Inclusion criteria not met\",\n \"enrollmentFailure\":\"Consent withdrawn\",\n \"enrollmentOverride\":\"Subject Enrollment Overridden\",\n \"informedConsentDate\":\"2025-08-01T10:00:00Z\",\n \"gender\":[{\"value\":\"1\",\"label\":\"male\"}],\n \"codeBreak\":\"N\",\n \"reason\":\"Subject screened\",\n \"comment\":\"No additional comments\",\n \"studyVersion\":\"3.0.0.4\"\n },\n \"visits\":[\n {\n \"id\":\"1BC29B36F5D64B1B95F4BDBBCEA481BE\",\n \"versionStart\":\"2025-10-16T14:30:31.892Z\",\n \"subjectId\":\"B5969AC2FBA840438F9E0DB26A2DD33E\",\n \"eventId\":\"ADF5A7800A954FA5B831E7B6B9CA39A9\",\n \"siteId\":\"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D\",\n \"studyVersion\":\"3.0.0.1\",\n \"visitStatus\":\"COMPLETE\",\n \"reason\":\"Subject completed the visit successfully\",\n \"comment\":\"All data verified\",\n \"visitStartDate\":\"2023-01-01T09:00:00Z\",\n \"visitType\":\"SCREENING\",\n \"eventType\":\"Visit_Not_Started\",\n \"objectVersionNumber\":14,\n \"eventInstanceNum\":1,\n \"signedStatus\":\"SIGNED\",\n \"verifiedStatus\":\"NOT_APPLICABLE\",\n \"freezedStatus\":\"NOT_APPLICABLE\",\n \"repeatingFormCount\":2,\n \"scheduledWindowStartDate\":\"2025-10-16T14:30:31.892Z\",\n \"scheduledWindowEndDate\":\"2025-10-30T14:30:31.892Z\",\n \"associatedStudyVersion\":\"3.0.0.1\",\n \"visitAction\":\"SCREEN_ENABLE\",\n \"lockedStatus\":\"NOT_APPLICABLE\",\n \"visitStartDateLockedStatus\":\"UNLOCKED\",\n \"lockedDateTime\":\"2023-01-01T09:00:00Z\",\n \"visitStartDateLockedDateTime\":\"2023-01-01T09:00:00Z\",\n \"visitWindowWarning\":\"NONE\",\n \"doseHoldAction\":\"NONE\",\n \"unResolvedQueries\":0\n }\n ],\n \"scheduledVisits\":[\n {\n \"eventId\":\"BDF5A7800A954FA5B831E7B6B9CA39BC\",\n \"title\":\"Baseline\",\n \"scheduledWindowStartDate\":\"2025-11-03T08:00:00.000Z\",\n \"scheduledDate\":\"2025-11-05T10:00:00.000Z\",\n \"scheduledWindowEndDate\":\"2025-11-10T17:00:00.000Z\",\n \"eventInstanceNum\":1,\n \"cycleCount\":1,\n \"visitAction\":\"SCREEN_ENABLE\"\n }\n ],\n \"crntStateStudyVrsn\":\"3.1.2.5\"\n  \"enrollmentDate\": \"2026-03-01T08:33:19.000Z\"\n}"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_2",
                "parameters":[
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto90"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"V11.0",
                "description":"Retrieves the list of visit statuses for a visit along with Locked status. If the event ID is null, then it lists all the visit statuses records for a subject along with Locked status.",
                "operationId":"getVisitsStatus_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v11.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"V11.0",
                "description":"Updates the visit status for given ID. It supports unscheduled visits.",
                "operationId":"updateVisitsStatus_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"644DD1781DAA4427B499FBE998F16BCE",
                                        "versionStart":"2026-02-18T19:33:52.278Z",
                                        "subjectId":"C3A5B89160084718996AEF794F524EB4",
                                        "eventId":"018FA7309EF74E98AE843DA3A79734FB",
                                        "siteId":"E50BA964439C42C7B79C942E5ADF0615",
                                        "studyVersion":"2.0.0.6",
                                        "visitStatus":"INPROGRESS",
                                        "reason":"Transcription error",
                                        "comment":"",
                                        "operationType":"MODIFIED",
                                        "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                        "objectVersionNumber":4,
                                        "softwareVersionNumber":5,
                                        "visitStartDate":"2026-02-17T00:00:00.000Z",
                                        "visitType":"SCREENING",
                                        "eventType":null,
                                        "eventInstanceNum":null,
                                        "signedStatus":"NEVER_SIGNED",
                                        "verifiedStatus":null,
                                        "freezedStatus":null,
                                        "repeatingFormCount":null,
                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                        "scheduledWindowStartDate":null,
                                        "scheduledWindowEndDate":null,
                                        "associatedStudyVersion":"2.0.0.6",
                                        "visitAction":"SCREEN_DISABLE",
                                        "lockedStatus":null,
                                        "visitStartDateLockedStatus":null,
                                        "lockedDateTime":null,
                                        "visitStartDateLockedDateTime":null,
                                        "visitWindowWarning":null,
                                        "doseHoldAction":null,
                                        "designStudyVersion":null,
                                        "visitStartDateFreezeStatus":null,
                                        "visitStartDateVerifyStatus":null,
                                        "visitStartDateSignStatus":null,
                                        "unResolvedQueries":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitStatusRulesTargetWithSVFDto8"
                                },
                                "examples":{
                                    "VisitStatusRulesTargetWithSVFDto8":{
                                        "description":"VisitStatusRulesTargetWithSVFDto8",
                                        "value":{
                                            "id":"644DD1781DAA4427B499FBE998F16BCE",
                                            "versionStart":"2026-02-18T19:36:15.652Z",
                                            "subjectId":"C3A5B89160084718996AEF794F524EB4",
                                            "eventId":"018FA7309EF74E98AE843DA3A79734FB",
                                            "siteId":"E50BA964439C42C7B79C942E5ADF0615",
                                            "studyVersion":"2.0.0.6",
                                            "visitStatus":"INPROGRESS",
                                            "reason":"Transcription error",
                                            "comment":"",
                                            "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                            "objectVersionNumber":5,
                                            "visitStartDate":"2026-02-17T00:00:00.000Z",
                                            "visitType":"SCREENING",
                                            "eventType":"Visit_Date_Changed",
                                            "eventInstanceNum":null,
                                            "targets":[
                                            ],
                                            "associatedStudyVersion":"2.0.0.6",
                                            "visitAction":"SCREEN_DISABLE",
                                            "visitStartDateFreezeStatus":null,
                                            "visitStartDateVerifyStatus":null,
                                            "visitStartDateSignStatus":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v11.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v11.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"V12.0",
                "description":"Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistoryv12",
                "parameters":[
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto134"
                                    }
                                },
                                "examples":{
                                    "DataElementDto134":{
                                        "description":"DataElementDto134",
                                        "value":[
                                            {
                                                "id":"1EDFBFCEE96F43E6843F5B5954CDAD69",
                                                "versionStart":"2025-12-04T05:25:03.615Z",
                                                "transactionStart":null,
                                                "transactionEnd":null,
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":null,
                                                "studyId":"05AA035054104541AD9FA774ACAFA666",
                                                "studyName":"S3",
                                                "studyVersion":"2.3.0.33",
                                                "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                                "hdiId":"ZE29BB3D3DB749D9ACA61501065BD1F0",
                                                "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                                "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                                "formSectionId":null,
                                                "repeatSequenceNumber":null,
                                                "itemId":"01FC3AB647D84FC38E9AA86287D5E6EB",
                                                "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                                "variableId":null,
                                                "originatorId":null,
                                                "vendorCode":null,
                                                "value":"[{\"value\":\"3\",\"label\":\"Female\"}]",
                                                "measureUnit":null,
                                                "normalizedValue":null,
                                                "normalizedUnitId":null,
                                                "numValue":null,
                                                "floatValue":null,
                                                "dateTimeValueUTC":null,
                                                "monthValue":null,
                                                "dayValue":null,
                                                "yearValue":null,
                                                "hourValue":null,
                                                "minuteValue":null,
                                                "secondValue":null,
                                                "parentId":null,
                                                "rootId":null,
                                                "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                                "reason":null,
                                                "comment":null,
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":8,
                                                "eventInstanceNum":null,
                                                "targets":null,
                                                "dataFlag":null,
                                                "signedStatus":null,
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "propertyId":null,
                                                "propertyVersionStart":null,
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "itemType":"CHOICE",
                                                "itemD":"C46",
                                                "itemF":"Female",
                                                "itemR":"Female",
                                                "repeatFormNumber":null,
                                                "innerRepeat":null,
                                                "outerRepeat":null,
                                                "formStatus":"IN_PROGRESS",
                                                "sourceTimeStamp":null,
                                                "lockedStatus":null,
                                                "lockedDateTime":null,
                                                "visitStartDateLockedStatus":null,
                                                "visitStartDateLockedDateTime":null,
                                                "affidavitCodeValue":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/dataelements":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"V12.0",
                "description":"Creates multiple data elements for a subject for a particular visit and particular form, with form associations if any and also with file upload support. Returns form statuses in the response. .",
                "operationId":"saveMultipleDataElement12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Create multiple data elements",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq3"
                            },
                            "examples":{
                                "CreateDataElementsRequest":{
                                    "description":"CreateDataElementsRequest",
                                    "value":{
                                        "context":{
                                            "studyName":"S3",
                                            "studyVersion":"2.3.0.33",
                                            "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                            "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                            "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                            "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                            "eventInstanceNum":null
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"032648E246E6490380917FB0310A3614",
                                                "value":"[{\"value\":\"2\"}]"
                                            },
                                            {
                                                "itemId":"01FC3AB647D84FC38E9AA86287D5E6EB",
                                                "value":"[{\"value\":\"3\"}]"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto123"
                                    }
                                },
                                "examples":{
                                    "CreatedDataElements":{
                                        "description":"CreatedDataElements",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"B037665A702E42CCB972C7229FCB9250",
                                                        "versionStart":"2025-12-04T05:25:03.607Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"05AA035054104541AD9FA774ACAFA666",
                                                        "studyName":"S3",
                                                        "studyVersion":"2.3.0.33",
                                                        "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                                        "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                                        "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"032648E246E6490380917FB0310A3614",
                                                        "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"[{\"value\":\"2\",\"label\":\"African American\"}]",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"CHOICE",
                                                        "itemD":"C89",
                                                        "itemF":"African American",
                                                        "itemR":"African American",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    },
                                                    {
                                                        "id":"1EDFBFCEE96F43E6843F5B5954CDAD69",
                                                        "versionStart":"2025-12-04T05:25:03.615Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"05AA035054104541AD9FA774ACAFA666",
                                                        "studyName":"S3",
                                                        "studyVersion":"2.3.0.33",
                                                        "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                                        "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                                        "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"01FC3AB647D84FC38E9AA86287D5E6EB",
                                                        "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"[{\"value\":\"3\",\"label\":\"Female\"}]",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"CHOICE",
                                                        "itemD":"C46",
                                                        "itemF":"Female",
                                                        "itemR":"Female",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"V12.0",
                "description":"Updates a single data element to return the additional information of list of child data elements and labs getting cleared with the update of the parent data element.",
                "operationId":"updateSingleDataElementv12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call from Digital Gateway / Digital Gateway Builder isDgCall will true and Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto14"
                            },
                            "examples":{
                                "UpdateDataElementRequestV12":{
                                    "description":"UpdateDataElementRequestV12",
                                    "value":{
                                        "dataElement":{
                                            "id":"A1B2C3D4E5F60718293A4BC5D6E7F8A9",
                                            "versionStart":"2024-05-13T07:14:29.237Z",
                                            "transactionStart":null,
                                            "transactionEnd":null,
                                            "validationStatus":"SUCCESS",
                                            "validationFailure":null,
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "studyName":"DCS_AUT_ReportingStudy",
                                            "studyVersion":"1.1.0.5",
                                            "subjectId":"FFEEDDCCBBAA99887766554433221100",
                                            "eventId":"11223344556677889900AABBCCDDEEFF",
                                            "formId":"CAFEBABECAFEBABECAFEBABECAFEBABE",
                                            "formSectionId":null,
                                            "repeatSequenceNumber":null,
                                            "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                            "siteId":"00112233445566778899AABBCCDDEEFF",
                                            "variableId":null,
                                            "originatorId":null,
                                            "vendorCode":null,
                                            "value":"[{\"value\":\"2\"}]",
                                            "measureUnit":null,
                                            "normalizedValue":null,
                                            "normalizedUnitId":null,
                                            "numValue":null,
                                            "floatValue":null,
                                            "dateTimeValueUTC":null,
                                            "monthValue":null,
                                            "dayValue":null,
                                            "yearValue":null,
                                            "hourValue":null,
                                            "minuteValue":null,
                                            "secondValue":null,
                                            "parentId":null,
                                            "rootId":null,
                                            "userId":"33D0D74837F6454B836AAB5BA2574D96",
                                            "reason":"Change for encoding",
                                            "comment":"",
                                            "operationType":"CREATED",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":7,
                                            "eventInstanceNum":null,
                                            "targets":null,
                                            "dataFlag":null,
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "propertyId":null,
                                            "propertyVersionStart":null,
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "itemType":"CHOICE",
                                            "itemD":"1",
                                            "itemF":"Yes",
                                            "itemR":"Yes",
                                            "repeatFormNumber":null,
                                            "innerRepeat":null,
                                            "outerRepeat":null,
                                            "formStatus":null,
                                            "sourceTimeStamp":null,
                                            "lockedStatus":null,
                                            "lockedDateTime":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto14"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "id":"BD4BC3199A1347ECB2D836975AD365E8",
                                            "versionStart":"2024-05-19T06:01:24.059Z",
                                            "transactionStart":null,
                                            "transactionEnd":null,
                                            "validationStatus":"FAILED",
                                            "validationFailure":"Question type text is a required field",
                                            "studyId":"37CD3E72D4EC4AD2912502A7A806C9C6",
                                            "studyName":"DCS_AUT_ReportingStudy",
                                            "studyVersion":"1.1.0.5",
                                            "subjectId":"6F67E62A391A4C17B948CCC0A6C69EC1",
                                            "eventId":"8EF2873D2713499395C26D25A6431BED",
                                            "formId":"CEB4330EF3E34A808E2E199B6085F6CF",
                                            "formSectionId":null,
                                            "repeatSequenceNumber":null,
                                            "itemId":"EF93FFEB71554593B08867E1A1628778",
                                            "siteId":"E47F1E0DB6C44A22BC6299F4A7DA9C1C",
                                            "variableId":null,
                                            "originatorId":null,
                                            "vendorCode":null,
                                            "value":null,
                                            "measureUnit":null,
                                            "normalizedValue":null,
                                            "normalizedUnitId":null,
                                            "numValue":null,
                                            "floatValue":null,
                                            "dateTimeValueUTC":null,
                                            "monthValue":null,
                                            "dayValue":null,
                                            "yearValue":null,
                                            "hourValue":null,
                                            "minuteValue":null,
                                            "secondValue":null,
                                            "userId":"1319D94CFF4240A7914FED42DFBE7988",
                                            "reason":"Investigator Correction",
                                            "comment":"",
                                            "operationType":"MODIFIED",
                                            "objectVersionNumber":2,
                                            "eventInstanceNum":null,
                                            "targets":[
                                            ],
                                            "dataFlag":null,
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "propertyId":null,
                                            "propertyVersionStart":null,
                                            "repeatFormNumber":null,
                                            "innerRepeat":null,
                                            "outerRepeat":null,
                                            "lockedStatus":null,
                                            "lockedDateTime":null,
                                            "versionEnd":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto90"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"V12.0",
                "description":"Retrieves the list of visit statuses for a visit along with sign/verify/Freeze VSD Statuse.",
                "operationId":"getVisitsStatus_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                },
                                "examples":{
                                    "SDV Selection status of visit date and items":{
                                        "description":"SDV Selection status of visit date and items",
                                        "value":[
                                            {
                                                "reason":"Initial import.",
                                                "comment":"Imported via migration tool.",
                                                "operationType":"REMOVED",
                                                "id":"AABBCCDDEEFF00112233445566778899",
                                                "subjectId":"AABBCCDDEEFF00112233445566778899",
                                                "eventId":"D1AABBCCDDEEFF112233445566778899",
                                                "siteId":"BEEFAABBCCDDEEDDFF00112233445566",
                                                "studyVersion":"3.1.0.2",
                                                "visitStatus":"COMPLETED",
                                                "visitStartDate":"2025-10-02T08:45:00Z",
                                                "visitType":"SCREENING",
                                                "eventInstanceNum":1,
                                                "associatedStudyVersion":"3.1.0.2",
                                                "display":"Y",
                                                "leadingDataelementId":"EEDD00112233445566778899AABBCCDD",
                                                "dynamicAllCycles":"N",
                                                "visitWindowWarning":"Visit outside of permitted window.",
                                                "scheduledWindowStartDate":"2025-09-30T00:00:00Z",
                                                "scheduledWindowEndDate":"2025-10-05T23:59:59Z",
                                                "scheduledDate":"2025-10-02T09:00:00Z",
                                                "scheduledStartDate":"2025-10-02T00:00:00Z",
                                                "scheduledEndDate":"2025-10-03T23:59:59Z",
                                                "scheduledFromEventGUID":"EEDD00112233445566778899AABBCCDD",
                                                "repeatingFormCount":0,
                                                "signedStatus":"SIGNED",
                                                "lockedStatus":"UNLOCKED",
                                                "visitStartDateLockedStatus":"LOCKED",
                                                "lockedDateTime":"2025-10-02T12:00:00Z",
                                                "visitStartDateLockedDateTime":"2025-10-02T12:00:00Z",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"Freezed",
                                                "doseHoldAction":"ENABLE",
                                                "visitAction":"ENABLE",
                                                "designStudyVersion":"3.1.0.2",
                                                "visitStartDateFreezeStatus":"FROZEN",
                                                "visitStartDateVerifyStatus":"VERIFY",
                                                "visitStartDateSignStatus":"SIGNED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v12.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"V12.0",
                "description":"Updates the visit status record for the specified visit and returns the latest attributes including doseHoldAction that the client uses to decide whether the Dose Hold button remains visible.",
                "operationId":"updateVisitsStatus_3",
                "parameters":[
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    }
                },
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v12.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v12.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v13.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"V13.0",
                "description":"Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history. The response has clearedLabs and clearedChildDataElements detail as well. ",
                "operationId":"getDataElementAuditHistoryv13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto123"
                                    }
                                },
                                "examples":{
                                    "DataElementDto123":{
                                        "description":"DataElementDto123",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"B037665A702E42CCB972C7229FCB9250",
                                                        "versionStart":"2025-12-04T05:25:03.607Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"05AA035054104541AD9FA774ACAFA666",
                                                        "studyName":"S3",
                                                        "studyVersion":"2.3.0.33",
                                                        "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                                        "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                                        "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"032648E246E6490380917FB0310A3614",
                                                        "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"[{\"value\":\"2\",\"label\":\"African American\"}]",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"CHOICE",
                                                        "itemD":"C89",
                                                        "itemF":"African American",
                                                        "itemR":"African American",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    },
                                                    {
                                                        "id":"1EDFBFCEE96F43E6843F5B5954CDAD69",
                                                        "versionStart":"2025-12-04T05:25:03.615Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"05AA035054104541AD9FA774ACAFA666",
                                                        "studyName":"S3",
                                                        "studyVersion":"2.3.0.33",
                                                        "subjectId":"746C4D69E60E4AC0B4B569777C00C439",
                                                        "eventId":"DE29BB3D3DB749D9ACA61501065BD1F0",
                                                        "formId":"81F81DCDAC5E4AA8881F3576E659C520",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"01FC3AB647D84FC38E9AA86287D5E6EB",
                                                        "siteId":"104F07FB3E2F450AA5E4597C54B7DEDB",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"[{\"value\":\"3\",\"label\":\"Female\"}]",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D28",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"CHOICE",
                                                        "itemD":"C46",
                                                        "itemF":"Female",
                                                        "itemR":"Female",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v13.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v13.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v13.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V13.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.Now supports query param <i>cycleCountToDate</i> for filtering by scheduled date for cycles.",
                "operationId":"getVisitStatusForSubjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto90"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v13.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v13.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v14.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]:V14.0",
                "description":"Retries EHR link status of a subject with list of visits status and study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisitStatusForSubjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto100"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v14.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v14.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v15.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]:V15.0",
                "description":"Retrieves a list of visit status for subjects. Includes the visit action in subject scheduled visits.",
                "operationId":"getVisitStatusForSubjects_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto100"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v15.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v15.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v16.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"V16.0",
                "description":"Retrieves a list of visit status for subjects. Includes the visit action in subject scheduled visits.",
                "operationId":"getVisitStatusForSubjects_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"This is to specify to return only the next visit else this would return future visits as well ",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"This is the site study version for which the visit schedule needs to be calculated",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If this is set then non started visits would be included in the response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "description":"In case of future visits if this is specified it would include the cycles instances till this date.This is useful in case of infinite cycle count as default it returns only the next cycle visit",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    },
                    {
                        "name":"view",
                        "in":"query",
                        "description":"This can take value as dmview and is added for Data Management subject and visit listing page",
                        "schema":{
                            "type":"string"
                        },
                        "example":"default"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse12"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse12":{
                                        "description":"SubjectVisitsStatusResponse12",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "visits":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BF",
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "siteId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                            "studyVersion":"3.0.0.1",
                                                            "visitStatus":"COMPLETE",
                                                            "reason":"Subject completed the visit successfully",
                                                            "comment":"All data verified",
                                                            "visitStartDate":"2023-01-01T09:00:00Z",
                                                            "visitType":"SCREENING",
                                                            "eventType":"Visit_Not_Started",
                                                            "eventInstanceNum":1,
                                                            "repeatingFormCount":2,
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "unResolvedQueries":0,
                                                            "visitAction":"SCREEN_ENABLE",
                                                            "lockedStatus":"LOCKED",
                                                            "visitStartDateLockedStatus":"UNLOCKED",
                                                            "lockedDateTime":"2023-01-01T09:00:00Z",
                                                            "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                            "associatedStudyVersion":"3.0.0.1",
                                                            "visitWindowWarning":"NONE",
                                                            "doseHoldAction":"ENABLE",
                                                            "signedStatus":"SIGNED",
                                                            "verifiedStatus":"NOT_APPLICABLE",
                                                            "freezedStatus":"NOT_APPLICABLE"
                                                        }
                                                    ],
                                                    "scheduledVisits":[
                                                        {
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "title":"Baseline",
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledDate":"2025-10-12T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "eventInstanceNum":1,
                                                            "cycleCount":1,
                                                            "visitAction":"SCREEN_ENABLE"
                                                        }
                                                    ],
                                                    "crntStateStudyVrsn":"3.0.0.1",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "lockedStatus":"NOT_APPLICABLE",
                                                    "canBeCompleted":true,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":false,
                                                    "replaceRand":"Y",
                                                    "lockedInStudyVersion":"3.0.0.1",
                                                    "ehrLinkStatus":1,
                                                    "withdrawalDate":"2023-01-01T09:00:00Z",
                                                    "studyCompletionDate":"2023-01-01T09:00:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v16.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v16.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v17.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"V17.0",
                "description":"Retrieves a list of visit status for subjects. Includes the visit action in subject scheduled visits.",
                "operationId":"getVisitStatusForSubjects_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"This is to specify to return only the next visit else this would return future visits as well ",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If this is set then non started visits would be included in the response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "description":"In case of future visits if this is specified it would include the cycles instances till this date.This is useful in case of infinite cycle count as default it returns only the next cycle visit",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    },
                    {
                        "name":"view",
                        "in":"query",
                        "description":"This can take value as dmview and is added for Data Management subject and visit listing page",
                        "schema":{
                            "type":"string"
                        },
                        "example":"default"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse13"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse13":{
                                        "description":"SubjectVisitsStatusResponse13",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "visits":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BF",
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "siteId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                            "studyVersion":"3.0.0.1",
                                                            "visitStatus":"COMPLETE",
                                                            "reason":"Subject completed the visit successfully",
                                                            "comment":"All data verified",
                                                            "visitStartDate":"2023-01-01T09:00:00Z",
                                                            "visitType":"SCREENING",
                                                            "eventType":"Visit_Not_Started",
                                                            "eventInstanceNum":1,
                                                            "repeatingFormCount":2,
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "designStudyVersion":"3.0.0.1",
                                                            "unResolvedQueries":0,
                                                            "visitAction":"SCREEN_ENABLE",
                                                            "lockedStatus":"LOCKED",
                                                            "visitStartDateLockedStatus":"UNLOCKED",
                                                            "lockedDateTime":"2023-01-01T09:00:00Z",
                                                            "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                            "associatedStudyVersion":"3.0.0.1",
                                                            "visitWindowWarning":"NONE",
                                                            "doseHoldAction":"ENABLE",
                                                            "signedStatus":"SIGNED",
                                                            "verifiedStatus":"NOT_APPLICABLE",
                                                            "freezedStatus":"NOT_APPLICABLE"
                                                        }
                                                    ],
                                                    "scheduledVisits":[
                                                        {
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "title":"Baseline",
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledDate":"2025-10-12T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "eventInstanceNum":1,
                                                            "cycleCount":1,
                                                            "visitAction":"SCREEN_ENABLE"
                                                        }
                                                    ],
                                                    "crntStateStudyVrsn":"3.0.0.1",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "lockedStatus":"NOT_APPLICABLE",
                                                    "canBeCompleted":true,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":false,
                                                    "replaceRand":"Y",
                                                    "lockedInStudyVersion":"3.0.0.1",
                                                    "ehrLinkStatus":1,
                                                    "withdrawalDate":"2023-01-01T09:00:00Z",
                                                    "studyCompletionDate":"2023-01-01T09:00:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v17.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v17.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/codingstatus/codedItems":{
            "put":{
                "tags":[
                    "Data Capture/Coding Status/Update multiple coded data elements"
                ],
                "summary":"V2.0",
                "description":"Updates or inserts multiple coded data elements with value for a source data element and source value while also checking coding context",
                "operationId":"putDerivedItemsForCodedQuestions_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing coded derived item(s) to be inserted or updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodedDerrivedItemsRequest2"
                            },
                            "examples":{
                                "CodedDerrivedItemsRequest2":{
                                    "description":"Payload for CodedDerrivedItemsRequest2",
                                    "value":{
                                        "source_propertyId":"C2D20B70E856463EBC6C830C693D1B40",
                                        "source_value":"ALT",
                                        "coding_context":"{\"Route of Administration\":\"as\",\"Indication\":\"fer\"}",
                                        "codeValuesList":[
                                            {
                                                "coding_info_id":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                "item_id":"5B3B7E0ED4F24E30B5A3A44C5A896C90",
                                                "target_id":"F843B5478028498882E3AF11FEBA3F2A",
                                                "code_value":"R79.0"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success: Returns the coded derived items with original source and coding details.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodedDerrivedItemsResponse2"
                                },
                                "examples":{
                                    "ResponseExample":{
                                        "description":"CodedDerrivedItemsResponse2Example",
                                        "value":{
                                            "result":{
                                                "source_propertyId":"C2D20B70E856463EBC6C830C693D1B40",
                                                "source_value":"ALT",
                                                "coding_context":"{\"Route of Administration\":\"as\",\"Indication\":\"fer\"}",
                                                "codeValuesList":[
                                                    {
                                                        "coding_info_id":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                        "dataElement":{
                                                            "id":"FD726D1439144076A4DC2E0441192530",
                                                            "versionStart":"2022-09-05T09:04:06.061Z",
                                                            "transactionStart":"2023-01-05T09:04:06.061Z",
                                                            "transactionEnd":"2024-02-05T09:04:06.061Z",
                                                            "validationStatus":"SUCCESS",
                                                            "validationFailure":null,
                                                            "studyId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "studyName":"SignVerifyRegStudy",
                                                            "studyVersion":"1.1.0.2",
                                                            "subjectId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "eventId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "formId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "formSectionId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "repeatSequenceNumber":1,
                                                            "itemId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "siteId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "variableId":"7D1A5E8B0F894A9CA9F324D04B162F23",
                                                            "originatorId":"9F6D5E8B0F894A9CA9F324D04B162F23",
                                                            "vendorCode":"VEANDOR12",
                                                            "value":"System Organ Class Coded Once",
                                                            "measureUnit":"mg/dL",
                                                            "normalizedValue":120,
                                                            "normalizedUnitId":"7DRD5E8B0F894A9CA9F324D04B162F23",
                                                            "numValue":1,
                                                            "floatValue":1.2,
                                                            "dateTimeValueUTC":"2024-12-01T00:00:00Z",
                                                            "monthValue":11,
                                                            "dayValue":21,
                                                            "yearValue":2021,
                                                            "hourValue":12,
                                                            "minuteValue":25,
                                                            "secondValue":35,
                                                            "userId":"3A1A5E8B0F894A9CA9F324D04B162F23",
                                                            "reason":"Other",
                                                            "comment":"Coded value from Coding svc"
                                                        },
                                                        "source_propertyId":"C2D20B70E856463EBC6C830C693D1B40",
                                                        "source_value":"ALT"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-codingstatus-codedItems-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-codingstatus-codeditems-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/clear/{scope}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Clear data elements scope by study ID and mode"
                ],
                "summary":"[Deprecated]:V2.0",
                "description":"Clears the scope of data elements by study ID and mode. Return dynamic child which got cleared.",
                "operationId":"clearData_1",
                "parameters":[
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"Scope of the dataElement. Scope can be - ITEM or VSD .",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call is from Digital Gateway / Digital Gateway Builder, isDgCall set to true, Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "requestBody":{
                    "description":"DataElement value to clear",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearRequestDto"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-clear-{scope}-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-clear-scope-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/dataelements":{
            "delete":{
                "tags":[
                    "Data Capture/Data Elements/Delete data elements in a form within a visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Removes the data elements in a form within a given visit. This API supports tabular forms and is mainly used for both repeating forms and two-section forms.",
                "operationId":"deleteForm_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"ID of the Visit for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"ID of the form for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Form Repeat Sequence Number of the form for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    },
                    {
                        "name":"repeatFormNumber",
                        "in":"query",
                        "description":"Form Repeat Sequence Number of a two section form for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    },
                    {
                        "name":"formSectionId",
                        "in":"query",
                        "description":"Section ID of the repeating form inside the section form for which you want to delete data elements.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-dataelements-delete",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-dataelements-delete"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/{dataelementId}/{opeartionType}/childItems":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all elements required to be cleared to modify a data element"
                ],
                "summary":"V2.0",
                "description":"Retrieves all the child items, forms and visits required to be cleared in order to modify a given data element. The response also contains the eventInstanceNum fields of the child item.",
                "operationId":"getAllChildItemsGET_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"dataelementId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"906F37FB48E3421D899E1EBF885FF959"
                    },
                    {
                        "name":"opeartionType",
                        "in":"path",
                        "description":"Scope of the API is it clear/update",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"clear"
                    },
                    {
                        "name":"value",
                        "in":"query",
                        "description":"Values of the data element getting passed.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "value1",
                            "value2"
                        ]
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ChildItemDto2"
                                    }
                                },
                                "examples":{
                                    "ChildItemsV2":{
                                        "description":"ChildItemsV2",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "itemEligibleForClear":true,
                                                "childInFuture":false,
                                                "childIsHidden":false,
                                                "childIsLocked":false,
                                                "childIsFrozen":false,
                                                "childIsUnFrozen":false,
                                                "childIsReadOnly":false,
                                                "formAssociated":false,
                                                "isGrandParent":false,
                                                "childItems":[
                                                    {
                                                        "itemId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                        "formId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                        "eventInstanceNum":"1",
                                                        "eventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                        "type":"Question",
                                                        "title":"ChildLockedItem",
                                                        "branchVisit":null,
                                                        "visitTitle":"Screening",
                                                        "inFuture":null,
                                                        "isHidden":null,
                                                        "isReadOnly":null
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-{dataelementId}-{opeartionType}-childItems-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-dataelementid-opeartiontype-childitems-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records.",
                "operationId":"getDataElementAuditHistory2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/{dataelementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the current status of a data element"
                ],
                "summary":"V2.0",
                "description":"Retrieves the current status of a data element. Inactive record can also be fetched by passing the queryParam <i>includeInactiveRecords</i> value as true. The Api response contains additional fields like lockedStatus, lockedDateTime and repeatFormNumber for the dataElement.",
                "operationId":"getDataElementById_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"dataelementId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"906F37FB48E3421D899E1EBF885FF959"
                    },
                    {
                        "name":"includeInactiveRecords",
                        "in":"query",
                        "description":"If the value of includeInactiveRecords is true, then the latest record for the data element - if inactive, it will be fetched.",
                        "schema":{
                            "type":"string"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto100"
                                },
                                "examples":{
                                    "DataElementByIdV2":{
                                        "description":"DataElementByIdV2",
                                        "value":{
                                            "comment":"Adjusted value after review",
                                            "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                            "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                            "dayValue":15,
                                            "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                            "eventInstanceNum":1,
                                            "floatValue":118.75,
                                            "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "formSectionId":"3F1A9CBE12AF4D3B8D92A1F0C3E89F11",
                                            "freezedStatus":"NOT_APPLICABLE",
                                            "hourValue":9,
                                            "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "itemD":"118",
                                            "itemF":"118",
                                            "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                            "itemR":"118",
                                            "itemType":"NUMERIC",
                                            "lockedDateTime":"2023-01-01T09:00:00Z",
                                            "lockedStatus":"NEVER_LOCKED",
                                            "measureUnit":"mg/dL",
                                            "minuteValue":30,
                                            "monthValue":12,
                                            "normalizedUnitId":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                            "normalizedValue":"6.6",
                                            "numValue":118,
                                            "objectVersionNumber":1,
                                            "operationType":"MODIFIED",
                                            "originatorId":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                            "parentId":"11111111111111111111111111111111",
                                            "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "propertyVersionStart":"2023-01-01T09:00:00Z",
                                            "reason":"Correction",
                                            "repeatFormNumber":2,
                                            "repeatSequenceNumber":1,
                                            "rootId":"22222222222222222222222222222222",
                                            "secondValue":45,
                                            "signedStatus":"SIGNED",
                                            "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                            "softwareVersionNumber":8,
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "studyName":"Diabetes Study",
                                            "studyVersion":"3.0.0.1",
                                            "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                            "transactionEnd":"2023-01-01T10:00:00Z",
                                            "transactionStart":"2023-01-01T09:00:00Z",
                                            "validationFailure":"",
                                            "validationStatus":"SUCCESS",
                                            "value":"118",
                                            "variableId":"9C22A1FFE5B8410E92BB4F713A1C88D2",
                                            "vendorCode":"ACME",
                                            "verifiedStatus":"VERIFIED",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "yearValue":2023
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-{dataelementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, it returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/forms/{formId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements based on subject, visit, and form"
                ],
                "summary":"V2.0",
                "description":"Filters and retrieves a subject's data elements for a form or for a form-visit combination. The response also contains additional fields like dataFlag, eventInstanceNum and objectVersionNumber.",
                "operationId":"getDataElementsByFormId2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D803C898CCC6499693FE3D8D70FAF303"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementsByFormV2":{
                                        "description":"DataElementsByFormV2",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyId":"BBCDEF1234567890ABCDEF1234567890",
                                                "studyVersion":"3.0.0.1",
                                                "studyName":"Diabetes Study",
                                                "subjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "eventId":"DBCDEF1234567890ABCDEF1234567890",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"3F1A9CBE12AF4D3B8D92A1F0C3E89F11",
                                                "itemId":"7AB2C4D19F3E4A88B5D1C9AE22F67B44",
                                                "variableId":"9C22A1FFE5B8410E92BB4F713A1C88D2",
                                                "value":"118",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "repeatSequenceNumber":1,
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "vendorCode":"ACME",
                                                "originatorId":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                                "reason":"Correction",
                                                "comment":"Adjusted value after review",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "objectVersionNumber":1,
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"Value out of range",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-forms-{formId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-forms-formid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the data element for a subject for a form and a site"
                ],
                "summary":"V2.0",
                "description":"Retrieves data elements based on the form ID and site ID. The response does not contains validationRules details.",
                "operationId":"getDataElementsBySiteFormIDSubjectId2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"05637D551590402DAD3356F8C4DF0A4B"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C5EDB9AEDFE5401F9EE8002FBC5CC59A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementsBySiteFormSubjectV2":{
                                        "description":"DataElementsBySiteFormSubjectV2",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyId":"BBCDEF1234567890ABCDEF1234567890",
                                                "studyVersion":"3.0.0.1",
                                                "studyName":"Diabetes Study",
                                                "subjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "eventId":"DBCDEF1234567890ABCDEF1234567890",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"3F1A9CBE12AF4D3B8D92A1F0C3E89F11",
                                                "itemId":"7AB2C4D19F3E4A88B5D1C9AE22F67B44",
                                                "variableId":"9C22A1FFE5B8410E92BB4F713A1C88D2",
                                                "value":"118",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "repeatSequenceNumber":1,
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "vendorCode":"ACME",
                                                "originatorId":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                                "reason":"Correction",
                                                "comment":"Adjusted value after review",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "objectVersionNumber":1,
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"Value out of range",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-sites-siteid-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Filters and retrieves data elements in a study ID, for a subject and visit or for all subjects or all visits.",
                "operationId":"getDataElementsByStudyId_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/all":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements history with pagination"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves all data elements with history for a subject and a visit or for all subjects and all of their visits, with the possibility of using pagination.",
                "operationId":"getDataElementsByStudyId_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unscheduled visit instance.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"includeSVI",
                        "in":"query",
                        "description":"includeSVI",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto10"
                                    }
                                },
                                "examples":{
                                    "PaginatedDataElementsV2":{
                                        "description":"PaginatedDataElementsV2",
                                        "value":{
                                            "limit":10,
                                            "offset":0,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "resultData":[
                                                {
                                                    "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                    "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                    "eventInstanceNum":1,
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-all-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-all-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the data elements for a list of comma separated item IDs.",
                "operationId":"getDataElementsBySubjectIdItemIds_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from Designer.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                },
                                "examples":{
                                    "FormAssociationsDataElementsV2":{
                                        "description":"FormAssociationsDataElementsV2",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/formassociations":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements with form associations"
                ],
                "summary":"V2.0",
                "description":"Retrieves data elements along with form associations. Supports section forms. ",
                "operationId":"getDataElementsWithFormAssociations_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C5EDB9AEDFE5401F9EE8002FBC5CC59A"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D803C898CCC6499693FE3D8D70FAF303"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementsFormAssociationsDto2"
                                },
                                "examples":{
                                    "GetDataElementsWithFormAssociationsV2":{
                                        "description":"GetDataElementsWithFormAssociationsV2",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"08E4A01174164BA6A7FC5B61B1123764",
                                                        "versionStart":"2021-12-24T07:11:34.151Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                        "studyName":"SignVerifyRegStudyCopied",
                                                        "studyVersion":"1.1.0.4",
                                                        "subjectId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                        "eventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                        "formId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                        "siteId":"F6A7B8C9D0E16123F20011A2B3C4D5E6",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"Sub19",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"A7B8C9D0E1F26123A211A2B3C4D5E6F7",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"VERIFIED",
                                                        "freezedStatus":"FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"Sub19",
                                                        "itemR":"Sub19",
                                                        "repeatFormNumber":null
                                                    }
                                                ],
                                                "formsAssociations":[
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-formassociations-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-formassociations-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data element records for a subject and date range"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the data elements updated or inserted in a given date range for a subject.",
                "operationId":"getDatatElementsForChngEvntInRangeBySubjectId_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto"
                                    }
                                },
                                "examples":{
                                    "FormAssociationsDataElementsV2":{
                                        "description":"FormAssociationsDataElementsV2",
                                        "value":{
                                            "dataElements":[
                                                {
                                                    "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                    "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                    "eventInstanceNum":1,
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                                                }
                                            ],
                                            "formsAssociations":[
                                                {
                                                    "srcFormId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "targetFormId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                    "associationType":"COPY",
                                                    "srcRepeatSequenceNumber":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-subjectId-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-subjectid-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get deleted data elements"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of data elements which are deleted mainly used for Repeating Forms. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDeletedItemsForAVisit_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"ID of the Visit for which you want to delete data elements.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Instance of the visit for which you want to delete data elements.",
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DeletedItemsResponseV2":{
                                        "description":"DeletedItemsResponseV2",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "reason":"Deleted by user",
                                                "comment":"Testing delete",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/form/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the deleted data elements in a form"
                ],
                "summary":"V2.0",
                "description":"Retrieves the list of data elements which are deleted, mainly used for Repeating Forms. Up-versioned to return <i>documentId</i>, <i>documentVersion</i> for File-Upload type data elements in the response.",
                "operationId":"getDeletedItemsForAVisit2_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto123"
                                    }
                                },
                                "examples":{
                                    "DataElementDto123":{
                                        "description":"DataElementDto123",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"A1B2C3D4E5F64789AABBCCDDEEFF0011",
                                                    "versionStart":"2025-10-09T20:26:40.683Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"11AA22BB33CC44DD55EE66FF77889900",
                                                    "studyName":"DCS_FormStatus",
                                                    "studyVersion":"1.14.0.16",
                                                    "subjectId":"8899AABBCCDDEEFF0011223344556677",
                                                    "eventId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "formId":"55EE44DD33CC22BB11AA0099FFEEDCBA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"CAFEBABE1234567890ABCDEF12345678",
                                                    "siteId":"00112233445566778899AABBCCDDEEFF",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"name",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"TEXT",
                                                    "itemD":null,
                                                    "itemF":"name",
                                                    "itemR":"name",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "formStatus":null,
                                                    "sourceTimeStamp":null,
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "hdiId":null,
                                                    "documentId":null,
                                                    "documentVersion":null,
                                                    "validationRules":null,
                                                    "clearedLabs":null,
                                                    "clearedChildDataElements":null,
                                                    "dataEventType":null,
                                                    "affidavitCodeValue":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                },
                                                {
                                                    "id":"FEEDFACE0123456789ABCDEF01234567",
                                                    "versionStart":"2025-10-09T20:26:41.604Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"11AA22BB33CC44DD55EE66FF77889900",
                                                    "studyName":"DCS_FormStatus",
                                                    "studyVersion":"1.14.0.16",
                                                    "subjectId":"8899AABBCCDDEEFF0011223344556677",
                                                    "eventId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "formId":"55EE44DD33CC22BB11AA0099FFEEDCBA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"BADA55EEFF00112233445566778899AA",
                                                    "siteId":"00112233445566778899AABBCCDDEEFF",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"[{\"value\":\"2\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"00000000000000000000000000000003",
                                                    "reason":"Other",
                                                    "comment":"Rule execution",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"2",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "formStatus":null,
                                                    "sourceTimeStamp":null,
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "hdiId":null,
                                                    "documentId":null,
                                                    "documentVersion":null,
                                                    "validationRules":null,
                                                    "clearedLabs":null,
                                                    "clearedChildDataElements":null,
                                                    "dataEventType":null,
                                                    "affidavitCodeValue":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-form-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-form-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/formassociations/history/sourceForm/{sourceFormId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get audit history for a form association"
                ],
                "summary":"V2.0",
                "description":"Retrieves the audit history for a form association. The api response has additional fields like userId, versionStart, versionEnd, objectVersionNumber and softwareVersionNumber.",
                "operationId":"getFormAssociationsHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C5EDB9AEDFE5401F9EE8002FBC5CC59A"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D803C898CCC6499693FE3D8D70FAF303"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sourceRepeatFormNumber",
                        "in":"query",
                        "description":"Repeat Form Number of Source Form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sourceRepeatSequenceNumber",
                        "in":"query",
                        "description":"Repeat Sequence Number of Source Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"associatedFormId",
                        "in":"query",
                        "description":"ID of the Associated Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"sourceFormId",
                        "in":"path",
                        "description":"ID of the Source Form. The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormsAssociationsHistoryDto2"
                                    }
                                },
                                "examples":{
                                    "FormAssociationsHistoryV2":{
                                        "description":"FormAssociationsHistoryV2",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"1AF377704A3346918CAF905F15FC7CEF",
                                                    "versionStart":"2023-06-08T08:23:52.642Z",
                                                    "objectVersionNumber":2,
                                                    "subjectId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "siteId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                    "srcEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "srcEventInstanceNum":1,
                                                    "srcFormId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                                    "srcRepeatSequenceNumber":null,
                                                    "srcStudyVersion":"4.0.0.6",
                                                    "associatedEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "associatedEventInstanceNum":1,
                                                    "associatedFormId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                    "associatedRepeatSequenceNumber":1,
                                                    "associatedStudyVersion":"4.0.0.6",
                                                    "reason":"Cleared - Dynamic hidden",
                                                    "comment":null,
                                                    "srcItemId":"F6A7B8C9D0E16123F20011A2B3C4D5E6",
                                                    "operationType":"REMOVED",
                                                    "userId":"A7B8C9D0E1F26123A211A2B3C4D5E6F7",
                                                    "versionEnd":"2023-06-08T08:23:52.642Z",
                                                    "softwareVersionNumber":7,
                                                    "srcFormSectionId":null,
                                                    "associatedFormSectionId":null,
                                                    "srcRepeatFormNumber":1,
                                                    "associatedRepeatFormNumber":null
                                                },
                                                {
                                                    "id":"1AF377704A3346918CAF905F15FC7CEF",
                                                    "versionStart":"2023-06-08T08:20:47.960Z",
                                                    "objectVersionNumber":1,
                                                    "subjectId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "siteId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                    "srcEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "srcEventInstanceNum":1,
                                                    "srcFormId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                                    "srcRepeatSequenceNumber":null,
                                                    "srcStudyVersion":"4.0.0.6",
                                                    "associatedEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "associatedEventInstanceNum":1,
                                                    "associatedFormId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                    "associatedRepeatSequenceNumber":1,
                                                    "associatedStudyVersion":"4.0.0.6",
                                                    "reason":null,
                                                    "comment":null,
                                                    "srcItemId":"F6A7B8C9D0E16123F20011A2B3C4D5E6",
                                                    "operationType":"CREATED",
                                                    "userId":"A7B8C9D0E1F26123A211A2B3C4D5E6F7",
                                                    "versionEnd":"2023-06-08T08:23:52.641Z",
                                                    "softwareVersionNumber":7,
                                                    "srcFormSectionId":null,
                                                    "associatedFormSectionId":null,
                                                    "srcRepeatFormNumber":1,
                                                    "associatedRepeatFormNumber":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-formassociations-history-sourceForm-{sourceFormId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-formassociations-history-sourceform-sourceformid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for multiple items"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves multiple data elements for multiple requested items.",
                "operationId":"getMultiDataElements_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"visits status details",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleDataElementsRequestDto20"
                            },
                            "examples":{
                                "MultipleDataElementsRequestDto20":{
                                    "description":"MultipleDataElementsRequestDto20",
                                    "value":{
                                        "dataElementDetails":[
                                            {
                                                "subjectId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "eventId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventInstanceNum":1,
                                                "formId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "itemIds":[
                                                    "DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto8"
                                    }
                                },
                                "examples":{
                                    "MultipleDataElementsResponseV2":{
                                        "description":"MultipleDataElementsResponseV2",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "value":"13.5"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/visitdata":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by subject and event ID"
                ],
                "summary":"[Deprecated]:V2.0",
                "description":"Retrieves data elements by subject and event ID for a given study and mode.",
                "operationId":"getVisitData_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C5EDB9AEDFE5401F9EE8002FBC5CC59A"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D803C898CCC6499693FE3D8D70FAF303"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDataDto20"
                                },
                                "examples":{
                                    "VisitDataV2":{
                                        "description":"VisitDataV2",
                                        "value":{
                                            "dataElements":[
                                                {
                                                    "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                    "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                    "eventInstanceNum":1,
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                                                }
                                            ],
                                            "formsAssociations":[
                                            ],
                                            "forms":[
                                            ],
                                            "labAssociations":{
                                            },
                                            "visit":{
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-visitdata-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-visitdata-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Updates a single data element. This API supports concurrent update.",
                "operationId":"mergeSingleDataElement_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequest20"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto20"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/formassociations":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements in a form with form associations"
                ],
                "summary":"V2.0",
                "description":"Creates multiple data elements in a particular form with form associations, within a visit for a given subject. The response object also contains innerRepeat, outerRepeat and repeatFormNumber",
                "operationId":"saveFormAssociationsDataElement_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq2"
                            },
                            "examples":{
                                "DataElementFormAssociationsReq2":{
                                    "description":"DataElementFormAssociationsReq2",
                                    "value":{
                                        "context":{
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"10F75668189F422F9A461A315D211111",
                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                            "eventInstanceNum":1,
                                            "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "repeatSequenceNumber":1,
                                            "innerRepeat":1,
                                            "outerRepeat":1
                                        },
                                        "formsAssociations":[
                                            {
                                                "associatedEventId":"4EADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "associatedEventInstanceNum":"1",
                                                "associatedFormId":"5EADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "associatedFormSectionId":"9EADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "associatedRepeatFormNumber":"1",
                                                "associatedRepeatSequenceNumber":"1",
                                                "associatedStudyVersion":"1.0.0.0",
                                                "srcItemId":"1EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                "srcFormSectionId":"2EE1A44C3CCB47FBA11D2EC1939B2A77"
                                            }
                                        ],
                                        "dataElements":[
                                            {
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "value":"120"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto3"
                                    }
                                },
                                "examples":{
                                    "SaveFormAssociationsResponseV2":{
                                        "description":"SaveFormAssociationsResponseV2",
                                        "value":{
                                            "dataElements":[
                                                {
                                                    "comment":"Adjusted value",
                                                    "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                    "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                    "dayValue":15,
                                                    "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                    "eventInstanceNum":1,
                                                    "floatValue":118.75,
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "formSectionId":"3F1A9CBE12AF4D3B8D92A1F0C3E89F11",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "hourValue":9,
                                                    "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "innerRepeat":1,
                                                    "itemD":"118",
                                                    "itemF":"118",
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "itemR":"118",
                                                    "itemType":"NUMERIC",
                                                    "measureUnit":"mg/dL",
                                                    "minuteValue":30,
                                                    "monthValue":12,
                                                    "normalizedUnitId":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                    "normalizedValue":"6.6",
                                                    "numValue":118,
                                                    "objectVersionNumber":1,
                                                    "operationType":"CREATED",
                                                    "originatorId":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                                    "outerRepeat":1,
                                                    "parentId":"11111111111111111111111111111111",
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                    "reason":"Correction",
                                                    "repeatFormNumber":2,
                                                    "repeatSequenceNumber":1,
                                                    "rootId":"22222222222222222222222222222222",
                                                    "secondValue":45,
                                                    "signedStatus":"SIGNED",
                                                    "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "softwareVersionNumber":8,
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"Diabetes Study",
                                                    "studyVersion":"3.0.0.1",
                                                    "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                    "transactionEnd":"2023-01-01T10:00:00Z",
                                                    "transactionStart":"2023-01-01T09:00:00Z",
                                                    "validationFailure":"",
                                                    "validationStatus":"SUCCESS",
                                                    "value":"118",
                                                    "variableId":"9C22A1FFE5B8410E92BB4F713A1C88D2",
                                                    "vendorCode":"ACME",
                                                    "verifiedStatus":"VERIFIED",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "versionStart":"2023-01-01T09:00:00Z",
                                                    "yearValue":2023
                                                }
                                            ],
                                            "formsAssociations":[
                                                {
                                                    "associatedEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "associatedEventInstanceNum":1,
                                                    "associatedFormId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                    "associatedRepeatSequenceNumber":1,
                                                    "associatedStudyVersion":"4.0.0.6",
                                                    "comment":"",
                                                    "id":"1AF377704A3346918CAF905F15FC7CEF",
                                                    "objectVersionNumber":1,
                                                    "reason":"Association created",
                                                    "siteId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                    "srcEventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                    "srcEventInstanceNum":1,
                                                    "srcFormId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                                    "srcItemId":"F6A7B8C9D0E16123F20011A2B3C4D5E6",
                                                    "srcRepeatSequenceNumber":1,
                                                    "srcStudyVersion":"4.0.0.6",
                                                    "subjectId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "versionStart":"2023-06-08T08:20:47.960Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-formassociations-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-formassociations-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/multirepeatingform":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for repeating form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Creates multiple data elements in a repeating form for a particular subject, visit and form. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"saveMultipleRepeatingFormsDataElement_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRepeatingFormsReq2"
                            },
                            "examples":{
                                "DataElementRepeatingFormsReq2":{
                                    "description":"DataElementRepeatingFormsReq2",
                                    "value":{
                                        "context":{
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "eventId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                            "formId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                            "studyVersion":"1.0.0.2",
                                            "eventInstanceNum":1,
                                            "repeatSequenceNumber":1
                                        },
                                        "repeatingForms":[
                                            {
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "dataElements":[
                                                    {
                                                        "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                        "value":"13.5",
                                                        "measureUnit":"g/dL",
                                                        "numValue":13,
                                                        "floatValue":13.5,
                                                        "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                        "monthValue":1,
                                                        "dayValue":1,
                                                        "yearValue":2023,
                                                        "hourValue":9,
                                                        "minuteValue":0,
                                                        "secondValue":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DataElementListV2":{
                                        "description":"DataElementListV2",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "targets":[
                                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-multirepeatingform-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-multirepeatingform-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/subject/{subjectId}/event/{eventId}/form/{formId}/formassociations":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update multiple data elements for a given form, event and subject"
                ],
                "summary":"V2.0",
                "description":"Updates form associations, if any, for a given form, event and subject. Deletes all associations for the data element if request is empty. The response contains additional fields like associatedFormSectionId, associatedRepeatFormNumber and srcRepeatFormNumber.",
                "operationId":"updateFormAssociations_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatSequenceNum",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":2
                    },
                    {
                        "name":"repeatFormNum",
                        "in":"query",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "description":"Form associations to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormAssociationsUpdateDto2"
                            },
                            "examples":{
                                "FormAssociationsUpdateDto2":{
                                    "description":"FormAssociationsUpdateDto2",
                                    "value":{
                                        "reason":"Change for encoding",
                                        "comment":"",
                                        "formsAssociations":[
                                            {
                                                "associatedEventId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                "associatedEventInstanceNum":null,
                                                "associatedFormId":"B2C3D4E5F64123A7B8C9D0E1F2001122",
                                                "associatedRepeatSequenceNumber":1,
                                                "associatedRepeatFormNumber":null,
                                                "associatedFormSectionId":null,
                                                "associatedStudyVersion":"4.0.0.5",
                                                "srcItemId":"C3D4E5F64123A7B8C9D0E1F200112233",
                                                "siteId":"D4E5F64123A7B8C9D0E1F20011223344",
                                                "srcStudyVersion":"4.0.0.5"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormAssociationsUpdateRespDto2"
                                    }
                                },
                                "examples":{
                                    "FormAssociationsUpdateRespV2":{
                                        "description":"FormAssociationsUpdateRespV2",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "formsAssociations":[
                                                    {
                                                        "id":"3A6984E84F0042CDA0CAF4DC053E3FB4",
                                                        "versionStart":"2023-02-14T11:15:13.137Z",
                                                        "objectVersionNumber":1,
                                                        "subjectId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                        "siteId":"B2C3D4E5F64123A7B8C9D0E1F2001122",
                                                        "srcEventId":"C3D4E5F64123A7B8C9D0E1F200112233",
                                                        "srcEventInstanceNum":null,
                                                        "srcFormId":"D4E5F64123A7B8C9D0E1F20011223344",
                                                        "srcRepeatSequenceNumber":3,
                                                        "srcStudyVersion":"4.0.0.5",
                                                        "associatedEventId":"C3D4E5F64123A7B8C9D0E1F200112233",
                                                        "associatedEventInstanceNum":null,
                                                        "associatedFormId":"E5F64123A7B8C9D0E1F2001122334455",
                                                        "associatedRepeatSequenceNumber":1,
                                                        "associatedStudyVersion":"4.0.0.5",
                                                        "reason":"Change for encoding",
                                                        "comment":"",
                                                        "srcItemId":"F64123A7B8C9D0E1F200112233445566",
                                                        "srcFormSectionId":null,
                                                        "associatedFormSectionId":null,
                                                        "associatedRepeatFormNumber":null,
                                                        "srcRepeatFormNumber":1
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-subject-{subjectId}-event-{eventId}-form-{formId}-formassociations-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-subject-subjectid-event-eventid-form-formid-formassociations-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/labnormals":{
            "put":{
                "tags":[
                    "Data Capture/Lab/Update lab normals for a subject"
                ],
                "summary":"V2.0",
                "description":"Updates lab normals for a subject for a particular visit and particular form. The response does not include targets and the lab details.",
                "operationId":"updateLabPropertyData_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabUpdateRequestDto"
                            },
                            "examples":{
                                "LabNormalsUpdateRequestV2":{
                                    "description":"LabNormalsUpdateRequestV2",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                        "siteId":"699EF3745FC545589F186D2198F3C65E",
                                        "studyVersion":"1.0.0.3",
                                        "eventId":"799EF3745FC545589F186D2198F3C65E",
                                        "eventInstanceNum":1,
                                        "formId":"899EF3745FC545589F186D2198F3C65E",
                                        "labId":"999EF3745FC545589F186D2198F3C65E",
                                        "reason":"Correction",
                                        "comment":"Updated lab normal based on new measurement",
                                        "outerRepeat":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseDto2"
                                },
                                "examples":{
                                    "LabNormalsUpdateResponseV2":{
                                        "description":"LabNormalsUpdateResponseV2",
                                        "value":{
                                            "labnormalsStatus":[
                                                "GENDER_MISSING"
                                            ],
                                            "items":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionEnd":"2025-10-16T14:35:00.000Z",
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"STUDY-ABC",
                                                    "studyVersion":"1.0.0.3",
                                                    "subjectId":"10F75668189F422F9A461A315D211111",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formId":"BDF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "vendorCode":"VENDOR1",
                                                    "value":"13.5",
                                                    "measureUnit":"g/dL",
                                                    "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "numValue":13,
                                                    "floatValue":13.5,
                                                    "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                    "monthValue":10,
                                                    "dayValue":16,
                                                    "yearValue":2025,
                                                    "hourValue":14,
                                                    "minuteValue":30,
                                                    "secondValue":31,
                                                    "reason":"Initial entry",
                                                    "comment":"Captured by device",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "operationType":"MODIFIED",
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                    "versionEnd":"2025-10-16T15:30:31.892Z",
                                                    "softwareVersionNumber":14,
                                                    "itemType":"TEXT",
                                                    "itemD":"DETAIL",
                                                    "itemF":"FLAG",
                                                    "itemR":"REASON",
                                                    "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                    "repeatFormNumber":2,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-labnormals-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-labnormals-put"
            },
            "post":{
                "tags":[
                    "Data Capture/Lab/Create lab for a subject"
                ],
                "summary":"V2.0",
                "description":"Creates lab data elements for a subject for a particular visit and particular form.",
                "operationId":"saveLabPropertyData_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabRequestDto"
                            },
                            "examples":{
                                "LabNormalsSaveRequestV2":{
                                    "description":"LabNormalsSaveRequestV2",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                        "siteId":"699EF3745FC545589F186D2198F3C65E",
                                        "studyVersion":"1.0.0.3",
                                        "eventId":"B1B2C3D4E5F6471890ABCDEF12345678",
                                        "eventInstanceNum":1,
                                        "formId":"C1B2C3D4E5F6471890ABCDEF12345678",
                                        "labId":"D1B2C3D4E5F6471890ABCDEF12345678"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseDto2"
                                },
                                "examples":{
                                    "LabNormalsSaveResponseV2":{
                                        "description":"LabNormalsSaveResponseV2",
                                        "value":{
                                            "labnormalsStatus":[
                                                "DOB_MISSING"
                                            ],
                                            "items":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionEnd":"2025-10-16T14:35:00.000Z",
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"STUDY-ABC",
                                                    "studyVersion":"1.0.0.3",
                                                    "subjectId":"10F75668189F422F9A461A315D211111",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formId":"C1B2C3D4E5F6471890ABCDEF12345678",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "vendorCode":"VENDOR1",
                                                    "value":"13.5",
                                                    "measureUnit":"g/dL",
                                                    "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "numValue":13,
                                                    "floatValue":13.5,
                                                    "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                    "monthValue":10,
                                                    "dayValue":16,
                                                    "yearValue":2025,
                                                    "hourValue":14,
                                                    "minuteValue":30,
                                                    "secondValue":31,
                                                    "reason":"Initial entry",
                                                    "comment":"Captured by device",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "targets":[
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                                    ],
                                                    "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "operationType":"MODIFIED",
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                    "versionEnd":"2025-10-16T15:30:31.892Z",
                                                    "softwareVersionNumber":14,
                                                    "itemType":"TEXT",
                                                    "itemD":"DETAIL",
                                                    "itemF":"FLAG",
                                                    "itemR":"REASON",
                                                    "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                    "repeatFormNumber":2,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-labnormals-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-labnormals-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/freeze":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Freeze multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Freezes multiple data elements for a subject based on the data element ID. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.,  API has been deprecated and moved to DAS(Data Action Service) Path: /ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/freeze",
                "operationId":"freezeMultipleDataElements_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be freezed.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-freeze-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-freeze-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visit/verify/history":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get latest audit records for Source Data Verification"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the latest audit records for Source Data Verification with site information where visit was completed.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visit/verify/history",
                "operationId":"getSDVSelectedSubjects_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Request to get the visits verification for a date range.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitVerifyHistoryRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visit-verify-history-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visit-verify-history-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/studyVersion/{studyVersion}/signSubject/subject/{subjectId}/code/{code}/orgId/{orgId}":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Sign subject and visits"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Signs a subject and all completed visits in the subject. Repeating sections supported. Use V4 in addition to V3 it utilizes signDTO subject signature.",
                "operationId":"signSubject_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Study version associated to subject's site.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the current subject to sign.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"code",
                        "in":"path",
                        "description":"Code is sent via IAMS as initial sign",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"orgId",
                        "in":"path",
                        "description":"IAMS Tenant Short Org ID in format of UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"redirectUriHostname",
                        "in":"query",
                        "description":"Redirect URI",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects sign success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignVerifyFreezeDTOv30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-studyVersion-{studyVersion}-signSubject-subject-{subjectId}-code-{code}-orgId-{orgId}-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-studyversion-studyversion-signsubject-subject-subjectid-code-code-orgid-orgid-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/unfreeze/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Unfreeze single data element of a visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Unfreeze single data element of a visit , API has been deprecated,  API has been deprecated and moved to DAS(Data Action Service) Path: /ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/unfreeze/{dataElementId}",
                "operationId":"unfreezeDataElements_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data element ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Unfreeze request.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/UnFreezeRequestDT02"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-unfreeze-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-unfreeze-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/verify":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Verify multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Verifies multiple data elements for a subject based on the data element ID. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"verifyMultipleDataElements_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be verified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            },
                            "examples":{
                                "SignVerifyRequestV2":{
                                    "description":"SignVerifyRequestV2",
                                    "value":{
                                        "subjectId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                        "eventId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                        "studyVersion":"1.0.0.2",
                                        "eventInstanceNum":1,
                                        "reason":"Verify",
                                        "comment":"Bulk verify",
                                        "elements":[
                                            {
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                },
                                "examples":{
                                    "VerifyResponseV2":{
                                        "description":"VerifyResponseV2",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-verify-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-dataelements-verify-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjecttransfers":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves all transfers for a study based on the study mode. <br><b>Rights:</b> <i>DataCaptureSubjectTransferGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers",
                "operationId":"getAllSubjectTransfers_1",
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransfer"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjecttransfers-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjecttransfers-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/subjecttransfers/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a subject"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of subject transfer records for a given subject ID.",
                "operationId":"getSubjectTransferBySubjectId2",
                "parameters":[
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransfer"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-subjecttransfers-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-subjecttransfers-subjects-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of visits status for a visit. If event ID is null, then it lists all the visit status records for a subject.",
                "operationId":"getVisitsStatus2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto12"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto12List":{
                                        "description":"VisitsStatusDto12List",
                                        "value":[
                                            {
                                                "lockedStatus":"UNLOCKED",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Adds the visit status for a given subject and visit ID.",
                "operationId":"addVisitsStatus2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatus"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/dateRange":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a date range"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of visits statuses for a given date range mainly used by Integration hub.",
                "operationId":"getAllVisitsStatusInRange_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Start date from which you want to retrieve details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"End date until which you want to create details.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-dateRange-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-daterange-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visit statuses for given entries"
                ],
                "summary":"V2.0",
                "description":"Retrieves the list of visits statuses for a given set of entries that include Subject and Event IDs (Designer visit ID). It uses <i>VisitStatusDto12</i> that includes the locked status of the visit and visit start date besides other data included in <i>VisitStatusDto12</i>.",
                "operationId":"getMultipleVisitsStatus_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Visits details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleVisitsStatusRequestDto"
                            },
                            "examples":{
                                "MultipleVisitsStatusRequestDto":{
                                    "description":"MultipleVisitsStatusRequestDto",
                                    "value":{
                                        "visitDetails":[
                                            {
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventId":"53915DD9B758466AB2226CBCC4466B7E"
                                            },
                                            {
                                                "subjectId":"2ABC8A2C11045A584ADEA8760F72B114",
                                                "eventId":"0C7CBA3F70034C47947E2FAB086BFBF5"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto12"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto12List":{
                                        "description":"VisitsStatusDto12List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "objectVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                                "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                                "associatedStudyVersion":"3.0.0.1",
                                                "visitAction":"SCREEN_ENABLE",
                                                "lockedStatus":"LOCKED",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitWindowWarning":"NONE",
                                                "doseHoldAction":"ENABLE",
                                                "unResolvedQueries":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a list of subjects"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the list of visit statuses for a list of subjects and the current state's study version.",
                "operationId":"getVisStatusForSubjects2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves the audit history records of the visit status for the given visit ID.",
                "operationId":"getVisitStartDetails2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit Id",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Updates the visit status record for a given ID.",
                "operationId":"updateVisitsStatus2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v2.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/clear/{scope}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Clear data elements scope by study ID and mode"
                ],
                "summary":"V3.0",
                "description":"Clears the given scope of data elements for a visit. Scope can be: <ul><li><i>VSD</i>, to clear visit start date.</li><li><i>ITEM</i>, to clear a specific item.</li></ul> <br>This call returns <i>refreshVisit</i> as true when it is a last item to clear for the given visit.",
                "operationId":"clearData_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to retrieve the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"Scope of the dataElement. Scope can be - ITEM or VSD .",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ITEM"
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call is from Digital Gateway / Digital Gateway Builder, isDgCall set to true, Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"DataElement value to clear",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearRequestDto"
                            },
                            "examples":{
                                "ClearRequest":{
                                    "description":"ClearRequest",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F647889900AABBCCDDEEFF",
                                        "reason":"Change for encoding",
                                        "comment":"",
                                        "visits":[
                                            {
                                                "eventId":"11223344556677889900FFEEDDCCBBA",
                                                "visitStartDateId":"A17A15A04A154306B3BD80BF96D475F2",
                                                "eventInstanceNumber":2,
                                                "studyVersion":"1.1.0.2",
                                                "forms":[
                                                    {
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                        "formSectionId":null
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClearDataResponseDto20"
                                },
                                "examples":{
                                    "ClearDataResponseDto20":{
                                        "description":"ClearDataResponseDto20",
                                        "value":{
                                            "clearedData":[
                                                {
                                                    "visits":{
                                                        "refreshVisit":false,
                                                        "visitsStatus":{
                                                            "associatedStudyVersion":"1.0.0.1",
                                                            "comment":"Cleared visit data",
                                                            "eventId":"CAFEBABE1234567890ABCDEF99887766",
                                                            "eventInstanceNum":1,
                                                            "eventType":"Visit_Not_Started",
                                                            "id":"A1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "reason":"Data cleared",
                                                            "siteId":"B1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "studyVersion":"1.0.0.1",
                                                            "subjectId":"C1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "targets":[
                                                                "E1B2C3D4E5F647889900AABBCCDDEEFF.D1B2C3D4E5F647889900AABBCCDDEEFF",
                                                                "E1B2C3D4E5F647889900AABBCCDDEEFF.E1B2C3D4E5F647889900AABBCCDDEEFF"
                                                            ],
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "visitAction":"SCREEN_ENABLE",
                                                            "visitStartDate":"2023-01-01T09:00:00Z",
                                                            "visitStatus":"NEW",
                                                            "visitType":"SCREENING"
                                                        }
                                                    },
                                                    "dataElements":[
                                                        {
                                                            "comment":"Clearing incorrect entry",
                                                            "dataFlag":"F1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                            "dayValue":15,
                                                            "eventId":"G1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "eventInstanceNum":1,
                                                            "floatValue":118.75,
                                                            "formId":"H1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "formSectionId":"I1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "formStatus":"IN_PROGRESS",
                                                            "freezedStatus":"NOT_APPLICABLE",
                                                            "hourValue":9,
                                                            "id":"J1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "innerRepeat":1,
                                                            "itemD":"itemDValue",
                                                            "itemF":"itemFValue",
                                                            "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                            "itemR":"itemRValue",
                                                            "itemType":"TEXT",
                                                            "lockedDateTime":"2023-01-01T09:00:00Z",
                                                            "lockedStatus":"LOCKED",
                                                            "measureUnit":"mg/dL",
                                                            "minuteValue":30,
                                                            "monthValue":12,
                                                            "normalizedUnitId":"A78AD8C3-1CD843CD8B847C06C0420FF5",
                                                            "normalizedValue":"6.6",
                                                            "numValue":120,
                                                            "objectVersionNumber":1,
                                                            "operationType":"MODIFIED",
                                                            "originatorId":"M1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "outerRepeat":1,
                                                            "parentId":"N1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "propertyId":"O1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                            "reason":"Cleared",
                                                            "repeatFormNumber":1,
                                                            "repeatSequenceNumber":1,
                                                            "rootId":"P1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "secondValue":45,
                                                            "signedStatus":"SIGNED",
                                                            "siteId":"Q1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "softwareVersionNumber":1,
                                                            "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                            "studyName":"Study-ABC",
                                                            "studyVersion":"1.0.0.1",
                                                            "subjectId":"S1B2C3D4E5F647889900AABBCCDDEEFF",
                                                            "transactionEnd":"2023-01-01T09:05:00Z",
                                                            "transactionStart":"2023-01-01T09:00:00Z",
                                                            "validationFailure":"",
                                                            "validationStatus":"SUCCESS",
                                                            "value":"",
                                                            "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                            "vendorCode":"ACME",
                                                            "verifiedStatus":"VERIFIED",
                                                            "versionEnd":"2023-01-01T09:10:00Z",
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                            "visitStartDateLockedStatus":"NEVER_LOCKED",
                                                            "yearValue":2023
                                                        }
                                                    ],
                                                    "labs":[
                                                        {
                                                            "comment":"Cleared due to verified lab correction",
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "labId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                            "outerRepeat":1,
                                                            "reason":"Data cleared by monitor"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-clear-{scope}-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-clear-scope-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/dataelements":{
            "delete":{
                "tags":[
                    "Data Capture/Data Elements/Delete data elements in a form within a visit"
                ],
                "summary":"V3.0",
                "description":"Removes the data elements in a form within a given visit. This API supports tabular forms and is mainly used for both repeating forms and two-section forms.",
                "operationId":"deleteForm_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"A1B2C3D4E5F647889900AABBCCDDEEFF"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"11223344556677889900FFEEDDCCBBAA"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatFormNumber",
                        "in":"query",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":2
                    },
                    {
                        "name":"innerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"outerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"formSectionId",
                        "in":"query",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    }
                ],
                "requestBody":{
                    "description":"Reason and comment for deleting data elements",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "ReasonCommentRequest":{
                                    "description":"ReasonCommentRequest",
                                    "value":{
                                        "reason":"Investigator Correction",
                                        "comment":"Removing incorrect data captured by mistake"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto12"
                                    }
                                },
                                "examples":{
                                    "DeletedItemsForVisit":{
                                        "description":"DeletedItemsForVisit",
                                        "value":[
                                            {
                                                "id":"70DB4EF4847849CCB24EFCCB71CDA436",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"Study-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "eventId":"60DB4EF4847849CCB24EFCCB71CDA436",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "repeatSequenceNumber":1,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "repeatFormNumber":1,
                                                "itemD":"120",
                                                "itemF":"120",
                                                "itemR":"120",
                                                "itemType":"TEXT",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"ACME",
                                                "reason":"Deleted",
                                                "comment":"Removed due to correction",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T09:05:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "operationType":"REMOVED",
                                                "parentId":"90DB4EF4847849CCB24EFCCB71CDA436",
                                                "rootId":"80DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyId":"PROPERTY123",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"FROZEN",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-01T10:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-dataelements-delete",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-dataelements-delete"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records.",
                "operationId":"getDataElementAuditHistory3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Filters data elements for a form data in an event. This supports the start date for Integration Hub. If a start date is provided, it will return the snapshot of data elements just before startDate. If the current query parameter is set to true, then this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC"
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, it returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves all data elements which can be filtered based on subject or visit: for a subject and visit or for all subjects or all visits.",
                "operationId":"getDataElementsByStudyId_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto"
                            },
                            "examples":{
                                "DataElementsRequestDto":{
                                    "description":"DataElementsRequestDto",
                                    "value":{
                                        "context":{
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "eventId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                            "formId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                            "studyVersion":"1.0.0.3",
                                            "eventInstanceNum":1,
                                            "repeatSequenceNumber":1
                                        },
                                        "dataElements":[
                                            {
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "value":"13.5",
                                                "measureUnit":"g/dL",
                                                "numValue":13,
                                                "floatValue":13.5,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":1,
                                                "dayValue":1,
                                                "yearValue":2023,
                                                "hourValue":9,
                                                "minuteValue":0,
                                                "secondValue":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/all":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements history with pagination"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves all data elements with history for a subject and a visit or for all subjects and all of their visits, with the possibility of using pagination.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/all",
                "operationId":"getDataElementsByStudyId_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unscheduled visit instance.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"includeSVI",
                        "in":"query",
                        "description":"includeSVI",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"fetchOnlyTwoSecForms",
                        "in":"query",
                        "description":"Fetch only two section forms",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"fetchOnlyLabForms",
                        "in":"query",
                        "description":"Fetch only lab forms.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto120"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-all-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-all-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves data elements for a list of items. Separate the item IDs with commas. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items",
                "operationId":"getDataElementsBySubjectIdItemIds3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject for which you want to retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/formassociations":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements with form associations"
                ],
                "summary":"V3.0",
                "description":"Retrieves data elements along with form associations. Supports section forms. The response contains additional fields like srcRepeatFormNumber, associatedFormSectionId, associatedRepeatFormNumber and srcRepeatFormNumber in the formsAssociations.",
                "operationId":"getDataElementsWithFormAssociations_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementsFormAssociationsDto31"
                                },
                                "examples":{
                                    "FormAssociationsResponse":{
                                        "description":"FormAssociationsResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"08E4A01174164BA6A7FC5B61B1123764",
                                                        "versionStart":"2021-12-24T07:11:34.151Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                        "studyName":"SignVerifyRegStudyCopied",
                                                        "studyVersion":"1.1.0.4",
                                                        "subjectId":"B2C3D4E5F6A75123B8C9D0E1F20011A2",
                                                        "eventId":"C3D4E5F6A7B86123C9D0E1F20011A2B3",
                                                        "formId":"D4E5F6A7B8C96123D0E1F20011A2B3C4",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"E5F6A7B8C9D06123E1F20011A2B3C4D5",
                                                        "siteId":"F6A7B8C9D0E16123F20011A2B3C4D5E6",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"Sub19",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"A7B8C9D0E1F26123A211A2B3C4D5E6F7",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"VERIFIED",
                                                        "freezedStatus":"FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"Sub19",
                                                        "itemR":"Sub19",
                                                        "repeatFormNumber":null
                                                    }
                                                ],
                                                "formsAssociations":[
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-formassociations-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-formassociations-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data element records for a subject and date range"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the data elements updated or inserted in a given date range for a subject.",
                "operationId":"getDatatElementsForChngEvntInRangeBySubjectId_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-subjectId-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-subjectid-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get deleted data elements"
                ],
                "summary":"V3.0",
                "description":"Retrieves the list of deleted data elements, mainly used for Repeating Forms and Two Section Forms.",
                "operationId":"getDeletedItemsForAVisit_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"A1B2C3D4E5F647889900AABBCCDDEEFF"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"11223344556677889900FFEEDDCCBBAA"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DeletedItemsResponse":{
                                        "description":"DeletedItemsResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for multiple items"
                ],
                "summary":"V3.0",
                "description":"Retrieves multiple data elements for multiple requested items.",
                "operationId":"getMultiDataElements_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    }
                ],
                "requestBody":{
                    "description":"visits status details",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleDataElementsRequestDto20"
                            },
                            "examples":{
                                "MultipleDataElementsRequestDto20":{
                                    "description":"MultipleDataElementsRequestDto20",
                                    "value":{
                                        "dataElementDetails":[
                                            {
                                                "subjectId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "eventId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "eventInstanceNum":1,
                                                "formId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "formSectionId":"ACCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "repeatTwoSectionFormNumber":"0",
                                                "repeatSequenceNumber":"1",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "MultipleDataElementsResponse":{
                                        "description":"MultipleDataElementsResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/visitdata":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by subject and event ID"
                ],
                "summary":"V3.0",
                "description":"Retrieves data elements by subject and event ID for a given study and mode. Up-versioned to add <i>hdiId</i> field in Data Element.",
                "operationId":"getVisitData_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Sort criteria for response order",
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDataDto30"
                                },
                                "examples":{
                                    "VisitData":{
                                        "description":"VisitData",
                                        "value":{
                                            "dataElements":[
                                                {
                                                    "id":"VBCDEF1234567890ABCDEF1234567890",
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"Study-ABC",
                                                    "studyVersion":"1.0.0.3",
                                                    "subjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                    "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "eventId":"IBCDEF1234567890ABCDEF1234567890",
                                                    "eventInstanceNum":1,
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "value":"13.5",
                                                    "measureUnit":"g/dL",
                                                    "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "normalizedValue":"13.5",
                                                    "numValue":13,
                                                    "floatValue":13.5,
                                                    "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                    "yearValue":2023,
                                                    "monthValue":1,
                                                    "dayValue":1,
                                                    "hourValue":9,
                                                    "minuteValue":0,
                                                    "secondValue":0,
                                                    "repeatSequenceNumber":1,
                                                    "repeatFormNumber":2,
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "vendorCode":"ACME",
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":"",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "operationType":"CREATED"
                                                }
                                            ],
                                            "formsAssociations":[
                                                {
                                                    "srcFormId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "targetFormId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                    "associationType":"COPY",
                                                    "srcRepeatSequenceNumber":1
                                                }
                                            ],
                                            "forms":[
                                                {
                                                    "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "locked":false
                                                }
                                            ],
                                            "labAssociations":{
                                            },
                                            "visit":{
                                                "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                                "eventInstanceNum":1,
                                                "lockStatus":"UNLOCKED"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-visitdata-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-visitdata-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Updates a single data element. This API supports councurrent update.",
                "operationId":"mergeSingleDataElement3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequest30"
                            },
                            "examples":{
                                "DataElementRequest30":{
                                    "description":"DataElementRequest30",
                                    "value":{
                                        "dataElement":{
                                            "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "subjectId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                            "eventId":"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC",
                                            "eventInstanceNum":1,
                                            "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                            "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                            "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                            "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                            "value":"14.2",
                                            "measureUnit":"g/dL",
                                            "numValue":14,
                                            "floatValue":14.2,
                                            "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                            "repeatSequenceNumber":1,
                                            "repeatFormNumber":2,
                                            "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                            "vendorCode":"ACME",
                                            "reason":"Correction",
                                            "comment":"Updated after review"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto20"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/multirepeatingform":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for repeating form"
                ],
                "summary":"V3.0",
                "description":"Creates multiple data elements in a repeating form for a particular subject, visit and form. <br><br><p><b>Caution:</b> Use this API ony for active records and make sure not to update deleted instances.</p>",
                "operationId":"saveMultipleRepeatingFormsDataElement_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRepeatingFormsReq3"
                            },
                            "examples":{
                                "DataElementRepeatingFormsReq3":{
                                    "description":"DataElementRepeatingFormsReq3",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_AUT_ReportingStudy",
                                            "studyVersion":"1.2.0.6",
                                            "siteId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                            "subjectId":"B2C3D4E5F64123A7B8C9D0E1F20011A1",
                                            "eventId":"C3D4E5F64123A7B8C9D0E1F20011A1B2",
                                            "formId":"D4E5F64123A7B8C9D0E1F20011A1B2C3",
                                            "eventInstanceNum":null,
                                            "outerRepeat":1
                                        },
                                        "repeatingForms":[
                                            {
                                                "outerRepeat":1,
                                                "dataElements":[
                                                    {
                                                        "itemId":"E5F64123A7B8C9D0E1F20011A1B2C3D4",
                                                        "value":"1"
                                                    },
                                                    {
                                                        "itemId":"F64123A7B8C9D0E1F20011A1B2C3D4E5",
                                                        "value":"1",
                                                        "measureUnit":null,
                                                        "numValue":1
                                                    },
                                                    {
                                                        "itemId":"4123A7B8C9D0E1F20011A1B2C3D4E5F6",
                                                        "value":"21-May-2024"
                                                    }
                                                ]
                                            },
                                            {
                                                "outerRepeat":2,
                                                "dataElements":[
                                                    {
                                                        "itemId":"23A7B8C9D0E1F20011A1B2C3D4E5F641",
                                                        "value":"2"
                                                    },
                                                    {
                                                        "itemId":"A7B8C9D0E1F20011A1B2C3D4E5F64123",
                                                        "value":"2",
                                                        "measureUnit":null,
                                                        "numValue":2
                                                    },
                                                    {
                                                        "itemId":"B8C9D0E1F20011A1B2C3D4E5F64123A7",
                                                        "value":"20-May-2024"
                                                    }
                                                ]
                                            },
                                            {
                                                "outerRepeat":3,
                                                "dataElements":[
                                                    {
                                                        "itemId":"C9D0E1F20011A1B2C3D4E5F64123A7B8",
                                                        "value":"3"
                                                    },
                                                    {
                                                        "itemId":"D0E1F20011A1B2C3D4E5F64123A7B8C9",
                                                        "value":"3",
                                                        "measureUnit":null,
                                                        "numValue":3
                                                    },
                                                    {
                                                        "itemId":"E1F20011A1B2C3D4E5F64123A7B8C9D0",
                                                        "value":"01-May-2024"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto12"
                                    }
                                },
                                "examples":{
                                    "DataElementList":{
                                        "description":"DataElementList",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"7CCE378F9D414C89B452EC6323C726F4",
                                                    "versionStart":"2024-05-21T11:15:18.144Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"36C815C299DB4EE1A0AA779071AA3082",
                                                    "studyName":"DCS_AUT_ReportingStudy",
                                                    "studyVersion":"1.2.0.6",
                                                    "subjectId":"31E5C23AEFA34D62AF9F981725AFCC1F",
                                                    "eventId":"387969DE120841859B24667850E004F6",
                                                    "formId":"AB122E8905D64EBAAFC2D526CF1CB6D8",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"F1C79CD3FC5F40F0BD8D6BC05F907AFD",
                                                    "siteId":"8C0F8AF9D61143AF9AC22F5F1B1A2AE9",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"1",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"1319D94CFF4240A7914FED42DFBE7988",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"TEXT",
                                                    "itemD":null,
                                                    "itemF":"1",
                                                    "itemR":"1",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":1
                                                },
                                                {
                                                    "id":"CB421A8D215D49E88891D6D46398140B",
                                                    "versionStart":"2024-05-21T11:15:18.146Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"36C815C299DB4EE1A0AA779071AA3082",
                                                    "studyName":"DCS_AUT_ReportingStudy",
                                                    "studyVersion":"1.2.0.6",
                                                    "subjectId":"31E5C23AEFA34D62AF9F981725AFCC1F",
                                                    "eventId":"387969DE120841859B24667850E004F6",
                                                    "formId":"AB122E8905D64EBAAFC2D526CF1CB6D8",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"194048F3D5EF41CFBE7781E9EA69050B",
                                                    "siteId":"8C0F8AF9D61143AF9AC22F5F1B1A2AE9",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"1",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":1,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"1319D94CFF4240A7914FED42DFBE7988",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"1",
                                                    "itemR":"1",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":1
                                                },
                                                {
                                                    "id":"6E4A659D970E414C9FDFB5F9BA577FE7",
                                                    "versionStart":"2024-05-21T11:15:18.149Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"36C815C299DB4EE1A0AA779071AA3082",
                                                    "studyName":"DCS_AUT_ReportingStudy",
                                                    "studyVersion":"1.2.0.6",
                                                    "subjectId":"31E5C23AEFA34D62AF9F981725AFCC1F",
                                                    "eventId":"387969DE120841859B24667850E004F6",
                                                    "formId":"AB122E8905D64EBAAFC2D526CF1CB6D8",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"10C14C6D5C574050B883AF754AEFC511",
                                                    "siteId":"8C0F8AF9D61143AF9AC22F5F1B1A2AE9",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"21-May-2024",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":"2024-05-21T00:00:00.000Z",
                                                    "monthValue":5,
                                                    "dayValue":21,
                                                    "yearValue":2024,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"1319D94CFF4240A7914FED42DFBE7988",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"DATETIME",
                                                    "itemD":"2024-05-21",
                                                    "itemF":"21-May-2024",
                                                    "itemR":"21-May-2024",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-multirepeatingform-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-multirepeatingform-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/labnormals":{
            "post":{
                "tags":[
                    "Data Capture/Lab/Create lab for a subject"
                ],
                "summary":"V3.0",
                "description":"Creates lab data elements for a subject for a particular visit and particular form. There is an additional query param outerRepeat in this version of the API.",
                "operationId":"saveLabPropertyData_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Lab data to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabRequestDto20"
                            },
                            "examples":{
                                "LabNormalsSaveRequestV3":{
                                    "description":"LabNormalsSaveRequestV3",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6471890ABCDEF12345678",
                                        "siteId":"699EF3745FC545589F186D2198F3C65E",
                                        "labId":"799EF3745FC545589F186D2198F3C65E",
                                        "studyVersion":"1.0.0.3",
                                        "eventId":"B1B2C3D4E5F6471890ABCDEF12345678",
                                        "eventInstanceNum":1,
                                        "formId":"C1B2C3D4E5F6471890ABCDEF12345678",
                                        "outerRepeat":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseDto2"
                                },
                                "examples":{
                                    "LabNormalsSaveResponseV3":{
                                        "description":"LabNormalsSaveResponseV3",
                                        "value":{
                                            "labnormalsStatus":[
                                                "GENDER_MISSING"
                                            ],
                                            "items":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionStart":"2025-10-16T14:30:31.892Z",
                                                    "transactionEnd":"2025-10-16T14:35:00.000Z",
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "studyName":"STUDY-ABC",
                                                    "studyVersion":"1.0.0.3",
                                                    "subjectId":"10F75668189F422F9A461A315D211111",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formId":"BDF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                    "repeatSequenceNumber":1,
                                                    "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                    "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                    "vendorCode":"VENDOR1",
                                                    "value":"13.5",
                                                    "measureUnit":"g/dL",
                                                    "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                    "numValue":13,
                                                    "floatValue":13.5,
                                                    "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                    "monthValue":10,
                                                    "dayValue":16,
                                                    "yearValue":2025,
                                                    "hourValue":14,
                                                    "minuteValue":30,
                                                    "secondValue":31,
                                                    "reason":"Initial entry",
                                                    "comment":"Captured by device",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "targets":[
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                                        "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                                    ],
                                                    "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "operationType":"MODIFIED",
                                                    "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                    "versionEnd":"2025-10-16T15:30:31.892Z",
                                                    "softwareVersionNumber":14,
                                                    "itemType":"TEXT",
                                                    "itemD":"DETAIL",
                                                    "itemF":"FLAG",
                                                    "itemR":"REASON",
                                                    "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                                    "repeatFormNumber":2,
                                                    "innerRepeat":1,
                                                    "outerRepeat":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-labnormals-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-labnormals-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/freeze":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Freeze multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Freezes multiple data elements for a subject based on the data element ID. API has been deprecated and moved to DAS (Data Action Service) Path: /ec-dataaction-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/freeze. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"freezeMultipleDataElements_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be freezed.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto30"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-freeze-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-freeze-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/studyVersion/{studyVersion}/signSubject/subject/{subjectId}/code/{code}/orgId/{orgId}":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Sign subject and visits"
                ],
                "summary":"V3.0",
                "description":"Signs a subject and all completed visits in the subject. Repeating sections supported. Use V4 in addition to V3 it utilizes signDTO subject signature.",
                "operationId":"signSubject_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.0"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    {
                        "name":"code",
                        "in":"path",
                        "description":"Code is sent via IAMS as initial sign",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SIGNVFY"
                    },
                    {
                        "name":"orgId",
                        "in":"path",
                        "description":"IAMS Tenant Short Org ID in format of UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B87236B9167F4175A96B2DEB4040BF03"
                    },
                    {
                        "name":"redirectUriHostname",
                        "in":"query",
                        "description":"Redirect URI",
                        "schema":{
                            "type":"string"
                        },
                        "example":"redirect.example.com"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects sign success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignVerifyFreezeDTOv30"
                                },
                                "examples":{
                                    "Sign Subject Success Response":{
                                        "summary":"Successful response with signatures",
                                        "description":"Sign Subject Success Response",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00.000Z",
                                                "versionEnd":"2023-01-02T17:30:00.000Z",
                                                "operationType":"CREATED",
                                                "userId":"2C3F40649C654D0F995A7FDBBCEA4FAB",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":100,
                                                "reason":"Other",
                                                "comment":"Data discrepancy observed and clarified",
                                                "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                "subjectId":"C39E34A9152148E0BB831239BAA3E502",
                                                "eventId":"AF77C6450BE94DE293C9630142E0AFAD",
                                                "repeatSequenceNumber":1,
                                                "itemId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                "signed":"SIGNED",
                                                "verify":"NEVER_VERIFIED",
                                                "freeze":"NEVER_FROZEN",
                                                "studyVersion":"2.0.0.38",
                                                "eventInstanceNum":3,
                                                "formSectionId":"0C50E26E482246B2BB9646C739E97CAA",
                                                "repeatFormNumber":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-studyVersion-{studyVersion}-signSubject-subject-{subjectId}-code-{code}-orgId-{orgId}-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-studyversion-studyversion-signsubject-subject-subjectid-code-code-orgid-orgid-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/dataelements/verify":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Verify multiple data elements for a subject"
                ],
                "summary":"V3.0",
                "description":"Verifies multiple data elements for a subject based on the data element ID.",
                "operationId":"verifyMultipleDataElements_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be verified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            },
                            "examples":{
                                "SignVerifyRequest":{
                                    "description":"SignVerifyRequest",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F6478890ABCDEF12345678",
                                        "comment":"Incorrect data",
                                        "reason":"Other",
                                        "eventId":"B2C3D4E5F6478890ABCDEF1234567890",
                                        "studyVersion":"1.1.0.4",
                                        "eventInstanceNum":1,
                                        "elements":[
                                            {
                                                "formId":"C3D4E5F6478890ABCDEF1234567890AB",
                                                "repeatSequenceNumber":1,
                                                "itemId":"D4E5F6478890ABCDEF1234567890AB12",
                                                "repeatFormNumber":1,
                                                "formSectionId":"E5F6478890ABCDEF1234567890AB12C3"
                                            },
                                            {
                                                "formId":"C3D4E5F6478890ABCDEF1234567890AB",
                                                "repeatSequenceNumber":2,
                                                "itemId":"F6478890ABCDEF1234567890AB12C3D4",
                                                "repeatFormNumber":1,
                                                "formSectionId":"E5F6478890ABCDEF1234567890AB12C3"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-dataelements-verify-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-dataelements-verify-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/codebreak":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Perform code break on a subject"
                ],
                "summary":"V3.0",
                "description":"Perform code break for the specified subject. Caution: This operation unblinds subject information. Also, depending on subject settings, this action might also withdraw the subject. This API version includes mHealthSubject ID.",
                "operationId":"codeBreakSubject_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Reason and optional comment for code break. All fields required unless specified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "CodeBreakRequest":{
                                    "summary":"Request to code break a subject",
                                    "description":"CodeBreakRequest",
                                    "value":{
                                        "reason":"Protocol deviation requiring code break",
                                        "comment":"Subject withdrew consent after randomization. Investigator approval documented."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto4"
                                },
                                "examples":{
                                    "CodeBreakResponse":{
                                        "summary":"Response for successful code break",
                                        "description":"CodeBreakResponse",
                                        "value":{
                                            "result":{
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":null,
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"Active",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":null,
                                                "enrollmentFailure":null,
                                                "enrollmentOverride":null,
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":null,
                                                "reason":"Protocol break happened",
                                                "comment":"Code break due to subject withdrawal",
                                                "studyVersion":"3.0.0.1",
                                                "eventType":"Screened",
                                                "subjectTransferId":"E0D9D8D1C2C1B0A9A8A7A6A5A4A3A2A1",
                                                "objectVersionNumber":14,
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-codebreak-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-codebreak-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/codeview":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Code view on a subject"
                ],
                "summary":"V3.0",
                "description":"View the unblinded treatment assignment for a specific subject. This operation is strictly audited and should provide justification.The new version supports role-based audit trail.",
                "operationId":"codeViewSubject_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2FE4C89EC055487BAAB17360AE3BD4F8"
                    }
                ],
                "requestBody":{
                    "description":"Reason for code view. All fields required unless specified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest20"
                            },
                            "examples":{
                                "Request to perform code view for a subject":{
                                    "summary":"CodeViewRequest",
                                    "description":"Request to perform code view for a subject",
                                    "value":{
                                        "reason":"Medical emergency requires unblinding",
                                        "comment":"Investigator approval documented",
                                        "sourceTimeStamp":"2025-11-06T12:45:00Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto_30"
                                },
                                "examples":{
                                    "Deep response for successful code view with all inherited SubjectDto30 fields":{
                                        "summary":"CodeViewResponse",
                                        "description":"Deep response for successful code view with all inherited SubjectDto30 fields",
                                        "value":{
                                            "id":"2FE4C89EC055487BAAB17360AE3BD4F8",
                                            "versionStart":"2025-12-01T08:01:00.000Z",
                                            "description":"Screened subject original",
                                            "subjectNumber":"SUBJ-0031",
                                            "studyId":"0CF28A0BCD1946A0B0A2E135A5E9DE19",
                                            "siteId":"BFC4E1B2A93044199238208ECD70BAE0",
                                            "dob":null,
                                            "screeningDate":"2025-12-01T09:30:00.000Z",
                                            "state":"Screened",
                                            "stateDate":"2025-12-01T09:45:01.000Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":"2025-11-26T10:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":null,
                                            "reason":"CodeView due to unblinding request",
                                            "comment":"Investigator provided justification.",
                                            "studyVersion":"3.0.0.2",
                                            "eventType":"Screened",
                                            "subjectTransferId":"AAAACC112233445566778899BBAADDFF",
                                            "objectVersionNumber":5,
                                            "sourceTimeStamp":"2025-12-05T13:15:34.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-codeview-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-codeview-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"[Deprecated]:V3.0",
                "description":"Lists all subjects for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjects_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Subjects/Add a subject"
                ],
                "summary":"V3.0",
                "description":"Create a subject record in the specified study and mode. The request body must include all subject details and settings. Returns the created subject.",
                "operationId":"createSubject3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    }
                ],
                "requestBody":{
                    "description":"Details for the subject to creat.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest1"
                            },
                            "examples":{
                                "CreateSubjectRequest":{
                                    "summary":"Request body for creating a subject",
                                    "description":"CreateSubjectRequest",
                                    "value":{
                                        "subject":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Randomized subject",
                                            "subjectNumber":"SUBJ-0002",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-09-29T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-09-29T10:00:00.000Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":"2025-09-15T08:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Randomization",
                                            "comment":"Subject successfully randomized in phase 2.",
                                            "studyVersion":"3.0.0.2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                },
                                "examples":{
                                    "CreateSubjectResponse":{
                                        "summary":"Response body for successful subject creation",
                                        "description":"CreateSubjectResponse",
                                        "value":"[{\n  \"id\": \"1BC29B36F5D64B1B95F4BDBBCEA481BE\",\n  \"versionStart\": \"2025-10-16T14:30:31.892Z\",\n  \"description\": \"Randomized subject\",\n  \"subjectNumber\": \"SUBJ-0002\",\n  \"studyId\": \"ABCDEF1234567890ABCDEF1234567890\",\n  \"siteId\": \"ABCDEF1234567890ABCDEF1234567890\",\n  \"dob\": null,\n  \"screeningDate\": \"2025-09-29T10:00:00.000Z\",\n  \"state\": \"Active\",\n  \"stateDate\": \"2025-09-29T10:00:00.000Z\",\n  \"objectVersionNumber\": 12,\n  \"eventType\": \"Randomized\",\n  \"gender\": [ { \"value\": \"1\", \"label\": \"male\" } ],\n  \"subjectTransferId\": \"C0A80102BC29B36F5D64B1B95F4BDB01\",\n  \"reason\": \"Randomization\",\n  \"comment\": \"Subject successfully randomized in phase 2.\",\n  \"enrollmentFailure\": \"Not applicable\"\n  \"enrollmentOverride\": \"NONE\"\n  \"informedConsentDate\": \"2025-09-25T09:00:00.000Z\"\n  \"screeningFailure\": \"Lost to follow-up\"\n}]"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves current subject details based on ID. It returns the mHealth Subject ID.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}",
                "operationId":"getSubjectById3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID for which details are needed.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto4"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Returns the mHealth subject ID as part of the response. All values listed in the 'body' of the API below are required fields to be completed as part of this API request.\r\nPlease note that the following values have to be specified, however, these changes won't be applied (or these changes will take the current date for the timestamp), such as the field for 'dob','eventType','gender','informedConsentDate','screeningDate','stateDate','subjectTransferId','userId','versionStart'.",
                "operationId":"updateSubject3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subject details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest30"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the history of all subjects from a mode.",
                "operationId":"getSubjectHistory3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get history of all subjects in a study mode"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves a list of all subjects for the specified study and mode and their history. Includes sourceTimeStamp value in response. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.   API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/history/all",
                "operationId":"getSubjectHistory3_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto9"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get a subject's events within a date range"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the events for a specific subject within a specified date range. Used by Integration Hub to retrieve events associated with a specific subject. <br><b>Rights:</b> <i>DataCaptureSubjectIntegrationGet</i> and <i>SubjectDataClassificationGet</i>.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}",
                "operationId":"getSubjectInRange_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject whose events you want to retrieve, as it appears in Clinical One.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: This consolidated API retrieves locked status, subjects and their visit schedule along with filter capabilities.",
                "operationId":"getSubjectsVisitSchedule_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Lists subjects and search subjects based on input parameters, for the sites having a study version.",
                "operationId":"getSubjectsWithSiteStudyVersion_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site for which you want to retrieve subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto_3"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                "operationId":"randomizeordispense_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study where a subject is being randomized or dispensed.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/migratesubject":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Migrate a subject"
                ],
                "summary":"V3.0",
                "description":"Migrate a subjects details into this study for reconciliation or subject transfer. use v3 with additional payload of randomizationNumber and more information in response.",
                "operationId":"saveMigrateSubject3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    }
                ],
                "requestBody":{
                    "description":"All properties required for subject migration.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectMigrationRequest2"
                            },
                            "examples":{
                                "MigrateSubjectRequest":{
                                    "summary":"request body for migrating a subject",
                                    "description":"MigrateSubjectRequest",
                                    "value":{
                                        "subject":{
                                            "randomizationNumber":"RND-23",
                                            "subjectNumber":"SUBJ-0105",
                                            "siteId":"BEEF1234567890AABBCCDDEEFF112233",
                                            "state":"Active",
                                            "sourceTimeStamp":"2025-12-05T11:22:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectMigrationResponseDTO2"
                                },
                                "examples":{
                                    "MigrateSubjectResponse":{
                                        "summary":"Response after successful migration Example",
                                        "description":"MigrateSubjectResponse",
                                        "value":{
                                            "randomizationNumber":"RND-123",
                                            "sourceTimeStamp":"2025-12-01T10:30:51.000Z",
                                            "objectVersionNumber":9,
                                            "eventType":"MIGRATED",
                                            "subjectTransferId":"ABCDEFABCDEF1234567890ABCDEF1234",
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Migrated subject details",
                                            "subjectNumber":"SUBJ-9991",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF2345678901ABCDEF1234567891",
                                            "dob":null,
                                            "screeningDate":"2025-10-02T10:50:00.000Z",
                                            "state":"Migrated",
                                            "stateDate":"2025-12-01T11:00:00.000Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":"2025-09-10T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "codeBreak":null,
                                            "reason":"Site transfer",
                                            "comment":"Subject migrated due to site replacement",
                                            "studyVersion":"4.0.0.1"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-migratesubject-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjects-migratesubject-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/subjecttransfers/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get transfer records for a subject"
                ],
                "summary":"V3.0",
                "description":"Retrieves the list of subject transfer records based on the subject ID.",
                "operationId":"getSubjectTransferBySubjectId2_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CDBBCCDDEEFF11223344556677889900"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransferDto3"
                                    }
                                },
                                "examples":{
                                    "SubjectTransfersBySubjectIdResponse":{
                                        "description":"SubjectTransfersBySubjectIdResponse Example",
                                        "value":[
                                            {
                                                "id":"A1B2C3D4E5F64789AABBCCDDEEFF1122",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"3099-12-31T00:00:00Z",
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectNumber":"SUBJ-0001",
                                                "newSubjectNumber":"SUBJ-0001-NEW",
                                                "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                                "reason":"Site change",
                                                "comment":"Moved subject to new site",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":8
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-subjecttransfers-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-subjecttransfers-subjects-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the list of visits status for a visit. If event ID is null, then it lists all the visits status records for a subject. ",
                "operationId":"getVisitsStatus_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study to which the subject belongs.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer for which you want to retrieve the visit details.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Adds the visit status for a given subject and visit ID.",
                "operationId":"addVisitsStatus3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to add.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto3"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatus"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a list of subjects"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the list of visits status for a list of subjects and the current state's study version. This API also returns unscheduled events details. API has been deprecated and moved to DIS (Data Integration Service) Path: /ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/subjects.",
                "operationId":"getVisStatusForSubjects_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which all the visits to be retreived",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves the audit history records of the visit status for the given visit ID.",
                "operationId":"getVisitStartDetails3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit Id for which the history to bre retrieved",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v3.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Updates the visit status for given visit status ID. Supports concurrent update.",
                "operationId":"updateVisitsStatus_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto3"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v3.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v3.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/clear/{scope}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Clear data elements scope by study ID and mode"
                ],
                "summary":"V4.0",
                "description":"Clears the scope of data elements by study ID and mode. Scope can be: <ul><li><i>VSD</i>, to clear visit start date.</li><li><i>ITEM</i>, to clear a specific item.</li></ul><br>Up-versioned to add <i>formsStatus</i> field to the response.",
                "operationId":"clearData_3",
                "parameters":[
                    {
                        "name":"scope",
                        "in":"path",
                        "description":"Scope of the dataElement. Scope can be - ITEM or VSD .",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ITEM"
                    },
                    {
                        "name":"isDgCall",
                        "in":"query",
                        "description":"If the call is from Digital Gateway / Digital Gateway Builder, isDgCall set to true, Cleardynamics won't be supported.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"DataElement value to clear",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ClearRequestDto"
                            },
                            "examples":{
                                "ClearRequest":{
                                    "description":"ClearRequest",
                                    "value":{
                                        "subjectId":"A1B2C3D4E5F647889900AABBCCDDEEFF",
                                        "reason":"Change for encoding",
                                        "comment":"",
                                        "visits":[
                                            {
                                                "eventId":"11223344556677889900FFEEDDCCBBA",
                                                "eventInstanceNumber":2,
                                                "studyVersion":"1.1.0.2",
                                                "forms":[
                                                    {
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                        "formSectionId":null
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ClearDataResponseDto30"
                                    }
                                },
                                "examples":{
                                    "ClearedDataResponse":{
                                        "description":"ClearedDataResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "clearedData":[
                                                    {
                                                        "visits":{
                                                            "visitsStatus":null,
                                                            "refreshVisit":false
                                                        },
                                                        "dataElements":[
                                                            {
                                                                "id":"AAA1BBB2CCC3DDD4EEE5FFF612345678",
                                                                "versionStart":"2025-10-07T21:47:59.665Z",
                                                                "transactionStart":null,
                                                                "transactionEnd":null,
                                                                "validationStatus":null,
                                                                "validationFailure":null,
                                                                "studyId":"11112222333344445555666677778888",
                                                                "studyName":"DCS_RESCREEN_STUDY",
                                                                "studyVersion":"1.2.0.6",
                                                                "subjectId":"22223333444455556666777788889999",
                                                                "eventId":"3333444455556666777788889999AAAA",
                                                                "formId":"444455556666777788889999AAAA1111",
                                                                "formSectionId":null,
                                                                "repeatSequenceNumber":null,
                                                                "itemId":"55556666777788889999AAAA11112222",
                                                                "siteId":"6666777788889999AAAA111122223333",
                                                                "variableId":null,
                                                                "originatorId":null,
                                                                "vendorCode":null,
                                                                "value":null,
                                                                "measureUnit":null,
                                                                "normalizedValue":null,
                                                                "normalizedUnitId":null,
                                                                "numValue":null,
                                                                "floatValue":null,
                                                                "dateTimeValueUTC":null,
                                                                "monthValue":null,
                                                                "dayValue":null,
                                                                "yearValue":null,
                                                                "hourValue":null,
                                                                "minuteValue":null,
                                                                "secondValue":null,
                                                                "parentId":null,
                                                                "rootId":null,
                                                                "userId":"777788889999AAAA1111222233334444",
                                                                "reason":"Change for encoding",
                                                                "comment":"",
                                                                "operationType":"CLEARED",
                                                                "objectVersionNumber":2,
                                                                "softwareVersionNumber":8,
                                                                "eventInstanceNum":1,
                                                                "targets":[
                                                                ],
                                                                "dataFlag":null,
                                                                "signedStatus":null,
                                                                "verifiedStatus":null,
                                                                "freezedStatus":null,
                                                                "propertyId":null,
                                                                "propertyVersionStart":null,
                                                                "versionEnd":"2025-10-07T21:47:59.665Z",
                                                                "itemType":"TEXT",
                                                                "itemD":null,
                                                                "itemF":null,
                                                                "itemR":null,
                                                                "repeatFormNumber":null,
                                                                "innerRepeat":null,
                                                                "outerRepeat":null,
                                                                "formStatus":null,
                                                                "sourceTimeStamp":null,
                                                                "lockedStatus":null,
                                                                "lockedDateTime":null,
                                                                "visitStartDateLockedStatus":null,
                                                                "visitStartDateLockedDateTime":null,
                                                                "documentId":null,
                                                                "documentVersion":null
                                                            }
                                                        ],
                                                        "labs":null,
                                                        "formsStatus":[
                                                            {
                                                                "formId":"88889999AAAA11112222333344445555",
                                                                "formStatus":"OPTIONAL",
                                                                "outerRepeats":null
                                                            },
                                                            {
                                                                "formId":"444455556666777788889999AAAA1111",
                                                                "formStatus":"INCOMPLETE",
                                                                "outerRepeats":null
                                                            },
                                                            {
                                                                "formId":"9999AAAA111122223333444455556666",
                                                                "formStatus":"COMPLETED_WITH_ERROR",
                                                                "outerRepeats":null
                                                            }
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-clear-{scope}-put",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-clear-scope-put"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/forms/{formId}/dataelements":{
            "delete":{
                "tags":[
                    "Data Capture/Data Elements/Delete data elements in a form within a visit"
                ],
                "summary":"V4.0",
                "description":"Removes the data elements in a form within a given visit. This API supports tabular forms and is mainly used for both repeating forms and two-section forms. Up-versioned to add <i>formsStatus</i> field to the response.",
                "operationId":"deleteForm_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"70DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"80DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatSequenceNumber",
                        "in":"query",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"repeatFormNumber",
                        "in":"query",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"innerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"outerRepeatNum",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"formSectionId",
                        "in":"query",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    }
                ],
                "requestBody":{
                    "description":"Reason and comment to justify deletion",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest"
                            },
                            "examples":{
                                "DeleteFormReasonComment":{
                                    "description":"DeleteFormReasonComment",
                                    "value":{
                                        "reason":"User requested deletion due to incorrect entry",
                                        "comment":"Correction during data review"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementListFormStatusesDto"
                                    }
                                },
                                "examples":{
                                    "DeleteFormResponseWithFormStatus":{
                                        "description":"DeleteFormResponseWithFormStatus",
                                        "value":{
                                            "status":"OK",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"44F0DA81C8A34FC88EF01E06D9833AD5",
                                                        "versionStart":"2025-04-22T19:13:29.628Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"57A4A8391AAC46E786DEE7988D036A04",
                                                        "studyName":"ORS_AUT_Study",
                                                        "studyVersion":"1.1.0.5",
                                                        "subjectId":"D3F224176BD441A492A7B7C248F78AC7",
                                                        "eventId":"ECC8D5C7B79E408B88681FB417436778",
                                                        "formId":"BD924B1D297245E19C350C73AB41664D",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":1,
                                                        "itemId":"63C49435A6DD4024B1F8CBB967C2D323",
                                                        "siteId":"C32C2242D0A0404CA341DF1168E3C550",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"sym",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D96",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":7,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"sym",
                                                        "itemR":"sym",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":1,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ],
                                                "formsStatus":[
                                                    {
                                                        "formId":"BD924B1D297245E19C350C73AB41664D",
                                                        "formStatus":"IN_PROGRESS",
                                                        "outerRepeats":[
                                                            {
                                                                "innerRepeats":null,
                                                                "outerRepeat":1,
                                                                "formStatus":"IN_PROGRESS"
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "formId":"E868D223117B44A58BA1682BF8E1A0D3",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"C609356F030D47EFADBC92970FCCFCE2",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"9F112F7D8D304AE8B30B308C7209185B",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"08F1BDAAAFB84E4C94E410341D7A6D0E",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"1E92D9A01D5244B0B4DEC4D506F102A0",
                                                        "formStatus":"NEW",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"23B7C3F8CEE94B9F8EE12304349F5D0B",
                                                        "formStatus":"NEW",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"B2579ECB4E044F5FAB373B62CA38E901",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"17E87F3833E845EEB0F80FB5C53155B6",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-forms-{formId}-dataelements-delete",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subject-subjectid-visit-visitid-forms-formid-dataelements-delete"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which the history to be retreived",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto60"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Filters data elements for a form data in an event. This supports the start date for Integration Hub. If a start date is provided, it will return the snapshot of data elements just before startDate. In case the current query parameter is set to true, then this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form id from designer",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit id from designer",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"if set to true returns the current data else returns the data just before the visit complete",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"date for which the data values to be retreived",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Filters data elements for a subject and for a visit or for all subjects or all visits.",
                "operationId":"getDataElementsByStudyId_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"visit id from designer",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"subject Id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unschedule visit instance",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto20"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves data elements for a list of items. Separate the item IDs with commas. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsBySubjectIdItemIds4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject for which you want to retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto6"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data element records for a subject and date range"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the data elements updated or inserted in a given date range for a subject.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}",
                "operationId":"getDatatElementsForChngEvntInRangeBySubjectId_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto13"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-subjectId-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-subjectid-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get deleted data elements"
                ],
                "summary":"V4.0",
                "description":"Retrieves the list of data elements that have been deleted, mainly used for repeating forms and two sections forms. The response contains innerRepeat and outerRepeat field for the dataElement.",
                "operationId":"getDeletedItemsForAVisit_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"70DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"80DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto12"
                                    }
                                },
                                "examples":{
                                    "DeletedItemsForVisit":{
                                        "description":"DeletedItemsForVisit",
                                        "value":[
                                            {
                                                "id":"70DB4EF4847849CCB24EFCCB71CDA436",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"Study-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "eventId":"60DB4EF4847849CCB24EFCCB71CDA436",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "repeatSequenceNumber":1,
                                                "innerRepeat":1,
                                                "outerRepeat":1,
                                                "repeatFormNumber":1,
                                                "itemD":"120",
                                                "itemF":"120",
                                                "itemR":"120",
                                                "itemType":"TEXT",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"ACME",
                                                "reason":"Deleted",
                                                "comment":"Removed due to correction",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T09:05:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "operationType":"REMOVED",
                                                "parentId":"90DB4EF4847849CCB24EFCCB71CDA436",
                                                "rootId":"80DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyId":"PROPERTY123",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"FROZEN",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-01T10:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/multiple":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for multiple items"
                ],
                "summary":"V4.0",
                "description":"Retrieves multiple data elements for multiple requested items. The request body of the new version of Api has an extra boolean parameter isPrevValue.",
                "operationId":"getMultiDataElements_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Request to fetch multiple data elements and their previous values",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleDataElementsRequestDto30"
                            },
                            "examples":{
                                "MultipleDataElementsRequest":{
                                    "description":"MultipleDataElementsRequest",
                                    "value":{
                                        "dataElementDetails":[
                                            {
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"20F75668189F422F9A461A315D211111",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"EEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "repeatSequenceNumber":1,
                                                "repeatTwoSectionFormNumber":1,
                                                "eventInstanceNum":1,
                                                "isPrevValue":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "MultipleDataElementsResponse":{
                                        "description":"MultipleDataElementsResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-multiple-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-multiple-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/visitdata":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by subject and event ID"
                ],
                "summary":"V4.0",
                "description":"Retrieves data elements by subject and event ID for a given study and mode. Up-versioned to add <i>validationRules</i> field in DataElement and <i>formsStatus</i> field to the response",
                "operationId":"getVisitData_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Sort key",
                        "schema":{
                            "type":"string"
                        },
                        "example":"versionStart"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDataDto4"
                                    }
                                },
                                "examples":{
                                    "VisitData":{
                                        "description":"VisitData",
                                        "value":{
                                            "status":"OK",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"0D18082682754DD2A5AE6EC3BB603055",
                                                        "versionStart":"2025-03-29T18:18:18.626Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F6478390ABCDEF11223344",
                                                        "studyName":"DCS_FileUpload",
                                                        "studyVersion":"1.0.0.1",
                                                        "subjectId":"11223344556677889900AABBCCDDEEFF",
                                                        "eventId":"FFEEDDCCBBAA99887766554433221100",
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                        "siteId":"0102030405060708090A0B0C0D0E0F10",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"cds.png",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"00112233445566778899AABBCCDDEEFF",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"NEVER_SIGNED",
                                                        "verifiedStatus":"VERIFIED",
                                                        "freezedStatus":"NEVER_FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"FILE_UPLOAD",
                                                        "itemD":null,
                                                        "itemF":"cds.png",
                                                        "itemR":"cds.png",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":"7F6544523A954CBA8E04B420EE1A916A",
                                                        "documentVersion":1,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    },
                                                    {
                                                        "id":"CF0816460565496FA106495A6CAA57B5",
                                                        "versionStart":"2025-03-29T18:09:01.716Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F6478390ABCDEF11223344",
                                                        "studyName":"DCS_FileUpload",
                                                        "studyVersion":"1.0.0.1",
                                                        "subjectId":"11223344556677889900AABBCCDDEEFF",
                                                        "eventId":"FFEEDDCCBBAA99887766554433221100",
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"99998888777766665555444433332222",
                                                        "siteId":"0102030405060708090A0B0C0D0E0F10",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"George",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"00112233445566778899AABBCCDDEEFF",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"NEVER_SIGNED",
                                                        "verifiedStatus":"NEVER_VERIFIED",
                                                        "freezedStatus":"NEVER_FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"George",
                                                        "itemR":"George",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ],
                                                "formsAssociations":[
                                                ],
                                                "forms":null,
                                                "labAssociations":null,
                                                "visit":{
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                },
                                                "formsStatus":[
                                                    {
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formStatus":"COMPLETED",
                                                        "outerRepeats":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-visitdata-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-visitdata-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Updates a single data element for a subject. Supports concurrent update.",
                "operationId":"mergeSingleDataElement4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to be updated",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to be updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequest30"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto40"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/multirepeatingform":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for repeating form"
                ],
                "summary":"V4.0",
                "description":"Creates multiple data elements in a repeating form for a particular subject, visit and form, with file upload support. Returns form statuses in the response.",
                "operationId":"saveMultipleRepeatingFormsDataElement_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Create multiple repeating forms data elements",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRepeatingFormsReq4"
                            },
                            "examples":{
                                "SaveMultipleRepeatingFormsRequest":{
                                    "description":"SaveMultipleRepeatingFormsRequest",
                                    "value":{
                                        "context":{
                                            "studyName":"DCS_QueryValidation",
                                            "studyVersion":"1.0.0.1",
                                            "siteId":"0102030405060708090A0B0C0D0E0F10",
                                            "subjectId":"11223344556677889900AABBCCDDEEFF",
                                            "eventId":"FFEEDDCCBBAA99887766554433221100",
                                            "formId":"CAFEBABE1234567890ABCDEF99887766",
                                            "eventInstanceNum":null,
                                            "innerRepeat":1
                                        },
                                        "repeatingForms":[
                                            {
                                                "innerRepeat":1,
                                                "dataElements":[
                                                    {
                                                        "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                        "value":"[{\"value\":\"1\",\"label\":\"Option A\"}]",
                                                        "formSectionId":"A1B2C3D4E5F6478390ABCDEF11223344"
                                                    },
                                                    {
                                                        "itemId":"99998888777766665555444433332222",
                                                        "value":"100",
                                                        "measureUnit":null,
                                                        "numValue":100,
                                                        "formSectionId":"A1B2C3D4E5F6478390ABCDEF11223344"
                                                    }
                                                ],
                                                "outerRepeat":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementListFormStatusesDto"
                                    }
                                },
                                "examples":{
                                    "SaveMultipleRepeatingFormsResponse":{
                                        "description":"SaveMultipleRepeatingFormsResponse",
                                        "value":{
                                            "status":"OK",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"44F0DA81C8A34FC88EF01E06D9833AD5",
                                                        "versionStart":"2025-04-22T19:13:29.628Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"57A4A8391AAC46E786DEE7988D036A04",
                                                        "studyName":"ORS_AUT_Study",
                                                        "studyVersion":"1.1.0.5",
                                                        "subjectId":"D3F224176BD441A492A7B7C248F78AC7",
                                                        "eventId":"ECC8D5C7B79E408B88681FB417436778",
                                                        "formId":"BD924B1D297245E19C350C73AB41664D",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":1,
                                                        "itemId":"63C49435A6DD4024B1F8CBB967C2D323",
                                                        "siteId":"C32C2242D0A0404CA341DF1168E3C550",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"sym",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"33D0D74837F6454B836AAB5BA2574D96",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":7,
                                                        "eventInstanceNum":null,
                                                        "targets":[
                                                        ],
                                                        "dataFlag":null,
                                                        "signedStatus":null,
                                                        "verifiedStatus":null,
                                                        "freezedStatus":null,
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"sym",
                                                        "itemR":"sym",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":1,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ],
                                                "formsStatus":[
                                                    {
                                                        "formId":"BD924B1D297245E19C350C73AB41664D",
                                                        "formStatus":"IN_PROGRESS",
                                                        "outerRepeats":[
                                                            {
                                                                "innerRepeats":null,
                                                                "outerRepeat":1,
                                                                "formStatus":"IN_PROGRESS"
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "formId":"E868D223117B44A58BA1682BF8E1A0D3",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"C609356F030D47EFADBC92970FCCFCE2",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"9F112F7D8D304AE8B30B308C7209185B",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"08F1BDAAAFB84E4C94E410341D7A6D0E",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"1E92D9A01D5244B0B4DEC4D506F102A0",
                                                        "formStatus":"NEW",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"23B7C3F8CEE94B9F8EE12304349F5D0B",
                                                        "formStatus":"NEW",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"B2579ECB4E044F5FAB373B62CA38E901",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    },
                                                    {
                                                        "formId":"17E87F3833E845EEB0F80FB5C53155B6",
                                                        "formStatus":"OPTIONAL",
                                                        "outerRepeats":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-multirepeatingform-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-multirepeatingform-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/studyVersion/{studyVersion}/signSubject/subject/{subjectId}/code/{code}/orgId/{orgId}":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Sign subject and visits"
                ],
                "summary":"V4.0",
                "description":"Signs a subject and all completed visits in the subject. Repeating sections supported. Use V4 in addition to V3 it utilizes signDTO subject signature.",
                "operationId":"signSubject_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2.0.0.38"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    {
                        "name":"code",
                        "in":"path",
                        "description":"Code is sent via IAMS as initial sign",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SIGN"
                    },
                    {
                        "name":"orgId",
                        "in":"path",
                        "description":"IAMS Tenant Short Org ID in format of UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1A6C7162760B4DB0AF446F495FE55A61"
                    },
                    {
                        "name":"redirectUriHostname",
                        "in":"query",
                        "description":"Redirect URI",
                        "schema":{
                            "type":"string"
                        },
                        "example":"tenant-app.oracle.com"
                    }
                ],
                "requestBody":{
                    "description":"Payload with subject signature details. See SignRequestDto for structure.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignRequestDto"
                            },
                            "examples":{
                                "RequestPayload":{
                                    "summary":"subject signature request",
                                    "description":"RequestPayload",
                                    "value":{
                                        "signRequest":[
                                            {
                                                "signLevel":"SUBJECT_LEVEL",
                                                "eventId":"3234E620DE2E41D69A36571064E727B2",
                                                "eventInstanceNum":1,
                                                "configId":"F9E5DBD829B34E298CB6FF4ED60DC927",
                                                "innerRepeat":0,
                                                "outerRepeat":0,
                                                "formId":"7DB612AF851A442098B674AA1A97AF36"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects sign success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SignVerifyFreezeDTOv30"
                                },
                                "examples":{
                                    "Subject signature response":{
                                        "summary":"Subject signature result",
                                        "description":"Subject signature response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F2A1661140B144A7A2C318C5DCD97C9F",
                                                    "versionStart":"2023-12-01T09:00:00.000Z",
                                                    "versionEnd":"2023-12-04T17:30:00.000Z",
                                                    "operationType":"CREATED",
                                                    "userId":"2C3F40649C654D0F995A7FDBBCEA4FAB",
                                                    "objectVersionNumber":2,
                                                    "softwareVersionNumber":301,
                                                    "reason":"Data corrected and verified",
                                                    "comment":"Completed per protocol",
                                                    "formId":"7978B7DD0A0A4CA899C485990994300C",
                                                    "subjectId":"C39E34A9152148E0BB831239BAA3E502",
                                                    "eventId":"3234E620DE2E41D69A36571064E727B2",
                                                    "repeatSequenceNumber":2,
                                                    "itemId":"33CAF3CB1DF64DF5A353A337CBE6B50A",
                                                    "signed":"SIGNED",
                                                    "verify":"NEVER_VERIFIED",
                                                    "freeze":"NEVER_FROZEN",
                                                    "studyVersion":"2.0.0.38",
                                                    "eventInstanceNum":1,
                                                    "formSectionId":"0C50E26E482246B2BB9646C739E97CAA",
                                                    "repeatFormNumber":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-studyVersion-{studyVersion}-signSubject-subject-{subjectId}-code-{code}-orgId-{orgId}-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-studyversion-studyversion-signsubject-subject-subjectid-code-code-orgid-orgid-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/dataelements/verify":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Verify multiple data elements for a subject"
                ],
                "summary":"V4.0",
                "description":"Verifies multiple data elements for a subject based on the data element ID.",
                "operationId":"verifyMultipleDataElements_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be verified.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SignVerifyRequestDto"
                            },
                            "examples":{
                                "VerifyRequest":{
                                    "description":"VerifyRequest",
                                    "value":{
                                        "subjectId":"VBCDEF1234567890ABCDEF1234567890",
                                        "eventId":"BBCDEF1234567890ABCDEF1234567890",
                                        "eventInstanceNum":1,
                                        "studyVersion":"3.0.0.1",
                                        "reason":"Verification batch",
                                        "comment":"Verifying data elements",
                                        "elements":[
                                            {
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"50DB4EF4847849CCB24EFCCB71CDA436",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "eventInstanceNum":1,
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":1,
                                                "innerRepeat":1,
                                                "outerRepeat":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success"
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-dataelements-verify-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-dataelements-verify-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/{subjectId}/codebreak":{
            "put":{
                "tags":[
                    "Data Capture/Subjects/Perform code break on a subject"
                ],
                "summary":"V4.0",
                "description":"Perform code break for the specified subject. Caution: This operation unblinds subject information. Also, depending on subject settings, this action might also withdraw the subject. This API version includes mHealthSubject ID and SourceTimeStamp Value.",
                "operationId":"codeBreakSubject_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Reason for code break action and timestamp of request.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReasonCommentRequest20"
                            },
                            "examples":{
                                "CodeBreakRequest":{
                                    "description":"CodeBreakRequest",
                                    "value":{
                                        "reason":"Emergency unblinding",
                                        "comment":"Serious adverse event occurred; codebreak required immediately.",
                                        "sourceTimeStamp":"2025-11-06T12:45:00.000Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subject code break performed successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto40"
                                    }
                                },
                                "examples":{
                                    "CodeBreakSuccessResponse":{
                                        "description":"CodeBreakSuccessResponse",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject after code break",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":null,
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Emergency unblinding",
                                            "comment":"Codebreak completed for SAE.",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"D8F2A379A9C24162A8F7E3A505B21D7B",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "sourceTimeStamp":"2025-11-06T12:45:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{subjectId}-codebreak-put",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-subjectid-codebreak-put"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"[Deprecated]:V4.0",
                "description":"Lists all subjects with lock status  for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and described details in the Response section for each subject with lock status. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getSubjects_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Subjects/Add a subject"
                ],
                "summary":"V4.0",
                "description":"Adds a subject to a study. If Medical Record Number (mrnNumber) is provided and if the user has <i>Link Subject-Patient</i> rights, subject patient link would also be established.",
                "operationId":"createSubject4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    }
                ],
                "requestBody":{
                    "description":"Details for the subject to creat.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest50"
                            },
                            "examples":{
                                "CreateSubjectRequest":{
                                    "summary":"Request body for creating a subject",
                                    "description":"CreateSubjectRequest",
                                    "value":{
                                        "subject":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject to be created",
                                            "subjectNumber":"SUBJ-0002",
                                            "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                            "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                            "dob":"1990-05-20T00:00:00.000Z",
                                            "screeningDate":"2025-09-29T10:00:00.000Z",
                                            "state":"New",
                                            "stateDate":"2025-09-29T10:00:00.000Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":"Override reason",
                                            "informedConsentDate":"2025-09-15T08:00:00.000Z",
                                            "gender":"[{\"value\":\"1\",\"label\":\"male\"}]",
                                            "reason":"Randomization",
                                            "comment":"Subject successfully randomized in phase 2.",
                                            "studyVersion":"3.0.0.2",
                                            "eventType":"Screened",
                                            "subjectTransferId":"D8F2A379A9C24162A8F7E3A505B21D7B",
                                            "objectVersionNumber":1,
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "fromStudyId":"222EABDE1B9648F69D3B6250880A2B09",
                                            "subjNumSiteOrgId":"001Hyd",
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"2025-10-01T10:00:00.000Z",
                                            "softwareVersionNumber":7,
                                            "operationType":"CREATED",
                                            "subjectStudySerialNumber":"STUDY-0001-001",
                                            "subjectSiteSerialNumber":"SITE-0001-001",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "previousSubjectNumber":null,
                                            "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                            "screenFailureDate":null,
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                            "canBeCompleted":false,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-0001",
                                            "mrnNumber":"MRN-0001",
                                            "withdrawalDate":null,
                                            "studyCompletionDate":null,
                                            "withdrawalReason":null,
                                            "withdrawalComment":null,
                                            "screenFailureComment":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "Response body for successful subject creation":{
                                        "summary":"CreateSubjectResponse",
                                        "description":"Response body for successful subject creation",
                                        "value":[
                                            {
                                                "screeningDate":null,
                                                "codeBreak":null,
                                                "userId":"0000000000000000000000000000000A",
                                                "eventType":"SubjectPatientLinkCreated",
                                                "subjectTransferId":null,
                                                "objectVersionNumber":2,
                                                "mhealthSubjectId":null,
                                                "fromStudyId":null,
                                                "subjNumSiteOrgId":"001Hyd",
                                                "signedStatus":null,
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "lastSigned":null,
                                                "softwareVersionNumber":7,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":null,
                                                "subjectSiteSerialNumber":"110",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "previousSubjectNumber":null,
                                                "screenFailureDate":null,
                                                "lockedStatus":null,
                                                "hasLockData":null,
                                                "lockedDateTime":null,
                                                "canBeCompleted":false,
                                                "lockedInStudyVersion":null,
                                                "id":"8B12E8BB09D246F09AB0FF697238F2F7",
                                                "versionStart":"2026-02-03T05:32:43.568Z",
                                                "description":null,
                                                "subjectNumber":"001Hyd110",
                                                "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                                "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                                "dob":null,
                                                "state":"New",
                                                "stateDate":"2026-02-03T05:32:43.455Z",
                                                "screeningFailure":null,
                                                "enrollmentFailure":null,
                                                "enrollmentOverride":null,
                                                "informedConsentDate":null,
                                                "gender":null,
                                                "reason":"Other",
                                                "comment":"Subject 001Hyd110 linked to patient record in Connector1",
                                                "studyVersion":"2.1.0.42",
                                                "sourceTimeStamp":null,
                                                "screeningNumber":null,
                                                "randomizationNumber":null,
                                                "withdrawalReason":null,
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":null,
                                                "studyCompletionDate":null,
                                                "withdrawalComment":null,
                                                "screenFailureComment":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves current subject details based on ID. It returns the mHealth Subject ID.",
                "operationId":"getSubjectById4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject Id for which details needed",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto4"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"V4.0",
                "description":"Updates subject's screen failure date and returns the screen failure date as part of the response.",
                "operationId":"updateSubject4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subject details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest40"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto10"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the history of all subjects from a study mode.",
                "operationId":"getSubjectHistory4_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get history of all subjects in a study mode"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves a list of all subjects for the specified study and mode and their history. Includes sourceTimeStamp value in response. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.   API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/history/all",
                "operationId":"getSubjectHistory4_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto9"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: This consolidated API retrieves locked status, subjects and their visit schedule,filter capabilities along with 'canBeCompleted' field for a subject.",
                "operationId":"getSubjectsVisitSchedule_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Lists subjects and search subjects based on input parameters. This returns <i>mHealthSubjectId</i> as part of the response, for the sites having a study version.",
                "operationId":"getSubjectsWithSiteStudyVersion_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site for which you want to retrieve subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto4"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"V4.0",
                "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                "operationId":"randomizeordispense_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study where a subject is being randomized or dispensed.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV15"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the list of visit statuses for a visit. If the event ID is null, then it lists all the visit statuses records for a subject. This API also provides unscheduled events details.",
                "operationId":"getVisitsStatus_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject Id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit Id for designer",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Re evaluates the visit status with the current design if set to true",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Creates the visit status record for a given subject and visit ID. It handles unscheduled visits.",
                "operationId":"addVisitsStatus4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visit details to be added",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatus"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/visitstatus/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for a date range"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the list of visits status for a given date range, mainly used by Integration hub.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/dateRange/{subjectId}",
                "operationId":"getAllVisitsStatusInRange_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-daterange-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto40"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Retrieves the audit history records of the visits status for the given visit ID. This API also provides unscheduled events in response.",
                "operationId":"getVisitStartDetails_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit Id for which the history to bre retrieved",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v4.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Updates the visit status for a given visit statuses ID. It handles unscheduled visits.",
                "operationId":"updateVisitsStatus_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v4.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v4.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto90"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId4_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, it returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Event Instance Number (eventInstanceNum) for which you want to retrieve data values.",
                        "required":true,
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Filters data elements for a subject and for a visit or for all subjects or all visits.",
                "operationId":"getDataElementsByStudyId_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unscheduled visit instance.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto60"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto40"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves data elements for a list of items. Separate the item IDs with commas. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsBySubjectIdItemIds_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject for which you want to retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto6"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subject/{subjectId}/event/{eventId}/dataelements/visitdata":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements by subject and event ID"
                ],
                "summary":"V5.0",
                "description":"Retrieves data elements by subject and event ID for a given study and mode. Up-versioned to include visit start date sign, verify and freeze statuses",
                "operationId":"getVisitData_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Sort criteria for dataElements in response ",
                        "schema":{
                            "type":"string"
                        },
                        "example":"formtitle"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDataDto4"
                                    }
                                },
                                "examples":{
                                    "VisitData":{
                                        "description":"VisitData",
                                        "value":{
                                            "status":"OK",
                                            "result":{
                                                "dataElements":[
                                                    {
                                                        "id":"0D18082682754DD2A5AE6EC3BB603055",
                                                        "versionStart":"2025-03-29T18:18:18.626Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F6478390ABCDEF11223344",
                                                        "studyName":"DCS_FileUpload",
                                                        "studyVersion":"1.0.0.1",
                                                        "subjectId":"11223344556677889900AABBCCDDEEFF",
                                                        "eventId":"FFEEDDCCBBAA99887766554433221100",
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"ABCDEF1234567890FEDCBA0987654321",
                                                        "siteId":"0102030405060708090A0B0C0D0E0F10",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"cds.png",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"00112233445566778899AABBCCDDEEFF",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"NEVER_SIGNED",
                                                        "verifiedStatus":"VERIFIED",
                                                        "freezedStatus":"NEVER_FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"FILE_UPLOAD",
                                                        "itemD":null,
                                                        "itemF":"cds.png",
                                                        "itemR":"cds.png",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":"7F6544523A954CBA8E04B420EE1A916A",
                                                        "documentVersion":1,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    },
                                                    {
                                                        "id":"CF0816460565496FA106495A6CAA57B5",
                                                        "versionStart":"2025-03-29T18:09:01.716Z",
                                                        "transactionStart":null,
                                                        "transactionEnd":null,
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":null,
                                                        "studyId":"A1B2C3D4E5F6478390ABCDEF11223344",
                                                        "studyName":"DCS_FileUpload",
                                                        "studyVersion":"1.0.0.1",
                                                        "subjectId":"11223344556677889900AABBCCDDEEFF",
                                                        "eventId":"FFEEDDCCBBAA99887766554433221100",
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formSectionId":null,
                                                        "repeatSequenceNumber":null,
                                                        "itemId":"99998888777766665555444433332222",
                                                        "siteId":"0102030405060708090A0B0C0D0E0F10",
                                                        "variableId":null,
                                                        "originatorId":null,
                                                        "vendorCode":null,
                                                        "value":"George",
                                                        "measureUnit":null,
                                                        "normalizedValue":null,
                                                        "normalizedUnitId":null,
                                                        "numValue":null,
                                                        "floatValue":null,
                                                        "dateTimeValueUTC":null,
                                                        "monthValue":null,
                                                        "dayValue":null,
                                                        "yearValue":null,
                                                        "hourValue":null,
                                                        "minuteValue":null,
                                                        "secondValue":null,
                                                        "parentId":null,
                                                        "rootId":null,
                                                        "userId":"00112233445566778899AABBCCDDEEFF",
                                                        "reason":null,
                                                        "comment":null,
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":8,
                                                        "eventInstanceNum":null,
                                                        "targets":null,
                                                        "dataFlag":null,
                                                        "signedStatus":"NEVER_SIGNED",
                                                        "verifiedStatus":"NEVER_VERIFIED",
                                                        "freezedStatus":"NEVER_FROZEN",
                                                        "propertyId":null,
                                                        "propertyVersionStart":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "itemType":"TEXT",
                                                        "itemD":null,
                                                        "itemF":"George",
                                                        "itemR":"George",
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null,
                                                        "formStatus":null,
                                                        "sourceTimeStamp":null,
                                                        "lockedStatus":null,
                                                        "lockedDateTime":null,
                                                        "hdiId":null,
                                                        "documentId":null,
                                                        "documentVersion":null,
                                                        "validationRules":null,
                                                        "clearedLabs":null,
                                                        "clearedChildDataElements":null,
                                                        "dataEventType":null,
                                                        "affidavitCodeValue":null,
                                                        "visitStartDateLockedStatus":null,
                                                        "visitStartDateLockedDateTime":null
                                                    }
                                                ],
                                                "formsAssociations":[
                                                ],
                                                "forms":null,
                                                "labAssociations":null,
                                                "visit":{
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                },
                                                "formsStatus":[
                                                    {
                                                        "formId":"CAFEBABE1234567890ABCDEF99887766",
                                                        "formStatus":"COMPLETED",
                                                        "outerRepeats":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subject-{subjectId}-event-{eventId}-dataelements-visitdata-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subject-subjectid-event-eventid-dataelements-visitdata-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Updates a single data element for a subject. This API supports data flag.",
                "operationId":"mergeSingleDataElement5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto40"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto50"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"V5.0",
                "description":"Retrieves current subject details based on ID. It returns the mHealth Subject ID.",
                "operationId":"getSubjectById4_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject Id for which details needed",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto5"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"V5.0",
                "description":"WithdrawalDate and StudyCompletionDate added. WithdrawalDate/StudyCompletionDate is stored as a part of this API for subject Withdraw/Complete actions respectively.WithdrawalDate/StudyCompletionDate is mandatory for changing a subject to Withdrawn/Complete state respectively",
                "operationId":"updateSubject5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2FC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EDC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Subject update payload with all demographic, event, and status attributes to be persisted.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest50"
                            },
                            "examples":{
                                "SubjectRequest50 update payload example":{
                                    "summary":"SubjectRequest50",
                                    "description":"SubjectRequest50 update payload example",
                                    "value":{
                                        "subject":{
                                            "screeningDate":null,
                                            "eventType":"New",
                                            "subjectTransferId":null,
                                            "objectVersionNumber":1,
                                            "mhealthSubjectId":null,
                                            "fromStudyId":null,
                                            "subjNumSiteOrgId":"001Hyd",
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"",
                                            "softwareVersionNumber":7,
                                            "operationType":"CREATED",
                                            "subjectStudySerialNumber":null,
                                            "subjectSiteSerialNumber":"46",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "previousSubjectNumber":null,
                                            "screenFailureDate":null,
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                            "canBeCompleted":false,
                                            "lockedInStudyVersion":null,
                                            "canBeReplaced":false,
                                            "canBeUndoWithdrawn":false,
                                            "id":"0310EEFC55214993BC016ACAA41DABD5",
                                            "versionStart":"2025-11-21T18:22:43.730Z",
                                            "description":null,
                                            "subjectNumber":"001Hyd46",
                                            "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                            "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                            "dob":null,
                                            "state":"Withdrawn",
                                            "stateDate":"2025-11-21T18:22:43.000Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":null,
                                            "gender":null,
                                            "reason":null,
                                            "comment":null,
                                            "studyVersion":"2.0.0.38",
                                            "sourceTimeStamp":null,
                                            "screeningNumber":null,
                                            "randomizationNumber":null,
                                            "withdrawalReason":"Subject withdrew consent",
                                            "ehrLinkStatus":0,
                                            "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                            "studyCompletionDate":null,
                                            "withdrawalComment":"",
                                            "screenFailureComment":null,
                                            "replaceRand":"N",
                                            "unResolvedQueries":0,
                                            "incompleteVisits":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Updated subject details returned if update successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto13"
                                },
                                "examples":{
                                    "Subject Response example":{
                                        "summary":"SubjectRespDto13 Response",
                                        "description":"Subject Response example",
                                        "value":{
                                            "screeningDate":null,
                                            "eventType":"Withdrawn",
                                            "subjectTransferId":null,
                                            "objectVersionNumber":2,
                                            "mhealthSubjectId":null,
                                            "fromStudyId":null,
                                            "subjNumSiteOrgId":"001Hyd",
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"",
                                            "softwareVersionNumber":7,
                                            "operationType":"MODIFIED",
                                            "subjectStudySerialNumber":null,
                                            "subjectSiteSerialNumber":"46",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "previousSubjectNumber":null,
                                            "screenFailureDate":null,
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                            "canBeCompleted":false,
                                            "lockedInStudyVersion":null,
                                            "id":"0310EEFC55214993BC016ACAA41DABD5",
                                            "versionStart":"2025-12-04T07:22:00.597Z",
                                            "description":null,
                                            "subjectNumber":"001Hyd46",
                                            "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                            "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                            "dob":null,
                                            "state":"Withdrawn",
                                            "stateDate":"2025-12-04T07:22:00.016Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":null,
                                            "gender":null,
                                            "reason":null,
                                            "comment":null,
                                            "studyVersion":"2.0.0.38",
                                            "sourceTimeStamp":null,
                                            "screeningNumber":null,
                                            "randomizationNumber":null,
                                            "withdrawalReason":"Subject withdrew consent",
                                            "ehrLinkStatus":0,
                                            "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                            "studyCompletionDate":null,
                                            "withdrawalComment":"",
                                            "screenFailureComment":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves the history of all subjects from a study mode.",
                "operationId":"getSubjectHistory5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"V5.0",
                "description":"Lists all subjects with lock status for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and describes details in the Response section for each subject with lock status and includes completion and withdrawal dates.",
                "operationId":"getSubjects5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"CDC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "subject Details":{
                                        "description":"Subject Details Example",
                                        "value":[
                                            {
                                                "screeningDate":"2025-10-17T09:08:19.000Z",
                                                "eventType":"Screened",
                                                "subjectTransferId":null,
                                                "objectVersionNumber":2,
                                                "mhealthSubjectId":null,
                                                "fromStudyId":null,
                                                "subjNumSiteOrgId":"roman12",
                                                "signedStatus":"NEVER_SIGNED",
                                                "verifiedStatus":"NEVER_VERIFIED",
                                                "freezedStatus":"NEVER_FROZEN",
                                                "lastSigned":"",
                                                "softwareVersionNumber":7,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":null,
                                                "subjectSiteSerialNumber":"20",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "previousSubjectNumber":null,
                                                "screenFailureDate":null,
                                                "lockedStatus":"NEVER_LOCKED",
                                                "hasLockData":null,
                                                "lockedDateTime":null,
                                                "canBeCompleted":false,
                                                "lockedInStudyVersion":null,
                                                "id":"7FF1A7809E8044038EC35D8DCE81E0F6",
                                                "versionStart":"2025-10-17T09:08:19.418Z",
                                                "description":null,
                                                "subjectNumber":"roman1220",
                                                "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                                "siteId":"1200833448E94556B5CC9FA8422F9BDC",
                                                "dob":null,
                                                "state":"Screening_Initiated",
                                                "stateDate":"2025-10-17T09:08:19.000Z",
                                                "screeningFailure":null,
                                                "enrollmentFailure":null,
                                                "enrollmentOverride":null,
                                                "informedConsentDate":null,
                                                "gender":null,
                                                "reason":null,
                                                "comment":null,
                                                "studyVersion":"1.7.0.26",
                                                "sourceTimeStamp":null,
                                                "screeningNumber":null,
                                                "randomizationNumber":null,
                                                "withdrawalReason":null,
                                                "ehrLinkStatus":0,
                                                "withdrawalDate":null,
                                                "studyCompletionDate":null,
                                                "withdrawalComment":null,
                                                "screenFailureComment":null
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: This consolidated API retrieves locked status, subjects and their visit schedule,filter capabilities along with 'canBeCompleted' field for a subject.",
                "operationId":"getSubjectsVisitSchedule_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Lists subjects and search subjects based on input parameters. This returns mHealthSubjectId as part of the response, for the sites having a study version.",
                "operationId":"getSubjectsWithSiteStudyVersion_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site for which you want to retrieve subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"V5.0",
                "description":"Randomizes, dispenses or activates a subject, based on visit type, and completes the visit status.  ORS dispensation or randomization is called.",
                "operationId":"randomizeordispense_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request payload containing visit and dispensation details for subject randomization or drug dispensing.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "RandomizeOrDispenseRequest":{
                                    "summary":"Example randomization/dispensation visit request",
                                    "description":"RandomizeOrDispenseRequest",
                                    "value":{
                                        "siteId":"CDBBCCDDEEFF00112233445566778899",
                                        "subjectId":"EFBBCCDDEEFF00112233445566778899",
                                        "visitId":"FJBBCCDDEEFF00112233445566778899",
                                        "studyVersion":"1.0.0.1",
                                        "parameters":[
                                        ],
                                        "kitTypesForDoseHold":null,
                                        "kitTypesForResumeDispensation":null,
                                        "resumePartialDispensation":false,
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success. The subject was randomized or drug dispensed.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizeDetailsV15"
                                },
                                "examples":{
                                    "RandomizeDetails":{
                                        "summary":"Example successful randomization/dispense response",
                                        "description":"RandomizeDetails",
                                        "value":{
                                            "randomization":{
                                                "kits":[
                                                    {
                                                        "id":136,
                                                        "kitDescription":"Kit1",
                                                        "inventoryId":"4238036460B81176E063B5984C645F5C",
                                                        "trialSupplyType":"BOTTLE",
                                                        "dispensationConfirmed":false,
                                                        "groupingNumber":0,
                                                        "kitNumberUTF":"136"
                                                    },
                                                    {
                                                        "id":239,
                                                        "kitDescription":"Kit1",
                                                        "inventoryId":"4238036460B61176E063B5984C645F5C",
                                                        "trialSupplyType":"BOTTLE",
                                                        "dispensationConfirmed":false,
                                                        "groupingNumber":0,
                                                        "kitNumberUTF":"239"
                                                    },
                                                    {
                                                        "id":171,
                                                        "kitDescription":"Kit1",
                                                        "inventoryId":"4238036460B71176E063B5984C645F5C",
                                                        "trialSupplyType":"BOTTLE",
                                                        "dispensationConfirmed":false,
                                                        "groupingNumber":0,
                                                        "kitNumberUTF":"171"
                                                    }
                                                ],
                                                "visitTimestamp":"2025-10-28T12:20:00.677Z",
                                                "needsToVisitPharmacist":false,
                                                "pendingKitQuantity":0
                                            },
                                            "subject":{
                                                "screeningDate":"2025-10-28T12:18:42.000Z",
                                                "codeBreak":null,
                                                "eventType":"Randomized",
                                                "subjectTransferId":null,
                                                "objectVersionNumber":3,
                                                "mhealthSubjectId":null,
                                                "fromStudyId":null,
                                                "subjNumSiteOrgId":"OrsKansasSite",
                                                "signedStatus":null,
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "lastSigned":null,
                                                "softwareVersionNumber":7,
                                                "operationType":"MODIFIED",
                                                "subjectStudySerialNumber":null,
                                                "subjectSiteSerialNumber":null,
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "previousSubjectNumber":null,
                                                "screenFailureDate":null,
                                                "id":"14D19CB28029492485646CFF2E0457C7",
                                                "versionStart":"2025-10-28T12:19:39.365Z",
                                                "description":"Description",
                                                "subjectNumber":"OrsKansasSite1",
                                                "studyId":"78152D75650149188E13F565B4D568E1",
                                                "siteId":"310C4F0A297140CF91B29C14572F4D73",
                                                "dob":null,
                                                "state":"Active",
                                                "stateDate":"2025-10-28T12:19:39.000Z",
                                                "screeningFailure":null,
                                                "enrollmentFailure":null,
                                                "enrollmentOverride":null,
                                                "informedConsentDate":null,
                                                "gender":null,
                                                "reason":null,
                                                "comment":null,
                                                "studyVersion":"1.0.0.1",
                                                "sourceTimeStamp":null
                                            },
                                            "visit":{
                                                "id":"D513BB05448A4F58AEB87F233793D89D",
                                                "versionStart":"2025-10-28T12:20:02.143Z",
                                                "subjectId":"14D19CB28029492485646CFF2E0457C7",
                                                "eventId":"DC8B5E1A589348B09A3A80C705AF768B",
                                                "siteId":"310C4F0A297140CF91B29C14572F4D73",
                                                "studyVersion":"1.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":null,
                                                "comment":null,
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":5,
                                                "softwareVersionNumber":5,
                                                "visitStartDate":"2025-10-28T00:00:00.000Z",
                                                "visitType":"UNSCHEDULED_DISPENSATION",
                                                "eventType":"Visit_Complete",
                                                "eventInstanceNum":1,
                                                "signedStatus":"NEVER_SIGNED",
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "repeatingFormCount":null,
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "scheduledWindowStartDate":null,
                                                "scheduledWindowEndDate":null,
                                                "associatedStudyVersion":"1.0.0.1",
                                                "visitAction":null,
                                                "lockedStatus":null,
                                                "visitStartDateLockedStatus":null,
                                                "lockedDateTime":null,
                                                "visitStartDateLockedDateTime":null,
                                                "visitWindowWarning":null,
                                                "doseHoldAction":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves the list of visit status for a visit. If the event ID is null, then it lists all the visit status records for a subject. This API also provides unscheduled events details.",
                "operationId":"getVisitsStatus_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"V5.0",
                "description":"Adds the visit status record for given subject and visit ID. It handles unscheduled visits.",
                "operationId":"addVisitsStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    }
                ],
                "requestBody":{
                    "description":"Visit details to be added",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "eventInstanceNum":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatusDto11"
                                },
                                "examples":{
                                    "VisitsStatusDto11":{
                                        "description":"VisitsStatusDto11",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"D393C6EC5150457786359C5A18B0B7F9",
                                                "versionStart":"2025-12-06T23:19:02.039Z",
                                                "subjectId":"A3D92C4F9F8E4F0F9A6A7BB0C1D2E3F4",
                                                "eventId":"F9B8A7C6D5E4411299AAEE11CC22DD33",
                                                "siteId":"11AA22BB33CC44DDAABBCCDDEEFF1122",
                                                "studyVersion":"1.0.0.1",
                                                "visitStatus":"NEW",
                                                "reason":null,
                                                "comment":null,
                                                "operationType":"CREATED",
                                                "userId":"88EE77DD66CC55BBAA99887766554433",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":5,
                                                "visitStartDate":null,
                                                "visitType":"NON_DISPENSATION",
                                                "eventType":"Visit_Not_Started",
                                                "eventInstanceNum":null,
                                                "signedStatus":null,
                                                "verifiedStatus":null,
                                                "freezedStatus":null,
                                                "repeatingFormCount":null,
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "scheduledWindowStartDate":null,
                                                "scheduledWindowEndDate":null,
                                                "associatedStudyVersion":null,
                                                "visitAction":null
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_6",
                "parameters":[
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse50"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse50":{
                                        "description":"SubjectVisitsStatusResponse50",
                                        "value":{
                                            "subjects":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Retrieves the audit history records of the visit statuses for the given visit ID. This API also provides unscheduled events in response.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}",
                "operationId":"getVisitStartDetails_2",
                "parameters":[
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Updates the visit status for a given visit status ID. It handles unscheduled visits.",
                "operationId":"updateVisitsStatus_6",
                "parameters":[
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "objectVersionNumber":14,
                                        "eventInstanceNum":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatusRuleTargetsDto5"
                                },
                                "examples":{
                                    "VisitsStatusRuleTargetsDto5":{
                                        "description":"VisitsStatusRuleTargetsDto5",
                                        "value":{
                                            "visitStatusId":"53915DD9B758466AB2226CBCC4466B7E",
                                            "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                            "eventInstanceNum":1,
                                            "visitAction":"SCREEN_ENABLE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid payload"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v5.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}/clearruleerror/{message}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update and remove the visit status rule error"
                ],
                "summary":"V5.0",
                "description":"Updates and removes the visit status rule error for the given visit status ID. This API supports unscheduled visits.",
                "operationId":"updateVisitsStatusClearError",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    {
                        "name":"message",
                        "in":"path",
                        "description":"message",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CLEAR_ERROR"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "eventInstanceNum":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success."
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v5.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-clearruleerror-{message}-put",
                "x-filename-id":"ec-dc-svc-rest-v5.0-studies-studyid-mode-visitstatus-visitstatusid-clearruleerror-message-put"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Retrieves the audit history of a data element with sign or verify history. Added support for history of repeating section questions.",
                "operationId":"getDataElementAuditHistory_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId4_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Event ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"eventInstanceNumber",
                        "required":true,
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Filters data elements for a subject and for a visit or for all subjects or all visits.",
                "operationId":"getDataElementsByStudyId_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID from Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Unscheduled visit instance.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto7"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Retrieves data elements for a list of items by subject ID, with repeat transformations if any. Separate the item IDs with commas. <br><b>Rights:</b> <i>DataCaptureSubjectGet</i> and <i>SubjectDataClassificationGet</i>.",
                "operationId":"getDataElementsBySubjectIdItemIds_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item ID.The format for the item Id should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto6"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Updates single data element. This API supports data flag.",
                "operationId":"mergeSingleDataElement6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto40"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto60"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"V6.0",
                "description":"Retrieves current subject details based on ID. Withdrawal date, Study completion date and EHR link status added as a part of response.",
                "operationId":"getSubjectById6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto13"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response example",
                                        "description":"Subject Success",
                                        "value":{
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-001",
                                            "withdrawalReason":"Not applicable",
                                            "ehrLinkStatus":1,
                                            "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                            "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                            "withdrawalComment":"Subject breached protocols",
                                            "screenFailureComment":"Subject failed screening",
                                            "canBeCompleted":true,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"AABBCCDDEEFF00112233445566778899",
                                            "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                            "dob":"1990-01-01T00:00:00.000Z",
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                            "signedStatus":"SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "codeBreak":"N"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"V6.0",
                "description":"Update subject information for a specific subject by identifier within a study. All subject demographic, event, and status fields may be updated. Path parameters define the study and subject. The request body provides new attribute values for the subject. Note: This API updates the subject with the provided details.",
                "operationId":"updateSubject6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2C5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "requestBody":{
                    "description":"Subject update payload with all demographic, event, and status attributes to be persisted.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest60"
                            },
                            "examples":{
                                "SubjectRequest60":{
                                    "summary":"Expanded subject update payload example",
                                    "description":"SubjectRequest60",
                                    "value":{
                                        "screeningDate":null,
                                        "eventType":"Withdrawn",
                                        "reScreenEventInstanceNum":"1",
                                        "subjectTransferId":null,
                                        "objectVersionNumber":2,
                                        "mhealthSubjectId":null,
                                        "fromStudyId":null,
                                        "subjNumSiteOrgId":"001Hyd",
                                        "signedStatus":"NEVER_SIGNED",
                                        "verifiedStatus":"NEVER_VERIFIED",
                                        "freezedStatus":"NEVER_FROZEN",
                                        "lastSigned":"",
                                        "softwareVersionNumber":7,
                                        "operationType":"MODIFIED",
                                        "subjectStudySerialNumber":null,
                                        "subjectSiteSerialNumber":"46",
                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                        "previousSubjectNumber":null,
                                        "screenFailureDate":null,
                                        "lockedStatus":"UNLOCKED",
                                        "hasLockData":false,
                                        "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                        "canBeCompleted":false,
                                        "lockedInStudyVersion":null,
                                        "id":"0310EEFC55214993BC016ACAA41DABD5",
                                        "versionStart":"2025-12-04T07:22:00.597Z",
                                        "description":null,
                                        "subjectNumber":"001Hyd46",
                                        "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                        "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                        "dob":null,
                                        "state":"Withdrawn",
                                        "stateDate":"2025-12-04T07:22:00.016Z",
                                        "screeningFailure":null,
                                        "enrollmentFailure":null,
                                        "enrollmentOverride":null,
                                        "informedConsentDate":null,
                                        "gender":null,
                                        "reason":null,
                                        "comment":null,
                                        "studyVersion":"2.0.0.38",
                                        "sourceTimeStamp":null,
                                        "screeningNumber":null,
                                        "randomizationNumber":null,
                                        "withdrawalReason":"Subject withdrew consent",
                                        "ehrLinkStatus":0,
                                        "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                        "studyCompletionDate":null,
                                        "withdrawalComment":"",
                                        "screenFailureComment":null
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Updated subject details returned if update successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto15"
                                },
                                "examples":{
                                    "Expanded updated subject example":{
                                        "summary":"SubjectRespDto15",
                                        "description":"Expanded updated subject example",
                                        "value":{
                                            "screeningDate":null,
                                            "eventType":"Withdrawn",
                                            "reScreenEventInstanceNum":"1",
                                            "subjectTransferId":null,
                                            "replaceRand":"y",
                                            "objectVersionNumber":2,
                                            "mhealthSubjectId":null,
                                            "fromStudyId":null,
                                            "subjNumSiteOrgId":"001Hyd",
                                            "unResolvedQueries":2,
                                            "incompleteVisits":1,
                                            "canBeReplaced":true,
                                            "canBeUndoWithdrawn":true,
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"",
                                            "softwareVersionNumber":7,
                                            "operationType":"MODIFIED",
                                            "subjectStudySerialNumber":null,
                                            "subjectSiteSerialNumber":"46",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "previousSubjectNumber":null,
                                            "screenFailureDate":null,
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                            "canBeCompleted":false,
                                            "lockedInStudyVersion":null,
                                            "id":"0310EEFC55214993BC016ACAA41DABD5",
                                            "versionStart":"2025-12-04T07:22:00.597Z",
                                            "description":null,
                                            "subjectNumber":"001Hyd46",
                                            "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                            "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                            "dob":null,
                                            "state":"Withdrawn",
                                            "stateDate":"2025-12-04T07:22:00.016Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":null,
                                            "gender":null,
                                            "reason":null,
                                            "comment":null,
                                            "studyVersion":"2.0.0.38",
                                            "sourceTimeStamp":null,
                                            "screeningNumber":null,
                                            "randomizationNumber":null,
                                            "withdrawalReason":"Subject withdrew consent",
                                            "ehrLinkStatus":0,
                                            "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                            "studyCompletionDate":null,
                                            "withdrawalComment":"",
                                            "screenFailureComment":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Retrieves the history of all subjects from a study mode.",
                "operationId":"getSubjectHistory6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"V6.0",
                "description":"Lists all subjects with lock status for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and describes details in the Response section for each subject with lock status and includes completion and withdrawal dates. Including more fields in response replaceRand, unResolvedQueries, incompleteVisits, canBeReplaced and canBeUndoWithdrawn.",
                "operationId":"getSubjects6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto14"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response example",
                                        "description":"Subject Success",
                                        "value":{
                                            "replaceRand":"Y",
                                            "unResolvedQueries":2,
                                            "incompleteVisits":1,
                                            "canBeReplaced":true,
                                            "canBeUndoWithdrawn":true,
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-001",
                                            "withdrawalReason":"Not applicable",
                                            "ehrLinkStatus":1,
                                            "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                            "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                            "withdrawalComment":"Subject breached protocols",
                                            "screenFailureComment":"Subject failed screening",
                                            "canBeCompleted":true,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"AABBCCDDEEFF00112233445566778899",
                                            "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                            "dob":"1990-01-01T00:00:00.000Z",
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                            "signedStatus":"SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "codeBreak":"N"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: This consolidated API retrieves EHR Link Status, locked status, subjects and their visit schedule. Filter capabilities include 'canBeCompleted' field for a subject.",
                "operationId":"getSubjectsVisitSchedule_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"show all undo ScreenFail/Withdrawl/Completeion visits",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Retrieves a list of subject and also searches for subjects based on input parameters. This API request returns <i>mHealthSubjectId</i> as part of the response body for sites associated with a study version.",
                "operationId":"getSubjectsWithSiteStudyVersionAndSignVerifyFilter",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site for which you want to retrieve subjects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto6"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/randomizeordispense":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Randomize or dispense subject"
                ],
                "summary":"V6.0",
                "description":"Randomize or dispense an investigational product for the specified subject's visit. This operation performs either randomization or drug dispensation, depending on the subject's eligibility and study design configuration.V6 return with more information about than v5",
                "operationId":"randomizeordispense_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request payload containing visit and dispensation details for subject randomization or drug dispensing.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "RandomizeOrDispenseRequest":{
                                    "summary":"Example randomization/dispensation visit request",
                                    "description":"RandomizeOrDispenseRequest",
                                    "value":{
                                        "siteId":"CDBBCCDDEEFF00112233445566778899",
                                        "subjectId":"EFBBCCDDEEFF00112233445566778899",
                                        "visitId":"FJBBCCDDEEFF00112233445566778899",
                                        "studyVersion":"1.0.0.1",
                                        "parameters":[
                                        ],
                                        "kitTypesForDoseHold":null,
                                        "kitTypesForResumeDispensation":null,
                                        "resumePartialDispensation":false,
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success. The subject was randomized or drug dispensed.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizeDetailsV16"
                                },
                                "examples":{
                                    "RandomizeDetails":{
                                        "summary":"Example successful randomization/dispense response",
                                        "description":"RandomizeDetails",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "randomization":{
                                                    "kits":[
                                                        {
                                                            "id":136,
                                                            "kitDescription":"Kit1",
                                                            "inventoryId":"4238036460B81176E063B5984C645F5C",
                                                            "trialSupplyType":"BOTTLE",
                                                            "dispensationConfirmed":false,
                                                            "groupingNumber":0,
                                                            "kitNumberUTF":"136"
                                                        },
                                                        {
                                                            "id":239,
                                                            "kitDescription":"Kit1",
                                                            "inventoryId":"4238036460B61176E063B5984C645F5C",
                                                            "trialSupplyType":"BOTTLE",
                                                            "dispensationConfirmed":false,
                                                            "groupingNumber":0,
                                                            "kitNumberUTF":"239"
                                                        },
                                                        {
                                                            "id":171,
                                                            "kitDescription":"Kit1",
                                                            "inventoryId":"4238036460B71176E063B5984C645F5C",
                                                            "trialSupplyType":"BOTTLE",
                                                            "dispensationConfirmed":false,
                                                            "groupingNumber":0,
                                                            "kitNumberUTF":"171"
                                                        }
                                                    ],
                                                    "visitTimestamp":"2025-10-28T12:20:00.677Z",
                                                    "needsToVisitPharmacist":false,
                                                    "pendingKitQuantity":0
                                                },
                                                "subject":{
                                                    "screeningDate":"2025-10-28T12:18:42.000Z",
                                                    "codeBreak":null,
                                                    "eventType":"Randomized",
                                                    "subjectTransferId":null,
                                                    "objectVersionNumber":3,
                                                    "mhealthSubjectId":null,
                                                    "fromStudyId":null,
                                                    "subjNumSiteOrgId":"OrsKansasSite",
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "lastSigned":null,
                                                    "softwareVersionNumber":7,
                                                    "operationType":"MODIFIED",
                                                    "subjectStudySerialNumber":null,
                                                    "subjectSiteSerialNumber":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "previousSubjectNumber":null,
                                                    "screenFailureDate":null,
                                                    "id":"14D19CB28029492485646CFF2E0457C7",
                                                    "versionStart":"2025-10-28T12:19:39.365Z",
                                                    "description":"Description",
                                                    "subjectNumber":"OrsKansasSite1",
                                                    "studyId":"78152D75650149188E13F565B4D568E1",
                                                    "siteId":"310C4F0A297140CF91B29C14572F4D73",
                                                    "dob":null,
                                                    "state":"Active",
                                                    "stateDate":"2025-10-28T12:19:39.000Z",
                                                    "screeningFailure":null,
                                                    "enrollmentFailure":null,
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":null,
                                                    "gender":null,
                                                    "reason":null,
                                                    "comment":null,
                                                    "studyVersion":"1.0.0.1",
                                                    "sourceTimeStamp":null
                                                },
                                                "visit":{
                                                    "id":"D513BB05448A4F58AEB87F233793D89D",
                                                    "versionStart":"2025-10-28T12:20:02.143Z",
                                                    "subjectId":"14D19CB28029492485646CFF2E0457C7",
                                                    "eventId":"DC8B5E1A589348B09A3A80C705AF768B",
                                                    "siteId":"310C4F0A297140CF91B29C14572F4D73",
                                                    "studyVersion":"1.0.0.1",
                                                    "visitStatus":"COMPLETE",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"MODIFIED",
                                                    "objectVersionNumber":5,
                                                    "softwareVersionNumber":5,
                                                    "visitStartDate":"2025-10-28T00:00:00.000Z",
                                                    "visitType":"UNSCHEDULED_DISPENSATION",
                                                    "eventType":"Visit_Complete",
                                                    "eventInstanceNum":1,
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "repeatingFormCount":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "scheduledWindowStartDate":null,
                                                    "scheduledWindowEndDate":null,
                                                    "associatedStudyVersion":"1.0.0.1",
                                                    "visitAction":null,
                                                    "lockedStatus":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "visitStartDateLockedDateTime":null,
                                                    "visitWindowWarning":null,
                                                    "doseHoldAction":null
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-randomizeordispense-post",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-subjects-randomizeordispense-post"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Retrieves the list of visit statuses for a visit. If the event ID is null, then it lists all the visit statuses records for a subject.This API also provides unscheduled events details.",
                "operationId":"getVisitsStatus_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "SuccessResponse":{
                                        "description":"SuccessResponse",
                                        "value":{
                                            "result":"Success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid payload"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-visitstatus-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Create visit status record"
                ],
                "summary":"V6.0",
                "description":"Creates the visit status record for a given subject and visit ID and returns the latest visit attributes including doseHoldAction that the client uses to decide whether the Dose Hold button remains visible.",
                "operationId":"addVisitsStatus_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"220ED6ED76C44CA9BC771024E5D62B2B"
                    }
                ],
                "requestBody":{
                    "description":"Visit details to be added",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            },
                            "examples":{
                                "VisitsStatusDto4":{
                                    "description":"VisitsStatusDto4",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"UNSCHEDULED_DISPENSATION",
                                        "eventType":"Visit_Not_Started",
                                        "eventInstanceNum":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatusDto13"
                                },
                                "examples":{
                                    "VisitsStatusDto13":{
                                        "description":"VisitsStatusDto13",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"D393C6EC5150457786359C5A18B0B7F9",
                                                "versionStart":"2025-12-06T23:19:02.039Z",
                                                "subjectId":"A3D92C4F9F8E4F0F9A6A7BB0C1D2E3F4",
                                                "eventId":"F9B8A7C6D5E4411299AAEE11CC22DD33",
                                                "siteId":"11AA22BB33CC44DDAABBCCDDEEFF1122",
                                                "studyVersion":"1.0.0.1",
                                                "visitStatus":"NEW",
                                                "visitType":"UNSCHEDULED_DISPENSATION",
                                                "eventType":"Visit_Not_Started",
                                                "softwareVersionNumber":5,
                                                "visitAction":"DISPENSE_ENABLE",
                                                "visitWindowWarning":"NONE",
                                                "doseHoldAction":"ENABLE"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-visitstatus-post",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-visitstatus-post"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"V6.0",
                "description":"Retrieves the audit history records of the visit statuses for the given visit ID. This API also provides unscheduled events in response.",
                "operationId":"getVisitStartDetails_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto610"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusHistory":{
                                        "description":"VisitsStatusHistory",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Updates the visit status for a given ID. Supports unscheduled visits.",
                "operationId":"updateVisitsStatus_7",
                "parameters":[
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v6.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}/clearruleerror/{message}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update and remove the visit status rule error"
                ],
                "summary":"V6.0",
                "description":"Updates and removes the visit status rule error for the given visit status ID. This API supports unscheduled visits and uses VisitStatusDto12.",
                "operationId":"updateVisitsStatusClearError_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    {
                        "name":"message",
                        "in":"path",
                        "description":"message",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CLEAR_ERROR"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto12"
                            },
                            "examples":{
                                "VisitsStatusDto12":{
                                    "description":"VisitsStatusDto12",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "objectVersionNumber":14,
                                        "eventInstanceNum":1,
                                        "signedStatus":"SIGNED",
                                        "verifiedStatus":"NOT_APPLICABLE",
                                        "freezedStatus":"NOT_APPLICABLE",
                                        "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                        "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                        "associatedStudyVersion":"3.0.0.1",
                                        "visitAction":"SCREEN_ENABLE",
                                        "lockedStatus":"LOCKED",
                                        "visitStartDateLockedStatus":"UNLOCKED",
                                        "lockedDateTime":"2023-01-01T09:00:00Z",
                                        "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                        "visitWindowWarning":"NONE"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success."
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v6.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-clearruleerror-{message}-put",
                "x-filename-id":"ec-dc-svc-rest-v6.0-studies-studyid-mode-visitstatus-visitstatusid-clearruleerror-message-put"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/repeatSection/consolidatedRepeatInstanceNumbers":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Get consolidated repeat instance numbers"
                ],
                "summary":"V7.0",
                "description":"Returns list of repeat form numbers, form section IDs and repeat instance numbers that belong to a given subject, visit and formIds.",
                "operationId":"getConsolidatedFormRptInstNumbers",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                ],
                "requestBody":{
                    "description":"Request to compute consolidated repeat instance numbers",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ConsolidatedRepeatInstanceRequestDto"
                            },
                            "examples":{
                                "ConsolidatedRepeatInstanceRequest":{
                                    "description":"ConsolidatedRepeatInstanceRequest",
                                    "value":{
                                        "subjectId":"ABCDEF1234567890ABCDEF1234567890",
                                        "forms":[
                                            "40DB4EF4847849CCB24EFCCB71CDA436",
                                            "50DB4EF4847849CCB24EFCCB71CDA436"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ConsolidatedRepeatInstanceResponseDto"
                                    }
                                },
                                "examples":{
                                    "ConsolidatedRepeatInstances":{
                                        "description":"ConsolidatedRepeatInstances",
                                        "value":[
                                            {
                                                "eventId":"CBCDEF1234567890ABCDEF1234567890",
                                                "eventInstanceNumber":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "instances":[
                                                    "1",
                                                    "2"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-repeatSection-consolidatedRepeatInstanceNumbers-post",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-repeatsection-consolidatedrepeatinstancenumbers-post"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory_4",
                "parameters":[
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto10"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Event ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Event Instance Number (eventInstanceNum) for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"integer"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Retrieves all data elements for a subject and a visit or for all subjects and all of their visits.",
                "operationId":"getDataElementsByStudyId_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Event ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Event Instance Number (eventInstanceNum) for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Creates multiple data elements for a subject, for a particular visit and particular form.",
                "operationId":"saveMultipleDataElement7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"V7.0",
                "description":"Retrieves data elements for a list of items by subject ID, with repeat transformations if any. Separate the item IDs with commas. Up-versioned to include <i>hdiId</i> of DataElement ",
                "operationId":"getDataElementsBySubjectIdItemIds_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item ID.The format for the item Id should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF,GEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"HEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto6"
                                    }
                                },
                                "examples":{
                                    "DataElementsBySubjectItemsV7":{
                                        "description":"DataElementsBySubjectItemsV7",
                                        "value":[
                                            {
                                                "id":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyVersion":"3.0.0.1",
                                                "studyName":"Diabetes Study",
                                                "subjectId":"EEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "eventId":"FEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"BBCDEF1234567890ABCDEF1234567890",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "variableId":"CBCDEF1234567890ABCDEF1234567890",
                                                "value":"118",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"DBCDEF1234567890ABCDEF1234567890",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "repeatSequenceNumber":1,
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "vendorCode":"ACME",
                                                "originatorId":"EBCDEF1234567890ABCDEF1234567890",
                                                "propertyId":"83CC828113AC439181071CB44D2C6FE5",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "objectVersionNumber":1,
                                                "reason":"Correction",
                                                "comment":"Adjusted value after review",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"Value out of range",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/repeatSection/repeatInstanceNumbers":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get repeat instance numbers"
                ],
                "summary":"V7.0",
                "description":"Returns list of repeat form numbers, form section IDs and repeat instance numbers that belong to a given subject, visit and form.",
                "operationId":"getFormRptInstNumbers",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"includeDel",
                        "in":"query",
                        "description":"Include previous version of the record in to account. If the value is set to 0 then previous versions of the record are not taken into consideration and vice-versa. ",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "RepeatInstanceNumbers":{
                                        "description":"RepeatInstanceNumbers",
                                        "value":[
                                            "1",
                                            "2"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-repeatSection-repeatInstanceNumbers-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-repeatsection-repeatinstancenumbers-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Updates a single data element. This API supports data flag.",
                "operationId":"mergeSingleDataElement7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto50"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto60"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"V7.0",
                "description":"Retrieves full details for a subject by ID with enhanced operational fields for replacement-randomization workflows. Including additional fields replaceRand, unResolvedQueries, incompleteVisits, canBeReplaced, canBeUndoWithdrawn.",
                "operationId":"getSubjectById7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto14"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response example",
                                        "description":"Subject Success",
                                        "value":{
                                            "replaceRand":"Y",
                                            "unResolvedQueries":2,
                                            "incompleteVisits":1,
                                            "canBeReplaced":true,
                                            "canBeUndoWithdrawn":true,
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-001",
                                            "withdrawalReason":"Not applicable",
                                            "ehrLinkStatus":1,
                                            "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                            "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                            "withdrawalComment":"Subject breached protocols",
                                            "screenFailureComment":"Subject failed screening",
                                            "canBeCompleted":true,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"AABBCCDDEEFF00112233445566778899",
                                            "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                            "dob":"1990-01-01T00:00:00.000Z",
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                            "signedStatus":"SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "codeBreak":"N"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-subjects-subjectid-get"
            },
            "put":{
                "tags":[
                    "Data Capture/Subjects/Update subject"
                ],
                "summary":"V7.0",
                "description":"Update subject information for a specific subject by identifier within a study. All subject demographic, event, and status fields may be updated. Path parameters define the study and subject. The request body provides new attribute values for the subject. Note: This API updates the subject with the provided details.",
                "operationId":"updateSubject7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2C5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "requestBody":{
                    "description":"Subject update payload with all demographic, event, and status attributes to be persisted.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectRequest70"
                            },
                            "examples":{
                                "SubjectRequest70":{
                                    "summary":"Expanded subject update payload example",
                                    "description":"SubjectRequest70",
                                    "value":{
                                        "screeningDate":null,
                                        "eventType":"Withdrawn",
                                        "reScreenEventInstanceNum":"1",
                                        "subjectTransferId":null,
                                        "objectVersionNumber":2,
                                        "mhealthSubjectId":null,
                                        "fromStudyId":null,
                                        "subjNumSiteOrgId":"001Hyd",
                                        "signedStatus":"NEVER_SIGNED",
                                        "verifiedStatus":"NEVER_VERIFIED",
                                        "freezedStatus":"NEVER_FROZEN",
                                        "lastSigned":"",
                                        "softwareVersionNumber":7,
                                        "operationType":"MODIFIED",
                                        "subjectStudySerialNumber":null,
                                        "subjectSiteSerialNumber":"46",
                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                        "previousSubjectNumber":null,
                                        "screenFailureDate":null,
                                        "lockedStatus":"UNLOCKED",
                                        "hasLockData":false,
                                        "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                        "canBeCompleted":false,
                                        "lockedInStudyVersion":null,
                                        "id":"0310EEFC55214993BC016ACAA41DABD5",
                                        "versionStart":"2025-12-04T07:22:00.597Z",
                                        "description":null,
                                        "subjectNumber":"001Hyd46",
                                        "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                        "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                        "dob":null,
                                        "state":"Withdrawn",
                                        "stateDate":"2025-12-04T07:22:00.016Z",
                                        "screeningFailure":null,
                                        "enrollmentFailure":null,
                                        "enrollmentOverride":null,
                                        "informedConsentDate":null,
                                        "gender":null,
                                        "reason":null,
                                        "comment":null,
                                        "studyVersion":"2.0.0.38",
                                        "sourceTimeStamp":null,
                                        "screeningNumber":null,
                                        "randomizationNumber":null,
                                        "withdrawalReason":"Subject withdrew consent",
                                        "ehrLinkStatus":0,
                                        "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                        "studyCompletionDate":null,
                                        "withdrawalComment":"",
                                        "screenFailureComment":null,
                                        "enrollmentDate":"2025-10-01T09:00:01.000Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Updated subject details returned if update successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto16"
                                },
                                "examples":{
                                    "Expanded updated subject example":{
                                        "summary":"SubjectRespDto16",
                                        "description":"Expanded updated subject example",
                                        "value":{
                                            "screeningDate":null,
                                            "eventType":"Withdrawn",
                                            "reScreenEventInstanceNum":"1",
                                            "subjectTransferId":null,
                                            "replaceRand":"y",
                                            "objectVersionNumber":2,
                                            "mhealthSubjectId":null,
                                            "fromStudyId":null,
                                            "subjNumSiteOrgId":"001Hyd",
                                            "unResolvedQueries":2,
                                            "incompleteVisits":1,
                                            "canBeReplaced":true,
                                            "canBeUndoWithdrawn":true,
                                            "signedStatus":"NEVER_SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"",
                                            "softwareVersionNumber":7,
                                            "operationType":"MODIFIED",
                                            "subjectStudySerialNumber":null,
                                            "subjectSiteSerialNumber":"46",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "previousSubjectNumber":null,
                                            "screenFailureDate":null,
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-11-24T11:10:27.960Z",
                                            "canBeCompleted":false,
                                            "lockedInStudyVersion":null,
                                            "id":"0310EEFC55214993BC016ACAA41DABD5",
                                            "versionStart":"2025-12-04T07:22:00.597Z",
                                            "description":null,
                                            "subjectNumber":"001Hyd46",
                                            "studyId":"222EABDE1B9648F69D3B6250880A2B09",
                                            "siteId":"475454D6B7F247C88D401DB25CA2C7D2",
                                            "dob":null,
                                            "state":"Withdrawn",
                                            "stateDate":"2025-12-04T07:22:00.016Z",
                                            "screeningFailure":null,
                                            "enrollmentFailure":null,
                                            "enrollmentOverride":null,
                                            "informedConsentDate":null,
                                            "gender":null,
                                            "reason":null,
                                            "comment":null,
                                            "studyVersion":"2.0.0.38",
                                            "sourceTimeStamp":null,
                                            "screeningNumber":null,
                                            "randomizationNumber":null,
                                            "withdrawalReason":"Subject withdrew consent",
                                            "ehrLinkStatus":0,
                                            "withdrawalDate":"2025-12-04T00:00:00.000Z",
                                            "studyCompletionDate":null,
                                            "withdrawalComment":"",
                                            "screenFailureComment":null,
                                            "enrollmentDate":"2025-10-01T09:00:01.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-subjects-{subjectId}-put",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-subjects-subjectid-put"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Retrieves the history of given subject with sourceTimeStamp value in response from a mode.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/history/{subjectId}",
                "operationId":"getSubjectHistory7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto9"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"V7.0",
                "description":"Retrieves a list of subjects and also searches for subjects based on input parameters. This API request returns <i>mHealthSubjectId</i> as part of the response body, for the sites having a study version. The supported parameters are 'readyToSign', 'readyToVerify', 'signed', 'verified', 'freezed' and 'signedandverified'.",
                "operationId":"getSubjectsWithSiteStudyVersionAndSignVerifyFilter_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5B4A9B5E6F78123456789ABCDEF2234"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":[
                            "Screened",
                            "Completed"
                        ]
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":[
                            "Smith"
                        ]
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"verify"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto6"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response list example",
                                        "description":"Subject Success",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"AABBCCDDEEFF00112233445566778899",
                                                "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                                "dob":"1990-01-01T00:00:00.000Z",
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"Active",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "reason":"Protocol break happened",
                                                "comment":"Initial enrollment",
                                                "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "objectVersionNumber":14,
                                                "eventType":"Screened",
                                                "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NEVER_VERIFIED",
                                                "freezedStatus":"NEVER_FROZEN",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "codeBreak":"N"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"V7.0",
                "description":"Retrieves the audit history records of the visit statuses for the given visit ID. This API also provides unscheduled events in response.",
                "operationId":"getVisitStartDetails_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto710"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto710List":{
                                        "description":"VisitsStatusDto710List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "objectVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                                "lockedStatus":"NOT_APPLICABLE",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Retrieves the list of visit statuses for a visit. If the event ID is null, then it lists all the visit statuses records for a subject. This API also provides unscheduled events details.",
                "operationId":"getVisitsStatus_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects limit.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v7.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Updates the visit status for a given visit status ID. It handles unscheduled visits.",
                "operationId":"updateVisitsStatus_8",
                "parameters":[
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v7.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v7.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}",
                "operationId":"getDataElementAuditHistory_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto120"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"V8.0",
                "description":"Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data. Up-versioned to include hdiId for DataElements.",
                "operationId":"getDataElementsByFormIDSubjectId_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Event Instance Number (eventInstanceNum) for which you want to retrieve the data values.",
                        "schema":{
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementsByFormSubject":{
                                        "description":"DataElementsByFormSubject",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyId":"BBCDEF1234567890ABCDEF1234567890",
                                                "studyVersion":"3.0.0.1",
                                                "studyName":"Diabetes Study",
                                                "subjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "eventId":"DBCDEF1234567890ABCDEF1234567890",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"3F1A9CBE12AF4D3B8D92A1F0C3E89F11",
                                                "itemId":"7AB2C4D19F3E4A88B5D1C9AE22F67B44",
                                                "variableId":"9C22A1FFE5B8410E92BB4F713A1C88D2",
                                                "value":"118",
                                                "measureUnit":"mg/dL",
                                                "normalizedUnitId":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                "normalizedValue":"6.6",
                                                "numValue":120,
                                                "floatValue":118.75,
                                                "yearValue":2023,
                                                "monthValue":12,
                                                "dayValue":15,
                                                "hourValue":9,
                                                "minuteValue":30,
                                                "secondValue":45,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "repeatSequenceNumber":1,
                                                "dataFlag":"93CC828113AC439181071CB44D2C6FE5",
                                                "vendorCode":"ACME",
                                                "originatorId":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                                "reason":"Correction",
                                                "comment":"Adjusted value after review",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "objectVersionNumber":1,
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"Value out of range",
                                                "versionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get all data elements based on subject and visit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Retrieves all data elements for a subject and a visit or for all subjects and all of their visits. API has been deprecated and moved to DIS (Data Integration Service) Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements.",
                "operationId":"getDataElementsByStudyId_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"includeSignVerifyFreeze",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-dataelements-get"
            },
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Creates multiple data elements for a subject for a particular visit and particular form, with form associations if any. <br><b>Rights:</b> <i>DataCaptureSubjectPost</i> and <i>SubjectDataClassificationPost</i>.",
                "operationId":"saveFormAssociationsDataElement_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the audit history of a data element.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Data values to be stored.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementFormAssociationsReq"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"V8.0",
                "description":"Retrieves data elements for a list of items by subject ID, with repeat transformations if any. Separate the item IDs with commas. Up-versioned to include validation Rules.",
                "operationId":"getDataElementsBySubjectIdItemIds_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item ID.The format for the item Id should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEH,DEADBEEFDEADBEEFDEADBEEFDEADBEEI"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEG"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto123"
                                    }
                                },
                                "examples":{
                                    "DataElementsBySubjectItems":{
                                        "description":"DataElementsBySubjectItems",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"A1B2C3D4E5F64789AABBCCDDEEFF0011",
                                                    "versionStart":"2025-10-09T20:26:40.683Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"11AA22BB33CC44DD55EE66FF77889900",
                                                    "studyName":"DCS_FormStatus",
                                                    "studyVersion":"1.14.0.16",
                                                    "subjectId":"8899AABBCCDDEEFF0011223344556677",
                                                    "eventId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "formId":"55EE44DD33CC22BB11AA0099FFEEDCBA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"CAFEBABE1234567890ABCDEF12345678",
                                                    "siteId":"00112233445566778899AABBCCDDEEFF",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"name",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"TEXT",
                                                    "itemD":null,
                                                    "itemF":"name",
                                                    "itemR":"name",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "formStatus":null,
                                                    "sourceTimeStamp":null,
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "hdiId":null,
                                                    "documentId":null,
                                                    "documentVersion":null,
                                                    "validationRules":null,
                                                    "clearedLabs":null,
                                                    "clearedChildDataElements":null,
                                                    "dataEventType":null,
                                                    "affidavitCodeValue":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                },
                                                {
                                                    "id":"FEEDFACE0123456789ABCDEF01234567",
                                                    "versionStart":"2025-10-09T20:26:41.604Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"11AA22BB33CC44DD55EE66FF77889900",
                                                    "studyName":"DCS_FormStatus",
                                                    "studyVersion":"1.14.0.16",
                                                    "subjectId":"8899AABBCCDDEEFF0011223344556677",
                                                    "eventId":"ABCDEF1234567890ABCDEF1234567890",
                                                    "formId":"55EE44DD33CC22BB11AA0099FFEEDCBA",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"BADA55EEFF00112233445566778899AA",
                                                    "siteId":"00112233445566778899AABBCCDDEEFF",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":null,
                                                    "value":"[{\"value\":\"2\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"00000000000000000000000000000003",
                                                    "reason":"Other",
                                                    "comment":"Rule execution",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":null,
                                                    "targets":null,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"2",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":null,
                                                    "innerRepeat":null,
                                                    "outerRepeat":null,
                                                    "formStatus":null,
                                                    "sourceTimeStamp":null,
                                                    "lockedStatus":null,
                                                    "lockedDateTime":null,
                                                    "hdiId":null,
                                                    "documentId":null,
                                                    "documentVersion":null,
                                                    "validationRules":null,
                                                    "clearedLabs":null,
                                                    "clearedChildDataElements":null,
                                                    "dataEventType":null,
                                                    "affidavitCodeValue":null,
                                                    "visitStartDateLockedStatus":null,
                                                    "visitStartDateLockedDateTime":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Updates single data element with section support. This API supports data flag and features of PUT operation of v7.0 of this API, along the support section.",
                "operationId":"updateSingleDataElementv8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Update data element request",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto60"
                            },
                            "examples":{
                                "UpdateDataElementRequestV8":{
                                    "description":"UpdateDataElementRequestV8",
                                    "value":"{\n  \\\"dataElement\\\": {\n    \\\"id\\\": \\\"1BC29B36F5D64B1B95F4BDBBCEA481BE\\\",\n    \\\"studyId\\\": \\\"ABCDEF1234567890ABCDEF1234567890\\\",\n    \\\"subjectId\\\": \\\"10F75668189F422F9A461A315D211111\\\",\n    \\\"eventId\\\": \\\"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC\\\",\n    \\\"formId\\\": \\\"40DB4EF4847849CCB24EFCCB71CDA436\\\",\n    \\\"itemId\\\": \\\"DEADBEEFDEADBEEFDEADBEEFDEADBEEF\\\",\n    \\\"eventInstanceNum\\\": 1,\n    \\\"value\\\": \\\"118\\\",\n    \\\"measureUnit\\\": \\\"mg/dL\\\",\n    \\\"reason\\\": \\\"Correction\\\",\n    \\\"comment\\\": \\\"Adjusted value after review\\\"\n  }\n}"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto8"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":"{\n  \\\"id\\\": \\\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\\\",\n  \\\"studyId\\\": \\\"ABCDEF1234567890ABCDEF1234567890\\\",\n  \\\"studyVersion\\\": \\\"3.0.0.1\\\",\n  \\\"subjectId\\\": \\\"10F75668189F422F9A461A315D211111\\\",\n  \\\"eventId\\\": \\\"CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC\\\",\n  \\\"formId\\\": \\\"40DB4EF4847849CCB24EFCCB71CDA436\\\",\n  \\\"itemId\\\": \\\"DEADBEEFDEADBEEFDEADBEEFDEADBEEF\\\",\n  \\\"eventInstanceNum\\\": 1,\n  \\\"value\\\": \\\"120\\\",\n  \\\"measureUnit\\\": \\\"mg/dL\\\"\n}"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject details"
                ],
                "summary":"V8.0",
                "description":"Retrieves full details for a subject by ID with enrollment date",
                "operationId":"getSubjectById8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectRespDto16"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response example",
                                        "description":"Subject Success",
                                        "value":{
                                            "replaceRand":"Y",
                                            "unResolvedQueries":2,
                                            "incompleteVisits":1,
                                            "canBeReplaced":true,
                                            "canBeUndoWithdrawn":true,
                                            "reScreenEventInstanceNum":true,
                                            "enrollmentDate":"2026-02-16T00:00:00.000Z",
                                            "screeningNumber":"SCR-0001",
                                            "randomizationNumber":"RND-001",
                                            "withdrawalReason":"Not applicable",
                                            "ehrLinkStatus":1,
                                            "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                            "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                            "withdrawalComment":"Subject breached protocols",
                                            "screenFailureComment":"Subject failed screening",
                                            "canBeCompleted":true,
                                            "lockedInStudyVersion":"3.0.0.4",
                                            "lockedStatus":"UNLOCKED",
                                            "hasLockData":false,
                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "description":"Screened subject",
                                            "subjectNumber":"SUBJ-0001",
                                            "studyId":"AABBCCDDEEFF00112233445566778899",
                                            "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                            "dob":"1990-01-01T00:00:00.000Z",
                                            "screeningDate":"2025-10-01T10:00:00.000Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "reason":"Protocol break happened",
                                            "comment":"Initial enrollment",
                                            "studyVersion":"3.0.0.1",
                                            "objectVersionNumber":14,
                                            "eventType":"Screened",
                                            "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                            "signedStatus":"SIGNED",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "codeBreak":"N"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-subjects-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Retrieves the history of given subject from a given study mode, with <i>screenFailureDate</i> value in response.",
                "operationId":"getSubjectHistory8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto10"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"V8.0",
                "description":"This consolidated API retrieves EHR Link Status, locked status, subjects and their visit schedule. Filter capabilities include 'canBeCompleted' field for a subject.",
                "operationId":"getSubjectsVisitSchedule_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"show all undo ScreenFail/Withdrawal/Completion visits",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    }
                ],
                "requestBody":{
                    "description":"Filter criteria for fetching subjects and their visit schedule.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequestV2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"V8.0",
                "description":"Retrieves a list of subjects and also searches for subjects based on input parameters.  This API request returns <i>mHealthSubjectId</i> as part of the response body for the sites having a study version. Also filters subject based on site and state. The supported parameters are 'readyToSign', 'readyToVerify', 'signed', 'verified', 'freezed' and 'signedandverified'.",
                "operationId":"getSubjectsWithSiteStudyVersionAndSignVerifyFilter_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5B4A9B5E6F78123456789ABCDEF2234"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "Screened",
                            "Completed"
                        ]
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "Smith"
                        ]
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"verify"
                    },
                    {
                        "name":"subjectState",
                        "in":"query",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "Active"
                        ]
                    },
                    {
                        "name":"reviewStatus",
                        "in":"query",
                        "description":"Review status for data management view.The acceptable values are: noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"sign"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectDto6"
                                },
                                "examples":{
                                    "Subject Success":{
                                        "summary":"Subject response list example",
                                        "description":"Subject Success",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"AABBCCDDEEFF00112233445566778899",
                                                "siteId":"55CC9966AABB4455BBAA33221177CCDD",
                                                "dob":"1990-01-01T00:00:00.000Z",
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"Active",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":[
                                                    {
                                                        "value":"1",
                                                        "label":"male"
                                                    }
                                                ],
                                                "codeBreak":"N",
                                                "reason":"Protocol break happened",
                                                "comment":"Initial enrollment",
                                                "studyVersion":"3.0.0.1",
                                                "objectVersionNumber":14,
                                                "eventType":"Screened",
                                                "subjectTransferId":"5E0AC571D6A747A8A827E3438F317B36",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NEVER_VERIFIED",
                                                "freezedStatus":"NEVER_FROZEN",
                                                "lastSigned":"2025-10-16T14:30:31.892Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects_7",
                "parameters":[
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitsDto70"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"V8.0",
                "description":"Retrieves the audit history records of the visit statuses for the given visit ID with additional information on states of visit start date. This API also provides unscheduled events in response.",
                "operationId":"getVisitStartDetails_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto810"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusDto810List":{
                                        "description":"VisitsStatusDto810List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "visitStatus":"COMPLETE",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "visitStartDate":"2023-01-01T09:00:00Z",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "objectVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                                "lockedStatus":"NOT_APPLICABLE",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateLockedStatus":"UNLOCKED",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                "visitStartDateFreezeStatus":"SIGNED",
                                                "visitStartDateVerifyStatus":"null",
                                                "visitStartDateSignStatus":"null"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dc-svc/rest/v8.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Updates the visit status for a given visit status ID. It handles unscheduled visits.",
                "operationId":"updateVisitsStatus_9",
                "parameters":[
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v8.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v8.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Capture/Data Elements/Get the audit history for a data element"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Retrieves the audit history for a data element. This is used to display answer history returning the history records with sign or verify history.",
                "operationId":"getDataElementAuditHistory_6",
                "parameters":[
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto130"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/dataelements":{
            "post":{
                "tags":[
                    "Data Capture/Data Elements/Create multiple data elements for a subject"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: V9.0",
                "operationId":"saveMultipleDataElement9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data values to be created.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementsRequestDto4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-dataelements-post",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-dataelements-post"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/dataelements/{dataElementId}":{
            "put":{
                "tags":[
                    "Data Capture/Data Elements/Update single data element"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Updates single data element with support for the fields <i>innerRepeat</i> and <i>outerRepeat</i>. Supports the features of PUT operation of v8.0 of this API along with the additional fields <i>innerRepeat</i> and <i>outerRepeat</i>.",
                "operationId":"updateSingleDataElementv9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"Data value to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Data value details to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataElementRequestDto70"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataElementDto9"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-dataelements-{dataElementId}-put",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-dataelements-dataelementid-put"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get subject history"
                ],
                "summary":"V9.0",
                "description":"Retrieves the history of given subject from a given study mode, with <i>screenFailureDate</i> value in response.",
                "operationId":"getSubjectHistory9",
                "parameters":[
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"EXAMPLE-SUBJECT-ID-12345"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectScreeningNumberDto"
                                    }
                                },
                                "examples":{
                                    "SubjectHistoryResponse":{
                                        "description":"SubjectHistoryResponse",
                                        "value":{
                                            "codeBreak":"N",
                                            "comment":"No additional comments provided",
                                            "description":"Subject enrolled for clinical study",
                                            "enrollmentFailure":"Consent withdrawn",
                                            "enrollmentOverride":"Subject Enrollment Overridden",
                                            "eventType":"New",
                                            "freezedStatus":"NEVER_FROZEN",
                                            "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "gender":[
                                                {
                                                    "value":"1",
                                                    "label":"male"
                                                }
                                            ],
                                            "id":"A1B2C3D4E5F647839ABCDEF123456789",
                                            "informedConsentDate":"2025-09-10T09:15:00Z",
                                            "lastSigned":"2025-10-16T14:30:31.892Z",
                                            "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "objectVersionNumber":14,
                                            "operationType":"MODIFIED",
                                            "previousSubjectNumber":"SUBJECT-0001-OLD",
                                            "randomizationNumber":"RAND-XYZ-9999",
                                            "reason":"Updated subject information",
                                            "screenFailureDate":"2025-10-16T14:30:31.892Z",
                                            "screeningDate":"2025-10-12T10:00:00Z",
                                            "screeningFailure":"Inclusion criteria not met",
                                            "screeningNumber":"SCRN-ABC-1234",
                                            "signedStatus":"SIGNED",
                                            "siteId":"2EC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "softwareVersionNumber":14,
                                            "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                            "state":"Active",
                                            "stateDate":"2025-10-16T14:30:31.892Z",
                                            "studyId":"C4C29B36F5D64B1B95F4BDBBCEA481BE",
                                            "studyVersion":"1.0",
                                            "subjectNumber":"SUBJECT-0001",
                                            "subjectSiteSerialNumber":"SITE-0001-001",
                                            "subjectStudySerialNumber":"STUDY-0001-001",
                                            "subjectTransferId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                            "verifiedStatus":"NEVER_VERIFIED",
                                            "versionEnd":"2025-10-16T14:30:31.892Z",
                                            "versionStart":"2022025-10-01T08:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Capture/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"V9.0",
                "description":"This consolidated API retrieves EHR Link Status, locked status, subjects and their visit schedule. Filter capabilities include 'canBeCompleted', 'canBeReplaced', 'canBeUndoWithdrawn' fields for a subject.",
                "operationId":"getSubjectsVisitSchedule_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"show all undo ScreenFail/Withdrawal/Completion visits",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        }
                    },
                    {
                        "name":"view",
                        "in":"query",
                        "description":"This can take value as dmview and is added for Data Management subject and visit listing page",
                        "schema":{
                            "type":"string"
                        },
                        "example":"dmview"
                    }
                ],
                "requestBody":{
                    "description":"Request object for subject visit schedules",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequestV3"
                            },
                            "examples":{
                                "Get Subjects Visit Schedule":{
                                    "description":"Get Subjects Visit Schedule",
                                    "value":{
                                        "sites":[
                                            "D3C9A4B5E6F78123456789ABCDEF1234",
                                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                                        ],
                                        "limit":25,
                                        "offset":0,
                                        "order":"asc",
                                        "reviewStatus":"ALL",
                                        "subjectStates":[
                                            "Active",
                                            "Complete"
                                        ],
                                        "exactSearchKeywords":[
                                            "1001"
                                        ],
                                        "containsSearchKeywords":[
                                            "100"
                                        ],
                                        "nextVisitOnly":false,
                                        "notStarted":false,
                                        "projectionTillDate":"16-Oct-2025",
                                        "safetyCaseStatus":"ALL",
                                        "dmViewReviewStatus":[
                                            "readytoverify"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectsVisitScheduleDto80"
                                },
                                "examples":{
                                    "VisitScheduleResponse":{
                                        "description":"VisitScheduleResponse",
                                        "value":{
                                            "subject":{
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-0456",
                                                "replaceRand":"Y",
                                                "unResolvedQueries":3,
                                                "incompleteVisits":2,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":false,
                                                "withdrawalReason":"Adverse Event",
                                                "ehrLinkStatus":2,
                                                "withdrawalDate":"2025-11-04T10:15:22.123Z",
                                                "studyCompletionDate":"2025-12-15T19:45:00.000Z",
                                                "withdrawalComment":"Lost to follow-up",
                                                "screenFailureComment":"Incomplete consent",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.1.2.5",
                                                "lockedStatus":"LOCKED",
                                                "hasLockData":true,
                                                "lockedDateTime":"2025-11-05T08:25:00.000Z",
                                                "screenFailureDate":"2025-10-28T12:00:00.000Z",
                                                "sourceTimeStamp":"2025-11-05T14:00:00.000Z",
                                                "previousSubjectNumber":"SCR-0020",
                                                "subjectStudySerialNumber":"STUDY-0101-001",
                                                "subjectSiteSerialNumber":"SITE-0012-045",
                                                "versionEnd":"2025-11-06T09:12:00.000Z",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "lastSigned":"2025-11-05T12:00:00.000Z",
                                                "fromStudyId":"A1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"6F5D5F9311C591424F852B99FD902E98A",
                                                "mhealthSubjectId":"1234567890ABCDEF1234567890ABCDEF",
                                                "objectVersionNumber":17,
                                                "eventType":"Randomized",
                                                "subjectTransferId":"9F932A9250CAA7D6CF65791C85479F8A"
                                            },
                                            "visits":[
                                                {
                                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "versionStart":"2025-10-16T14:30:31.892Z",
                                                    "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                    "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                    "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                    "studyVersion":"3.0.0.1",
                                                    "visitStatus":"COMPLETE",
                                                    "reason":"Subject completed the visit successfully",
                                                    "comment":"All data verified",
                                                    "visitStartDate":"2023-01-01T09:00:00Z",
                                                    "visitType":"SCREENING",
                                                    "eventType":"Visit_Not_Started",
                                                    "objectVersionNumber":14,
                                                    "eventInstanceNum":1,
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"NOT_APPLICABLE",
                                                    "freezedStatus":"NOT_APPLICABLE",
                                                    "repeatingFormCount":2,
                                                    "scheduledWindowStartDate":"2025-10-16T14:30:31.892Z",
                                                    "scheduledWindowEndDate":"2025-10-30T14:30:31.892Z",
                                                    "associatedStudyVersion":"3.0.0.1",
                                                    "visitAction":"SCREEN_ENABLE",
                                                    "lockedStatus":"NOT_APPLICABLE",
                                                    "visitStartDateLockedStatus":"UNLOCKED",
                                                    "lockedDateTime":"2023-01-01T09:00:00Z",
                                                    "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                    "visitWindowWarning":"NONE",
                                                    "doseHoldAction":"NONE",
                                                    "unResolvedQueries":0
                                                }
                                            ],
                                            "scheduledVisits":[
                                                {
                                                    "eventId":"BDF5A7800A954FA5B831E7B6B9CA39BC",
                                                    "title":"Baseline",
                                                    "scheduledWindowStartDate":"2025-11-03T08:00:00.000Z",
                                                    "scheduledDate":"2025-11-05T10:00:00.000Z",
                                                    "scheduledWindowEndDate":"2025-11-10T17:00:00.000Z",
                                                    "eventInstanceNum":1,
                                                    "cycleCount":1,
                                                    "visitAction":"SCREEN_ENABLE"
                                                }
                                            ],
                                            "crntStateStudyVrsn":"3.1.2.5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Capture/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"V9.0",
                "description":"Retrieves a list of subject and also searches for subjects based on input parameters.  This API request returns <i>mHealthSubjectId</i> as part of the response body for the sites having a study version. Also filters subject based on site and state. The supported parameters are 'readyToSign', 'readyToVerify', 'signed', 'verified', 'freezed' and 'signedandverified'. Use v9 to get operational fields that support replacement-randomization including additional fields replaceRand, unResolvedQueries, incompleteVisits, canBeReplaced, canBeUndoWithdrawn ",
                "operationId":"getSubjectsWithSiteStudyVersionAndSignVerifyFilter_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "format":"UUID"
                            }
                        },
                        "example":"[\\\"ABCDEF1234567890ABCDEF1234567891\\\"]"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int64"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ASC"
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "SUBJ-001",
                            "SUBJ-002"
                        ]
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "SUBJ"
                        ]
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"subjectState",
                        "in":"query",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "Active",
                            "Screened"
                        ]
                    },
                    {
                        "name":"reviewStatus",
                        "in":"query",
                        "description":"Review status filter applied to subjects.values can be noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto14"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto14 Example":{
                                        "description":"SubjectRespDto14 Example",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "screeningDate":null,
                                                    "codeBreak":null,
                                                    "eventType":"New",
                                                    "subjectTransferId":null,
                                                    "objectVersionNumber":1,
                                                    "mhealthSubjectId":null,
                                                    "fromStudyId":null,
                                                    "subjNumSiteOrgId":"RR1",
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "lastSigned":"",
                                                    "softwareVersionNumber":7,
                                                    "operationType":"CREATED",
                                                    "subjectStudySerialNumber":null,
                                                    "subjectSiteSerialNumber":"4",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "previousSubjectNumber":null,
                                                    "screenFailureDate":null,
                                                    "lockedStatus":"NEVER_LOCKED",
                                                    "hasLockData":null,
                                                    "lockedDateTime":null,
                                                    "canBeCompleted":false,
                                                    "lockedInStudyVersion":null,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":false,
                                                    "id":"7AB2C4D19F3E4A88B5D1C9AE22F67B44",
                                                    "versionStart":"2025-07-07T16:53:26.227Z",
                                                    "description":null,
                                                    "subjectNumber":"RR14",
                                                    "studyId":"A1B2C3D4E5F6471289AA55CC77EE8899",
                                                    "siteId":"C33D55A1BB244712AFEE9922A199B4CE",
                                                    "dob":null,
                                                    "state":"New",
                                                    "stateDate":"2025-07-07T16:53:26.000Z",
                                                    "screeningFailure":null,
                                                    "enrollmentFailure":null,
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":null,
                                                    "gender":null,
                                                    "reason":null,
                                                    "comment":null,
                                                    "studyVersion":"1.0.0.1",
                                                    "sourceTimeStamp":null,
                                                    "screeningNumber":null,
                                                    "randomizationNumber":null,
                                                    "withdrawalReason":null,
                                                    "ehrLinkStatus":0,
                                                    "withdrawalDate":null,
                                                    "studyCompletionDate":null,
                                                    "withdrawalComment":null,
                                                    "screenFailureComment":null,
                                                    "replaceRand":"N",
                                                    "unResolvedQueries":null,
                                                    "incompleteVisits":null
                                                },
                                                {
                                                    "screeningDate":"2025-07-07T01:04:58.000Z",
                                                    "codeBreak":null,
                                                    "eventType":"WithdrawalUpdate",
                                                    "subjectTransferId":null,
                                                    "objectVersionNumber":9,
                                                    "mhealthSubjectId":null,
                                                    "fromStudyId":null,
                                                    "subjNumSiteOrgId":"RR1",
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "lastSigned":"",
                                                    "softwareVersionNumber":7,
                                                    "operationType":"MODIFIED",
                                                    "subjectStudySerialNumber":null,
                                                    "subjectSiteSerialNumber":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "previousSubjectNumber":null,
                                                    "screenFailureDate":null,
                                                    "lockedStatus":"NEVER_LOCKED",
                                                    "hasLockData":null,
                                                    "lockedDateTime":null,
                                                    "canBeCompleted":false,
                                                    "lockedInStudyVersion":null,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":false,
                                                    "id":"5EE1A44C3CCB47FBA11D2EC1939B2A77",
                                                    "versionStart":"2025-07-07T01:05:14.016Z",
                                                    "description":null,
                                                    "subjectNumber":"RR13",
                                                    "studyId":"A1B2C3D4E5F6471289AA55CC77EE8899",
                                                    "siteId":"C33D55A1BB244712AFEE9922A199B4CE",
                                                    "dob":null,
                                                    "state":"Withdrawn",
                                                    "stateDate":"2025-07-07T01:05:13.000Z",
                                                    "screeningFailure":null,
                                                    "enrollmentFailure":null,
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":null,
                                                    "gender":null,
                                                    "reason":"Change for encoding",
                                                    "comment":null,
                                                    "studyVersion":"1.0.0.1",
                                                    "sourceTimeStamp":null,
                                                    "screeningNumber":null,
                                                    "randomizationNumber":"2351",
                                                    "withdrawalReason":"Subject withdrew consent",
                                                    "ehrLinkStatus":0,
                                                    "withdrawalDate":"2025-06-30T00:00:00.000Z",
                                                    "studyCompletionDate":null,
                                                    "withdrawalComment":null,
                                                    "screenFailureComment":null,
                                                    "replaceRand":"Y",
                                                    "unResolvedQueries":null,
                                                    "incompleteVisits":null
                                                },
                                                {
                                                    "screeningDate":"2025-07-07T01:04:31.000Z",
                                                    "codeBreak":null,
                                                    "eventType":"Withdrawn",
                                                    "subjectTransferId":null,
                                                    "objectVersionNumber":3,
                                                    "mhealthSubjectId":null,
                                                    "fromStudyId":null,
                                                    "subjNumSiteOrgId":"RR1",
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "lastSigned":"",
                                                    "softwareVersionNumber":7,
                                                    "operationType":"MODIFIED",
                                                    "subjectStudySerialNumber":null,
                                                    "subjectSiteSerialNumber":"2",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "previousSubjectNumber":null,
                                                    "screenFailureDate":null,
                                                    "lockedStatus":"NEVER_LOCKED",
                                                    "hasLockData":null,
                                                    "lockedDateTime":null,
                                                    "canBeCompleted":false,
                                                    "lockedInStudyVersion":null,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":true,
                                                    "id":"2AD94F1C7B5441D1AFCC3E88221F9D31",
                                                    "versionStart":"2025-07-07T01:04:38.131Z",
                                                    "description":null,
                                                    "subjectNumber":"RR12",
                                                    "studyId":"A1B2C3D4E5F6471289AA55CC77EE8899",
                                                    "siteId":"C33D55A1BB244712AFEE9922A199B4CE",
                                                    "dob":null,
                                                    "state":"Withdrawn",
                                                    "stateDate":"2025-07-07T01:04:38.000Z",
                                                    "screeningFailure":null,
                                                    "enrollmentFailure":null,
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":null,
                                                    "gender":null,
                                                    "reason":null,
                                                    "comment":null,
                                                    "studyVersion":"1.0.0.1",
                                                    "sourceTimeStamp":null,
                                                    "screeningNumber":null,
                                                    "randomizationNumber":null,
                                                    "withdrawalReason":"Adverse Event/Serious Adverse Event (AE/SAE)",
                                                    "ehrLinkStatus":0,
                                                    "withdrawalDate":"2025-07-01T00:00:00.000Z",
                                                    "studyCompletionDate":null,
                                                    "withdrawalComment":null,
                                                    "screenFailureComment":null,
                                                    "replaceRand":"N",
                                                    "unResolvedQueries":null,
                                                    "incompleteVisits":null
                                                },
                                                {
                                                    "screeningDate":"2025-07-07T01:03:58.000Z",
                                                    "codeBreak":null,
                                                    "eventType":"Randomization_Replaced",
                                                    "subjectTransferId":null,
                                                    "objectVersionNumber":6,
                                                    "mhealthSubjectId":null,
                                                    "fromStudyId":null,
                                                    "subjNumSiteOrgId":"RR1",
                                                    "signedStatus":"NEVER_SIGNED",
                                                    "verifiedStatus":"NEVER_VERIFIED",
                                                    "freezedStatus":"NEVER_FROZEN",
                                                    "lastSigned":"",
                                                    "softwareVersionNumber":7,
                                                    "operationType":"MODIFIED",
                                                    "subjectStudySerialNumber":null,
                                                    "subjectSiteSerialNumber":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "previousSubjectNumber":null,
                                                    "screenFailureDate":null,
                                                    "lockedStatus":"NEVER_LOCKED",
                                                    "hasLockData":null,
                                                    "lockedDateTime":null,
                                                    "canBeCompleted":false,
                                                    "lockedInStudyVersion":null,
                                                    "canBeReplaced":false,
                                                    "canBeUndoWithdrawn":false,
                                                    "id":"F22C97B8A3114C69B2A98F6C114CF033",
                                                    "versionStart":"2025-07-07T01:04:09.551Z",
                                                    "description":null,
                                                    "subjectNumber":"RR11",
                                                    "studyId":"A1B2C3D4E5F6471289AA55CC77EE8899",
                                                    "siteId":"C33D55A1BB244712AFEE9922A199B4CE",
                                                    "dob":null,
                                                    "state":"Withdrawn",
                                                    "stateDate":"2025-07-07T01:04:08.000Z",
                                                    "screeningFailure":null,
                                                    "enrollmentFailure":null,
                                                    "enrollmentOverride":null,
                                                    "informedConsentDate":null,
                                                    "gender":null,
                                                    "reason":null,
                                                    "comment":null,
                                                    "studyVersion":"1.0.0.1",
                                                    "sourceTimeStamp":null,
                                                    "screeningNumber":null,
                                                    "randomizationNumber":"1",
                                                    "withdrawalReason":"Subject withdrew consent",
                                                    "ehrLinkStatus":0,
                                                    "withdrawalDate":"2025-07-01T00:00:00.000Z",
                                                    "studyCompletionDate":null,
                                                    "withdrawalComment":null,
                                                    "screenFailureComment":null,
                                                    "replaceRand":"Y",
                                                    "unResolvedQueries":null,
                                                    "incompleteVisits":null
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Retrieves a list of  visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/subjects",
                "operationId":"getVisStatusForSubjects_8",
                "parameters":[
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"This is to specify to return only the next visit else this would return future visits as well ",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"This is the site study version for which the visit schedule needs to be calculated",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"This is the site for which the subjects and there schedule needs to be computed",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B5969AC2FBA840438F9E0DB26A2DD33E"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If this is set then non started visits would be included in the response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "2ABC8A2C11045A584ADEA8760F72B114"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse70"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse70":{
                                        "description":"SubjectVisitsStatusResponse70",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "visits":[
                                                    ],
                                                    "scheduledVisits":[
                                                    ],
                                                    "crntStateStudyVrsn":"3.0.0.1",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"VERIFIED",
                                                    "freezedStatus":"FROZEN",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "lockedStatus":"LOCKED",
                                                    "canBeCompleted":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Capture/Visits Status/Get list of visits status"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Retrieves the list of visit statuses for a visit. If the event ID is null, then it lists all the visit statuses records for a subject. This API also provides unscheduled events details.  API has been deprecated and moved to DIS (Data Integration Service), Path: /ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus",
                "operationId":"getVisitsStatus_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to get the list of subjects.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Visit ID for Designer.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Unscheduled event instance number.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatus"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusList":{
                                        "description":"VisitsStatusList",
                                        "value":[
                                            {
                                                "visitStatusId":"53915DD9B758466AB2226CBCC4466B7E",
                                                "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "visitStatus":"NEW"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                },
                                "examples":{
                                    "ErrorResponse":{
                                        "description":"ErrorResponse",
                                        "value":{
                                            "errorCode":"BAD_REQUEST",
                                            "message":"Invalid parameters"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dc-svc/rest/v9.0/studies/{studyId}/{mode}/visitstatus/{visitStatusId}":{
            "put":{
                "tags":[
                    "Data Capture/Visits Status/Update visit status for a given ID"
                ],
                "summary":"V9.0",
                "description":"Updates the visit status for given ID. It supports unscheduled visits.",
                "operationId":"updateVisitsStatus_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitStatusId",
                        "in":"path",
                        "description":"Visit ID to update.The format should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ],
                "requestBody":{
                    "description":"Visits status details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitsStatusDto50"
                            },
                            "examples":{
                                "VisitsStatusDto50":{
                                    "description":"VisitsStatusDto50",
                                    "value":{
                                        "id":"53915DD9B758466AB2226CBCC4466B7E",
                                        "versionStart":"2025-10-16T14:30:31.892Z",
                                        "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                        "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                        "studyVersion":"3.0.0.1",
                                        "visitStatus":"NEW",
                                        "reason":"Subject completed the visit successfully",
                                        "comment":"All data verified",
                                        "visitStartDate":"2023-01-01T09:00:00Z",
                                        "visitType":"SCREENING",
                                        "eventType":"Visit_Not_Started",
                                        "eventInstanceNum":1,
                                        "visitWindowWarning":"NONE"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitsStatusRuleTargetsDto9"
                                },
                                "examples":{
                                    "VisitsStatusRuleTargetsDto9":{
                                        "description":"VisitsStatusRuleTargetsDto9",
                                        "value":{
                                            "id":"53915DD9B758466AB2226CBCC4466B7E",
                                            "versionStart":"2025-10-16T14:30:31.892Z",
                                            "subjectId":"B5969AC2FBA840438F9E0DB26A2DD33E",
                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                            "siteId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                            "studyVersion":"3.0.0.1",
                                            "visitStatus":"NEW",
                                            "reason":"Subject completed the visit successfully",
                                            "comment":"All data verified",
                                            "visitStartDate":"2023-01-01T09:00:00Z",
                                            "visitType":"SCREENING",
                                            "eventType":"Visit_Not_Started",
                                            "objectVersionNumber":14,
                                            "eventInstanceNum":1,
                                            "targets":[
                                                "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.AF8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                                            ],
                                            "associatedStudyVersion":"3.0.0.1",
                                            "visitAction":"SCREEN_ENABLE",
                                            "visitStartDateLockedStatus":"UNLOCKED",
                                            "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                            "visitWindowWarning":"NONE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DcsResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dc-svc-rest-v9.0-studies-{studyId}-{mode}-visitstatus-{visitStatusId}-put",
                "x-filename-id":"ec-dc-svc-rest-v9.0-studies-studyid-mode-visitstatus-visitstatusid-put"
            }
        },
        "/ec-designer-study-svc/rest/v3.0/studies/{sourceStudyId}/copy":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create study copy template"
                ],
                "summary":"v3.0",
                "description":"Creates a template study for copying to another study.",
                "operationId":"createStudyCopy_1",
                "parameters":[
                    {
                        "name":"sourceStudyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV6"
                            },
                            "examples":{
                                "Create Study Copy Request":{
                                    "description":"Create Study Copy Request",
                                    "value":{
                                        "studyTitle":"TICIPS001",
                                        "studyDescription":"A randomized double blind placebo controlled study.",
                                        "contractCode":"NCT00000419",
                                        "versionTitle":"TICIPS001:1.0.0.3",
                                        "studyPhase":"II",
                                        "therapeuticArea":"Infectious Diseases",
                                        "openLabelBlinded":"DoubleBlinded",
                                        "studyStatus":"DRAFT",
                                        "versionStatus":"Active, not recruiting",
                                        "versionType":"Active, not recruiting",
                                        "modes":[
                                            "test",
                                            "active"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV6"
                                },
                                "examples":{
                                    "Create Study Copy Response":{
                                        "description":"Create Study Copy Response",
                                        "value":{
                                            "identity":"F054C951EB74443C93716CA714AB686E:1.0.0.3",
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "version":"1.0.0.3",
                                            "studyTitle":"TICIPS001",
                                            "studyStatus":"DRAFT",
                                            "modes":[
                                                "test",
                                                "active"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "errorCode":"C1-003",
                                            "errorMessage":"Cannot modify object after a study version has been approved",
                                            "details":{
                                                "field":"studyId",
                                                "reason":"Invalid value"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-study-svc-rest-v3.0-studies-{sourceStudyId}-copy-post",
                "x-filename-id":"ec-designer-study-svc-rest-v3.0-studies-sourcestudyid-copy-post"
            }
        },
        "/ec-designer-study-svc/rest/v3.0/studies/paginated":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a list of all studies in a paginated format"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of the latest studies in your system.",
                "operationId":"getStudies_1",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Offset index for pagination.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Pagination limit (page size).",
                        "schema":{
                            "type":"string",
                            "default":"20"
                        },
                        "example":20
                    },
                    {
                        "name":"filterBy",
                        "in":"query",
                        "description":"Search filter for company.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Oracle"
                    },
                    {
                        "name":"searchStr",
                        "in":"query",
                        "description":"Search by study title.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Study123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV5"
                                    }
                                },
                                "examples":{
                                    "Query Studies Response":{
                                        "description":"Query Studies Response",
                                        "value":[
                                            {
                                                "identity":"F054C951EB74443C93716CA714AB686E:1.0.0.3",
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "version":"1.0.0.3",
                                                "studyTitle":"TICIPS001",
                                                "studyStatus":"APPROVED",
                                                "modes":[
                                                    "active"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "errorCode":"JPA-999",
                                            "errorMessage":"Query failure",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-study-svc-rest-v3.0-studies-paginated-get",
                "x-filename-id":"ec-designer-study-svc-rest-v3.0-studies-paginated-get"
            }
        },
        "/ec-designer-study-svc/rest/v4.0/studies/{studyId}/statuses/latest":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get latest statuses of a study"
                ],
                "summary":"v4.0",
                "description":"Retrieves the latest study statuses for a specified study ID.",
                "operationId":"getStudyStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV7"
                                    }
                                },
                                "examples":{
                                    "Get Latest Study Status Response":{
                                        "description":"Get Latest Study Status Response",
                                        "value":[
                                            {
                                                "identity":"F054C951EB74443C93716CA714AB686E:1.0.0.3",
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "version":"1.0.0.3",
                                                "studyTitle":"TICIPS001",
                                                "studyStatus":"APPROVED",
                                                "modes":[
                                                    "active"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "errorCode":"C1-100",
                                            "errorMessage":"Invalid request parameter: studyId",
                                            "details":{
                                                "field":"studyId",
                                                "reason":"Invalid UUID format"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "errorCode":"JPA-999",
                                            "errorMessage":"Query failure",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-study-svc-rest-v4.0-studies-{studyId}-statuses-latest-get",
                "x-filename-id":"ec-designer-study-svc-rest-v4.0-studies-studyid-statuses-latest-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/country/{sdfId}":{
            "put":{
                "tags":[
                    "Sites and Depots/Country/Update countries association to site"
                ],
                "summary":"v1.0",
                "description":"Baseline endpoint that updates country-to-SDF associations for the provided SDF identifier.",
                "operationId":"updateCountriesAssociationToSDF",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required SDF identifier for the country associations to update.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Required request body containing the updated country association list for the SDF.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesRequest"
                            },
                            "examples":{
                                "Update Countries Association Request":{
                                    "description":"Update Countries Association Request",
                                    "value":{
                                        "sdfCountriesList":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "associationOperationType":"ADD"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfCountriesList":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                        "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                        "associationOperationType":"ADD"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-country-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-country-sdfid-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Country/Associate countries to site or depot"
                ],
                "summary":"v1.0",
                "description":"Baseline endpoint that associates one or more countries to an SDF. This version supports country-level associations only.",
                "operationId":"associateCountriesToSDF",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Required request body containing one or more country-to-SDF association entries.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesRequest"
                            },
                            "examples":{
                                "Associate Countries Request":{
                                    "description":"Associate Countries Request",
                                    "value":{
                                        "sdfCountriesList":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "associationOperationType":"ADD"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfCountriesList":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                        "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                        "associationOperationType":"ADD"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-country-{sdfId}-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-country-sdfid-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfcountry/{sdfCountryId}":{
            "delete":{
                "tags":[
                    "Sites and Depots/Country/Disassociate country from site"
                ],
                "summary":"v1.0",
                "description":"Baseline endpoint that removes one country-to-SDF association by association identifier.",
                "operationId":"disAssociateACountryFromSDF",
                "parameters":[
                    {
                        "name":"sdfCountryId",
                        "in":"path",
                        "description":"Required association identifier for the country-to-SDF link to remove.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfcountry-{sdfCountryId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfcountry-sdfcountryid-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/country":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country name"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use /v5.0/studies/{studyId}/{mode}/country. v5 adds localization support and keeps hidden-flag behavior from v4.",
                "operationId":"getCountries",
                "parameters":[
                    {
                        "name":"isoCode",
                        "in":"query",
                        "description":"ISO alpha-2 country code.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"US"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfCountriesList":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                        "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                        "associationOperationType":"ADD"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-country-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-country-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/country/{countryId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country based on country ID"
                ],
                "summary":"v1.0",
                "description":"Baseline endpoint that returns one country by countryId.",
                "operationId":"getCountriesById",
                "parameters":[
                    {
                        "name":"countryId",
                        "in":"path",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Countries"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfCountriesList":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                        "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                        "associationOperationType":"ADD"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-country-{countryId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-country-countryid-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfcountry":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get association between country and site (ISO3 codes)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use /v5.0/studies/{studyId}/{mode}/sdfcountry. v5 returns enriched SDF country details with explicit country and state filters.",
                "operationId":"getSDFCountries",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"countries",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-2 country codes.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"US"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfCountriesList":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "countryId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "stateId":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                        "sdfId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                        "associationOperationType":"ADD"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfcountry-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfcountry-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/country/{countryId}/states":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get states with hidden flag based on country ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves all states based on country ID.",
                "operationId":"getStatesByCountryId",
                "parameters":[
                    {
                        "name":"countryId",
                        "in":"path",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StatesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "states":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "code":"CA",
                                                        "name":"California"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-country-{countryId}-states-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-country-countryid-states-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/country/{sdfId}":{
            "put":{
                "tags":[
                    "Sites and Depots/Country/Update countries association to site"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 update, this version updates both country and state associations for an SDF.",
                "operationId":"updateCountriesAndStatesAssociationToSDF",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Required request body containing SDF-country-state associations to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesAndStatesRequest"
                            },
                            "examples":{
                                "Update Countries And States Association Request":{
                                    "description":"Update Countries And States Association Request",
                                    "value":{
                                        "sdfCountriesAndStatesList":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                "primarySupply":"PRIMARY",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation."
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesAndStatesResponse"
                                },
                                "examples":{
                                    "Update Countries And States Association Success Response":{
                                        "description":"Update Countries And States Association Success Response",
                                        "value":{
                                            "sdfCountriesAndStatesList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"PRIMARY",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path/query parameters are invalid or the request body fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"sdfId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-country-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-country-sdfid-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Country/Associate countries and states to site or depot"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 create, this version creates both country and state associations for an SDF.",
                "operationId":"associateCountriesStatesToSDF",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Required request body containing SDF-country-state associations to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesAndStatesRequest"
                            },
                            "examples":{
                                "Associate Countries And States To SDF Request":{
                                    "description":"Associate Countries And States To SDF Request",
                                    "value":{
                                        "sdfCountriesAndStatesList":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                "primarySupply":"PRIMARY",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation."
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesAndStatesResponse"
                                },
                                "examples":{
                                    "Associate Countries And States To SDF Success Response":{
                                        "description":"Associate Countries And States To SDF Success Response",
                                        "value":{
                                            "sdfCountriesAndStatesList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"PRIMARY",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path/query parameters are invalid or the request body fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"sdfId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-country-{sdfId}-post",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-country-sdfid-post"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/country":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country name"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Compared with v1, this version uses ISO alpha-3 (isoCode3) filters instead of ISO alpha-2 (isoCode).",
                "operationId":"getCountriesWithIsoCode3",
                "parameters":[
                    {
                        "name":"isoCode3",
                        "in":"query",
                        "description":"ISO alpha-3 country code.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CountriesResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "countries":[
                                                {
                                                    "id":"3F2504E04F8911D39A0C0305E82C3301",
                                                    "versionStart":"2025-03-16T12:00:00.000Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"sdfId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-country-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-country-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfcountry":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get association between country and site (ISO3 codes)"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Compared with v1, this deprecated v2 endpoint supports sdfId and countries filters for SDF-country associations. Use /v5.0/studies/{studyId}/{mode}/sdfcountry for enriched details.",
                "operationId":"getSDFCountries_1",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"countries",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-3 country codes.",
                        "required":true,
                        "schema":{
                            "maxLength":1536,
                            "minLength":3,
                            "pattern":"^([A-Z]{3})(,[A-Z]{3})*$",
                            "type":"string"
                        },
                        "example":"USA"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get SDF Countries Success Response":{
                                        "description":"Get SDF Countries Success Response",
                                        "value":{
                                            "sdfCountriesList":[
                                                {
                                                    "id":"3F2504E04F8911D39A0C0305E82C3301",
                                                    "versionStart":"2025-03-16T12:00:00.000Z",
                                                    "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                    "sdfId":"9C10C9F402C44BD6A7CFC7F4F1A6EED8",
                                                    "primarySupply":"PRIMARY",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                    "versionStart":"2025-03-16T12:00:00.000Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path/query parameters are invalid or the request body fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"sdfId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-sdfcountry-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-sdfcountry-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/country/{countryId}/states":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get states with hidden flag based on country ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns state data with hidden-flag information for the selected country ID.",
                "operationId":"getStatesByCountryId_1",
                "parameters":[
                    {
                        "name":"countryId",
                        "in":"path",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StatesResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "states":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "code":"CA",
                                                    "name":"California",
                                                    "reason":"Legacy mapping",
                                                    "comment":"Population threshold 1000000",
                                                    "hidden":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"sdfId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-country-{countryId}-states-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-country-countryid-states-get"
            }
        },
        "/ec-site-svc/rest/v3/studies/{studyId}/{mode}/country":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country name"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated in v3: use /v5.0/studies/{studyId}/{mode}/country. v5 adds optional localization.",
                "operationId":"getCountriesStatesWithIsoCode3",
                "parameters":[
                    {
                        "name":"isoCode3",
                        "in":"query",
                        "description":"ISO alpha-3 country code.",
                        "required":true,
                        "schema":{
                            "maxLength":3,
                            "minLength":3,
                            "pattern":"^[A-Z]{3}$",
                            "type":"string"
                        },
                        "example":"USA"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Countries And States With ISO3 Success Response":{
                                        "description":"Get Countries And States With ISO3 Success Response",
                                        "value":{
                                            "countriesStates":[
                                                {
                                                    "id":"3F2504E04F8911D39A0C0305E82C3301",
                                                    "versionStart":"2025-03-16T12:00:00.000Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "states":[
                                                        {
                                                            "id":"9F2504E04F8911D39A0C0305E82C3301",
                                                            "versionStart":"2025-03-16T12:00:00.000Z",
                                                            "code":"CA",
                                                            "name":"California",
                                                            "reason":"Legacy mapping",
                                                            "comment":"Population threshold 1000000"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path/query parameters are invalid or the request body fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"countries"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v3-studies-{studyId}-{mode}-country-get",
                "x-filename-id":"ec-site-svc-rest-v3-studies-studyid-mode-country-get"
            }
        },
        "/ec-site-svc/rest/v3/studies/{studyId}/{mode}/sdfcountry":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get association between country and site (ISO3 codes)"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated in v3: compared with v2, this version returns country association data with hidden-flag support in country objects. Use /v5.0/studies/{studyId}/{mode}/sdfcountry for enriched filters and details.",
                "operationId":"getSDFCountries_2",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"countries",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-3 country codes.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfCountriesList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"PRIMARY",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "hidden":true,
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation."
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"countries"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v3-studies-{studyId}-{mode}-sdfcountry-get",
                "x-filename-id":"ec-site-svc-rest-v3-studies-studyid-mode-sdfcountry-get"
            }
        },
        "/ec-site-svc/rest/v4/studies/{studyId}/{mode}/country":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country name"
                ],
                "summary":"v4.0",
                "description":"Compared with v3, this version adds hidden flags on both countries and states.",
                "operationId":"getCountriesStatesWithIsoCode4",
                "parameters":[
                    {
                        "name":"isoCode3",
                        "in":"query",
                        "description":"ISO alpha-3 country code.",
                        "required":true,
                        "schema":{
                            "maxLength":3,
                            "minLength":3,
                            "pattern":"^[A-Z]{3}$",
                            "type":"string"
                        },
                        "example":"USA"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Countries And States With ISO4 Success Response":{
                                        "description":"Get Countries And States With ISO4 Success Response",
                                        "value":{
                                            "countriesStates":[
                                                {
                                                    "id":"3F2504E04F8911D39A0C0305E82C3301",
                                                    "versionStart":"2025-03-16T12:00:00.000Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "hidden":false,
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "states":[
                                                        {
                                                            "id":"9F2504E04F8911D39A0C0305E82C3301",
                                                            "versionStart":"2025-03-16T12:00:00.000Z",
                                                            "code":"CA",
                                                            "name":"California",
                                                            "reason":"Legacy mapping",
                                                            "comment":"Population threshold 1000000",
                                                            "hidden":false
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path/query parameters are invalid or the request body fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"isoCode3"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v4-studies-{studyId}-{mode}-country-get",
                "x-filename-id":"ec-site-svc-rest-v4-studies-studyid-mode-country-get"
            }
        },
        "/ec-site-svc/rest/v4/studies/{studyId}/{mode}/sdfcountry":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get association between country and site (ISO3 codes)"
                ],
                "summary":"v4.0",
                "description":"Compared with v3, this version adds pagination (limit and offset) and optional history retrieval.",
                "operationId":"getSDFCountries_3",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"SDF identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-3 country codes.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":25,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"PRIMARY",
                                                    "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"isoCode3"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v4-studies-{studyId}-{mode}-sdfcountry-get",
                "x-filename-id":"ec-site-svc-rest-v4-studies-studyid-mode-sdfcountry-get"
            }
        },
        "/ec-site-svc/rest/v5.0/studies/{studyId}/{mode}/country":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get country name"
                ],
                "summary":"v5.0",
                "description":"Compared with v4, this version adds optional language-based localization for country and state names.",
                "operationId":"getCountriesStatesWithIsoCode4_1",
                "parameters":[
                    {
                        "name":"isoCode3",
                        "in":"query",
                        "description":"ISO alpha-3 country code.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"USA"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"language",
                        "in":"query",
                        "description":"Optional language code for localized response values. Supported examples include en (English) and ja (Japanese). Default is en.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"en"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CountriesResponse4"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "countriesStates":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "isoCode":"US",
                                                    "name":"United States",
                                                    "isoCode3":"USA",
                                                    "hidden":true,
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "states":[
                                                        {
                                                            "id":"9F2504E04F8911D39A0C0305E82C3301",
                                                            "versionStart":"2025-03-16T12:00:00.000Z",
                                                            "code":"CA",
                                                            "name":"California",
                                                            "reason":"Legacy mapping",
                                                            "comment":"Population threshold 1000000",
                                                            "hidden":false
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"countries"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v5.0-studies-{studyId}-{mode}-country-get",
                "x-filename-id":"ec-site-svc-rest-v5.0-studies-studyid-mode-country-get"
            }
        },
        "/ec-site-svc/rest/v5.0/studies/{studyId}/{mode}/sdfcountry":{
            "get":{
                "tags":[
                    "Sites and Depots/Country/Get association between country and site (ISO3 codes)"
                ],
                "summary":"v5.0",
                "description":"Compared with v4, this version returns enriched SDF country details and supports explicit countryId and stateId filters.",
                "operationId":"getSDFCountryDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"countries",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"states",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Boolean flag: true includes historical records, false returns only current records.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFsPaginatedResponseV2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":25,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "id":"E16A3197FDEE433FB5547EE83DE99E4B",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"DOMESTIC",
                                                    "countryName":"United States",
                                                    "stateName":"California",
                                                    "reason":"Initial association",
                                                    "comment":"Created during site setup",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "versionStart":"2025-03-16T12:00:00.000Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"countries"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v5.0-studies-{studyId}-{mode}-sdfcountry-get",
                "x-filename-id":"ec-site-svc-rest-v5.0-studies-studyid-mode-sdfcountry-get"
            }
        },
        "/ec-site-svc/rest/v1.0/addresses":{
            "get":{
                "tags":[
                    "Sites and Depots/Addresses/Get address master details"
                ],
                "summary":"v1.0",
                "description":"Retrieves all tenant-level address master records used by CTMS associations. This v1.0 endpoint is the initial version.",
                "operationId":"getAllAddressDetails",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Address Details Success Response":{
                                        "description":"Get Address Details Success Response",
                                        "value":[
                                            {
                                                "reason":"Address normalization update",
                                                "comment":"Validated against source system and postal standards.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "addressStreet1":"500 Oracle Parkway",
                                                "addressStreet2":"Building 3",
                                                "addressCity":"Redwood City",
                                                "addressStateOrProvOrCounty":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "country":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                "addressPostalcode":"94065"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-addresses-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-addresses-get"
            }
        },
        "/ec-site-svc/rest/v1.0/contacts":{
            "get":{
                "tags":[
                    "Sites and Depots/Contact/Get contacts"
                ],
                "summary":"v1.0",
                "description":"Retrieves contacts using optional filters such as name, status, geography, type, investigator, association scope, and pagination controls.",
                "operationId":"getContacts",
                "parameters":[
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Optional contact-name filter. Matches contacts by full or partial name.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Contact status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"stateId",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"specialityId",
                        "in":"query",
                        "description":"Optional specialty identifier filter for contacts.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"contactType",
                        "in":"query",
                        "description":"Contact type filter. Allowed values are study-specific code-list entries, such as INVESTIGATOR.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"investigatorId",
                        "in":"query",
                        "description":"Investigator identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode filter identifier for contacts. Use the modeId associated with active, test, or training mode.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entitiesOption",
                        "in":"query",
                        "description":"entitiesOption is optional. Allowed values are all, associated, notAssociated. Default is all.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "all",
                                "associated",
                                "notAssociated"
                            ]
                        },
                        "example":"all"
                    },
                    {
                        "name":"entityId",
                        "in":"query",
                        "description":"Optional entity identifier filter. This value is used only when entitiesOption is provided.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "success":{
                                        "description":"success",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":50,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "contact":{
                                                        "id":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                        "firstName":"John",
                                                        "lastName":"Doe",
                                                        "status":"3F5E92F1C2D54DDA9F1C0A9E7B3C2D1B",
                                                        "statusCodeValue":"Active",
                                                        "contactType":"4A5E92F1C2D54DDA9F1C0A9E7B3C2D1C",
                                                        "contactId":"CONTACT-123"
                                                    },
                                                    "properties":[
                                                        {
                                                            "propertyName":"SPECIALITY",
                                                            "propertyValue":"CARDIOLOGY",
                                                            "entityType":"Contact"
                                                        }
                                                    ],
                                                    "contactAddressesDetails":[
                                                        {
                                                            "id":"5A5E92F1C2D54DDA9F1C0A9E7B3C2D1D",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Contact",
                                                            "mainPrimary":true,
                                                            "street1":"500 Oracle Pkwy",
                                                            "city":"Redwood City",
                                                            "country":"A2D7A5F1E7F142CB9D0EF2A24A8E5B10",
                                                            "addressPostalcode":"94065"
                                                        }
                                                    ],
                                                    "modes":[
                                                        {
                                                            "id":"6A5E92F1C2D54DDA9F1C0A9E7B3C2D1E",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Contact",
                                                            "mode":"7A5E92F1C2D54DDA9F1C0A9E7B3C2D1F",
                                                            "modeCodeValue":"Operational"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "badRequest":{
                                        "description":"badRequest",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Contact/Create contact"
                ],
                "summary":"v1.0",
                "description":"Creates a contact record using the provided demographic, role, and association details.",
                "operationId":"createContact",
                "requestBody":{
                    "description":"Required contact payload containing demographic, role, and association details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactModelDto"
                            },
                            "examples":{
                                "Create Contact Request":{
                                    "description":"Create Contact Request",
                                    "value":{
                                        "contact":{
                                            "firstName":"John",
                                            "lastName":"Doe",
                                            "contactType":"INVESTIGATOR",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "middleName":"Michael",
                                            "suffix":"sample",
                                            "suffixCodeValue":"Jr.",
                                            "prefix":"sample",
                                            "prefixCodeValue":"Dr.",
                                            "status":"success",
                                            "statusCodeValue":"Active",
                                            "degree":"MD",
                                            "contactId":"CONTACT-123",
                                            "timezone":"UTC",
                                            "taxId":"TAX-123",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2024-01-15T00:00:00Z",
                                            "disbarmentEnd":"2024-12-31T00:00:00Z"
                                        },
                                        "isExisting":false,
                                        "properties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ],
                                        "contactAddressesDetails":[
                                            {
                                                "addressType":"PRIMARY"
                                            }
                                        ],
                                        "modes":[
                                            {
                                                "mode":"test"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Create Contact Success Response":{
                                        "description":"Create Contact Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "firstName":"John",
                                                "lastName":"Doe"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-post"
            }
        },
        "/ec-site-svc/rest/v1.0/contacts/contact/{contactId}":{
            "delete":{
                "tags":[
                    "Sites and Depots/Contact/Delete contact by ID"
                ],
                "summary":"v1.0",
                "description":"Removes a contact by contact ID.",
                "operationId":"deleteContact",
                "parameters":[
                    {
                        "name":"contactId",
                        "in":"path",
                        "description":"Contact identifier to delete.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-contact-{contactId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-contact-contactid-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/contacts/deleteContact/{id}":{
            "put":{
                "tags":[
                    "Sites and Depots/Contact/Delete contact by ID"
                ],
                "summary":"v1.0",
                "description":"Deletes a contact by contact ID with a reason.",
                "operationId":"deleteContactByReason",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Contact identifier to delete with reason.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing reason for contact deletion.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactOrganizationDeleteReasonDto"
                            },
                            "examples":{
                                "Delete Contact By Reason Request":{
                                    "description":"Delete Contact By Reason Request",
                                    "value":{
                                        "reason":"No longer active",
                                        "comment":"Duplicate contact merged",
                                        "reasonForDelete":"No longer active"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-deleteContact-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-deletecontact-id-put"
            }
        },
        "/ec-site-svc/rest/v1.0/contacts/{contactId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Contact/Get contacts by contact ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves contacts by contact ID.",
                "operationId":"getContactById",
                "parameters":[
                    {
                        "name":"contactId",
                        "in":"path",
                        "description":"Contact ID to get the contact.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Get Contact By Id Success Response":{
                                        "description":"Get Contact By Id Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "firstName":"John",
                                                "lastName":"Doe"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-{contactId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-contactid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Contact/Update contact by contact ID."
                ],
                "summary":"v1.0",
                "description":"Update contact by contact ID.",
                "operationId":"updateContact",
                "parameters":[
                    {
                        "name":"contactId",
                        "in":"path",
                        "description":"Contact ID to update contact.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing contact update details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactModelDto"
                            },
                            "examples":{
                                "Update Contact Request":{
                                    "description":"Update Contact Request",
                                    "value":{
                                        "contact":{
                                            "firstName":"John",
                                            "lastName":"Doe",
                                            "contactType":"INVESTIGATOR",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "middleName":"Michael",
                                            "suffix":"sample",
                                            "suffixCodeValue":"Jr.",
                                            "prefix":"sample",
                                            "prefixCodeValue":"Dr.",
                                            "status":"success",
                                            "statusCodeValue":"Active",
                                            "degree":"MD",
                                            "contactId":"CONTACT-123",
                                            "timezone":"UTC",
                                            "taxId":"TAX-123",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2024-01-15T00:00:00Z",
                                            "disbarmentEnd":"2024-12-31T00:00:00Z"
                                        },
                                        "isExisting":false,
                                        "properties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ],
                                        "contactAddressesDetails":[
                                            {
                                                "addressType":"PRIMARY"
                                            }
                                        ],
                                        "modes":[
                                            {
                                                "mode":"test"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Update Contact Success Response":{
                                        "description":"Update Contact Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "firstName":"John",
                                                "lastName":"Doe"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-{contactId}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-contactid-put"
            }
        },
        "/ec-site-svc/rest/v1.0/contacts/validateFields":{
            "post":{
                "tags":[
                    "Sites and Depots/Contact/Validate contact fields"
                ],
                "summary":"v1.0",
                "description":"Validates contact fields present in input payload and returns the corresponding flag as either true or false.",
                "operationId":"validateContactFields",
                "requestBody":{
                    "description":"Validates contact fields present in input payload and returns the corresponding flag as either true or false.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactFieldsDto"
                            },
                            "examples":{
                                "Validate Contact Fields Request":{
                                    "description":"Validate Contact Fields Request",
                                    "value":{
                                        "firstName":"John",
                                        "lastName":"Doe",
                                        "contactType":"INVESTIGATOR",
                                        "contactFields":[
                                            {
                                                "fieldName":"firstName",
                                                "fieldType":"TEXT",
                                                "required":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Validate Contact Fields Success Response":{
                                        "description":"Validate Contact Fields Success Response",
                                        "value":{
                                            "firstName":"John",
                                            "lastName":"Doe",
                                            "contactType":"INVESTIGATOR",
                                            "contactFields":[
                                                {
                                                    "fieldName":"firstName",
                                                    "fieldType":"TEXT",
                                                    "required":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-contacts-validateFields-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-contacts-validatefields-post"
            }
        },
        "/ec-site-svc/rest/v1.0/EHRConnectors":{
            "get":{
                "tags":[
                    "Sites and Depots/EHR Connectors/Get EHR Connectors"
                ],
                "summary":"v1.0",
                "description":"Retrieves EHR connector records with optional pagination and filtering.",
                "operationId":"getEHRConnectors",
                "parameters":[
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Refresh contents of CEMS_EHR_CONNECTORS.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "enum":[
                                true,
                                false
                            ]
                        },
                        "example":false
                    },
                    {
                        "name":"id",
                        "in":"query",
                        "description":"EHR connector identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"occConnectorId",
                        "in":"query",
                        "description":"occConnectorId",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "format":"uuid",
                            "enum":[
                                null,
                                null,
                                null
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get EHR Connectors Success Response":{
                                        "description":"Get EHR Connectors Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Oracle Health Connector",
                                                        "occConnectorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "active":true
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-EHRConnectors-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-ehrconnectors-get"
            }
        },
        "/ec-site-svc/rest/v1.0/facilities/{InstitutionId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Facilities/Get facilities"
                ],
                "summary":"v1.0",
                "description":"Retrieves facility or department records associated with the given institution.",
                "operationId":"getFacilities",
                "parameters":[
                    {
                        "name":"InstitutionId",
                        "in":"path",
                        "description":"Institution ID.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FacilityModelResponseList"
                                },
                                "examples":{
                                    "Get Facilities Success Response":{
                                        "description":"Get Facilities Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "facilityModels":[
                                                    {
                                                        "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Main Facility"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "facilityModels":[
                                                {
                                                    "facilityName":"Main Facility"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FacilityModelResponseList"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"InstitutionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-facilities-{InstitutionId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-facilities-institutionid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Facilities/Update facilities"
                ],
                "summary":"v1.0",
                "description":"Updates existing facility or department records for the given institution.",
                "operationId":"updateFacilities",
                "parameters":[
                    {
                        "name":"InstitutionId",
                        "in":"path",
                        "description":"Institution ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Updates existing facility or department records for the given institution.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FacilityModelRequestList"
                            },
                            "examples":{
                                "Update Facilities Request":{
                                    "description":"Update Facilities Request",
                                    "value":{
                                        "facilityModels":{
                                            "facilityDto":{
                                                "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                "entityType":"Facility",
                                                "facilityName":"Acme Research Facility"
                                            },
                                            "properties":[
                                                {
                                                    "entityType":"Facility",
                                                    "propertyName":"LAB_CODE",
                                                    "propertyValue":"LAB-1001"
                                                }
                                            ],
                                            "entityOperationType":"CREATE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FacilityModelResponseList"
                                },
                                "examples":{
                                    "Update Facilities Success Response":{
                                        "description":"Update Facilities Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "facilityModels":[
                                                    {
                                                        "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Main Facility"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "facilityModels":[
                                                {
                                                    "facilityName":"Main Facility"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"InstitutionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-facilities-{InstitutionId}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-facilities-institutionid-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Facilities/Create facilities"
                ],
                "summary":"v1.0",
                "description":"Creates one or more facility or department records for the given institution.",
                "operationId":"createFacilities",
                "parameters":[
                    {
                        "name":"InstitutionId",
                        "in":"path",
                        "description":"Institution ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Creates one or more facility or department records for the given institution.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FacilityModelRequestList"
                            },
                            "examples":{
                                "Create Facilities Request":{
                                    "description":"Create Facilities Request",
                                    "value":{
                                        "facilityModels":{
                                            "facilityDto":{
                                                "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                "entityType":"Facility",
                                                "facilityName":"Acme Research Facility"
                                            },
                                            "properties":[
                                                {
                                                    "entityType":"Facility",
                                                    "propertyName":"LAB_CODE",
                                                    "propertyValue":"LAB-1001"
                                                }
                                            ],
                                            "entityOperationType":"CREATE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FacilityModelResponseList"
                                },
                                "examples":{
                                    "Create Facilities Success Response":{
                                        "description":"Create Facilities Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "facilityModels":[
                                                    {
                                                        "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Main Facility"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "facilityModels":[
                                                {
                                                    "facilityName":"Main Facility"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FacilityModelResponseList"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"InstitutionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-facilities-{InstitutionId}-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-facilities-institutionid-post"
            }
        },
        "/ec-site-svc/rest/v1.0/entitymanagement/studyentities/{entityType}/{tenantEntityId}/details":{
            "get":{
                "tags":[
                    "Sites and Depots/Entity Management/Get all study contacts or organization entities"
                ],
                "summary":"v1.0",
                "description":"Retrieves study-level entities mapped to the specified tenant entity.",
                "operationId":"getAllStudyEntities",
                "parameters":[
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INVESTIGATOR, INSTITUTION, LAB, DEPOT.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ORGANIZATION",
                                "CONTACT",
                                "FACILITY",
                                "INSTITUTION",
                                "INVESTIGATOR",
                                "LAB",
                                "DEPOT",
                                "INVESTIGATOR",
                                "INSTITUTION",
                                "LAB",
                                "DEPOT"
                            ]
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"tenantEntityId",
                        "in":"path",
                        "description":"Contact or Organization ID, entity can be either of Investigator, Institution, Lab or Depot.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"string"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Study Entities Success Response":{
                                        "description":"Get Study Entities Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Sample Entity",
                                                        "entityType":"SITE"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"entityType"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-entitymanagement-studyentities-{entityType}-{tenantEntityId}-details-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-entitymanagement-studyentities-entitytype-tenantentityid-details-get"
            }
        },
        "/ec-site-svc/rest/v1.0/entitymanagement/tenantentities/{entityType}/{tenantEntityId}/details":{
            "get":{
                "tags":[
                    "Sites and Depots/Entity Management/Get all tenant contacts or organization entities"
                ],
                "summary":"v1.0",
                "description":"Retrieves tenant entities (contacts or organizations) mapped to the specified entity type and identifier.",
                "operationId":"getTenantEntities",
                "parameters":[
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INVESTIGATOR, INSTITUTION, LAB, DEPOT.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ORGANIZATION",
                                "CONTACT",
                                "FACILITY",
                                "INSTITUTION",
                                "INVESTIGATOR",
                                "LAB",
                                "DEPOT",
                                "INVESTIGATOR",
                                "INSTITUTION",
                                "LAB",
                                "DEPOT"
                            ]
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"tenantEntityId",
                        "in":"path",
                        "description":"Contact or Organization ID, entity can be either of Investigator, Institution, Lab or Depot.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"string"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Tenant Entities Success Response":{
                                        "description":"Get Tenant Entities Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "name":"Sample Entity",
                                                        "entityType":"SITE"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"entityType"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-entitymanagement-tenantentities-{entityType}-{tenantEntityId}-details-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-entitymanagement-tenantentities-entitytype-tenantentityid-details-get"
            }
        },
        "/ec-site-svc/rest/v1.0/entitymanagement/entities/{entityType}/{srcEntityId}/manage/all":{
            "put":{
                "tags":[
                    "Sites and Depots/Entity Management/Manage all associated entities with given contact or organization"
                ],
                "summary":"v1.0",
                "description":"Manages all contact or organization associations for the source entity. Allowed action values: RETIRE or TRANSFER.",
                "operationId":"manageAllStudyMappedEntities",
                "parameters":[
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INVESTIGATOR, INSTITUTION, LAB, DEPOT.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ORGANIZATION",
                                "CONTACT",
                                "FACILITY",
                                "INSTITUTION",
                                "INVESTIGATOR",
                                "LAB",
                                "DEPOT",
                                "INVESTIGATOR",
                                "INSTITUTION",
                                "LAB",
                                "DEPOT"
                            ]
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"srcEntityId",
                        "in":"path",
                        "description":"Contact or Organization ID, entity can be either of Investigator, Institution, Lab or Depot.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the entity management action for all entities.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EntityManagementActionRequest"
                            },
                            "examples":{
                                "Manage All Study Mapped Entities Request":{
                                    "description":"Manage All Study Mapped Entities Request",
                                    "value":{
                                        "entityManagementActionRequest":{
                                            "entityAction":"TRANSFER",
                                            "targetTenantEntityId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"entityType"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-entitymanagement-entities-{entityType}-{srcEntityId}-manage-all-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-entitymanagement-entities-entitytype-srcentityid-manage-all-put"
            }
        },
        "/ec-site-svc/rest/v1.0/entitymanagement/entities/{entityType}/{srcEntityId}/manage":{
            "put":{
                "tags":[
                    "Sites and Depots/Entity Management/Manage a given study entity associated with a contact or organization"
                ],
                "summary":"v1.0",
                "description":"Manages a specific contact or organization association for the source entity. Allowed action values: RETIRE or TRANSFER.",
                "operationId":"manageStudyEntities",
                "parameters":[
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INVESTIGATOR, INSTITUTION, LAB, DEPOT.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ORGANIZATION",
                                "CONTACT",
                                "FACILITY",
                                "INSTITUTION",
                                "INVESTIGATOR",
                                "LAB",
                                "DEPOT",
                                "INVESTIGATOR",
                                "INSTITUTION",
                                "LAB",
                                "DEPOT"
                            ]
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"srcEntityId",
                        "in":"path",
                        "description":"Contact or Organization ID, entity can be either of Investigator, Institution, Lab or Depot.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the entity management action for a specific entity.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EntityManagementRequest"
                            },
                            "examples":{
                                "Manage Study Entities Request":{
                                    "description":"Manage Study Entities Request",
                                    "value":{
                                        "entityManagementRequest":{
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyEntities":[
                                                {
                                                    "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                    "entityName":"Acme Institution",
                                                    "entityType":"INVESTIGATOR",
                                                    "entityAction":"TRANSFER",
                                                    "targetTenantEntityId":"3B6E02A1D4B741F28C0A1E7A4C5D6F11",
                                                    "modes":[
                                                        "TESTING"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"entityType"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-entitymanagement-entities-{entityType}-{srcEntityId}-manage-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-entitymanagement-entities-entitytype-srcentityid-manage-put"
            }
        },
        "/ec-site-svc/rest/v1.0/organizations":{
            "get":{
                "tags":[
                    "Sites and Depots/Organizations/Get organizations"
                ],
                "summary":"v1.0",
                "description":"Retrieves organizations.",
                "operationId":"getOrganizations",
                "parameters":[
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Optional organization-name filter. Matches organizations by full or partial name.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Organization status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"stateId",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"orgType",
                        "in":"query",
                        "description":"Organization type filter. Allowed values are study-specific code-list entries, typically INSTITUTION, LAB, or DEPOT.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"INSTITUTION"
                    },
                    {
                        "name":"orgSubType",
                        "in":"query",
                        "description":"Organization sub-type filter. Allowed values depend on organization type and study configuration.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SITE"
                    },
                    {
                        "name":"orgId",
                        "in":"query",
                        "description":"Optional organization identifier filter (institution identifier or vendor identifier).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode filter identifier for organizations. Use the modeId associated with active, test, or training mode.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entityId",
                        "in":"query",
                        "description":"Optional entity identifier filter. This value is used only when entitiesOption is provided.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entitiesOption",
                        "in":"query",
                        "description":"entitiesOption is optional. Allowed values are all, associated, notAssociated. Default is all.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "all",
                                "associated",
                                "notAssociated"
                            ]
                        },
                        "example":"all"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Organizations Success Response":{
                                        "description":"Get Organizations Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "organization":{
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "name":"Sample Hospital"
                                                        }
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Organizations/Create organization"
                ],
                "summary":"v1.0",
                "description":"Creates an organization.",
                "operationId":"createOrganization",
                "requestBody":{
                    "description":"Payload describing the organization to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/OrganizationModelDto"
                            },
                            "examples":{
                                "Create Organization Request":{
                                    "description":"Create Organization Request",
                                    "value":{
                                        "organization":{
                                            "name":"Sample Hospital",
                                            "status":"ACTIVE",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "statusCodeValue":"Active",
                                            "timezone":"America/New_York",
                                            "msaStart":"2025-01-01T00:00:00Z",
                                            "msaEnd":"2026-01-01T00:00:00Z",
                                            "orgType":"sample",
                                            "orgTypeCodeValue":"ORG_TYPE_CODE",
                                            "categoryType":"sample",
                                            "categoryTypeCodeValue":"CATEGORY_CODE",
                                            "orgId":"ORG-12345",
                                            "subType":"sample",
                                            "subTypeCodeValue":"SUB_TYPE",
                                            "msa":"Y",
                                            "taxId":"TAX-12345",
                                            "vatId":"VAT-67890",
                                            "webUrl":"https://acme.example.com"
                                        },
                                        "isExisting":false,
                                        "properties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ],
                                        "orgAddressesDetails":[
                                            {
                                                "addressType":"PRIMARY"
                                            }
                                        ],
                                        "modes":[
                                            {
                                                "mode":"test"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Create Organization Success Response":{
                                        "description":"Create Organization Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Sample Hospital"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "orgType":"sample",
                                            "subType":"sample",
                                            "name":"Sample Name",
                                            "categoryType":"sample",
                                            "orgId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "webUrl":"sample",
                                            "msa":"sample",
                                            "msaStart":"2025-03-16T12:00:00Z",
                                            "msaEnd":"2025-03-16T12:00:00Z",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vatId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "statusCodeValue":"success",
                                            "orgTypeCodeValue":"CODE",
                                            "categoryTypeCodeValue":"CODE",
                                            "subTypeCodeValue":"CODE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-post"
            }
        },
        "/ec-site-svc/rest/v1.0/organizations/{id}":{
            "get":{
                "tags":[
                    "Sites and Depots/Organizations/Get organization by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves an organization based on the organization ID.",
                "operationId":"getOrganizationById",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of an organization.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Get Organization By Id Success Response":{
                                        "description":"Get Organization By Id Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Sample Hospital"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "orgType":"sample",
                                            "subType":"sample",
                                            "name":"Sample Name",
                                            "categoryType":"sample",
                                            "orgId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "webUrl":"sample",
                                            "msa":"sample",
                                            "msaStart":"2025-03-16T12:00:00Z",
                                            "msaEnd":"2025-03-16T12:00:00Z",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vatId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "statusCodeValue":"success",
                                            "orgTypeCodeValue":"CODE",
                                            "categoryTypeCodeValue":"CODE",
                                            "subTypeCodeValue":"CODE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-{id}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-id-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Organizations/Update organization by ID"
                ],
                "summary":"v1.0",
                "description":"Updates an organization by ID.",
                "operationId":"updateOrganization",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of an organization.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the organization update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/OrganizationModelDto"
                            },
                            "examples":{
                                "Update Organization Request":{
                                    "description":"Update Organization Request",
                                    "value":{
                                        "organization":{
                                            "name":"Sample Hospital",
                                            "status":"ACTIVE",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "statusCodeValue":"Active",
                                            "timezone":"America/New_York",
                                            "msaStart":"2025-01-01T00:00:00Z",
                                            "msaEnd":"2026-01-01T00:00:00Z",
                                            "orgType":"sample",
                                            "orgTypeCodeValue":"ORG_TYPE_CODE",
                                            "categoryType":"sample",
                                            "categoryTypeCodeValue":"CATEGORY_CODE",
                                            "orgId":"ORG-12345",
                                            "subType":"sample",
                                            "subTypeCodeValue":"SUB_TYPE",
                                            "msa":"Y",
                                            "taxId":"TAX-12345",
                                            "vatId":"VAT-67890",
                                            "webUrl":"https://acme.example.com"
                                        },
                                        "isExisting":false,
                                        "properties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ],
                                        "orgAddressesDetails":[
                                            {
                                                "addressType":"PRIMARY"
                                            }
                                        ],
                                        "modes":[
                                            {
                                                "mode":"test"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Organizations"
                                },
                                "examples":{
                                    "Update Organization Success Response":{
                                        "description":"Update Organization Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Sample Hospital"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "orgType":"sample",
                                            "subType":"sample",
                                            "name":"Sample Name",
                                            "categoryType":"sample",
                                            "orgId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "webUrl":"sample",
                                            "msa":"sample",
                                            "msaStart":"2025-03-16T12:00:00Z",
                                            "msaEnd":"2025-03-16T12:00:00Z",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vatId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "statusCodeValue":"success",
                                            "orgTypeCodeValue":"CODE",
                                            "categoryTypeCodeValue":"CODE",
                                            "subTypeCodeValue":"CODE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-id-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Organizations/Delete organization by ID"
                ],
                "summary":"v1.0",
                "description":"Removes an organization by organization ID with reason.",
                "operationId":"deleteOrganization",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of an organization.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-{id}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-id-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/organizations/deleteOrganization/{id}":{
            "put":{
                "tags":[
                    "Sites and Depots/Organizations/Delete organization by ID"
                ],
                "summary":"v1.0",
                "description":"Removes an organization by organization ID with a reason.",
                "operationId":"deleteOrganizationByReason",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of an organization.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing the reason to delete the organization.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactOrganizationDeleteReasonDto"
                            },
                            "examples":{
                                "Delete Organization By Reason Request":{
                                    "description":"Delete Organization By Reason Request",
                                    "value":{
                                        "reason":"No longer active",
                                        "comment":"Merged with another organization",
                                        "reasonForDelete":"No longer active"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-deleteOrganization-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-deleteorganization-id-put"
            }
        },
        "/ec-site-svc/rest/v1.0/organizations/validateFields":{
            "post":{
                "tags":[
                    "Sites and Depots/Organizations/Validate organization fields"
                ],
                "summary":"v1.0",
                "description":"Validates organization fields present in input payload and returns the corresponding flag as either true or false.",
                "operationId":"validateOrganizationFields",
                "requestBody":{
                    "description":"Validates organization fields present in input payload and returns the corresponding flag as either true or false.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/OrganizationFieldsDto"
                            },
                            "examples":{
                                "Validate Organization Fields Request":{
                                    "description":"Validate Organization Fields Request",
                                    "value":{
                                        "name":"Sample Hospital",
                                        "orgType":"INSTITUTION",
                                        "orgSubType":"SITE",
                                        "organizationFields":[
                                            {
                                                "fieldName":"organizationName",
                                                "fieldType":"TEXT",
                                                "required":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Validate Organization Fields Success Response":{
                                        "description":"Validate Organization Fields Success Response",
                                        "value":{
                                            "name":"Sample Hospital",
                                            "orgType":"INSTITUTION",
                                            "orgSubType":"SITE",
                                            "organizationFields":[
                                                {
                                                    "fieldName":"organizationName",
                                                    "fieldType":"TEXT",
                                                    "required":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-organizations-validateFields-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-organizations-validatefields-post"
            }
        },
        "/ec-site-svc/rest/v1.0/tenantsite/{entityType}/{entityId}/{associationType}/associations":{
            "get":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Get contacts and organization association list by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of contacts and organization associations by Association ID.",
                "operationId":"getAssociationsByEntity",
                "parameters":[
                    {
                        "name":"entityId",
                        "in":"path",
                        "description":"Institution, Investigator, Lab or Depot ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INSTITUTION (organization entity), INVESTIGATOR (investigator entity), LAB (study lab entity), DEPOT (study depot entity).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INSTITUTION"
                    },
                    {
                        "name":"associationType",
                        "in":"path",
                        "description":"Association type in the request. Allowed values: INVESTIGATOR_INSTITUTION (investigator linked to institution), DEPOT_INSTITUTION (depot linked to institution), LAB_INSTITUTION (lab linked to institution).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INVESTIGATOR_INSTITUTION"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode identifier (UUID) for contact or organization mode mapping.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Filters contact, institution, lab and depots based on name.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/TenantSitesDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":50,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "reason":"Association active",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "versionEnd":"2026-03-30T12:00:00Z",
                                            "operationType":"MODIFIED",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":1,
                                            "tenantFirstEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantSecondEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "associationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantFirstEntityName":"Acme Research",
                                            "tenantSecondEntityName":"Beta Institution",
                                            "studySitesCount":5,
                                            "tenantFirstEntityStatus":"success",
                                            "tenantSecondEntityStatus":"success",
                                            "reasonForInvalidAssoc":[
                                                {
                                                    "reason":"Invalid association"
                                                }
                                            ],
                                            "modes":"test",
                                            "valid":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-{entityType}-{entityId}-{associationType}-associations-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-entitytype-entityid-associationtype-associations-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Update the association between two entities"
                ],
                "summary":"v1.0",
                "description":"Updates an existing tenant-site association for the specified entities.",
                "operationId":"associateTenantSites",
                "parameters":[
                    {
                        "name":"entityId",
                        "in":"path",
                        "description":"Institution, Investigator, Lab or Depot ID.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INSTITUTION (organization entity), INVESTIGATOR (investigator entity), LAB (study lab entity), DEPOT (study depot entity).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "INSTITUTION",
                                "INVESTIGATOR",
                                "LAB",
                                "DEPOT"
                            ]
                        },
                        "example":"SITE"
                    },
                    {
                        "name":"associationType",
                        "in":"path",
                        "description":"Association type in the request. Allowed values: INVESTIGATOR_INSTITUTION (investigator linked to institution), DEPOT_INSTITUTION (depot linked to institution), LAB_INSTITUTION (lab linked to institution).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "INVESTIGATOR_INSTITUTION",
                                "DEPOT_INSTITUTION",
                                "LAB_INSTITUTION"
                            ]
                        },
                        "example":"INVESTIGATOR_INSTITUTION"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the tenant site association to create or update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/TenantSitesRequest"
                            },
                            "examples":{
                                "Update Tenant Sites Request":{
                                    "description":"Update Tenant Sites Request",
                                    "value":{
                                        "tenantSites":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "tenantFirstEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantSecondEntityId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Update Tenant Sites Success Response":{
                                        "description":"Update Tenant Sites Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-{entityType}-{entityId}-{associationType}-associations-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-entitytype-entityid-associationtype-associations-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Associate two entities"
                ],
                "summary":"v1.0",
                "description":"Creates an association between a source entity (Lab, Depot, or Investigator) and an Institution.",
                "operationId":"createTenantSites",
                "parameters":[
                    {
                        "name":"entityType",
                        "in":"path",
                        "description":"Entity type. Allowed values: INSTITUTION (organization entity), INVESTIGATOR (investigator entity), LAB (study lab entity), DEPOT (study depot entity).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INSTITUTION"
                    },
                    {
                        "name":"entityId",
                        "in":"path",
                        "description":"Institution, Investigator, Lab or Depot ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"associationType",
                        "in":"path",
                        "description":"Association type in the request. Allowed values: INVESTIGATOR_INSTITUTION (investigator linked to institution), DEPOT_INSTITUTION (depot linked to institution), LAB_INSTITUTION (lab linked to institution).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INVESTIGATOR_INSTITUTION"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the tenant site association to create or update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/TenantSitesRequest"
                            },
                            "examples":{
                                "Create Tenant Sites Request":{
                                    "description":"Create Tenant Sites Request",
                                    "value":{
                                        "tenantSites":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "tenantFirstEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantSecondEntityId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Contacts"
                                },
                                "examples":{
                                    "Create Tenant Sites Success Response":{
                                        "description":"Create Tenant Sites Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-{entityType}-{entityId}-{associationType}-associations-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-entitytype-entityid-associationtype-associations-post"
            }
        },
        "/ec-site-svc/rest/v1.0/tenantsite/associations/{associationId}/studySites":{
            "get":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Get study sites by mode ID and association ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves study-site associations filtered by associationId and optional modeId.",
                "operationId":"getStudySites",
                "parameters":[
                    {
                        "name":"associationId",
                        "in":"path",
                        "description":"Association ID to create the study sites.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode identifier (UUID) used to filter study sites by mode.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "studySites":[
                                                    {
                                                        "id":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                        "studyId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "modeId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "siteIdName":"SITE-123",
                                                        "statusId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "startDate":"2025-01-01T00:00:00Z",
                                                        "endDate":"2025-12-31T00:00:00Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "studySites":[
                                                {
                                                    "studyId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                    "siteId":"1A2B3C4D5E6F708192A3B4C5D6E7F809"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-associations-{associationId}-studySites-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-associations-associationid-studysites-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Create study sites by association ID"
                ],
                "summary":"v1.0",
                "description":"Creates the study sites for the given association ID.",
                "operationId":"createStudySites",
                "parameters":[
                    {
                        "name":"associationId",
                        "in":"path",
                        "description":"Association ID to create the study sites.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Creates the study sites for the given association ID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudySitesRequest"
                            },
                            "examples":{
                                "Create Study Sites Request":{
                                    "description":"Create Study Sites Request",
                                    "value":{
                                        "studySites":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "modeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "siteIdName":"SITE-123",
                                            "statusId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Create Study Sites Success Response":{
                                        "description":"Create Study Sites Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "studySites":[
                                                    {
                                                        "id":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                        "studyId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "modeId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "siteIdName":"SITE-123",
                                                        "statusId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "startDate":"2025-01-01T00:00:00Z",
                                                        "endDate":"2025-12-31T00:00:00Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "studySites":[
                                                {
                                                    "studyId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                    "siteId":"1A2B3C4D5E6F708192A3B4C5D6E7F809"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-associations-{associationId}-studySites-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-associations-associationid-studysites-post"
            }
        },
        "/ec-site-svc/rest/v1.0/tenantsite/associations/{associationId}":{
            "delete":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Delete contact organization association if not used in site"
                ],
                "summary":"v1.0",
                "description":"Deletes the given contact organization association based on association ID. But only if not used in active or new site.",
                "operationId":"deleteContactOrgAssociation",
                "parameters":[
                    {
                        "name":"associationId",
                        "in":"path",
                        "description":"Association identifier between tenant first entity and tenant second entity.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-associations-{associationId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-associations-associationid-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/tenantsite/associations/{associationId}/addresses":{
            "get":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Get tenant first entity addresses by Association ID"
                ],
                "summary":"v1.0",
                "description":"Get addresses of tenant first entity for the passed association ID. However if passed ID belongs to INVESTIGATOR_INSTITUTION association, then it will return both tenant first entity and tenant second entity addresses.",
                "operationId":"getEntityAddresses",
                "parameters":[
                    {
                        "name":"associationId",
                        "in":"path",
                        "description":"Association identifier between tenant first entity and tenant second entity.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EntityAddressAssociationResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            },
                                            "errorData":null,
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "firstName":"Sample Name",
                                            "lastName":"Sample Name",
                                            "middleName":"Sample Name",
                                            "suffix":"sample",
                                            "prefix":"sample",
                                            "degree":"sample",
                                            "contactId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "timezone":"sample",
                                            "taxId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "primarySpecialityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "disbarmentStart":"2025-03-16T12:00:00Z",
                                            "disbarmentEnd":"2025-03-16T12:00:00Z",
                                            "contactType":"sample",
                                            "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "studyAgnostic":"sample",
                                            "suffixCodeValue":"CODE",
                                            "prefixCodeValue":"CODE",
                                            "statusCodeValue":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-associations-{associationId}-addresses-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-associations-associationid-addresses-get"
            }
        },
        "/ec-site-svc/rest/v1.0/tenantsite/{associationType}/associations":{
            "get":{
                "tags":[
                    "Sites and Depots/Tenant Sites/Get all valid associations by Association Type"
                ],
                "summary":"v1.0",
                "description":"Get all valid associations by Association Type. Associations are marked valid. if both associated entities are in active status and have at least one common mode between them.",
                "operationId":"getValidAssociationsByType",
                "parameters":[
                    {
                        "name":"associationType",
                        "in":"path",
                        "description":"Association type in the request. Allowed values: INVESTIGATOR_INSTITUTION (investigator linked to institution), DEPOT_INSTITUTION (depot linked to institution), LAB_INSTITUTION (lab linked to institution).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INVESTIGATOR_INSTITUTION"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ValidTenantSitesDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":50,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "reason":"Association active",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "versionEnd":"2026-03-30T12:00:00Z",
                                            "operationType":"MODIFIED",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":1,
                                            "tenantFirstEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantSecondEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "associationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "tenantFirstEntityName":"Acme Research",
                                            "tenantSecondEntityName":"Beta Institution",
                                            "studySitesCount":5,
                                            "tenantFirstEntityStatus":"success",
                                            "tenantSecondEntityStatus":"success",
                                            "reasonForInvalidAssoc":[
                                                {
                                                    "reason":"Invalid association"
                                                }
                                            ],
                                            "modes":"test",
                                            "valid":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"associationId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-tenantsite-{associationType}-associations-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-tenantsite-associationtype-associations-get"
            }
        },
        "/ec-site-svc/rest/v2.0/contacts/deleteContact/{id}":{
            "put":{
                "tags":[
                    "Sites and Depots/Contact/Delete contact by ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 delete, this version accepts a structured delete-reason payload for contact deletion.",
                "operationId":"deleteContactByReason_1",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"deleteContactByReason from contact.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Compared with v1 delete, this version accepts a structured delete-reason payload for contact deletion.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactOrganizationDeleteReasonDtoV2"
                            },
                            "examples":{
                                "Delete Contact By Reason Request":{
                                    "description":"Delete Contact By Reason Request",
                                    "value":{
                                        "reason":"No longer active",
                                        "comment":"Duplicate contact merged",
                                        "reasonForDelete":"No longer active",
                                        "commentForOther":"Sample comment"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Delete Contact By Reason Success Response":{
                                        "description":"Delete Contact By Reason Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "contact":{
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "firstName":"John",
                                                            "lastName":"Doe"
                                                        }
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-contacts-deleteContact-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v2.0-contacts-deletecontact-id-put"
            }
        },
        "/ec-site-svc/rest/v2.0/contacts":{
            "get":{
                "tags":[
                    "Sites and Depots/Contact/Get contacts details"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version includes studyUsage details in contact addresses and properties.",
                "operationId":"getContactsV2",
                "parameters":[
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Optional contact-name filter. Matches contacts by full or partial name.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Contact status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"stateId",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"specialityId",
                        "in":"query",
                        "description":"Optional specialty identifier filter for contacts.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"contactType",
                        "in":"query",
                        "description":"Contact type filter. Allowed values are study-specific code-list entries, such as INVESTIGATOR.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"INVESTIGATOR"
                    },
                    {
                        "name":"investigatorId",
                        "in":"query",
                        "description":"Investigator identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode filter identifier for contacts. Use the modeId associated with active, test, or training mode.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entitiesOption",
                        "in":"query",
                        "description":"entitiesOption is optional. Allowed values are all, associated, notAssociated. Default is all.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "all",
                                "associated",
                                "notAssociated"
                            ]
                        },
                        "example":"all"
                    },
                    {
                        "name":"entityId",
                        "in":"query",
                        "description":"Optional entity identifier filter. This value is used only when entitiesOption is provided.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Contacts V2 Success Response":{
                                        "description":"Get Contacts V2 Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "contact":{
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "firstName":"John",
                                                            "lastName":"Doe"
                                                        }
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-contacts-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-contacts-get"
            }
        },
        "/ec-site-svc/rest/v2.0/organizations/deleteOrganization/{id}":{
            "put":{
                "tags":[
                    "Sites and Depots/Organizations/Delete organization by ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 delete, this version accepts a structured delete-reason payload for organization deletion.",
                "operationId":"deleteOrganizationByReason_1",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Optional organization identifier filter (institution identifier or vendor identifier).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Compared with v1 delete, this version accepts a structured delete-reason payload for organization deletion.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ContactOrganizationDeleteReasonDtoV2"
                            },
                            "examples":{
                                "Delete Organization By Reason Request":{
                                    "description":"Delete Organization By Reason Request",
                                    "value":{
                                        "reason":"No longer active",
                                        "comment":"Merged with another organization",
                                        "reasonForDelete":"No longer active",
                                        "commentForOther":"Sample comment"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Delete Organization By Reason Success Response":{
                                        "description":"Delete Organization By Reason Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "organization":{
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "name":"Sample Hospital"
                                                        }
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-organizations-deleteOrganization-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v2.0-organizations-deleteorganization-id-put"
            }
        },
        "/ec-site-svc/rest/v2.0/organizations":{
            "get":{
                "tags":[
                    "Sites and Depots/Organizations/Get organizations details"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version includes studyUsage details in organization addresses.",
                "operationId":"getOrganizationsV2",
                "parameters":[
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Optional organization-name filter. Matches organizations by full or partial name.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Organization status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"stateId",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"orgType",
                        "in":"query",
                        "description":"Organization type filter. Allowed values are study-specific code-list entries, typically INSTITUTION, LAB, or DEPOT.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"INSTITUTION"
                    },
                    {
                        "name":"orgSubType",
                        "in":"query",
                        "description":"Organization sub-type filter. Allowed values depend on organization type and study configuration.",
                        "required":true,
                        "schema":{
                            "maxLength":50,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SITE"
                    },
                    {
                        "name":"orgId",
                        "in":"query",
                        "description":"Optional organization identifier filter (institution identifier or vendor identifier).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"modeId",
                        "in":"query",
                        "description":"Mode filter identifier for organizations. Use the modeId associated with active, test, or training mode.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entityId",
                        "in":"query",
                        "description":"Optional entity identifier filter. This value is used only when entitiesOption is provided.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"entitiesOption",
                        "in":"query",
                        "description":"entitiesOption is optional. Allowed values are all, associated, notAssociated. Default is all.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "all",
                                "associated",
                                "notAssociated"
                            ]
                        },
                        "example":"all"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Organizations V2 Success Response":{
                                        "description":"Get Organizations V2 Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "organization":{
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "name":"Sample Hospital"
                                                        }
                                                    }
                                                ]
                                            },
                                            "errorData":null,
                                            "hasMore":true,
                                            "totalResults":250,
                                            "count":25,
                                            "limit":100,
                                            "offset":0,
                                            "resultData":{
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-organizations-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-organizations-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Generates a site report for the requested report type and filter criteria in the selected study.",
                "operationId":"generateSDFReport",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Generate the Study Enrollment report for Sites Audit Trial section",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SITE_ENROLLMENT_AUDIT"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"SessionToken to create the cache",
                        "required":true,
                        "schema":{
                            "maxLength":512,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SESSION_TOKEN_12345"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing report search specifications.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "name":"siteName",
                                                "operator":"EQ",
                                                "values":[
                                                    "Site 001"
                                                ],
                                                "fieldName":"siteIds or dateRange",
                                                "fieldType":"list or date-time",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "D5E16DD550CB4AD1B330E0D09B4B8F3F",
                                                    "A5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                ]
                                            }
                                        ],
                                        "visitSysOffset":0,
                                        "visitSysLimit":25,
                                        "totalResults":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "siteName"
                                            ],
                                            "data":[
                                                [
                                                    "Site 001"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when request parameters or payload values are invalid for this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-site-svc/rest/v3.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites"
                ],
                "summary":"v3.0",
                "description":"Compared with v1, this version supports the extended v3 reporting model while keeping the same report-generation behavior.",
                "operationId":"generateSDFReport_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Generate the Study Enrollment report for Sites Audit Trial section",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SITE_ENROLLMENT_AUDIT"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"SessionToken to create the cache",
                        "required":true,
                        "schema":{
                            "maxLength":512,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SESSION_TOKEN_12345"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing report search specifications.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "name":"siteName",
                                                "operator":"EQ",
                                                "values":[
                                                    "Site 001"
                                                ],
                                                "fieldName":"siteIds or dateRange",
                                                "fieldType":"list or date-time",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "D5E16DD550CB4AD1B330E0D09B4B8F3F",
                                                    "A5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                ]
                                            }
                                        ],
                                        "visitSysOffset":0,
                                        "visitSysLimit":25,
                                        "totalResults":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "siteName"
                                            ],
                                            "data":[
                                                [
                                                    "Site 001"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when request parameters or payload values are invalid for this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-site-svc-rest-v3.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/extendedProperties":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Extended Property/Update extended properties by site ID"
                ],
                "summary":"v1.0",
                "description":"Updates site extended properties for the specified SDF ID.",
                "operationId":"updateExtendedProperties",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update SDF extended properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFExtendedPropReq"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "extendedProperties":[
                                            {
                                                "propertyName":"siteType",
                                                "propertyValue":"Hospital",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFPropertyResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfPropertyList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-extendedProperties-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-extendedproperties-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create extended properties by site ID"
                ],
                "summary":"v1.0",
                "description":"Creates site extended properties for the specified SDF ID.",
                "operationId":"CreateExtendedProperties",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the extended properties to create.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFExtendedPropReq"
                            },
                            "examples":{
                                "Create Extended Properties Request":{
                                    "description":"Create Extended Properties Request",
                                    "value":{
                                        "extendedProperties":[
                                            {
                                                "propertyName":"siteType",
                                                "propertyValue":"Hospital",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFPropertyResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfPropertyList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-extendedProperties-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-extendedproperties-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/globalProperties":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Update the site global property by ID"
                ],
                "summary":"v1.0",
                "description":"Updates the global property of the site with property ID.",
                "operationId":"updateGlobalProperties",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the global properties to update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFGlobalPropertiesRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "globalProperties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Site property updated.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFProperty"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "sdfId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "propertyName":"timezone",
                                            "propertyValue":"UTC",
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "versionStart":"2025-03-16T12:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-globalProperties-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-globalproperties-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Create site global property"
                ],
                "summary":"v1.0",
                "description":"Creates global properties for the site.",
                "operationId":"createGlobalProperties",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Creates global properties for the site.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFGlobalPropertiesRequest"
                            },
                            "examples":{
                                "Create Global Properties Request":{
                                    "description":"Create Global Properties Request",
                                    "value":{
                                        "globalProperties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFPropertyResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfPropertyList":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-globalProperties-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-globalproperties-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}/kitSettings/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the kit settings for the given SDF ID (sdfId).",
                "operationId":"getKitSettings",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFKitSettingsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfKitSettings":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-kitSettings-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-kitsettings-sdfid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Update kit settings by SDF ID"
                ],
                "summary":"v1.0",
                "description":"Creates, updates or removes the kit settings for the given SDF ID.",
                "operationId":"updateKitSettings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update kit settings.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFKitSettingsRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "sdfKitSettings":[
                                            {
                                                "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "settingName":"Sample Name",
                                                "settingValue":"sample",
                                                "settingOperationType":"sample"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFKitSettingsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfKitSettings":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-kitSettings-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-kitsettings-sdfid-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Create kit settings by SDF ID"
                ],
                "summary":"v1.0",
                "description":"Creates the kit settings for the given SDF ID.",
                "operationId":"createKitSettings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Creates the kit settings for the given SDF ID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFKitSettingsRequest"
                            },
                            "examples":{
                                "Create Kit Settings Request":{
                                    "description":"Create Kit Settings Request",
                                    "value":{
                                        "sdfKitSettings":[
                                            {
                                                "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "settingName":"Sample Name",
                                                "settingValue":"sample",
                                                "settingOperationType":"sample"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFKitSettingsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfKitSettings":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-kitSettings-{sdfId}-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-kitsettings-sdfid-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites and depots details by study ID based on given filters"
                ],
                "summary":"v1.0",
                "description":"Retrieves site or depot details for a study using filter parameters. If sdfType is ALL, both sites and depots are returned; if SITE or DEPOT, only that type is returned.",
                "operationId":"getPaginatedSDFDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version filter for sites or depots. Accepts non-negative integer version numbers.",
                        "required":true,
                        "schema":{
                            "maxLength":20,
                            "minLength":1,
                            "pattern":"^[0-9]+$",
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"countryISOCode",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-2 country codes.",
                        "required":true,
                        "schema":{
                            "maxLength":1024,
                            "minLength":2,
                            "pattern":"^([A-Z]{2})(,[A-Z]{2})*$",
                            "type":"string"
                        },
                        "example":"US"
                    },
                    {
                        "name":"supplyCountryId",
                        "in":"query",
                        "description":"Supply Country ID.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"excludeExtendedProperties",
                        "in":"query",
                        "description":"Retrieve extended properties for site only if the excludeExtendedProperties flag is false.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create site or depot with study ID and master address"
                ],
                "summary":"v1.0",
                "description":"Creates site or depot with study ID and master address for the specified tenant entity ID.",
                "operationId":"createSDF",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "requestBody":{
                    "description":"Creates site or depot with study ID and master address for the specified tenant entity ID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCreateUpdateRequest"
                            },
                            "examples":{
                                "Create SDF Request":{
                                    "description":"Create SDF Request",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Site 001",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "status":"ACTIVE",
                                            "sdfType":"SITE",
                                            "studyOrgId":"STUDY-123"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ],
                                        "sdfAddressAssociations":[
                                            {
                                                "addressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeIdCodeValue":"CODE",
                                                "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfAddressProperties":[
                                                    {
                                                        "reason":"Protocol update requested by study operations.",
                                                        "comment":"Association adjusted after data reconciliation.",
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2025-03-16T12:00:00Z",
                                                        "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "propertyName":"Sample Name",
                                                        "propertyValue":"sample"
                                                    }
                                                ],
                                                "mainPrimary":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCreateUpdateResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "status":"ACTIVE",
                                                "sdfType":"SITE",
                                                "studyOrgId":"STUDY-123"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "addressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ],
                                                    "mainPrimary":false
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}/country/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF countries or states associated with depot GUID"
                ],
                "summary":"v1.0",
                "description":"Paginated API to get SDF countries or states associated with depot GUID, with history support.",
                "operationId":"getSDFCountryDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Boolean flag: true includes historical records, false returns only current records.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "enum":[
                                true,
                                false
                            ]
                        },
                        "example":false
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":1,
                                            "count":1,
                                            "limit":50,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "id":"E16A3197FDEE433FB5547EE83DE99E4B",
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "stateId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"A26A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"DOMESTIC",
                                                    "countryName":"United States",
                                                    "stateName":"California",
                                                    "reason":"Initial association",
                                                    "comment":"Created during site setup",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "versionStart":"2025-03-16T12:00:00.000Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-country-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-country-sdfid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update or delete depot association with country or state by GUID"
                ],
                "summary":"v1.0",
                "description":"Updates or removes depot association with country or state by GUID: depot GUID, country GUID or state GUID.",
                "operationId":"updateSDFCountry",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update SDF country/state associations.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "sdfCountriesList":[
                                            {
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "primaryCountry":true,
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "primarySupply":"sample",
                                                "associationOperationType":"sample"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfCountriesList":[
                                                {
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "primaryCountry":true,
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"sample",
                                                    "associationOperationType":"sample"
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "isoCode":"US",
                                                    "name":"United States"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-country-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-country-sdfid-put"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create depot association with country or state by GUID"
                ],
                "summary":"v1.0",
                "description":"Creates depot association with country or state by GUID: depot GUID, country GUID or state GUID.",
                "operationId":"createSDFCountry",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Creates depot association with country or state by GUID: depot GUID, country GUID or state GUID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCountriesRequest"
                            },
                            "examples":{
                                "Create SDF Country Request":{
                                    "description":"Create SDF Country Request",
                                    "value":{
                                        "sdfCountriesList":[
                                            {
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "primaryCountry":true,
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "primarySupply":"sample",
                                                "associationOperationType":"sample"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfCountriesList":[
                                                {
                                                    "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "primaryCountry":true,
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "primarySupply":"sample",
                                                    "associationOperationType":"sample"
                                                }
                                            ],
                                            "countries":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "isoCode":"US",
                                                    "name":"United States"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-country-{sdfId}-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-country-sdfid-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/globalProperties/{propId}":{
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF global property by property ID"
                ],
                "summary":"v1.0",
                "description":"Removes the SDF global property with the specified property ID.",
                "operationId":"deleteGlobalProperties",
                "parameters":[
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"Required path parameter. Property identifier to delete. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Site property deleted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-globalProperties-{propId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-globalproperties-propid-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfId}/property/{propId}":{
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF property by property ID"
                ],
                "summary":"v1.0",
                "description":"Removes the SDF property with the specified property ID.",
                "operationId":"deleteSDFProperty",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"Required path parameter. Property identifier to delete. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Site property deleted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfId}-property-{propId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdfid-property-propid-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot details by SDF ID and SDF Type"
                ],
                "summary":"v1.0",
                "description":"Retrieves site or depot details by SDF ID and SDF type with audit-history support.",
                "operationId":"getSdfDetailsBySdfId",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"attributes",
                        "in":"query",
                        "description":"Optional comma-separated attribute list to include in the response. Allowed values: INFO, PROPERTIES, ADDRESSES, KITSETTINGS.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Boolean flag: true includes historical records, false returns only current records.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"excludeExtendedProperties",
                        "in":"query",
                        "description":"Retrieve extended properties for site only if the excludeExtendedProperties flag is false.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-sdfid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update site or depot with study ID and master address"
                ],
                "summary":"v1.0",
                "description":"Updates site or depot with study ID and master address for the specified tenant entity ID.",
                "operationId":"updateSDF",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update site or depot details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCreateUpdateRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Site 001",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "versionStart":"2025-03-16T12:00:00Z",
                                            "status":"ACTIVE",
                                            "sdfType":"SITE",
                                            "studyOrgId":"STUDY-123"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ],
                                        "sdfAddressAssociations":[
                                            {
                                                "addressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeIdCodeValue":"CODE",
                                                "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfAddressProperties":[
                                                    {
                                                        "reason":"Protocol update requested by study operations.",
                                                        "comment":"Association adjusted after data reconciliation.",
                                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionStart":"2025-03-16T12:00:00Z",
                                                        "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "propertyName":"Sample Name",
                                                        "propertyValue":"sample"
                                                    }
                                                ],
                                                "mainPrimary":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCreateUpdateRequest"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "status":"ACTIVE",
                                                "sdfType":"SITE",
                                                "studyOrgId":"STUDY-123"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "addressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ],
                                                    "mainPrimary":false
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-sdfid-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site, master address, properties and kit settings by SDF ID"
                ],
                "summary":"v1.0",
                "description":"Deletes site, master address, properties and kit settings by SDF ID.",
                "operationId":"deleteStudySdf",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Study Site deleted.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-{sdfId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-sdfid-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/allstudyversions/{sdfType}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all study versions for a site"
                ],
                "summary":"v1.0",
                "description":"Retrieves all study versions assigned to a site.",
                "operationId":"getAllSiteStudyVersions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDFDetailsResponse"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"Sample Name",
                                                    "propertyValue":"sample"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "kitTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-allstudyversions-{sdfType}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-allstudyversions-sdftype-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries for a site by SDF type"
                ],
                "summary":"v1.0",
                "description":"Retrieves all countries where sites or depots are created by SDF type.",
                "operationId":"getCountriesBySdfType",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"mainPrimary",
                        "in":"query",
                        "description":"Boolean flag. true returns only main-primary country addresses; false returns all matching addresses.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false,
                            "enum":[
                                true,
                                false
                            ]
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Countries"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "isoCode":"US",
                                                "isoCode3":"USA",
                                                "name":"United States"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-countries-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-countries-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/globalProperties/{propName}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Get global site property by property name"
                ],
                "summary":"v1.0",
                "description":"Retrieves the SDF global property with the specified property name.",
                "operationId":"getGlobalProperty",
                "parameters":[
                    {
                        "name":"propName",
                        "in":"path",
                        "description":"Get property of site by property name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"sampleValue"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFProperty"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "sdfId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "propertyName":"timezone",
                                            "propertyValue":"UTC",
                                            "reason":"Sample reason",
                                            "comment":"Sample comment",
                                            "versionStart":"2025-03-16T12:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-globalProperties-{propName}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-globalproperties-propname-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/kitSettings":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF type"
                ],
                "summary":"v1.0",
                "description":"Retrieves the kit settings for all SDFs of the specified type (site, depot, or all) for the given study and mode.",
                "operationId":"getKitSettingsBySdfType",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFKitSettingsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfKitSettings":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipToAddressId":"B26A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-kitSettings-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-kitsettings-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/locallySourced":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all kit type IDs and main primary countries that are locally sourced and assigned to the sites"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all kit type IDs and main primary countries that are locally sourced and assigned to the sites.",
                "operationId":"getLocallySourcedCountries",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "primaryCountryKitTypeList":[
                                                {
                                                    "countries":[
                                                        "C36A3197FDEE433FB5547EE83DE99E4B"
                                                    ],
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-locallySourced-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-locallysourced-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/locallySourcedKitsBySite":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get locally sourced kits by site"
                ],
                "summary":"v1.0",
                "description":"Retrieves all locally sourced kits by site.",
                "operationId":"getLocallySourcedKitsBySite",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Countries"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "isoCode":"US",
                                                "isoCode3":"USA",
                                                "name":"United States"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-locallySourcedKitsBySite-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-locallysourcedkitsbysite-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/allSdf/{sdfType}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites details or depots details by study ID"
                ],
                "summary":"v1.0",
                "description":"Returns paginated site and depot details by study and filters. sdfType=ALL returns both types; sdfType=SITE or DEPOT returns that type only.",
                "operationId":"getPaginatedSDF",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC",
                                "asc",
                                "desc"
                            ]
                        },
                        "example":"DESC"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version filter for sites or depots. Accepts non-negative integer version numbers.",
                        "required":true,
                        "schema":{
                            "maxLength":20,
                            "minLength":1,
                            "pattern":"^[0-9]+$",
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"countryISOCode",
                        "in":"query",
                        "description":"ISO alpha-2 country code.",
                        "required":true,
                        "schema":{
                            "maxLength":2,
                            "minLength":2,
                            "pattern":"^[A-Z]{2}$",
                            "type":"string"
                        },
                        "example":"US"
                    },
                    {
                        "name":"supplyCountryId",
                        "in":"query",
                        "description":"Supply Country ID.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"isLocalized",
                        "in":"query",
                        "description":"Boolean flag indicating whether localized labels are returned. true returns localized labels; false returns default labels.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "enum":[
                                true,
                                false
                            ]
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-allSdf-{sdfType}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-allsdf-sdftype-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/kitSettings/{kitTypeId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all sites main primary country having non locally sourced kits by kit type ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all sites main primary country having non locally sourced kits by kit type ID.",
                "operationId":"getPrimaryCountryDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"Kit type identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-kitSettings-{kitTypeId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-kitsettings-kittypeid-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/depot/{pathAttr}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all return depot properties details"
                ],
                "summary":"v1.0",
                "description":"Get all return depot properties details across mode",
                "operationId":"getReturnDepotProperties",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"pathAttr",
                        "in":"path",
                        "description":"Get property of site by property name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"piName"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DepotInfoDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vendorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "studyOrgIdName":"Depot-001",
                                            "statusId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "statusCodeValue":"ACTIVE",
                                            "vendorName":"Global Depot",
                                            "mode":"test",
                                            "oldSdfId":"E76A3197FDEE433FB5547EE83DE99E4B",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "versionEnd":"2026-03-30T12:00:00Z",
                                            "operationType":"MODIFIED",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":1,
                                            "versionStart":"2025-03-16T12:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-depot-{pathAttr}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-depot-pathattr-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/sdfDetails":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF details for IDs sent in payload"
                ],
                "summary":"v1.0",
                "description":"Returns SDF details for the identifiers provided in the request payload.",
                "operationId":"getSdfsDetailsBySdfIds",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the SDF identifiers to fetch.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteDepotIdsList"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "siteIds":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "depotIds":[
                                            "D56A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFCreateUpdateResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-sdfDetails-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdfdetails-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/id/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Get site or depot details by SDF ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves site or depot details by SDF ID with audit-history support.",
                "operationId":"getSiteAndDepotDetailsBySdfId",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"attributes",
                        "in":"query",
                        "description":"Optional comma-separated attribute list to include in the response. Allowed values: INFO, PROPERTIES, ADDRESSES, KITSETTINGS.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Boolean flag: true includes historical records, false returns only current records.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"excludeExtendedProperties",
                        "in":"query",
                        "description":"Retrieve extended properties for site only if the excludeExtendedProperties flag is false.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-id-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-id-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/sdfRegion/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot information by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves site or depot information by given ID.",
                "operationId":"getSiteDepotById",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-sdfRegion-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-sdfregion-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/extendedPropertiesByFilter":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create or update extended properties for all sites"
                ],
                "summary":"v1.0",
                "description":"Creates or updates extended properties for all Sites filtered by the passed parameters.Based on a flag, API chooses between site IDs passed and site IDs fetched via filter. The API sets the same property values for all relevant sites",
                "operationId":"updateExtendedPropertiesByFilter",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site A"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version filter for sites or depots. Accepts non-negative integer version numbers.",
                        "schema":{
                            "maxLength":20,
                            "minLength":1,
                            "pattern":"^[0-9]+$",
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the extended properties filter update request.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFExtendedPropReq"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "extendedProperties":[
                                            {
                                                "propertyName":"siteType",
                                                "propertyValue":"Hospital",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFExtendedPropertiesListResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfExtendedPropertiesList":[
                                                {
                                                    "propertyName":"siteType",
                                                    "propertyValue":"Hospital",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfPropertyList":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFExtendedPropertiesListResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "sdfExtendedPropertiesList":[
                                                {
                                                    "propertyName":"siteType",
                                                    "propertyValue":"Hospital",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfPropertyList":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-extendedPropertiesByFilter-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-extendedpropertiesbyfilter-put"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/status":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update SDF status for the given study ID, mode ID and SDF type"
                ],
                "summary":"v1.0",
                "description":"Updates SDF (site or depot) status for a particular study ID and mode ID.",
                "operationId":"updateSDFStatuses",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update SDF status.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFUpdateStatusRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "sdfStatuses":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2025-03-16T12:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFUpdateStatusResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfStatuses":[
                                                {
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "statusId":"A16A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfstatuses":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-status-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-status-put"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}/kitSettings/{kitTypeId}/shipToAddress":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Kit Settings/Update Ship To Address of a kit Type"
                ],
                "summary":"v1.0",
                "description":"Update Ship To Address of a kit Type for all sites based on list of locally sourced countries matching site's primary country.",
                "operationId":"updateSiteKitSettingsShipToAddress",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "site",
                                "depot",
                                "lab",
                                "all",
                                "SITE",
                                "DEPOT",
                                "LAB",
                                "ALL"
                            ]
                        },
                        "example":"site"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"Kit type identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update ship-to address details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFPrimaryCountryRequest"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "countries":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFPrimaryCountryResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "countries":[
                                                "C36A3197FDEE433FB5547EE83DE99E4B"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-kitSettings-{kitTypeId}-shipToAddress-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdf-sdftype-kitsettings-kittypeid-shiptoaddress-put"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/sdfs/{sdfType}/validateFields":{
            "post":{
                "tags":[
                    "Sites and Depots/Sites and Depots/Facilities/Validate study labs, depots or sites fields present in input payload and returns the corresponding flag as true or false."
                ],
                "summary":"v1.0",
                "description":"Validate study labs, depots or sites fields present in input payload and returns the corresponding flag as true or false.",
                "operationId":"validateSDFFields",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    }
                ],
                "requestBody":{
                    "description":"Validate study labs, depots or sites fields present in input payload and returns the corresponding flag as true or false.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFFieldsDto"
                            },
                            "examples":{
                                "Validate SDF Fields Request":{
                                    "description":"Validate SDF Fields Request",
                                    "value":{
                                        "sdfFields":[
                                            {
                                                "fieldName":"name",
                                                "fieldValue":"Site A",
                                                "fieldType":"list or date-time",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "D5E16DD550CB4AD1B330E0D09B4B8F3F",
                                                    "A5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdfFields":[
                                                {
                                                    "fieldName":"name",
                                                    "fieldValue":"Site A",
                                                    "fieldType":"list or date-time",
                                                    "fieldSequence":1,
                                                    "fieldValueList":[
                                                        "D5E16DD550CB4AD1B330E0D09B4B8F3F",
                                                        "A5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-sdfs-{sdfType}-validateFields-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-sdfs-sdftype-validatefields-post"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/sdfs/allSdf/{sdfType}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites details or depots details by study ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version includes timezone information in paginated site and depot responses.",
                "operationId":"getPaginatedSDF_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version filter for sites or depots. Accepts non-negative integer version numbers.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"countryISOCode",
                        "in":"query",
                        "description":"ISO alpha-2 country code.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"supplyCountryId",
                        "in":"query",
                        "description":"Supply Country ID.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"sdfId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"isLocalized",
                        "in":"query",
                        "description":"Boolean flag indicating whether localized labels are returned. true returns localized labels; false returns default labels.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-sdfs-allSdf-{sdfType}-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-sdfs-allsdf-sdftype-get"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites and depots details by study ID based on given filters"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version includes timezone-aware paginated site and depot details and supports extended filter controls.",
                "operationId":"getPaginatedSDFDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"name",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Study version filter for sites or depots. Accepts non-negative integer version numbers.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"countryId",
                        "in":"query",
                        "description":"Country identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"countryISOCode",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-2 country codes.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"supplyCountryId",
                        "in":"query",
                        "description":"Supply Country ID.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeExtendedProperties",
                        "in":"query",
                        "description":"Retrieve extended properties for site only if the excludeExtendedProperties flag is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeTenantProperties",
                        "in":"query",
                        "description":"Retrieve tenant address properties for site only if the excludeTenantProperties flag is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"isLocalized",
                        "in":"query",
                        "description":"Boolean flag indicating whether localized labels are returned. true returns localized labels; false returns default labels.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"isLiteApi",
                        "in":"query",
                        "description":"Retrieve the basic details of SDFs.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-sdfs-sdf-sdftype-get"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot details by SDF ID and SDF Type"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this endpoint supports audit-history retrieval by SDF ID and SDF type.",
                "operationId":"getSdfDetailsBySdfId_1",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"attributes",
                        "in":"query",
                        "description":"Optional comma-separated attribute list to include in the response. Allowed values: INFO, PROPERTIES, ADDRESSES, KITSETTINGS.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"history",
                        "in":"query",
                        "description":"Boolean flag: true includes historical records, false returns only current records.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"excludeExtendedProperties",
                        "in":"query",
                        "description":"Retrieve extended properties for site only if the excludeExtendedProperties flag is false.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFDetailsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001",
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "versionStart":"2025-03-16T12:00:00Z",
                                                "tenantEntityId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyOrgIdName":"Sample Name",
                                                "statusId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "statusIdCodeValue":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfType":"sample"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "sdfAddressAssociations":[
                                                {
                                                    "address":{
                                                        "city":"Austin"
                                                    },
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "sdfKitSettingDto":[
                                                {
                                                    "kitTypeId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "settingName":"Sample Name",
                                                    "settingValue":"sample",
                                                    "settingOperationType":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-sdfs-sdf-{sdfType}-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-sdfs-sdf-sdftype-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/sdfs/lov/{pathAttr}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites, depots and labs in a study by path attributes"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 lookups, this version supports path-attribute LOV retrieval across sites, depots, and labs with includeRemoved support.",
                "operationId":"getSdfLovByPathAttribute",
                "parameters":[
                    {
                        "name":"pathAttr",
                        "in":"path",
                        "description":"Column name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"piName"
                    },
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"sdfStatus",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"includeRemoved",
                        "in":"query",
                        "description":"Boolean flag. true includes removed study sites, depots, and labs; false excludes removed records.",
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-sdfs-lov-{pathAttr}-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-sdfs-lov-pathattr-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/site/all":{
            "get":{
                "tags":[
                    "Sites and Depots/Get list of sites in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves the study sites list using user-managed site access control.",
                "operationId":"getAllSitesWithoutAccess",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Site 001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-site-all-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-site-all-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/site/{mode}/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get study site details with study version property by site ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves study-site details, including study version properties, for the specified site ID.",
                "operationId":"getStudySiteDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudySiteLiteResponse"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "site":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "name":"Site 001"
                                                },
                                                "sdfPropertyList":[
                                                    {
                                                        "propertyName":"timezone",
                                                        "propertyValue":"UTC"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-site-{mode}-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-site-mode-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/siteslabs":{
            "post":{
                "tags":[
                    "Sites and Depots/Labs/Create an association between a lab and a study site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v2.0/studies/{studyId}/{mode}/labs/siteslabs instead.",
                "operationId":"addLabSiteAssociation",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload pairing labs with sites for association.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/AddLabSiteTO"
                            },
                            "examples":{
                                "Add Lab Site Association Request":{
                                    "description":"Add Lab Site Association Request",
                                    "value":{
                                        "sites":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "labs":[
                                            "D56A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SdfId"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-siteslabs-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-siteslabs-post"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Labs/Delete the lab and study site association"
                ],
                "summary":"v1.0",
                "description":"Removes the lab's association with the given site.",
                "operationId":"removeLabSiteAssociation",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"The ID of the site.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"labId",
                        "in":"query",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SdfId"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-siteslabs-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-siteslabs-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all labs associated with a given site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves all labs associated with a given site.",
                "operationId":"getLabs",
                "parameters":[
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"The ID of the site.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabResponseV1"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Central Lab",
                                                "shortName":"CL"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Labs/Create a lab"
                ],
                "summary":"v1.0",
                "description":"Creates a lab and also associates it with the site, if a site ID is provided.",
                "operationId":"createLab",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing lab details for creation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabDto"
                            },
                            "examples":{
                                "Create Lab Request":{
                                    "description":"Create Lab Request",
                                    "value":{
                                        "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "vendorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                        "studySiteId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                        "labIdName":"LAB-001",
                                        "versionStart":"2026-01-01T00:00:00Z",
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "name":"Central Lab",
                                        "shortName":"CLAB",
                                        "associatedSite":"sample"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vendorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "studySiteId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "labIdName":"LAB-001",
                                            "versionStart":"2026-01-01T00:00:00Z",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CLAB",
                                            "associatedSite":"sample"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{labId}/labnormals":{
            "put":{
                "tags":[
                    "Sites and Depots/Labs/Create or update lab normals"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use /v3.0/studies/{studyId}/{mode}/labs/{studyLabId}/labnormals. v3 adds operationType-driven requests for create, update, and remove actions.",
                "operationId":"createOrUpdateLabNormals",
                "parameters":[
                    {
                        "name":"labId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of lab normals to be created or updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LabNormalTO"
                                }
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":[
                                        {
                                            "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "sequence":1,
                                            "test":"Hemoglobin",
                                            "labUnit":"g/dL",
                                            "lowRange":"12.0",
                                            "highRange":"16.0",
                                            "standardResult":"NORMAL",
                                            "gender":"Male",
                                            "ageFrom":18,
                                            "ageTo":65,
                                            "ageFromUnits":"YEAR",
                                            "ageToUnits":"YEAR",
                                            "race":"Asian",
                                            "fasting":"true",
                                            "effectiveDate":"2026-01-01"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{labId}-labnormals-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-labid-labnormals-put"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{id}":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get lab details of a given lab ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Retrieves lab details of a given lab ID.",
                "operationId":"getLabsById",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponseV1"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CL",
                                            "labDetails":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labName":"Sample Name",
                                                "labStatus":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "vendorId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"Sample Name",
                                                "versionStart":"2025-03-16T12:00:00Z"
                                            },
                                            "labAddresses":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"Sample Name",
                                                    "propertyValue":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{id}-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-id-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Labs/Update a lab at tenant level"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v2.0/studies/{studyId}/{mode}/labs/{studyLabId} instead.",
                "operationId":"updateLab",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing lab details for update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabDto"
                            },
                            "examples":{
                                "Update Lab Request":{
                                    "description":"Update Lab Request",
                                    "value":{
                                        "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "vendorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                        "studySiteId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                        "labIdName":"LAB-001",
                                        "versionStart":"2026-01-01T00:00:00Z",
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "name":"Central Lab",
                                        "shortName":"CLAB",
                                        "associatedSite":"sample"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "vendorId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "studySiteId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "labIdName":"LAB-001",
                                            "versionStart":"2026-01-01T00:00:00Z",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CLAB",
                                            "associatedSite":"sample"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{id}-put",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-id-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Labs/Delete lab if site association does not exist"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v2.0/studies/{studyId}/{mode}/labs/{studyLabId} instead.",
                "operationId":"deleteSDFsById",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SdfId"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{id}-delete",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-id-delete"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{labId}/labnormals/bulkLookUp":{
            "post":{
                "tags":[
                    "Sites and Depots/Labs/Get all lab normals for the given list of lab criteria"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Retrieves all lab normals for the given list of lab criteria.",
                "operationId":"generateLabNormals",
                "parameters":[
                    {
                        "name":"labId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload describing the lab normal lookup criteria.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabNormalLookUpRequestV1"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "lookUpCriteria":[
                                            {
                                                "testname":"Hemoglobin",
                                                "gender":"Male",
                                                "age":"35",
                                                "ageunits":"YEAR"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabNormalBulkLookUpResponseV1"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "labNormals":[
                                                {
                                                    "subjectId":"SUBJ-001",
                                                    "test":"Hemoglobin",
                                                    "value":"13.5"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{labId}-labnormals-bulkLookUp-post",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-labid-labnormals-bulklookup-post"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{id}/history":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get lab history for the given lab ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Retrieves the lab history for the given lab ID.",
                "operationId":"getLabHistory",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"SDF ID to delete.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabHistoryResponseV1"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CL",
                                            "reason":"Updated address",
                                            "comment":"Manual update",
                                            "operationType":"UPDATE",
                                            "userId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-01-01T00:00:00Z",
                                            "versionEnd":"9999-12-31T00:00:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{id}-history-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-id-history-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{labId}/labnormals/lookup":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all lab normals for given subject"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Retrieves all lab normals for a given subject.",
                "operationId":"getLabNormalForSubject",
                "parameters":[
                    {
                        "name":"labId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"testname",
                        "in":"query",
                        "description":"Test name filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Hemoglobin"
                    },
                    {
                        "name":"gender",
                        "in":"query",
                        "description":"Gender filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Male"
                    },
                    {
                        "name":"race",
                        "in":"query",
                        "description":"Race filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Asian"
                    },
                    {
                        "name":"age",
                        "in":"query",
                        "description":"Age filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":35
                    },
                    {
                        "name":"ageunits",
                        "in":"query",
                        "description":"Age units filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"YEAR"
                    },
                    {
                        "name":"collectionDate",
                        "in":"query",
                        "description":"Collection date filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-21"
                    },
                    {
                        "name":"fasting",
                        "in":"query",
                        "description":"Fasting filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{labId}-labnormals-lookup-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-labid-labnormals-lookup-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/labs/{id}/labnormals":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all lab normals"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Retrieves all lab normals.",
                "operationId":"getLabNormals",
                "parameters":[
                    {
                        "name":"id",
                        "in":"path",
                        "description":"The Lab ID to get lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"test",
                        "in":"query",
                        "description":"Test name to get specific lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Hemoglobin"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-labs-{id}-labnormals-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-labs-id-labnormals-get"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/labs/siteslabs":{
            "post":{
                "tags":[
                    "Sites and Depots/Labs/Create an association between a lab and a study site"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version creates lab-to-study-site associations using explicit site and lab identifier lists.",
                "operationId":"addLabSiteAssociation_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing site and lab identifiers to associate.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteLabsAssociationRequestV2"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "sites":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "labs":[
                                            "D56A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteLabsAssociationResponseV2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sites":[
                                                "C36A3197FDEE433FB5547EE83DE99E4B"
                                            ],
                                            "labs":[
                                                "D56A3197FDEE433FB5547EE83DE99E4B"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-siteslabs-post",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-siteslabs-post"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/labs/{studyLabId}/labnormals":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all lab normals"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version retrieves lab normals scoped to study-lab identifiers.",
                "operationId":"getLabNormals_1",
                "parameters":[
                    {
                        "name":"studyLabId",
                        "in":"path",
                        "description":"The Lab ID to get lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"test",
                        "in":"query",
                        "description":"Test name to get specific lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-{studyLabId}-labnormals-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-studylabid-labnormals-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Labs/Create or update lab normals"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version manages lab normals at the study-lab level.",
                "operationId":"createOrUpdateLabNormals_1",
                "parameters":[
                    {
                        "name":"studyLabId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of lab normals to be created or updated.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LabNormalTO"
                                }
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":[
                                        {
                                            "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "sequence":1,
                                            "test":"Hemoglobin",
                                            "labUnit":"g/dL",
                                            "lowRange":"12.0",
                                            "highRange":"16.0",
                                            "standardResult":"NORMAL",
                                            "gender":"Male",
                                            "ageFrom":18,
                                            "ageTo":65,
                                            "ageFromUnits":"YEAR",
                                            "ageToUnits":"YEAR",
                                            "race":"Asian",
                                            "fasting":"true",
                                            "effectiveDate":"2026-01-01"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-{studyLabId}-labnormals-put",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-studylabid-labnormals-put"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/labs":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all labs associated with a given site"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns labs in a paginated response model for better large-result handling.",
                "operationId":"getPaginatedLabDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CL",
                                            "labDetails":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labName":"Sample Name",
                                                "labStatus":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "vendorId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"Sample Name",
                                                "versionStart":"2025-03-16T12:00:00Z"
                                            },
                                            "labAddresses":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"Sample Name",
                                                    "propertyValue":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Labs/Create a lab"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version creates study-lab data with structured addresses and properties payload sections.",
                "operationId":"createStudyLab",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to create a study lab with addresses and properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabCreateUpdateRequestV2"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "lab":{
                                            "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "labIdName":"LAB-001"
                                        },
                                        "labAddresses":[
                                            {
                                                "addressId":"B26A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ],
                                        "labProperties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabCreateUpdateResponseV2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "lab":{
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"LAB-001"
                                            },
                                            "labAddresses":[
                                                {
                                                    "addressId":"B26A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-post",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-post"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/siteslabs":{
            "delete":{
                "tags":[
                    "Sites and Depots/Labs/Delete the lab and study site association"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version removes lab-to-study-site associations by explicit siteId and labId inputs.",
                "operationId":"deleteLabSiteAssociation",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"The ID of the site.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"labId",
                        "in":"query",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabSiteDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "labId":"D56A3197FDEE433FB5547EE83DE99E4B",
                                            "siteId":"A16A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-01-01T00:00:00Z",
                                            "labVersionStart":"2026-01-01T00:00:00Z",
                                            "siteVersionStart":"2026-01-01T00:00:00Z",
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not Found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-siteslabs-delete",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-siteslabs-delete"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/labs/{studyLabId}/labnormals/lookup":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all lab normals for given subject"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version supports richer study-lab subject lookup filters.",
                "operationId":"getLabNormalForSubject_1",
                "parameters":[
                    {
                        "name":"studyLabId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"testname",
                        "in":"query",
                        "description":"Test name to get specific lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Hemoglobin"
                    },
                    {
                        "name":"gender",
                        "in":"query",
                        "description":"Gender filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Female"
                    },
                    {
                        "name":"race",
                        "in":"query",
                        "description":"Race filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Asian"
                    },
                    {
                        "name":"age",
                        "in":"query",
                        "description":"Age filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":45
                    },
                    {
                        "name":"ageunits",
                        "in":"query",
                        "description":"Age units filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"years"
                    },
                    {
                        "name":"collectionDate",
                        "in":"query",
                        "description":"Collection date filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-16T12:00:00Z"
                    },
                    {
                        "name":"fasting",
                        "in":"query",
                        "description":"Fasting filter for lab normals.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"YES"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-{studyLabId}-labnormals-lookup-get",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-studylabid-labnormals-lookup-get"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/labs/{studyLabId}":{
            "put":{
                "tags":[
                    "Sites and Depots/Labs/Update a lab at tenant level"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version updates study-lab addresses and properties using structured payload sections.",
                "operationId":"updateStudyLab",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyLabId",
                        "in":"path",
                        "description":"The ID of the lab.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update a study lab with addresses and properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabCreateUpdateRequestV2"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "lab":{
                                            "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "labIdName":"LAB-001"
                                        },
                                        "labAddresses":[
                                            {
                                                "addressId":"B26A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ],
                                        "labProperties":[
                                            {
                                                "propertyName":"timezone",
                                                "propertyValue":"UTC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabCreateUpdateResponseV2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "lab":{
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"LAB-001"
                                            },
                                            "labAddresses":[
                                                {
                                                    "addressId":"B26A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "propertyName":"timezone",
                                                    "propertyValue":"UTC"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-labs-{studyLabId}-put",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-labs-studylabid-put"
            }
        },
        "/ec-site-svc/rest/v3.0/studies/{studyId}/{mode}/labs/{studyLabId}/labnormals":{
            "put":{
                "tags":[
                    "Sites and Depots/Labs/Create or update lab normals"
                ],
                "summary":"v3.0",
                "description":"Compared with v2, this version adds operationType-driven bulk actions (CREATE, UPDATE, REMOVE) for lab normals.",
                "operationId":"createOrUpdateLabNormals_2",
                "parameters":[
                    {
                        "name":"studyLabId",
                        "in":"path",
                        "description":"The lab ID for which to create lab normals.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of operation bundles for lab normals. operationType values: CREATE (add new lab normals), UPDATE (modify existing lab normals), REMOVE (delete existing lab normals).",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LabNormalOpTypeTO"
                                }
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":[
                                        {
                                            "operationType":"CREATE",
                                            "labNormalList":[
                                                {
                                                    "test":"Hemoglobin",
                                                    "labUnit":"g/dL"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabNormalTO"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "labNormalId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "sequence":1,
                                                "test":"Hemoglobin",
                                                "labUnit":"g/dL",
                                                "lowRange":"12.0",
                                                "highRange":"16.0",
                                                "standardResult":"NORMAL",
                                                "gender":"Male",
                                                "ageFrom":18,
                                                "ageTo":65,
                                                "ageFromUnits":"YEAR",
                                                "ageToUnits":"YEAR",
                                                "race":"Asian",
                                                "fasting":"true",
                                                "effectiveDate":"2026-01-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            },
                                            "headers":{
                                                "empty":false
                                            },
                                            "length":1,
                                            "location":"sample",
                                            "language":{
                                                "language":"sample",
                                                "displayName":"Sample Name",
                                                "country":"sample",
                                                "variant":"sample",
                                                "script":"sample",
                                                "unicodeLocaleAttributes":[
                                                    "CODE"
                                                ],
                                                "unicodeLocaleKeys":[
                                                    "CODE"
                                                ],
                                                "displayLanguage":"sample",
                                                "displayScript":"sample",
                                                "displayCountry":"sample",
                                                "displayVariant":"sample",
                                                "extensionKeys":[
                                                    "sample"
                                                ],
                                                "iso3Language":"USA",
                                                "iso3Country":"USA"
                                            },
                                            "date":"2025-03-16T12:00:00Z",
                                            "lastModified":"2025-03-16T12:00:00Z",
                                            "closed":false,
                                            "metadata":{
                                                "empty":false
                                            },
                                            "entity":{
                                            },
                                            "links":[
                                                {
                                                    "type":"sample",
                                                    "rels":[
                                                        "sample"
                                                    ],
                                                    "rel":"sample",
                                                    "params":{
                                                        "key":"sample"
                                                    },
                                                    "uri":"sample",
                                                    "title":"sample",
                                                    "uriBuilder":{
                                                    }
                                                }
                                            ],
                                            "cookies":{
                                                "key":{
                                                    "name":"Sample Name",
                                                    "value":"sample",
                                                    "version":1,
                                                    "path":"sample",
                                                    "domain":"sample",
                                                    "comment":"Sample comment",
                                                    "maxAge":1,
                                                    "expiry":"2025-03-16T12:00:00Z",
                                                    "secure":false,
                                                    "httpOnly":false,
                                                    "sameSite":"NONE"
                                                }
                                            },
                                            "stringHeaders":{
                                                "empty":false
                                            },
                                            "mediaType":{
                                                "type":"sample",
                                                "subtype":"sample",
                                                "parameters":{
                                                    "key":"sample"
                                                },
                                                "wildcardType":false,
                                                "wildcardSubtype":false
                                            },
                                            "allowedMethods":[
                                                "sample"
                                            ],
                                            "statusInfo":{
                                                "family":"INFORMATIONAL",
                                                "statusCode":1,
                                                "reasonPhrase":"success"
                                            },
                                            "entityTag":{
                                                "value":"sample",
                                                "weak":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3.0-studies-{studyId}-{mode}-labs-{studyLabId}-labnormals-put",
                "x-filename-id":"ec-site-svc-rest-v3.0-studies-studyid-mode-labs-studylabid-labnormals-put"
            }
        },
        "/ec-site-svc/rest/v3.0/studies/{studyId}/{mode}/labs":{
            "get":{
                "tags":[
                    "Sites and Depots/Labs/Get all labs associated with a given site"
                ],
                "summary":"v3.0",
                "description":"Compared with v2, this version adds lab status filtering and status-aware response data.",
                "operationId":"getPaginatedLabDetails_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Name search filter for site.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Site-A"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Lab status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "New",
                                "Active",
                                "Retired",
                                "ACTIVE",
                                "NEW",
                                "RESTRICTED",
                                "DISBARRED",
                                "DECEASED",
                                "RETIRED"
                            ]
                        },
                        "example":"ACTIVE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CL",
                                            "labDetails":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labName":"Sample Name",
                                                "labStatus":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "vendorId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"Sample Name",
                                                "versionStart":"2025-03-16T12:00:00Z"
                                            },
                                            "labAddresses":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"Sample Name",
                                                    "propertyValue":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabResponse"
                                },
                                "examples":{
                                    "Error Response":{
                                        "description":"Error Response",
                                        "value":{
                                            "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "name":"Central Lab",
                                            "shortName":"CL",
                                            "labDetails":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "studyLabId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labName":"Sample Name",
                                                "labStatus":"success",
                                                "oldSdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "vendorId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "labIdName":"Sample Name",
                                                "versionStart":"2025-03-16T12:00:00Z"
                                            },
                                            "labAddresses":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeIdCodeValue":"CODE",
                                                    "entityAddressAssociationId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressStreet1":"sample",
                                                    "addressStreet2":"sample",
                                                    "addressCity":"sample",
                                                    "addressPostalCode":"CODE",
                                                    "addressStateOrProvOrCounty":"sample",
                                                    "addressStateOrProvOrCountyName":"Sample Name",
                                                    "addressCountry":"sample",
                                                    "addressCountryName":"Sample Name",
                                                    "entityAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "entityId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                            "entityType":"Facility",
                                                            "propertyName":"LabId",
                                                            "propertyValue":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                                        }
                                                    ],
                                                    "sdfAddressProperties":[
                                                        {
                                                            "reason":"Protocol update requested by study operations.",
                                                            "comment":"Association adjusted after data reconciliation.",
                                                            "versionEnd":"2026-03-30T12:00:00Z",
                                                            "operationType":"MODIFIED",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2025-03-16T12:00:00Z",
                                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "propertyName":"Sample Name",
                                                            "propertyValue":"sample"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "labProperties":[
                                                {
                                                    "reason":"Protocol update requested by study operations.",
                                                    "comment":"Association adjusted after data reconciliation.",
                                                    "versionEnd":"2026-03-30T12:00:00Z",
                                                    "operationType":"MODIFIED",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2025-03-16T12:00:00Z",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"Sample Name",
                                                    "propertyValue":"sample"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3.0-studies-{studyId}-{mode}-labs-get",
                "x-filename-id":"ec-site-svc-rest-v3.0-studies-studyid-mode-labs-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/regions":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of regions with history"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a list of regions. The region includes a list of associated countries.",
                "operationId":"getRegions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regions":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "name":"North America Region",
                                                "regionCountries":[
                                                    {
                                                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                        "countryName":"United States"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Region/Add a region"
                ],
                "summary":"v1.0",
                "description":"Creates a region associated to a country. Region data should include a list of associated countries (minimum one country).",
                "operationId":"addRegion",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Region payload used to create a new region.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RegionDto"
                            },
                            "examples":{
                                "Add Region Request":{
                                    "description":"Add Region Request",
                                    "value":{
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "versionStart":"2026-03-17T10:00:00Z",
                                        "name":"North America Region",
                                        "regionCountries":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "countryName":"United States"
                                        },
                                        "reason":"Protocol update requested by study operations.",
                                        "comment":"Association adjusted after data reconciliation."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountries":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"In case a region already exist with same name or a country to be associated is already associated with another region",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/regions/{regionId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get region details"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves details of a region by region ID. The region includes a list of associated countries.",
                "operationId":"getRegionById",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Id for the required region",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountries":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-{regionId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-regionid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Region/Update region and its associated countries and states list"
                ],
                "summary":"v1.0",
                "description":"Updates a region and its associated list of countries. The API returns updated region details.",
                "operationId":"updateRegionById",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Region payload used to update a region and its country associations.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RegionDto"
                            },
                            "examples":{
                                "Region DTO Example":{
                                    "description":"Region DTO Example",
                                    "value":{
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "versionStart":"2026-03-17T10:00:00Z",
                                        "name":"North America Region",
                                        "regionCountries":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "countryName":"United States"
                                        },
                                        "reason":"Protocol update requested by study operations.",
                                        "comment":"Association adjusted after data reconciliation."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionDto"
                                },
                                "examples":{
                                    "Region DTO Example":{
                                        "description":"Region DTO Example",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountries":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-{regionId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-regionid-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Region/Delete a region"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use /v2/studies/{studyId}/{mode}/regions/{regionId}. v2 supports richer region-country-state associations while preserving delete behavior.",
                "operationId":"deleteRegionById",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-{regionId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-regionid-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/regions/filter/countries/{countryId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get region by country or state ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a region associated with a certain country. A null value is returned if the country is not associated with a region. Region does not include associated countries list.",
                "operationId":"getRegionByCountryId",
                "parameters":[
                    {
                        "name":"countryId",
                        "in":"path",
                        "description":"Country ID for the associated region.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountries":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-filter-countries-{countryId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-filter-countries-countryid-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/regions/{regionId}/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use /v3/studies/{studyId}/{mode}/regions/{regionId}/countries instead.",
                "operationId":"getRegionCountries",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regionCountries":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-regions-{regionId}-countries-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-regions-regionid-countries-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/regions/countries/history":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region"
                ],
                "summary":"v1.0",
                "description":"Get list of countries and states with hidden flag associated to a region",
                "operationId":"getRegionCountries_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"regionId",
                        "in":"query",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"fromDate",
                        "in":"query",
                        "description":"Date after which the records have to be fetched for a GET API.",
                        "required":true,
                        "schema":{
                            "pattern":"^\\d{4}-\\d{2}-\\d{2}$",
                            "type":"string"
                        },
                        "example":"2026-01-01"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset for paginated responses.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to return in the response.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Sort order direction. Allowed values: asc (ascending), desc (descending), ASC (ascending), DESC (descending).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "asc",
                                "desc",
                                "ASC",
                                "DESC"
                            ]
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Region Countries History Success Response":{
                                        "description":"Get Region Countries History Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "regionId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                "stateId":"B0C1D2E3F4A567890123456789ABCDEF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"fromDate"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"fromDate"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-regions-countries-history-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-regions-countries-history-get"
            }
        },
        "/ec-site-svc/rest/v1.0/studies/{studyId}/{mode}/regions/history":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of regions with history"
                ],
                "summary":"v1.0",
                "description":"Compared with v3 region retrieval, this version adds history-query filters and paginated history output.",
                "operationId":"getRegions_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"regionId",
                        "in":"query",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"fromDate",
                        "in":"query",
                        "description":"Date after which the records have to be fetched for a GET API.",
                        "required":true,
                        "schema":{
                            "pattern":"^\\d{4}-\\d{2}-\\d{2}$",
                            "type":"string"
                        },
                        "example":"2026-01-01"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset for paginated responses.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to return in the response.",
                        "required":true,
                        "schema":{
                            "maximum":1000,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Sort order direction. Allowed values: asc (ascending), desc (descending), ASC (ascending), DESC (descending).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "asc",
                                "desc",
                                "ASC",
                                "DESC"
                            ]
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Get Region History Success Response":{
                                        "description":"Get Region History Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "versionEnd":"2026-03-30T12:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "name":"North America Region"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"fromDate"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"fromDate"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1.0-studies-{studyId}-{mode}-regions-history-get",
                "x-filename-id":"ec-site-svc-rest-v1.0-studies-studyid-mode-regions-history-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/regions":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of regions with history"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns regions with both country and state associations.",
                "operationId":"getRegions_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionsResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regions":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "name":"North America Region",
                                                "regionCountriesStates":[
                                                    {
                                                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                                        "stateName":"California"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Region/Add a region"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version allows creating regions with both country and state associations.",
                "operationId":"addRegion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Region payload including countries and states used to create a region.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RegionStatesDto"
                            },
                            "examples":{
                                "Region States DTO Example":{
                                    "description":"Region States DTO Example",
                                    "value":{
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "versionStart":"2026-03-17T10:00:00Z",
                                        "name":"North America Region",
                                        "regionCountriesStates":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "countryName":"United States",
                                            "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "stateName":"California"
                                        },
                                        "reason":"Protocol update requested by study operations.",
                                        "comment":"Association adjusted after data reconciliation."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionStatesDto"
                                },
                                "examples":{
                                    "Region States DTO Example":{
                                        "description":"Region States DTO Example",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"A region with the same name already exists or an associated country/state is already assigned to another region.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-post",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-post"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/regions/filter/countries/{countryId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get region by country or state ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1 country lookup, this version supports both countryId and optional stateId inputs. It returns the region associated with the provided country/state combination. Null is returned if country is not associated with any region. Region does not include associated countries list.",
                "operationId":"getRegionByCountryId_1",
                "parameters":[
                    {
                        "name":"countryId",
                        "in":"path",
                        "description":"Country ID for the associated region.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"stateId",
                        "in":"query",
                        "description":"State identifier as a 32-character uppercase hexadecimal UUID string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionStatesDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-filter-countries-{countryId}-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-filter-countries-countryid-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/regions/{regionId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get region details"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns region details including associated countries and states.",
                "operationId":"getRegionById_1",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionStatesDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-{regionId}-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-regionid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Region/Update region and its associated countries and states list"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version updates both country and state associations for the region.",
                "operationId":"updateRegionById_1",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[A-F0-9]{32}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Region payload including countries and states used to update a region.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RegionStatesDto"
                            },
                            "examples":{
                                "Region States DTO Example":{
                                    "description":"Region States DTO Example",
                                    "value":{
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "versionStart":"2026-03-17T10:00:00Z",
                                        "name":"North America Region",
                                        "regionCountriesStates":{
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation.",
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "countryName":"United States",
                                            "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "stateName":"California"
                                        },
                                        "reason":"Protocol update requested by study operations.",
                                        "comment":"Association adjusted after data reconciliation."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionStatesDto"
                                },
                                "examples":{
                                    "Region States DTO Example":{
                                        "description":"Region States DTO Example",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California"
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid region, country, or state ID or the association already exists in another region.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-{regionId}-put",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-regionid-put"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/regions/{regionId}/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns both countries and states associated with the region.",
                "operationId":"getRegionCountries_2",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Unique ID for a given region.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionCountriesResponse2"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-regions-{regionId}-countries-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-regions-regionid-countries-get"
            }
        },
        "/ec-site-svc/rest/v3/studies/{studyId}/{mode}/regions/{regionId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get region details"
                ],
                "summary":"v3.0",
                "description":"Compared with v2, this version adds hidden-flag information to region details and associated countries/states.",
                "operationId":"getRegionById_2",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Id for the required region",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-03-17T10:00:00Z",
                                            "name":"North America Region",
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California",
                                                "countryHidden":false,
                                                "stateHidden":true
                                            },
                                            "reason":"Protocol update requested by study operations.",
                                            "comment":"Association adjusted after data reconciliation."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3-studies-{studyId}-{mode}-regions-{regionId}-get",
                "x-filename-id":"ec-site-svc-rest-v3-studies-studyid-mode-regions-regionid-get"
            }
        },
        "/ec-site-svc/rest/v3/studies/{studyId}/{mode}/regions/{regionId}/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region"
                ],
                "summary":"v3.0",
                "description":"Compared with v2, this version returns countries and states with hidden-flag information.",
                "operationId":"getRegionCountries_3",
                "parameters":[
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"Region ID of the required region",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionCountriesResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regionCountriesStates":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "countryId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "countryName":"United States",
                                                "stateId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "stateName":"California",
                                                "countryHidden":false,
                                                "stateHidden":true
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"In case of invalid region ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"regionId"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3-studies-{studyId}-{mode}-regions-{regionId}-countries-get",
                "x-filename-id":"ec-site-svc-rest-v3-studies-studyid-mode-regions-regionid-countries-get"
            }
        },
        "/ec-site-svc/rest/v3/studies/{studyId}/{mode}/regions":{
            "get":{
                "tags":[
                    "Sites and Depots/Region/Get list of regions with history"
                ],
                "summary":"v3.0",
                "description":"Compared with v2, this version includes hidden-flag information for region, country, and state associations.",
                "operationId":"getRegions_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RegionsResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "regions":{
                                                "reason":"Protocol update requested by study operations.",
                                                "comment":"Association adjusted after data reconciliation.",
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-03-17T10:00:00Z",
                                                "name":"North America Region",
                                                "regionCountriesStates":[
                                                    {
                                                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                                        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                                        "stateName":"California",
                                                        "countryHidden":false,
                                                        "stateHidden":true
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v3-studies-{studyId}-{mode}-regions-get",
                "x-filename-id":"ec-site-svc-rest-v3-studies-studyid-mode-regions-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: this endpoint uses the legacy v1 reporting flow. Use /v2.0/studies/{studyId}/{mode}/report/{reportName}, which validates the extended v2 filter model.",
                "operationId":"generateSDFReport_2",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Required path parameter. Report name to generate. Allowed length: 1 to 128 characters.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SitesAuditReport"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[A-Fa-f0-9-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing report search specifications.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "D56A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":50,
                                            "offset":0,
                                            "columns":[
                                                "Site Name",
                                                "Country",
                                                "Status"
                                            ],
                                            "data":[
                                                [
                                                    "Oakland Biomed Site",
                                                    "US",
                                                    "ACTIVE"
                                                ],
                                                [
                                                    "Tokyo Depot",
                                                    "JP",
                                                    "ACTIVE"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when request parameters or payload values are invalid for this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version uses the v2 reporting flow and validates the extended v2 filter model while generating the same report output.",
                "operationId":"generateSDFReport_3",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Required path parameter. Report name to generate. Allowed length: 1 to 128 characters.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"SitesAuditReport"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[A-Fa-f0-9-]{32,36}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing report search specifications.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Request Example":{
                                    "description":"Request Example",
                                    "value":{
                                        "limit":50,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "D56A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":50,
                                            "offset":0,
                                            "columns":[
                                                "Site Name",
                                                "Country",
                                                "Status"
                                            ],
                                            "data":[
                                                [
                                                    "Oakland Biomed Site",
                                                    "US",
                                                    "ACTIVE"
                                                ],
                                                [
                                                    "Tokyo Depot",
                                                    "JP",
                                                    "ACTIVE"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when request parameters or payload values are invalid for this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":{
                                            },
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data",
                                                "details":{
                                                    "field":"value"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-site-svc-rest-v2.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/clearsitecache":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Clear site's SDFs cached data by study ID and mode"
                ],
                "summary":"v1.0",
                "description":"Clears SDFs data of a site from cache memory by study ID and mode.",
                "operationId":"clearSiteCache",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "success":"site cache cleared."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-clearsitecache-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-clearsitecache-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites by type or list of countries"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSDFByType",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"countries",
                        "in":"query",
                        "description":"Comma-separated list of ISO alpha-2 country codes.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"US,IN"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"createASDF",
                "parameters":[
                    {
                        "name":"shippingSameAsPrimary",
                        "in":"query",
                        "description":"Optional query parameter. Boolean flag. true copies the primary address into the shipping address; false keeps shipping data unchanged.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to create an SDF.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFModelDto"
                            },
                            "examples":{
                                "Create SDF Request":{
                                    "description":"Create SDF Request",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "propertyName":"siteName",
                                                "propertyValue":"Central Site",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ],
                                        "sdfAddresses":[
                                            {
                                                "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}/address":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create site address"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"createSDFAddress",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to update. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to create an SDF address.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFAddressRequest"
                            },
                            "examples":{
                                "Create SDF Address Request":{
                                    "description":"Create SDF Address Request",
                                    "value":{
                                        "sdfAddress":{
                                            "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-address-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-address-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}/property":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all properties of the site by SDF ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getAllSDFProperty",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier used to retrieve all properties. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"The ID of the property.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-property-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-property-get"
            },
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create site property"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"createSDFProperty",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to update. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to create SDF properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFCreatePropertyRequest"
                            },
                            "examples":{
                                "Create SDF Property Request":{
                                    "description":"Create SDF Property Request",
                                    "value":{
                                        "sdfPropertyList":[
                                            {
                                                "propertyName":"PRIMARY_CONTACT",
                                                "propertyValue":"ACTIVE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-property-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-property-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/sdf":{
            "post":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site and send notification"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"createSDFWithNotification",
                "parameters":[
                    {
                        "name":"shippingSameAsPrimary",
                        "in":"query",
                        "description":"Optional query parameter. Boolean flag. true copies the primary address into the shipping address; false keeps shipping data unchanged.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to create an SDF with notification details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFModelDto"
                            },
                            "examples":{
                                "Create SDF With Notification Request":{
                                    "description":"Create SDF With Notification Request",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "propertyName":"siteName",
                                                "propertyValue":"Central Site",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ],
                                        "sdfAddresses":[
                                            {
                                                "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-sdf-post",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdf-post"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/deleteDepotEmail":{
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Delete depot email"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"deleteContactEmail",
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-deleteDepotEmail-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-deletedepotemail-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}/address/{addressId}":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update site address by site and address ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"updateSDFAddress",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to update. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"addressId",
                        "in":"path",
                        "description":"Required path parameter. Address identifier to delete from the specified SDF. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update an SDF address.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFAddressRequest"
                            },
                            "examples":{
                                "Update SDF Address Request":{
                                    "description":"Update SDF Address Request",
                                    "value":{
                                        "sdfAddress":{
                                            "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                            "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-address-{addressId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-address-addressid-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site address by site and address ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"deleteSDFAddressById",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to delete. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"addressId",
                        "in":"path",
                        "description":"Required path parameter. Address identifier to delete from the specified SDF. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-address-{addressId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-address-addressid-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}/property/{propId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site property by SDF and property ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSDFPropertyById",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier used to retrieve a property. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"The ID of the property.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-property-{propId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-property-propid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update the SDF property of the site by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"updateSDFProperty",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to update. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"Required path parameter. Property identifier to update. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update SDF properties.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFPropertyRequest"
                            },
                            "examples":{
                                "Update SDF Property Request":{
                                    "description":"Update SDF Property Request",
                                    "value":{
                                        "sdfProperty":{
                                            "propertyName":"PRIMARY_CONTACT",
                                            "propertyValue":"ACTIVE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-property-{propId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-property-propid-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF property by property ID"
                ],
                "summary":"v1.0",
                "description":"Compared with v1.0 route, this legacy v1 route keeps the same delete behavior for backward compatibility.",
                "operationId":"deleteSDFProperty_1",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier used to delete a property. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"propId",
                        "in":"path",
                        "description":"Required path parameter. Property identifier to delete. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-property-{propId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-property-propid-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the SDF (site or depot) by ID.",
                "operationId":"getSDFById",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to retrieve. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-get"
            },
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"updateASDF",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update an SDF.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFModelDto"
                            },
                            "examples":{
                                "Update SDF Request":{
                                    "description":"Update SDF Request",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "propertyName":"siteName",
                                                "propertyValue":"Central Site",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ],
                                        "sdfAddresses":[
                                            {
                                                "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-put"
            },
            "delete":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Delete a site by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"deleteSDFsById_1",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Required path parameter. SDF identifier to delete. Accepted length: 32 to 36 characters.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "No Content Success Response":{
                                        "description":"No Content Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-{sdfId}-delete",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdfid-delete"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/all":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getAllSDFs",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdfAddresses":{
                                                    "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-all-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-all-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/allstudyversions":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type and study version"
                ],
                "summary":"v1.0",
                "description":"Retrieves all SDF types (sites or depots) by type and the assigned study version.",
                "operationId":"getAllSiteandStudyVersions",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDFModelDto"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "name":"Central Site",
                                                "sdfType":"Site"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-allstudyversions-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-allstudyversions-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries for a site by SDF type"
                ],
                "summary":"v1.0",
                "description":"Retrieves all countries where sites or depots are created by SDF type.",
                "operationId":"getCountriesBySdfType_1",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-countries-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-countries-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/tenant/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by SDF ID for a tenant"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSDFByIdFromTenant",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-tenant-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-tenant-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/search":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSDFByKeyAndType",
                "parameters":[
                    {
                        "name":"key",
                        "in":"query",
                        "description":"Optional query parameter. Free-text key for name or address search. Accepted length: 1 to 255 characters when provided.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Central"
                    },
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-search-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-search-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/creationDate":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF information with creation date by SDF type"
                ],
                "summary":"v1.0",
                "description":"Retrieves the SDFs matching the SDF type (Sites or Depots) with the creation date of each SDF.",
                "operationId":"getSDFByTypeWithCreationDate",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDFWithCreationDate"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "name":"Central Site",
                                                "sdfType":"Site",
                                                "creationDate":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Returned when the caller is authenticated but does not have permission to access this endpoint.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Forbidden Response":{
                                        "description":"Forbidden Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-creationDate-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-creationdate-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/autoSuggest":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF (UI search autocomplete)"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSDFSearchSuggestionsByKeyAndType",
                "parameters":[
                    {
                        "name":"key",
                        "in":"query",
                        "description":"Optional query parameter. Free-text key for name or address search. Accepted length: 1 to 255 characters when provided.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Central"
                    },
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-autoSuggest-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-autosuggest-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/lov/{pathAttr}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites by column, type and status"
                ],
                "summary":"v1.0",
                "description":"Retrieves sites by column name, type, and status of the site.",
                "operationId":"getSiteLovByColumn",
                "parameters":[
                    {
                        "name":"pathAttr",
                        "in":"path",
                        "description":"Column name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"name"
                    },
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"sdfStatus",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-lov-{pathAttr}-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-lov-pathattr-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/properties/piname":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF LOV/Get the principal investigator's full name for all sites"
                ],
                "summary":"v1.0",
                "description":"Retrieves full name of a principal investigator for all accessible sites in a study.",
                "operationId":"getSitePIFullName",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"sdfStatus",
                        "in":"query",
                        "description":"SDF status filter. Allowed values: ACTIVE (available), NEW (newly created), RESTRICTED (limited use), DISBARRED (blocked), DECEASED (closed), RETIRED (inactive).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":[
                                            {
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "piFullName":"John Doe"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-properties-piname-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-properties-piname-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/pinaddr":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get principal investigator's name and site address"
                ],
                "summary":"v1.0",
                "description":"Retrieves the last name of the site's principal investigator and the address of the site.",
                "operationId":"getSitePINAndAddress",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-pinaddr-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-pinaddr-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/siteFilterPaginated":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by filter parameters"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSitesByFilter",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Optional query parameter. Site status filter. Allowed values: ACTIVE, NEW, RESTRICTED, DISBARRED, DECEASED, RETIRED.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional query parameter. Study version filter. Accepted format: numeric dotted version (for example, 1.0 or 2.1.3).",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"country",
                        "in":"query",
                        "description":"Optional query parameter. Country ISO alpha-2 code filter (for example, US).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"US"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":25
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-siteFilterPaginated-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sitefilterpaginated-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/searchSite":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites on search key"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"getSitesOnSearchString",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"key",
                        "in":"query",
                        "description":"Optional query parameter. Free-text key used to search sites. Accepted length: 1 to 255 characters when provided.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Central"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":25
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-searchSite-get",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-searchsite-get"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/multiple":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update site properties for managing sites"
                ],
                "summary":"v1.0",
                "description":"Updates multiple site properties for managing sites.",
                "operationId":"updateMultipleSites",
                "requestBody":{
                    "description":"Payload to update multiple sites.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MultipleSitePropertyUpdateRequestDto"
                            },
                            "examples":{
                                "Update Multiple Sites Request":{
                                    "description":"Update Multiple Sites Request",
                                    "value":{
                                        "siteIds":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "properties":[
                                            {
                                                "propertyName":"studyVersion",
                                                "propertyValue":"2.0"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFModelDto"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "sdf":{
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            },
                                            "sdfPropertyList":[
                                                {
                                                    "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "propertyName":"siteName",
                                                    "propertyValue":"Central Site",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            ],
                                            "sdfAddresses":[
                                                {
                                                    "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                    "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-multiple-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-multiple-put"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/sdf/{sdfId}":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site and send notification"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated in v1: use the latest SDF API version.",
                "operationId":"updateSDFWithNotification",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update an SDF with notification details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SDFModelDto"
                            },
                            "examples":{
                                "Update SDF With Notification Request":{
                                    "description":"Update SDF With Notification Request",
                                    "value":{
                                        "sdf":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionStart":"2026-02-21T06:30:00Z"
                                        },
                                        "sdfPropertyList":[
                                            {
                                                "id":"D56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "propertyName":"siteName",
                                                "propertyValue":"Central Site",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ],
                                        "sdfAddresses":[
                                            {
                                                "id":"E56A3197FDEE433FB5547EE83DE99E4B",
                                                "sdfId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "addressTypeId":"F56A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-sdf-{sdfId}-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-sdf-sdfid-put"
            }
        },
        "/ec-site-svc/rest/v1/studies/{studyId}/{mode}/sdfs/versionupdate":{
            "put":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Update all sites with a new study version"
                ],
                "summary":"v1.0",
                "description":"Updates the study version of all the sites.",
                "operationId":"updateStudyVersionForAllSDFs",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Payload to update SDF study version.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyVersionRequest"
                            },
                            "examples":{
                                "Update Study Version Request":{
                                    "description":"Update Study Version Request",
                                    "value":{
                                        "oldVersion":"1.0",
                                        "newVersion":"2.0"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "sdf":{
                                                    "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-studies-{studyId}-{mode}-sdfs-versionupdate-put",
                "x-filename-id":"ec-site-svc-rest-v1-studies-studyid-mode-sdfs-versionupdate-put"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfs/countries":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries by type"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version returns country data with hidden-flag support for sites and depots.",
                "operationId":"getCountriesBySdfType_2",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-sdfs-countries-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-sdfs-countries-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfs/paginated":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites in a paginated format"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated in v2: use the latest SDF API version.",
                "operationId":"getPaginatedSDFs",
                "parameters":[
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based row index to start pagination. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of rows to return. Only non-negative integers are accepted.",
                        "schema":{
                            "type":"string"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Optional query parameter. Sort direction for returned rows. Allowed values: asc, desc, ASC, DESC.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"noCache",
                        "in":"query",
                        "description":"Optional query parameter. Cache behavior flag. false uses cache when available; true bypasses cache and reads fresh data.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-sdfs-paginated-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-sdfs-paginated-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfs/{sdfId}":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by ID"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version supports explicit cache bypass through the noCache query parameter while retrieving the same SDF details.",
                "operationId":"getSDFById_1",
                "parameters":[
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for a site, depot, or lab (SDF).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"noCache",
                        "in":"query",
                        "description":"Optional query parameter. Cache behavior flag. false uses cache when available; true bypasses cache and reads fresh data.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-sdfs-{sdfId}-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-sdfs-sdfid-get"
            }
        },
        "/ec-site-svc/rest/v2/studies/{studyId}/{mode}/sdfs/pinaddr":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get principal investigator's name and site address"
                ],
                "summary":"v2.0",
                "description":"Compared with v1, this version includes expanded address details with full country and state names in the PI-and-address response.",
                "operationId":"getSitePINAndAddress_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier as a 32-character uppercase hexadecimal UUID string.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode. Allowed values: active (live study operations), test (testing data), training (training or sandbox data).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v2-studies-{studyId}-{mode}-sdfs-pinaddr-get",
                "x-filename-id":"ec-site-svc-rest-v2-studies-studyid-mode-sdfs-pinaddr-get"
            }
        },
        "/ec-site-svc/rest/v1/tenant/sdfs/autoSuggest":{
            "get":{
                "tags":[
                    "Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name and address"
                ],
                "summary":"v1.0",
                "description":"Retrieves site suggestions in tenant scope by optional key (name or address) and optional SDF type (site or depot).",
                "operationId":"getSDFSearchSuggestionsByKeyAndType_1",
                "parameters":[
                    {
                        "name":"key",
                        "in":"query",
                        "description":"Optional query parameter. Free-text key for name or address search. Accepted length: 1 to 255 characters when provided.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Central"
                    },
                    {
                        "name":"sdfType",
                        "in":"query",
                        "description":"SDF type filter. Allowed values: site/SITE (site records), depot/DEPOT (depot records), lab/LAB (lab records), all/ALL (all supported SDF types).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Success Response":{
                                        "description":"Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when one or more path parameters, query parameters, or request-body values fail endpoint validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SDFResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"failure",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SVC-0400",
                                                "errorMessage":"Invalid request data"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-site-svc-rest-v1-tenant-sdfs-autoSuggest-get",
                "x-filename-id":"ec-site-svc-rest-v1-tenant-sdfs-autosuggest-get"
            }
        },
        "/ec-designer-ors-svc/rest/v10.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"V10.0",
                "description":"Retrieves list of kits in a study.",
                "operationId":"getKits_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Optional. Kit type filter. Allowed values: `ALL` for every kit type, `STANDARD` for standard kits, `TITRATION` for titration kits, `DEVICE` for device kits, and `advancedDispensation` for advanced dispensation kits. Defaults to `ALL` when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":21,
                            "minLength":3,
                            "type":"string",
                            "example":"ALL",
                            "enum":[
                                "ALL",
                                "STANDARD",
                                "TITRATION",
                                "DEVICE",
                                "advancedDispensation"
                            ]
                        }
                    },
                    {
                        "name":"kitTypeExclude",
                        "in":"query",
                        "description":"Optional. Flag that inverts the `kitType` filter. When `true`, kits matching the selected `kitType` are excluded. Defaults to `false` when omitted.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Kits were retrieved successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsGetResponseV10Doc"
                                },
                                "examples":{
                                    "GetKitsV10Success":{
                                        "description":"GetKitsV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitSettings":{
                                                        "deviceType":"ActivityWatch",
                                                        "deviceConn":"DevicetoCloud",
                                                        "calculatingDoses":true,
                                                        "titratingDoses":false,
                                                        "titrationKit":false,
                                                        "distributionSetting":"BLINDED",
                                                        "kitTypeId":"KIT_STD_001",
                                                        "kitDescription":"Standard treatment kit",
                                                        "storageSetting":"AMBIENT",
                                                        "trialSupplyType":"BOTTLE",
                                                        "minShipUnits":10,
                                                        "serialized":true,
                                                        "hazardousMaterial":false,
                                                        "controlSubstance":false,
                                                        "bufferdays":5,
                                                        "dispenseOutsideWindow":false
                                                    },
                                                    "kitUnitSettings":{
                                                        "unitsPerKit":20,
                                                        "singleUnitDose":{
                                                            "value":10,
                                                            "units":"mg"
                                                        }
                                                    },
                                                    "dosings":[
                                                        {
                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                            "name":"Weight-based dose",
                                                            "question":{
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                            },
                                                            "visit":{
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"ScreeningVisit"
                                                            },
                                                            "dose":{
                                                                "precision":1,
                                                                "roundUp":1,
                                                                "frequency":"Daily",
                                                                "leftOverUnits":false
                                                            },
                                                            "measurement":{
                                                                "kit":{
                                                                    "value":10,
                                                                    "units":"mg"
                                                                },
                                                                "subject":{
                                                                    "value":70,
                                                                    "units":"kg"
                                                                }
                                                            }
                                                        }
                                                    ],
                                                    "exceptions":[
                                                        {
                                                            "id":"91B8327AFAA6412287106192AB5984EF",
                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "sequence":1,
                                                            "startingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":1,
                                                                        "kitDosage":"QD",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "endingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":2,
                                                                        "kitDosage":"BID",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "minTimeBetweenDoseChangesUnit":"Days",
                                                            "minTimeBetweenDoseChanges":2,
                                                            "exceptionType":"UP_EXCEPTION"
                                                        }
                                                    ],
                                                    "advancedDosing":1,
                                                    "advancedDosingGroups":[
                                                        {
                                                            "id":"71B8327AFAA6412287106192AB5984EF",
                                                            "groupName":"Adults",
                                                            "groupCriteria":[
                                                                {
                                                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                                                    "criteriaType":"Question",
                                                                    "visitName":"Screening",
                                                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "formName":"Demographics",
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "questionName":"Age",
                                                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                    "variable":"System Screening Date",
                                                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                    "timePeriod":"Before",
                                                                    "dateValue":"2026-01-15",
                                                                    "answer":[
                                                                        {
                                                                            "value":"18_PLUS",
                                                                            "label":"18 years or older"
                                                                        }
                                                                    ],
                                                                    "rule":{
                                                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                                                        "ruleName":"Greater Than Or Equal To",
                                                                        "value":"18",
                                                                        "valueList":[
                                                                            {
                                                                                "value":"18",
                                                                                "label":"18"
                                                                            }
                                                                        ],
                                                                        "lower":{
                                                                            "value":"18",
                                                                            "inclusive":true
                                                                        },
                                                                        "upper":{
                                                                            "value":"120",
                                                                            "inclusive":true
                                                                        }
                                                                    }
                                                                }
                                                            ],
                                                            "kitSettings":[
                                                                {
                                                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitName":"Standard treatment kit",
                                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                    "kitUnitSettings":{
                                                                        "unitsPerKit":20,
                                                                        "singleUnitDose":{
                                                                            "value":10,
                                                                            "units":"mg"
                                                                        }
                                                                    },
                                                                    "dosings":[
                                                                        {
                                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                            "name":"Weight-based dose",
                                                                            "question":{
                                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                            },
                                                                            "visit":{
                                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                                "type":"ScreeningVisit"
                                                                            },
                                                                            "dose":{
                                                                                "precision":1,
                                                                                "roundUp":1,
                                                                                "frequency":"Daily",
                                                                                "leftOverUnits":false
                                                                            },
                                                                            "measurement":{
                                                                                "kit":{
                                                                                    "value":10,
                                                                                    "units":"mg"
                                                                                },
                                                                                "subject":{
                                                                                    "value":70,
                                                                                    "units":"kg"
                                                                                }
                                                                            }
                                                                        }
                                                                    ],
                                                                    "dosingLabel":"Dose 1",
                                                                    "quantity":1
                                                                }
                                                            ],
                                                            "instructions":"Dispense one kit when the adult criteria are met."
                                                        }
                                                    ],
                                                    "versionStart":"2026-01-15T10:15:30Z",
                                                    "versionEnd":"3099-12-31T00:00:00Z",
                                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                    "studyVersionStart":"2026-01-15T10:15:30Z",
                                                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                    "poolingId":"POOL12",
                                                    "isDefault":true,
                                                    "dosage":50
                                                }
                                            ],
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load kits or evaluate kit validation details for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsGetResponseV10Doc"
                                },
                                "examples":{
                                    "GetKitsV10Error":{
                                        "description":"GetKitsV10Error",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"C1-500",
                                                "errorMessage":"Unable to retrieve kits for the requested study version.",
                                                "details":{
                                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                    "version":"1.0.0.1",
                                                    "kitType":"ALL",
                                                    "kitTypeExclude":false
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"V10.0",
                "description":"Creates a new kit type in a study.",
                "operationId":"createKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kit configuration to create for the requested study version.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsGetKitV10Doc"
                            },
                            "examples":{
                                "CreateKitV10Request":{
                                    "description":"CreateKitV10Request",
                                    "value":{
                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "kitSettings":{
                                            "deviceType":"ActivityWatch",
                                            "deviceConn":"DevicetoCloud",
                                            "calculatingDoses":true,
                                            "titratingDoses":false,
                                            "titrationKit":false,
                                            "distributionSetting":"BLINDED",
                                            "kitTypeId":"KIT_STD_001",
                                            "kitDescription":"Standard treatment kit",
                                            "storageSetting":"AMBIENT",
                                            "trialSupplyType":"BOTTLE",
                                            "minShipUnits":10,
                                            "serialized":true,
                                            "hazardousMaterial":false,
                                            "controlSubstance":false,
                                            "bufferdays":5,
                                            "dispenseOutsideWindow":false
                                        },
                                        "kitUnitSettings":{
                                            "unitsPerKit":20,
                                            "singleUnitDose":{
                                                "value":10,
                                                "units":"mg"
                                            }
                                        },
                                        "dosings":[
                                            {
                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                "name":"Weight-based dose",
                                                "question":{
                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                },
                                                "visit":{
                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                    "type":"ScreeningVisit"
                                                },
                                                "dose":{
                                                    "precision":1,
                                                    "roundUp":1,
                                                    "frequency":"Daily",
                                                    "leftOverUnits":false
                                                },
                                                "measurement":{
                                                    "kit":{
                                                        "value":10,
                                                        "units":"mg"
                                                    },
                                                    "subject":{
                                                        "value":70,
                                                        "units":"kg"
                                                    }
                                                }
                                            }
                                        ],
                                        "exceptions":[
                                            {
                                                "id":"91B8327AFAA6412287106192AB5984EF",
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sequence":1,
                                                "startingDoseJson":{
                                                    "titrationKitExceptionItems":[
                                                        {
                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "kitSeq":1,
                                                            "kitDosage":"QD",
                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                        }
                                                    ]
                                                },
                                                "endingDoseJson":{
                                                    "titrationKitExceptionItems":[
                                                        {
                                                            "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                            "kitSeq":2,
                                                            "kitDosage":"BID",
                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                        }
                                                    ]
                                                },
                                                "minTimeBetweenDoseChangesUnit":"Days",
                                                "minTimeBetweenDoseChanges":2,
                                                "exceptionType":"UP_EXCEPTION"
                                            }
                                        ],
                                        "advancedDosing":1,
                                        "advancedDosingGroups":[
                                            {
                                                "id":"71B8327AFAA6412287106192AB5984EF",
                                                "groupName":"Adults",
                                                "groupCriteria":[
                                                    {
                                                        "id":"72B8327AFAA6412287106192AB5984EF",
                                                        "criteriaType":"Question",
                                                        "visitName":"Screening",
                                                        "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                        "formName":"Demographics",
                                                        "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "questionName":"Age",
                                                        "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "variable":"System Screening Date",
                                                        "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                        "timePeriod":"Before",
                                                        "dateValue":"2026-01-15",
                                                        "answer":[
                                                            {
                                                                "value":"18_PLUS",
                                                                "label":"18 years or older"
                                                            }
                                                        ],
                                                        "rule":{
                                                            "id":"74B8327AFAA6412287106192AB5984EF",
                                                            "ruleName":"Greater Than Or Equal To",
                                                            "value":"18",
                                                            "valueList":[
                                                                {
                                                                    "value":"18",
                                                                    "label":"18"
                                                                }
                                                            ],
                                                            "lower":{
                                                                "value":"18",
                                                                "inclusive":true
                                                            },
                                                            "upper":{
                                                                "value":"120",
                                                                "inclusive":true
                                                            }
                                                        }
                                                    }
                                                ],
                                                "kitSettings":[
                                                    {
                                                        "id":"75B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitName":"Standard treatment kit",
                                                        "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "kitUnitSettings":{
                                                            "unitsPerKit":20,
                                                            "singleUnitDose":{
                                                                "value":10,
                                                                "units":"mg"
                                                            }
                                                        },
                                                        "dosings":[
                                                            {
                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Weight-based dose",
                                                                "question":{
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                },
                                                                "visit":{
                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "type":"ScreeningVisit"
                                                                },
                                                                "dose":{
                                                                    "precision":1,
                                                                    "roundUp":1,
                                                                    "frequency":"Daily",
                                                                    "leftOverUnits":false
                                                                },
                                                                "measurement":{
                                                                    "kit":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    },
                                                                    "subject":{
                                                                        "value":70,
                                                                        "units":"kg"
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "dosingLabel":"Dose 1",
                                                        "quantity":1
                                                    }
                                                ],
                                                "instructions":"Dispense one kit when the adult criteria are met."
                                            }
                                        ],
                                        "versionStart":"2026-01-15T10:15:30Z",
                                        "versionEnd":"3099-12-31T00:00:00Z",
                                        "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                        "studyVersionStart":"2026-01-15T10:15:30Z",
                                        "studyVersionEnd":"3099-12-31T00:00:00Z",
                                        "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                        "poolingId":"POOL12",
                                        "isDefault":true,
                                        "dosage":50
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Kit was created successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsCreateResponseV10Doc"
                                },
                                "examples":{
                                    "CreateKitV10Success":{
                                        "description":"CreateKitV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitSettings":{
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConn":"DevicetoCloud",
                                                    "calculatingDoses":true,
                                                    "titratingDoses":false,
                                                    "titrationKit":false,
                                                    "distributionSetting":"BLINDED",
                                                    "kitTypeId":"KIT_STD_001",
                                                    "kitDescription":"Standard treatment kit",
                                                    "storageSetting":"AMBIENT",
                                                    "trialSupplyType":"BOTTLE",
                                                    "minShipUnits":10,
                                                    "serialized":true,
                                                    "hazardousMaterial":false,
                                                    "controlSubstance":false,
                                                    "bufferdays":5,
                                                    "dispenseOutsideWindow":false
                                                },
                                                "kitUnitSettings":{
                                                    "unitsPerKit":20,
                                                    "singleUnitDose":{
                                                        "value":10,
                                                        "units":"mg"
                                                    }
                                                },
                                                "dosings":[
                                                    {
                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Weight-based dose",
                                                        "question":{
                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                        },
                                                        "visit":{
                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                            "type":"ScreeningVisit"
                                                        },
                                                        "dose":{
                                                            "precision":1,
                                                            "roundUp":1,
                                                            "frequency":"Daily",
                                                            "leftOverUnits":false
                                                        },
                                                        "measurement":{
                                                            "kit":{
                                                                "value":10,
                                                                "units":"mg"
                                                            },
                                                            "subject":{
                                                                "value":70,
                                                                "units":"kg"
                                                            }
                                                        }
                                                    }
                                                ],
                                                "exceptions":[
                                                    {
                                                        "id":"91B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "sequence":1,
                                                        "startingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":1,
                                                                    "kitDosage":"QD",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "endingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":2,
                                                                    "kitDosage":"BID",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "minTimeBetweenDoseChangesUnit":"Days",
                                                        "minTimeBetweenDoseChanges":2,
                                                        "exceptionType":"UP_EXCEPTION"
                                                    }
                                                ],
                                                "advancedDosing":1,
                                                "advancedDosingGroups":[
                                                    {
                                                        "id":"71B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Adults",
                                                        "groupCriteria":[
                                                            {
                                                                "id":"72B8327AFAA6412287106192AB5984EF",
                                                                "criteriaType":"Question",
                                                                "visitName":"Screening",
                                                                "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                "formName":"Demographics",
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "questionName":"Age",
                                                                "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                "variable":"System Screening Date",
                                                                "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                "timePeriod":"Before",
                                                                "dateValue":"2026-01-15",
                                                                "answer":[
                                                                    {
                                                                        "value":"18_PLUS",
                                                                        "label":"18 years or older"
                                                                    }
                                                                ],
                                                                "rule":{
                                                                    "id":"74B8327AFAA6412287106192AB5984EF",
                                                                    "ruleName":"Greater Than Or Equal To",
                                                                    "value":"18",
                                                                    "valueList":[
                                                                        {
                                                                            "value":"18",
                                                                            "label":"18"
                                                                        }
                                                                    ],
                                                                    "lower":{
                                                                        "value":"18",
                                                                        "inclusive":true
                                                                    },
                                                                    "upper":{
                                                                        "value":"120",
                                                                        "inclusive":true
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "kitSettings":[
                                                            {
                                                                "id":"75B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "kitName":"Standard treatment kit",
                                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                "kitUnitSettings":{
                                                                    "unitsPerKit":20,
                                                                    "singleUnitDose":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    }
                                                                },
                                                                "dosings":[
                                                                    {
                                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "name":"Weight-based dose",
                                                                        "question":{
                                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                        },
                                                                        "visit":{
                                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                            "type":"ScreeningVisit"
                                                                        },
                                                                        "dose":{
                                                                            "precision":1,
                                                                            "roundUp":1,
                                                                            "frequency":"Daily",
                                                                            "leftOverUnits":false
                                                                        },
                                                                        "measurement":{
                                                                            "kit":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            },
                                                                            "subject":{
                                                                                "value":70,
                                                                                "units":"kg"
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "dosingLabel":"Dose 1",
                                                                "quantity":1
                                                            }
                                                        ],
                                                        "instructions":"Dispense one kit when the adult criteria are met."
                                                    }
                                                ],
                                                "versionStart":"2026-01-15T10:15:30Z",
                                                "versionEnd":"3099-12-31T00:00:00Z",
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "studyVersionStart":"2026-01-15T10:15:30Z",
                                                "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "isDefault":true,
                                                "dosage":50
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot create the kit for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-ors-svc/rest/v10.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"V10.0",
                "description":"Retrieves data on a specific kit in a study.",
                "operationId":"getKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"The Kit ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Kit was retrieved successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsGetByIdResponseV10Doc"
                                },
                                "examples":{
                                    "GetKitV10Success":{
                                        "description":"GetKitV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitSettings":{
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConn":"DevicetoCloud",
                                                    "calculatingDoses":true,
                                                    "titratingDoses":false,
                                                    "titrationKit":false,
                                                    "distributionSetting":"BLINDED",
                                                    "kitTypeId":"KIT_STD_001",
                                                    "kitDescription":"Standard treatment kit",
                                                    "storageSetting":"AMBIENT",
                                                    "trialSupplyType":"BOTTLE",
                                                    "minShipUnits":10,
                                                    "serialized":true,
                                                    "hazardousMaterial":false,
                                                    "controlSubstance":false,
                                                    "bufferdays":5,
                                                    "dispenseOutsideWindow":false
                                                },
                                                "kitUnitSettings":{
                                                    "unitsPerKit":20,
                                                    "singleUnitDose":{
                                                        "value":10,
                                                        "units":"mg"
                                                    }
                                                },
                                                "dosings":[
                                                    {
                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Weight-based dose",
                                                        "question":{
                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                        },
                                                        "visit":{
                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                            "type":"ScreeningVisit"
                                                        },
                                                        "dose":{
                                                            "precision":1,
                                                            "roundUp":1,
                                                            "frequency":"Daily",
                                                            "leftOverUnits":false
                                                        },
                                                        "measurement":{
                                                            "kit":{
                                                                "value":10,
                                                                "units":"mg"
                                                            },
                                                            "subject":{
                                                                "value":70,
                                                                "units":"kg"
                                                            }
                                                        }
                                                    }
                                                ],
                                                "exceptions":[
                                                    {
                                                        "id":"91B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "sequence":1,
                                                        "startingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":1,
                                                                    "kitDosage":"QD",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "endingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":2,
                                                                    "kitDosage":"BID",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "minTimeBetweenDoseChangesUnit":"Days",
                                                        "minTimeBetweenDoseChanges":2,
                                                        "exceptionType":"UP_EXCEPTION"
                                                    }
                                                ],
                                                "advancedDosing":1,
                                                "advancedDosingGroups":[
                                                    {
                                                        "id":"71B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Adults",
                                                        "groupCriteria":[
                                                            {
                                                                "id":"72B8327AFAA6412287106192AB5984EF",
                                                                "criteriaType":"Question",
                                                                "visitName":"Screening",
                                                                "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                "formName":"Demographics",
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "questionName":"Age",
                                                                "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                "variable":"System Screening Date",
                                                                "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                "timePeriod":"Before",
                                                                "dateValue":"2026-01-15",
                                                                "answer":[
                                                                    {
                                                                        "value":"18_PLUS",
                                                                        "label":"18 years or older"
                                                                    }
                                                                ],
                                                                "rule":{
                                                                    "id":"74B8327AFAA6412287106192AB5984EF",
                                                                    "ruleName":"Greater Than Or Equal To",
                                                                    "value":"18",
                                                                    "valueList":[
                                                                        {
                                                                            "value":"18",
                                                                            "label":"18"
                                                                        }
                                                                    ],
                                                                    "lower":{
                                                                        "value":"18",
                                                                        "inclusive":true
                                                                    },
                                                                    "upper":{
                                                                        "value":"120",
                                                                        "inclusive":true
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "kitSettings":[
                                                            {
                                                                "id":"75B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "kitName":"Standard treatment kit",
                                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                "kitUnitSettings":{
                                                                    "unitsPerKit":20,
                                                                    "singleUnitDose":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    }
                                                                },
                                                                "dosings":[
                                                                    {
                                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "name":"Weight-based dose",
                                                                        "question":{
                                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                        },
                                                                        "visit":{
                                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                            "type":"ScreeningVisit"
                                                                        },
                                                                        "dose":{
                                                                            "precision":1,
                                                                            "roundUp":1,
                                                                            "frequency":"Daily",
                                                                            "leftOverUnits":false
                                                                        },
                                                                        "measurement":{
                                                                            "kit":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            },
                                                                            "subject":{
                                                                                "value":70,
                                                                                "units":"kg"
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "dosingLabel":"Dose 1",
                                                                "quantity":1
                                                            }
                                                        ],
                                                        "instructions":"Dispense one kit when the adult criteria are met."
                                                    }
                                                ],
                                                "versionStart":"2026-01-15T10:15:30Z",
                                                "versionEnd":"3099-12-31T00:00:00Z",
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "studyVersionStart":"2026-01-15T10:15:30Z",
                                                "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "isDefault":true,
                                                "dosage":50
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load the requested kit or evaluate its validation details for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"V10.0",
                "description":"Updates a kit type in a study.",
                "operationId":"updateKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"The Kit ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kit configuration to update for the requested study version and kit identifier.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsGetKitV10Doc"
                            },
                            "examples":{
                                "UpdateKitV10Request":{
                                    "description":"UpdateKitV10Request",
                                    "value":{
                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "kitSettings":{
                                            "deviceType":"ActivityWatch",
                                            "deviceConn":"DevicetoCloud",
                                            "calculatingDoses":true,
                                            "titratingDoses":false,
                                            "titrationKit":false,
                                            "distributionSetting":"BLINDED",
                                            "kitTypeId":"KIT_STD_001",
                                            "kitDescription":"Standard treatment kit",
                                            "storageSetting":"AMBIENT",
                                            "trialSupplyType":"BOTTLE",
                                            "minShipUnits":10,
                                            "serialized":true,
                                            "hazardousMaterial":false,
                                            "controlSubstance":false,
                                            "bufferdays":5,
                                            "dispenseOutsideWindow":false
                                        },
                                        "kitUnitSettings":{
                                            "unitsPerKit":20,
                                            "singleUnitDose":{
                                                "value":10,
                                                "units":"mg"
                                            }
                                        },
                                        "dosings":[
                                            {
                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                "name":"Weight-based dose",
                                                "question":{
                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                },
                                                "visit":{
                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                    "type":"ScreeningVisit"
                                                },
                                                "dose":{
                                                    "precision":1,
                                                    "roundUp":1,
                                                    "frequency":"Daily",
                                                    "leftOverUnits":false
                                                },
                                                "measurement":{
                                                    "kit":{
                                                        "value":10,
                                                        "units":"mg"
                                                    },
                                                    "subject":{
                                                        "value":70,
                                                        "units":"kg"
                                                    }
                                                }
                                            }
                                        ],
                                        "exceptions":[
                                            {
                                                "id":"91B8327AFAA6412287106192AB5984EF",
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "sequence":1,
                                                "startingDoseJson":{
                                                    "titrationKitExceptionItems":[
                                                        {
                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "kitSeq":1,
                                                            "kitDosage":"QD",
                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                        }
                                                    ]
                                                },
                                                "endingDoseJson":{
                                                    "titrationKitExceptionItems":[
                                                        {
                                                            "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                            "kitSeq":2,
                                                            "kitDosage":"BID",
                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                        }
                                                    ]
                                                },
                                                "minTimeBetweenDoseChangesUnit":"Days",
                                                "minTimeBetweenDoseChanges":2,
                                                "exceptionType":"UP_EXCEPTION"
                                            }
                                        ],
                                        "advancedDosing":1,
                                        "advancedDosingGroups":[
                                            {
                                                "id":"71B8327AFAA6412287106192AB5984EF",
                                                "groupName":"Adults",
                                                "groupCriteria":[
                                                    {
                                                        "id":"72B8327AFAA6412287106192AB5984EF",
                                                        "criteriaType":"Question",
                                                        "visitName":"Screening",
                                                        "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                        "formName":"Demographics",
                                                        "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "questionName":"Age",
                                                        "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "variable":"System Screening Date",
                                                        "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                        "timePeriod":"Before",
                                                        "dateValue":"2026-01-15",
                                                        "answer":[
                                                            {
                                                                "value":"18_PLUS",
                                                                "label":"18 years or older"
                                                            }
                                                        ],
                                                        "rule":{
                                                            "id":"74B8327AFAA6412287106192AB5984EF",
                                                            "ruleName":"Greater Than Or Equal To",
                                                            "value":"18",
                                                            "valueList":[
                                                                {
                                                                    "value":"18",
                                                                    "label":"18"
                                                                }
                                                            ],
                                                            "lower":{
                                                                "value":"18",
                                                                "inclusive":true
                                                            },
                                                            "upper":{
                                                                "value":"120",
                                                                "inclusive":true
                                                            }
                                                        }
                                                    }
                                                ],
                                                "kitSettings":[
                                                    {
                                                        "id":"75B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitName":"Standard treatment kit",
                                                        "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "kitUnitSettings":{
                                                            "unitsPerKit":20,
                                                            "singleUnitDose":{
                                                                "value":10,
                                                                "units":"mg"
                                                            }
                                                        },
                                                        "dosings":[
                                                            {
                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Weight-based dose",
                                                                "question":{
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                },
                                                                "visit":{
                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "type":"ScreeningVisit"
                                                                },
                                                                "dose":{
                                                                    "precision":1,
                                                                    "roundUp":1,
                                                                    "frequency":"Daily",
                                                                    "leftOverUnits":false
                                                                },
                                                                "measurement":{
                                                                    "kit":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    },
                                                                    "subject":{
                                                                        "value":70,
                                                                        "units":"kg"
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "dosingLabel":"Dose 1",
                                                        "quantity":1
                                                    }
                                                ],
                                                "instructions":"Dispense one kit when the adult criteria are met."
                                            }
                                        ],
                                        "versionStart":"2026-01-15T10:15:30Z",
                                        "versionEnd":"3099-12-31T00:00:00Z",
                                        "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                        "studyVersionStart":"2026-01-15T10:15:30Z",
                                        "studyVersionEnd":"3099-12-31T00:00:00Z",
                                        "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                        "poolingId":"POOL12",
                                        "isDefault":true,
                                        "dosage":50
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Kit was updated successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsUpdateResponseV10Doc"
                                },
                                "examples":{
                                    "UpdateKitV10Success":{
                                        "description":"UpdateKitV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitSettings":{
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConn":"DevicetoCloud",
                                                    "calculatingDoses":true,
                                                    "titratingDoses":false,
                                                    "titrationKit":false,
                                                    "distributionSetting":"BLINDED",
                                                    "kitTypeId":"KIT_STD_001",
                                                    "kitDescription":"Standard treatment kit",
                                                    "storageSetting":"AMBIENT",
                                                    "trialSupplyType":"BOTTLE",
                                                    "minShipUnits":10,
                                                    "serialized":true,
                                                    "hazardousMaterial":false,
                                                    "controlSubstance":false,
                                                    "bufferdays":5,
                                                    "dispenseOutsideWindow":false
                                                },
                                                "kitUnitSettings":{
                                                    "unitsPerKit":20,
                                                    "singleUnitDose":{
                                                        "value":10,
                                                        "units":"mg"
                                                    }
                                                },
                                                "dosings":[
                                                    {
                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Weight-based dose",
                                                        "question":{
                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                        },
                                                        "visit":{
                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                            "type":"ScreeningVisit"
                                                        },
                                                        "dose":{
                                                            "precision":1,
                                                            "roundUp":1,
                                                            "frequency":"Daily",
                                                            "leftOverUnits":false
                                                        },
                                                        "measurement":{
                                                            "kit":{
                                                                "value":10,
                                                                "units":"mg"
                                                            },
                                                            "subject":{
                                                                "value":70,
                                                                "units":"kg"
                                                            }
                                                        }
                                                    }
                                                ],
                                                "exceptions":[
                                                    {
                                                        "id":"91B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "sequence":1,
                                                        "startingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":1,
                                                                    "kitDosage":"QD",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "endingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":2,
                                                                    "kitDosage":"BID",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "minTimeBetweenDoseChangesUnit":"Days",
                                                        "minTimeBetweenDoseChanges":2,
                                                        "exceptionType":"UP_EXCEPTION"
                                                    }
                                                ],
                                                "advancedDosing":1,
                                                "advancedDosingGroups":[
                                                    {
                                                        "id":"71B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Adults",
                                                        "groupCriteria":[
                                                            {
                                                                "id":"72B8327AFAA6412287106192AB5984EF",
                                                                "criteriaType":"Question",
                                                                "visitName":"Screening",
                                                                "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                "formName":"Demographics",
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "questionName":"Age",
                                                                "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                "variable":"System Screening Date",
                                                                "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                "timePeriod":"Before",
                                                                "dateValue":"2026-01-15",
                                                                "answer":[
                                                                    {
                                                                        "value":"18_PLUS",
                                                                        "label":"18 years or older"
                                                                    }
                                                                ],
                                                                "rule":{
                                                                    "id":"74B8327AFAA6412287106192AB5984EF",
                                                                    "ruleName":"Greater Than Or Equal To",
                                                                    "value":"18",
                                                                    "valueList":[
                                                                        {
                                                                            "value":"18",
                                                                            "label":"18"
                                                                        }
                                                                    ],
                                                                    "lower":{
                                                                        "value":"18",
                                                                        "inclusive":true
                                                                    },
                                                                    "upper":{
                                                                        "value":"120",
                                                                        "inclusive":true
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "kitSettings":[
                                                            {
                                                                "id":"75B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "kitName":"Standard treatment kit",
                                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                "kitUnitSettings":{
                                                                    "unitsPerKit":20,
                                                                    "singleUnitDose":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    }
                                                                },
                                                                "dosings":[
                                                                    {
                                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "name":"Weight-based dose",
                                                                        "question":{
                                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                        },
                                                                        "visit":{
                                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                            "type":"ScreeningVisit"
                                                                        },
                                                                        "dose":{
                                                                            "precision":1,
                                                                            "roundUp":1,
                                                                            "frequency":"Daily",
                                                                            "leftOverUnits":false
                                                                        },
                                                                        "measurement":{
                                                                            "kit":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            },
                                                                            "subject":{
                                                                                "value":70,
                                                                                "units":"kg"
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "dosingLabel":"Dose 1",
                                                                "quantity":1
                                                            }
                                                        ],
                                                        "instructions":"Dispense one kit when the adult criteria are met."
                                                    }
                                                ],
                                                "versionStart":"2026-01-15T10:15:30Z",
                                                "versionEnd":"3099-12-31T00:00:00Z",
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "studyVersionStart":"2026-01-15T10:15:30Z",
                                                "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "isDefault":true,
                                                "dosage":50
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot update the requested kit for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"V10.0",
                "description":"Removes a kit type from a study.",
                "operationId":"deleteKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"The Kit ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Kit was deleted successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsDeleteResponseV10Doc"
                                },
                                "examples":{
                                    "DeleteKitV10Success":{
                                        "description":"DeleteKitV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":"Kit deleted successfully.",
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot delete the requested kit for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-ors-svc/rest/v10.0/studies/{studyId}/versions/{version}/visits/{visitId}/kits/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get visit kits blinded info."
                ],
                "summary":"V10.0",
                "description":"Retrieves kits blinded info for a visit.",
                "operationId":"getBlindedInfo_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Blinded kit information was retrieved successfully for the requested visit.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitKitsBlindedInfoResponseV10Doc"
                                },
                                "examples":{
                                    "VisitBlindedInfoV10Success":{
                                        "description":"VisitBlindedInfoV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                    "armid":"C1B8327AFAA6412287106192AB5984EF",
                                                    "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                                    "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "quantity":1,
                                                    "dnd":5,
                                                    "dispenseoutsidewindow":false,
                                                    "id":"E1B8327AFAA6412287106192AB5984EF",
                                                    "allowTitration":true,
                                                    "titrationKits":[
                                                        {
                                                            "kitTypeId":"KIT_STD_001",
                                                            "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                            "kitQuantity":1
                                                        }
                                                    ],
                                                    "blindedInfo":{
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitSettings":{
                                                            "deviceType":"ActivityWatch",
                                                            "deviceConn":"DevicetoCloud",
                                                            "calculatingDoses":true,
                                                            "titratingDoses":false,
                                                            "titrationKit":false,
                                                            "distributionSetting":"BLINDED",
                                                            "kitTypeId":"KIT_STD_001",
                                                            "kitDescription":"Standard treatment kit",
                                                            "storageSetting":"AMBIENT",
                                                            "trialSupplyType":"BOTTLE",
                                                            "minShipUnits":10,
                                                            "serialized":true,
                                                            "hazardousMaterial":false,
                                                            "controlSubstance":false,
                                                            "bufferdays":5,
                                                            "dispenseOutsideWindow":false
                                                        },
                                                        "kitUnitSettings":{
                                                            "unitsPerKit":20,
                                                            "singleUnitDose":{
                                                                "value":10,
                                                                "units":"mg"
                                                            }
                                                        },
                                                        "dosings":[
                                                            {
                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Weight-based dose",
                                                                "question":{
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                },
                                                                "visit":{
                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "type":"ScreeningVisit"
                                                                },
                                                                "dose":{
                                                                    "precision":1,
                                                                    "roundUp":1,
                                                                    "frequency":"Daily",
                                                                    "leftOverUnits":false
                                                                },
                                                                "measurement":{
                                                                    "kit":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    },
                                                                    "subject":{
                                                                        "value":70,
                                                                        "units":"kg"
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "exceptions":[
                                                            {
                                                                "id":"91B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "sequence":1,
                                                                "startingDoseJson":{
                                                                    "titrationKitExceptionItems":[
                                                                        {
                                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                            "kitSeq":1,
                                                                            "kitDosage":"QD",
                                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                        }
                                                                    ]
                                                                },
                                                                "endingDoseJson":{
                                                                    "titrationKitExceptionItems":[
                                                                        {
                                                                            "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                            "kitSeq":2,
                                                                            "kitDosage":"BID",
                                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                        }
                                                                    ]
                                                                },
                                                                "minTimeBetweenDoseChangesUnit":"Days",
                                                                "minTimeBetweenDoseChanges":2,
                                                                "exceptionType":"UP_EXCEPTION"
                                                            }
                                                        ],
                                                        "advancedDosing":1,
                                                        "advancedDosingGroups":[
                                                            {
                                                                "id":"71B8327AFAA6412287106192AB5984EF",
                                                                "groupName":"Adults",
                                                                "groupCriteria":[
                                                                    {
                                                                        "id":"72B8327AFAA6412287106192AB5984EF",
                                                                        "criteriaType":"Question",
                                                                        "visitName":"Screening",
                                                                        "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                        "formName":"Demographics",
                                                                        "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                        "questionName":"Age",
                                                                        "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                        "variable":"System Screening Date",
                                                                        "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                        "timePeriod":"Before",
                                                                        "dateValue":"2026-01-15",
                                                                        "answer":[
                                                                            {
                                                                                "value":"18_PLUS",
                                                                                "label":"18 years or older"
                                                                            }
                                                                        ],
                                                                        "rule":{
                                                                            "id":"74B8327AFAA6412287106192AB5984EF",
                                                                            "ruleName":"Greater Than Or Equal To",
                                                                            "value":"18",
                                                                            "valueList":[
                                                                                {
                                                                                    "value":"18",
                                                                                    "label":"18"
                                                                                }
                                                                            ],
                                                                            "lower":{
                                                                                "value":"18",
                                                                                "inclusive":true
                                                                            },
                                                                            "upper":{
                                                                                "value":"120",
                                                                                "inclusive":true
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "kitSettings":[
                                                                    {
                                                                        "id":"75B8327AFAA6412287106192AB5984EF",
                                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                        "kitName":"Standard treatment kit",
                                                                        "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "kitUnitSettings":{
                                                                            "unitsPerKit":20,
                                                                            "singleUnitDose":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            }
                                                                        },
                                                                        "dosings":[
                                                                            {
                                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                                "name":"Weight-based dose",
                                                                                "question":{
                                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                                },
                                                                                "visit":{
                                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                                    "type":"ScreeningVisit"
                                                                                },
                                                                                "dose":{
                                                                                    "precision":1,
                                                                                    "roundUp":1,
                                                                                    "frequency":"Daily",
                                                                                    "leftOverUnits":false
                                                                                },
                                                                                "measurement":{
                                                                                    "kit":{
                                                                                        "value":10,
                                                                                        "units":"mg"
                                                                                    },
                                                                                    "subject":{
                                                                                        "value":70,
                                                                                        "units":"kg"
                                                                                    }
                                                                                }
                                                                            }
                                                                        ],
                                                                        "dosingLabel":"Dose 1",
                                                                        "quantity":1
                                                                    }
                                                                ],
                                                                "instructions":"Dispense one kit when the adult criteria are met."
                                                            }
                                                        ],
                                                        "versionStart":"2026-01-15T10:15:30Z",
                                                        "versionEnd":"3099-12-31T00:00:00Z",
                                                        "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                        "studyVersionStart":"2026-01-15T10:15:30Z",
                                                        "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                        "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                        "poolingId":"POOL12",
                                                        "isDefault":true,
                                                        "dosage":50
                                                    }
                                                }
                                            ],
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load blinded kit information for the supplied visit and study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitId}-kits-blindedInfo-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-kits-blindedinfo-get"
            }
        },
        "/ec-designer-ors-svc/rest/v10.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"V10.0",
                "description":"Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Optional. Kit type filter. Allowed values: `ALL` for every kit type, `STANDARD` for standard kits, `TITRATION` for titration kits, `DEVICE` for device kits, and `advancedDispensation` for advanced dispensation kits. Defaults to `ALL` when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":21,
                            "minLength":3,
                            "type":"string",
                            "example":"ALL",
                            "default":"ALL",
                            "enum":[
                                "ALL",
                                "STANDARD",
                                "TITRATION",
                                "DEVICE",
                                "advancedDispensation"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Dispensation rows were retrieved successfully for the requested visit.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDispensingsResponseV10Doc"
                                },
                                "examples":{
                                    "VisitDispensingsV10Success":{
                                        "description":"VisitDispensingsV10Success",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                    "armid":"C1B8327AFAA6412287106192AB5984EF",
                                                    "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                                    "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "quantity":1,
                                                    "dnd":5,
                                                    "dispenseoutsidewindow":false,
                                                    "id":"E1B8327AFAA6412287106192AB5984EF",
                                                    "allowTitration":true,
                                                    "titrationKits":[
                                                        {
                                                            "kitTypeId":"KIT_STD_001",
                                                            "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                            "kitQuantity":1
                                                        }
                                                    ],
                                                    "blindedInfo":{
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitSettings":{
                                                            "deviceType":"ActivityWatch",
                                                            "deviceConn":"DevicetoCloud",
                                                            "calculatingDoses":true,
                                                            "titratingDoses":false,
                                                            "titrationKit":false,
                                                            "distributionSetting":"BLINDED",
                                                            "kitTypeId":"KIT_STD_001",
                                                            "kitDescription":"Standard treatment kit",
                                                            "storageSetting":"AMBIENT",
                                                            "trialSupplyType":"BOTTLE",
                                                            "minShipUnits":10,
                                                            "serialized":true,
                                                            "hazardousMaterial":false,
                                                            "controlSubstance":false,
                                                            "bufferdays":5,
                                                            "dispenseOutsideWindow":false
                                                        },
                                                        "kitUnitSettings":{
                                                            "unitsPerKit":20,
                                                            "singleUnitDose":{
                                                                "value":10,
                                                                "units":"mg"
                                                            }
                                                        },
                                                        "dosings":[
                                                            {
                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Weight-based dose",
                                                                "question":{
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                },
                                                                "visit":{
                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "type":"ScreeningVisit"
                                                                },
                                                                "dose":{
                                                                    "precision":1,
                                                                    "roundUp":1,
                                                                    "frequency":"Daily",
                                                                    "leftOverUnits":false
                                                                },
                                                                "measurement":{
                                                                    "kit":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    },
                                                                    "subject":{
                                                                        "value":70,
                                                                        "units":"kg"
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "exceptions":[
                                                            {
                                                                "id":"91B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "sequence":1,
                                                                "startingDoseJson":{
                                                                    "titrationKitExceptionItems":[
                                                                        {
                                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                            "kitSeq":1,
                                                                            "kitDosage":"QD",
                                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                        }
                                                                    ]
                                                                },
                                                                "endingDoseJson":{
                                                                    "titrationKitExceptionItems":[
                                                                        {
                                                                            "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                            "kitSeq":2,
                                                                            "kitDosage":"BID",
                                                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                        }
                                                                    ]
                                                                },
                                                                "minTimeBetweenDoseChangesUnit":"Days",
                                                                "minTimeBetweenDoseChanges":2,
                                                                "exceptionType":"UP_EXCEPTION"
                                                            }
                                                        ],
                                                        "advancedDosing":1,
                                                        "advancedDosingGroups":[
                                                            {
                                                                "id":"71B8327AFAA6412287106192AB5984EF",
                                                                "groupName":"Adults",
                                                                "groupCriteria":[
                                                                    {
                                                                        "id":"72B8327AFAA6412287106192AB5984EF",
                                                                        "criteriaType":"Question",
                                                                        "visitName":"Screening",
                                                                        "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                        "formName":"Demographics",
                                                                        "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                        "questionName":"Age",
                                                                        "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                        "variable":"System Screening Date",
                                                                        "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                        "timePeriod":"Before",
                                                                        "dateValue":"2026-01-15",
                                                                        "answer":[
                                                                            {
                                                                                "value":"18_PLUS",
                                                                                "label":"18 years or older"
                                                                            }
                                                                        ],
                                                                        "rule":{
                                                                            "id":"74B8327AFAA6412287106192AB5984EF",
                                                                            "ruleName":"Greater Than Or Equal To",
                                                                            "value":"18",
                                                                            "valueList":[
                                                                                {
                                                                                    "value":"18",
                                                                                    "label":"18"
                                                                                }
                                                                            ],
                                                                            "lower":{
                                                                                "value":"18",
                                                                                "inclusive":true
                                                                            },
                                                                            "upper":{
                                                                                "value":"120",
                                                                                "inclusive":true
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "kitSettings":[
                                                                    {
                                                                        "id":"75B8327AFAA6412287106192AB5984EF",
                                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                        "kitName":"Standard treatment kit",
                                                                        "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "kitUnitSettings":{
                                                                            "unitsPerKit":20,
                                                                            "singleUnitDose":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            }
                                                                        },
                                                                        "dosings":[
                                                                            {
                                                                                "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                                "name":"Weight-based dose",
                                                                                "question":{
                                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                                    "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                                },
                                                                                "visit":{
                                                                                    "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                                    "type":"ScreeningVisit"
                                                                                },
                                                                                "dose":{
                                                                                    "precision":1,
                                                                                    "roundUp":1,
                                                                                    "frequency":"Daily",
                                                                                    "leftOverUnits":false
                                                                                },
                                                                                "measurement":{
                                                                                    "kit":{
                                                                                        "value":10,
                                                                                        "units":"mg"
                                                                                    },
                                                                                    "subject":{
                                                                                        "value":70,
                                                                                        "units":"kg"
                                                                                    }
                                                                                }
                                                                            }
                                                                        ],
                                                                        "dosingLabel":"Dose 1",
                                                                        "quantity":1
                                                                    }
                                                                ],
                                                                "instructions":"Dispense one kit when the adult criteria are met."
                                                            }
                                                        ],
                                                        "versionStart":"2026-01-15T10:15:30Z",
                                                        "versionEnd":"3099-12-31T00:00:00Z",
                                                        "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                        "studyVersionStart":"2026-01-15T10:15:30Z",
                                                        "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                        "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                        "poolingId":"POOL12",
                                                        "isDefault":true,
                                                        "dosage":50
                                                    }
                                                }
                                            ],
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load dispensation rows for the supplied visit and study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-ors-svc/rest/v13.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"V13.0",
                "description":"Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"excludeRepeatFormItems",
                        "in":"query",
                        "description":"Optional. When true, excludes repeat form items from the response.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    },
                    {
                        "name":"excludeLabFormItems",
                        "in":"query",
                        "description":"Optional. When true, excludes laboratory form items from the response.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    },
                    {
                        "name":"excludeTwoSectFormItems",
                        "in":"query",
                        "description":"Optional. When true, excludes form items from two-section forms from the response.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    },
                    {
                        "name":"includeAllNumberItems",
                        "in":"query",
                        "description":"Optional. When true, includes all number items that are eligible for stratification.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Optional. Form category filter. Allowed values: DCS for Data Collection Study forms, NSF for Clinical Supplies Data forms, and ALL for all supported form categories. Defaults to DCS when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":3,
                            "minLength":3,
                            "type":"string",
                            "example":"DCS",
                            "default":"DCS",
                            "enum":[
                                "DCS",
                                "NSF",
                                "ALL"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Randomization factor form items were retrieved successfully for the requested study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormsRandomizationFactorItemV13"
                                    }
                                },
                                "examples":{
                                    "GetRandomizationFactorsV13Success":{
                                        "description":"GetRandomizationFactorsV13Success",
                                        "value":[
                                            {
                                                "questionType":"numeric",
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "formId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "visitId":"E1D7C7D4D8444D60A5304F0E0A9967D1",
                                                "formTitle":"Demography",
                                                "questionLabel":"Age",
                                                "questionHint":"Enter the subject age in years.",
                                                "randomizationTag":true,
                                                "isStrataFactor":true,
                                                "isCohortFactor":false,
                                                "refname":"AGE_01",
                                                "applyChangeToVersion":"1.0.0.1",
                                                "required":true,
                                                "dynamic":0,
                                                "hidden":false,
                                                "readOnly":false,
                                                "ruleSet":"{\"logicalOperator\":\"NONE\",\"rules\":[],\"numberIndex\":1}",
                                                "sdvRequired":"NEVER",
                                                "sequence":1,
                                                "groupSequence":0,
                                                "smartItemId":"7C2A2F1C4A7F4A7A8D5A9F3AA2CB9965",
                                                "formula":"[{\"ruleName\":\"AGE\",\"ruleExpression\":\"AgeInYears(AGE_DOB_01, visitDate)\"}]",
                                                "smartObject":"AGE",
                                                "advancedProps":[
                                                    {
                                                        "id":"2E2D8A4E3F5C4C2F96A43B9F0BEF5142",
                                                        "type":"RolloverQuestion",
                                                        "name":"RolloverQuestionStudyId",
                                                        "value":"B1B8327AFAA6412287106192AB5984EF",
                                                        "label":"Rollover Study BT-31",
                                                        "rules":[
                                                            {
                                                                "name":"RolloverQuestionAnswer",
                                                                "value":"91A0C3E0D0B5445A95BA3AB2D84D6755",
                                                                "label":"Yes"
                                                            }
                                                        ],
                                                        "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                                        "parentObjectLevel":"FORM",
                                                        "parentObjectLabel":"Demography"
                                                    }
                                                ],
                                                "sasVariable":"AGE",
                                                "sasLabel":"Subject Age",
                                                "labNormalsTag":"LabTest",
                                                "clLabNormalsTag":"LabGender",
                                                "dataClassificationIds":[
                                                    {
                                                        "id":"F5BBE9E730234785A64C593C3EE4F8AA",
                                                        "type":"DataClassification",
                                                        "name":"ClassificationId",
                                                        "value":"SUBJECT",
                                                        "label":"Subject Data",
                                                        "rules":[
                                                            {
                                                                "name":"Access",
                                                                "value":"EDIT",
                                                                "label":"Edit"
                                                            }
                                                        ],
                                                        "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                                        "parentObjectLevel":"FORM",
                                                        "parentObjectLabel":"Demography"
                                                    }
                                                ],
                                                "requiredScreening":false,
                                                "requiredRandomization":true,
                                                "requiredDispensation":false,
                                                "requiredForCaseCreate":false,
                                                "triggerFollowupCase":false,
                                                "dataClassificationLevel":"edit",
                                                "e2br3Mapping":[
                                                    {
                                                        "id":"5FDFAB0EEAE34950B0DEBFC2DD0B8D20",
                                                        "type":"E2BR3Mapping",
                                                        "name":"E2BR3Field",
                                                        "value":"patient.agegroup",
                                                        "label":"Patient Age Group",
                                                        "rules":[
                                                            {
                                                                "name":"Profile",
                                                                "value":"DEFAULT",
                                                                "label":"Default"
                                                            }
                                                        ],
                                                        "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                                        "parentObjectLevel":"FORM",
                                                        "parentObjectLabel":"Demography"
                                                    }
                                                ],
                                                "precision":0,
                                                "units":"years"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load the randomization factor form items for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetRandomizationFactorsV13ServerError":{
                                        "description":"GetRandomizationFactorsV13ServerError",
                                        "value":{
                                            "errorCode":"C1-UNEXPECTED-500",
                                            "errorMessage":"The service could not load randomization factor form items for the requested study version due to an unexpected server-side error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v13.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v13.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-ors-svc/rest/v3.0/studies/{studyId}/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Randomization Factors/Get all active factors in a study"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of Study factors. You can retrieve this list by study mode and RandType.",
                "operationId":"getRandFactors_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Required. Study version mode filter. Allowed values: test = testing study versions, training = training study versions, active = active study versions.",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Required. Randomization factor type filter. Allowed values: stratum = strata factors, cohort = cohort factors, minimization = minimization factors, all = every supported factor type.",
                        "required":true,
                        "schema":{
                            "maxLength":12,
                            "minLength":3,
                            "type":"string",
                            "example":"all",
                            "default":"ALL",
                            "enum":[
                                "stratum",
                                "cohort",
                                "minimization",
                                "all"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationFactorsItemV3"
                                    }
                                },
                                "examples":{
                                    "GetRandomizationFactorsSuccess":{
                                        "description":"GetRandomizationFactorsSuccess",
                                        "value":[
                                            {
                                                "details":{
                                                    "title":"Rand 001",
                                                    "description":"Method to assign study participants to a treatment group.",
                                                    "algorithm":"Central",
                                                    "cohortType":"NoCohort",
                                                    "randomizationType":"Blinded",
                                                    "reRandomization":true,
                                                    "treatmentArms":"Randomized"
                                                },
                                                "groups":[
                                                    {
                                                        "id":"B1B8327AFAA6412287106192AB5984EF",
                                                        "formTitle":"Demography",
                                                        "questionTitle":"Age",
                                                        "groupName":"Group Name 1",
                                                        "groupId":"A1B8327AFAA6412287106192AB5984EF",
                                                        "formCategory":"DCS",
                                                        "formSubcategory":"Baseline",
                                                        "instructionalText":"Select participant age range",
                                                        "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                                        "parentCohortName":"Adult Cohort"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load randomization factors for the supplied study, mode, and factor type because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetRandomizationFactorsError":{
                                        "description":"GetRandomizationFactorsError",
                                        "value":{
                                            "errorCode":"C1-003",
                                            "errorMessage":"Cannot modify object after a study version has been approved",
                                            "details":{
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "mode":"active",
                                                "type":"stratum"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v3.0-studies-{studyId}-randomizationfactors-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v3.0-studies-studyid-randomizationfactors-get"
            }
        },
        "/ec-designer-ors-svc/rest/v3.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/bulk":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Update randomization cohort groups"
                ],
                "summary":"V3.0",
                "description":"Updates a list of cohort groups associated with a randomization design.",
                "operationId":"updateStratums_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of randomization strata groups to be modified",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StrataBulkItemV3"
                                }
                            },
                            "examples":{
                                "UpdateStrataRequest":{
                                    "description":"UpdateStrataRequest",
                                    "value":[
                                        {
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"Stratum Group 1 Updated",
                                            "parentCohortName":"Adult Cohort",
                                            "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                            "factors":[
                                                {
                                                    "type":"choice",
                                                    "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"Age Group",
                                                    "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                    "values":[
                                                        "18-45",
                                                        "46-65"
                                                    ],
                                                    "codelistitemIds":[
                                                        "977443BF3EFB43888026788E7F7CCE96",
                                                        "877443BF3EFB43888026788E7F7CCE95"
                                                    ]
                                                }
                                            ],
                                            "weight":2,
                                            "randomizationType":"Stratified",
                                            "objectType":"Code List",
                                            "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StrataBulkItemV3"
                                    }
                                },
                                "examples":{
                                    "UpdateStrataSuccess":{
                                        "description":"UpdateStrataSuccess",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Stratum Group 1 Updated",
                                                "parentCohortName":"Adult Cohort",
                                                "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                                "factors":[
                                                    {
                                                        "type":"choice",
                                                        "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Age Group",
                                                        "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "values":[
                                                            "18-45",
                                                            "46-65"
                                                        ],
                                                        "codelistitemIds":[
                                                            "977443BF3EFB43888026788E7F7CCE96",
                                                            "877443BF3EFB43888026788E7F7CCE95"
                                                        ]
                                                    }
                                                ],
                                                "weight":2,
                                                "randomizationType":"Stratified",
                                                "objectType":"Code List",
                                                "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot update the requested strata for the supplied study version and randomization because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "UpdateStrataError":{
                                        "description":"UpdateStrataError",
                                        "value":{
                                            "errorCode":"C1-404",
                                            "errorMessage":"Stratum does not exist",
                                            "details":{
                                                "stratumId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-put",
                "x-filename-id":"ec-designer-ors-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Create list of cohort groups"
                ],
                "summary":"V3.0",
                "description":"Creates a list of new cohort groups associated with a randomization design.",
                "operationId":"saveStratums_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of randomization strata groups to be created",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StrataBulkItemV3"
                                }
                            },
                            "examples":{
                                "CreateStrataRequest":{
                                    "description":"CreateStrataRequest",
                                    "value":[
                                        {
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"Stratum Group 1",
                                            "parentCohortName":"Adult Cohort",
                                            "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                            "factors":[
                                                {
                                                    "type":"choice",
                                                    "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"Age Group",
                                                    "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                    "values":[
                                                        "18-40",
                                                        "41-65"
                                                    ],
                                                    "codelistitemIds":[
                                                        "977443BF3EFB43888026788E7F7CCE96",
                                                        "877443BF3EFB43888026788E7F7CCE95"
                                                    ]
                                                },
                                                {
                                                    "type":"range",
                                                    "formId":"A2B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"B2B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"BMI Range",
                                                    "groupId":"C2B8327AFAA6412287106192AB5984EF",
                                                    "min":18,
                                                    "max":30
                                                }
                                            ],
                                            "weight":1,
                                            "randomizationType":"Stratified",
                                            "objectType":"Code List",
                                            "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StrataBulkItemV3"
                                    }
                                },
                                "examples":{
                                    "CreateStrataSuccess":{
                                        "description":"CreateStrataSuccess",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Stratum Group 1",
                                                "parentCohortName":"Adult Cohort",
                                                "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                                "factors":[
                                                    {
                                                        "type":"choice",
                                                        "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Age Group",
                                                        "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "values":[
                                                            "18-40",
                                                            "41-65"
                                                        ],
                                                        "codelistitemIds":[
                                                            "977443BF3EFB43888026788E7F7CCE96",
                                                            "877443BF3EFB43888026788E7F7CCE95"
                                                        ]
                                                    },
                                                    {
                                                        "type":"range",
                                                        "formId":"A2B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"B2B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"BMI Range",
                                                        "groupId":"C2B8327AFAA6412287106192AB5984EF",
                                                        "min":18,
                                                        "max":30
                                                    }
                                                ],
                                                "weight":1,
                                                "randomizationType":"Stratified",
                                                "objectType":"Code List",
                                                "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot create the requested strata for the supplied study version and randomization because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "CreateStrataError":{
                                        "description":"CreateStrataError",
                                        "value":{
                                            "errorCode":"C1-003",
                                            "errorMessage":"Cannot modify object after a study version has been approved",
                                            "details":{
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "version":"1.0.0.1",
                                                "randomId":"A1B8327AFAA6412287106192AB5984EF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-post",
                "x-filename-id":"ec-designer-ors-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Delete cohort groups"
                ],
                "summary":"V3.0",
                "description":"Removes a list of cohort groups associated with a randomization design.",
                "operationId":"deleteStratums_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of randomization strata groups to be deleted",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StrataBulkItemV3"
                                }
                            },
                            "examples":{
                                "DeleteStrataRequest":{
                                    "description":"DeleteStrataRequest",
                                    "value":[
                                        {
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"Stratum Group 1",
                                            "parentCohortName":"Adult Cohort",
                                            "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                            "factors":[
                                                {
                                                    "type":"choice",
                                                    "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"Age Group",
                                                    "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                    "values":[
                                                        "18-40",
                                                        "41-65"
                                                    ],
                                                    "codelistitemIds":[
                                                        "977443BF3EFB43888026788E7F7CCE96",
                                                        "877443BF3EFB43888026788E7F7CCE95"
                                                    ]
                                                },
                                                {
                                                    "type":"range",
                                                    "formId":"A2B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"B2B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"BMI Range",
                                                    "groupId":"C2B8327AFAA6412287106192AB5984EF",
                                                    "min":18,
                                                    "max":30
                                                }
                                            ],
                                            "weight":1,
                                            "randomizationType":"Stratified",
                                            "objectType":"Code List",
                                            "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Strata were deleted successfully for the requested study version and randomization.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StrataBulkItemV3"
                                    }
                                },
                                "examples":{
                                    "DeleteStrataSuccess":{
                                        "description":"DeleteStrataSuccess",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Stratum Group 1",
                                                "parentCohortName":"Adult Cohort",
                                                "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                                "factors":[
                                                    {
                                                        "type":"choice",
                                                        "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Age Group",
                                                        "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "values":[
                                                            "18-40",
                                                            "41-65"
                                                        ],
                                                        "codelistitemIds":[
                                                            "977443BF3EFB43888026788E7F7CCE96",
                                                            "877443BF3EFB43888026788E7F7CCE95"
                                                        ]
                                                    },
                                                    {
                                                        "type":"range",
                                                        "formId":"A2B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"B2B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"BMI Range",
                                                        "groupId":"C2B8327AFAA6412287106192AB5984EF",
                                                        "min":18,
                                                        "max":30
                                                    }
                                                ],
                                                "weight":1,
                                                "randomizationType":"Stratified",
                                                "objectType":"Code List",
                                                "objectId":"D2B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot delete the requested strata for the supplied study version and randomization because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "DeleteStrataError":{
                                        "description":"DeleteStrataError",
                                        "value":{
                                            "errorCode":"C1-400",
                                            "errorMessage":"Invalid stratum delete request payload",
                                            "details":{
                                                "randomId":"A1B8327AFAA6412287106192AB5984EF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-delete",
                "x-filename-id":"ec-designer-ors-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-delete"
            }
        },
        "/ec-designer-ors-svc/rest/v4.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get list of all strata groups"
                ],
                "summary":"V4.0",
                "description":"Retrieves a list of all strata groups associated with a randomization design.",
                "operationId":"getStrata_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StrataItemV4"
                                    }
                                },
                                "examples":{
                                    "GetStrataSuccess":{
                                        "description":"GetStrataSuccess",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Minimization Group 1",
                                                "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                                "parentCohortName":"Adult Cohort",
                                                "weight":1,
                                                "randomizationType":"MINIMIZATION",
                                                "objectType":"CLCODEVALUES",
                                                "objectId":"D2B8327AFAA6412287106192AB5984EF",
                                                "factors":[
                                                    {
                                                        "type":"choice",
                                                        "formId":"D1B8327AFAA6412287106192AB5984EF",
                                                        "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Age Group",
                                                        "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                                        "values":[
                                                            "18-40",
                                                            "41-65"
                                                        ],
                                                        "codelistitemIds":[
                                                            "977443BF3EFB43888026788E7F7CCE96",
                                                            "877443BF3EFB43888026788E7F7CCE95"
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load the strata for the supplied study version and randomization because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetStrataError":{
                                        "description":"GetStrataError",
                                        "value":{
                                            "errorCode":"C1-404",
                                            "errorMessage":"Strata not found",
                                            "details":{
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "version":"1.0.0.1",
                                                "randomId":"A1B8327AFAA6412287106192AB5984EF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v4.0-studies-studyid-versions-version-randomizations-randomid-strata-get"
            }
        },
        "/ec-designer-ors-svc/rest/v4.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/{stratumId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get a stratum group"
                ],
                "summary":"V4.0",
                "description":"Retrieves a stratum group associated with a randomization design.",
                "operationId":"getStratum_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"A1B8327AFAA6412287106192AB5984EF"
                        }
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum ID.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StrataItemV4"
                                },
                                "examples":{
                                    "GetStratumSuccess":{
                                        "description":"GetStratumSuccess",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"Minimization Group 1",
                                            "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                            "parentCohortName":"Adult Cohort",
                                            "weight":1,
                                            "randomizationType":"MINIMIZATION",
                                            "objectType":"FORMITEM",
                                            "objectId":"D2B8327AFAA6412287106192AB5984EF",
                                            "factors":[
                                                {
                                                    "type":"range",
                                                    "formId":"A2B8327AFAA6412287106192AB5984EF",
                                                    "itemId":"B2B8327AFAA6412287106192AB5984EF",
                                                    "groupName":"BMI Range",
                                                    "groupId":"C2B8327AFAA6412287106192AB5984EF",
                                                    "min":-5,
                                                    "max":30
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot load the requested stratum for the supplied study version and randomization because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetStratumError":{
                                        "description":"GetStratumError",
                                        "value":{
                                            "errorCode":"C1-404",
                                            "errorMessage":"Stratum does not exist",
                                            "details":{
                                                "stratumId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v4.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-get"
            }
        },
        "/ec-designer-ors-svc/rest/v6.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits for all study versions in Testing, Approved and Archived states.",
                "operationId":"getStudyNonDraftKitDesc_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Required. Study version mode filter. Allowed values: test = testing study versions, training = training study versions, active = active study versions.",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Optional. Kit category filter. Allowed values: standard = standard kits, device = device kits, titration = titration kits, all = all kit categories. Defaults to all when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":9,
                            "minLength":3,
                            "type":"string",
                            "example":"all",
                            "default":"all",
                            "enum":[
                                "standard",
                                "device",
                                "titration",
                                "all"
                            ]
                        }
                    },
                    {
                        "name":"unblinded",
                        "in":"query",
                        "description":"Optional. Indicates whether unblinded kit fields should be included in the response. Defaults to false when omitted.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitsAllItemV6"
                                    }
                                },
                                "examples":{
                                    "GetKitsAllSuccess":{
                                        "description":"GetKitsAllSuccess",
                                        "value":[
                                            {
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeId":"KIT_STD_001",
                                                "kitDescription":"Standard treatment kit",
                                                "distributionSetting":"UNBLINDED",
                                                "deviceType":"WeightScale",
                                                "deviceConn":"DevicetoCloud",
                                                "trialSupplyType":"BOTTLE",
                                                "titrationKit":false,
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "serialized":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot retrieve kits for the supplied study and mode, or cannot apply the requested kitType and unblinded filters because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetKitsAllError":{
                                        "description":"GetKitsAllError",
                                        "value":{
                                            "errorCode":"C1-400",
                                            "errorMessage":"Invalid kitType parameter",
                                            "details":{
                                                "mode":"active",
                                                "kitType":"invalidType",
                                                "unblinded":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-ors-svc-rest-v6.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v6.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-ors-svc/rest/v6.0/studies/{studyId}/versions/{version}/randomizations":{
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"V6.0",
                "description":"Creates a new randomization design in a study version.",
                "operationId":"addRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomization to be created or modified",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationPayloadV6"
                            },
                            "examples":{
                                "AddRandomizationRequest":{
                                    "description":"AddRandomizationRequest",
                                    "value":{
                                        "id":"B1B8327AFAA6412287106192AB5984EF",
                                        "versionStart":"2025-01-17T15:41:10.733Z",
                                        "details":{
                                            "title":"Rand 001",
                                            "description":"Method to assign study participants to a treatment group.",
                                            "algorithm":"Central",
                                            "cohortType":"NoCohort",
                                            "randomizationType":"Blinded",
                                            "reRandomization":true,
                                            "treatmentArms":"Randomized"
                                        },
                                        "arms":[
                                            {
                                                "id":"C1B8327AFAA6412287106192AB5984EF",
                                                "name":"Arm A",
                                                "ratio":2
                                            }
                                        ],
                                        "visits":[
                                            {
                                                "visitId":"E1B8327AFAA6412287106192AB5984EF",
                                                "visitName":"Week 1",
                                                "branchId":"F1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ],
                                        "settings":{
                                            "randomizeSubjectsIfSitesOutOfKits":false,
                                            "assignSkippedRandomizationNumbers":false,
                                            "randomizeNumberBlinded":true,
                                            "randomizeLimitsToCountEarlyTerminated":false,
                                            "assignNewRandomizeNumbers":true,
                                            "allowOutsideWindow":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationResponseV6"
                                },
                                "examples":{
                                    "AddRandomizationSuccess":{
                                        "description":"AddRandomizationSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "versionStart":"2025-01-17T15:41:10.733Z",
                                                "details":{
                                                    "title":"Rand 001",
                                                    "description":"Method to assign study participants to a treatment group.",
                                                    "algorithm":"Central",
                                                    "cohortType":"NoCohort",
                                                    "randomizationType":"Blinded",
                                                    "reRandomization":true,
                                                    "treatmentArms":"Randomized"
                                                },
                                                "arms":[
                                                    {
                                                        "id":"C1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Arm A",
                                                        "ratio":2
                                                    }
                                                ],
                                                "visits":[
                                                    {
                                                        "visitId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "visitName":"Week 1",
                                                        "branchId":"F1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ],
                                                "settings":{
                                                    "randomizeSubjectsIfSitesOutOfKits":false,
                                                    "assignSkippedRandomizationNumbers":false,
                                                    "randomizeNumberBlinded":true,
                                                    "randomizeLimitsToCountEarlyTerminated":false,
                                                    "assignNewRandomizeNumbers":true,
                                                    "allowOutsideWindow":false
                                                }
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot create the requested randomization design for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "AddRandomizationError":{
                                        "description":"AddRandomizationError",
                                        "value":{
                                            "errorCode":"C1-400",
                                            "errorMessage":"Randomization details are invalid",
                                            "details":{
                                                "field":"details.title",
                                                "message":"must not be blank"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v6.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-ors-svc-rest-v6.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-ors-svc/rest/v6.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"V6.0",
                "description":"Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"B1B8327AFAA6412287106192AB5984EF"
                        }
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Required. Comma-separated list of branch IDs in the visit schedule.",
                        "required":true,
                        "schema":{
                            "maxLength":4096,
                            "minLength":32,
                            "type":"string",
                            "example":"A1B8327AFAA6412287106192AB5984EF,C1B8327AFAA6412287106192AB5984EF"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Randomization to be created or modified",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationPayloadV6"
                            },
                            "examples":{
                                "UpdateRandomizationRequest":{
                                    "description":"UpdateRandomizationRequest",
                                    "value":{
                                        "id":"B1B8327AFAA6412287106192AB5984EF",
                                        "versionStart":"2025-01-17T15:41:10.733Z",
                                        "details":{
                                            "title":"Rand 001",
                                            "description":"Method to assign study participants to a treatment group.",
                                            "algorithm":"Central",
                                            "cohortType":"NoCohort",
                                            "randomizationType":"Blinded",
                                            "reRandomization":true,
                                            "treatmentArms":"Randomized"
                                        },
                                        "arms":[
                                            {
                                                "id":"C1B8327AFAA6412287106192AB5984EF",
                                                "name":"Arm A",
                                                "ratio":2
                                            }
                                        ],
                                        "visits":[
                                            {
                                                "visitId":"E1B8327AFAA6412287106192AB5984EF",
                                                "visitName":"Week 1",
                                                "branchId":"F1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ],
                                        "settings":{
                                            "randomizeSubjectsIfSitesOutOfKits":false,
                                            "assignSkippedRandomizationNumbers":false,
                                            "randomizeNumberBlinded":true,
                                            "randomizeLimitsToCountEarlyTerminated":false,
                                            "assignNewRandomizeNumbers":true,
                                            "allowOutsideWindow":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationResponseV6"
                                },
                                "examples":{
                                    "UpdateRandomizationSuccess":{
                                        "description":"UpdateRandomizationSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "versionStart":"2025-01-17T15:41:10.733Z",
                                                "details":{
                                                    "title":"Rand 001",
                                                    "description":"Method to assign study participants to a treatment group.",
                                                    "algorithm":"Central",
                                                    "cohortType":"NoCohort",
                                                    "randomizationType":"Blinded",
                                                    "reRandomization":true,
                                                    "treatmentArms":"Randomized"
                                                },
                                                "arms":[
                                                    {
                                                        "id":"C1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Arm A",
                                                        "ratio":2
                                                    }
                                                ],
                                                "visits":[
                                                    {
                                                        "visitId":"E1B8327AFAA6412287106192AB5984EF",
                                                        "visitName":"Week 1",
                                                        "branchId":"F1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ],
                                                "settings":{
                                                    "randomizeSubjectsIfSitesOutOfKits":false,
                                                    "assignSkippedRandomizationNumbers":false,
                                                    "randomizeNumberBlinded":true,
                                                    "randomizeLimitsToCountEarlyTerminated":false,
                                                    "assignNewRandomizeNumbers":true,
                                                    "allowOutsideWindow":false
                                                }
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot update the requested randomization design for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "UpdateRandomizationError":{
                                        "description":"UpdateRandomizationError",
                                        "value":{
                                            "errorCode":"C1-400",
                                            "errorMessage":"Randomization details are invalid",
                                            "details":{
                                                "field":"details.title",
                                                "message":"must not be blank"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v6.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-ors-svc-rest-v6.0-studies-studyid-versions-version-randomizations-randomid-put"
            }
        },
        "/ec-designer-ors-svc/rest/v7.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions with optional kit type exclusion"
                ],
                "summary":"V7.0",
                "description":"Retrieves kits for study versions in Testing, Approved, and Archived states. In v7, this operation also supports the optional excludeKitType filter to invert the selected kitType filter.",
                "operationId":"getStudyNonDraftKitDesc",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Required. Study version mode filter. Allowed values: test = testing study versions, training = training study versions, active = active study versions.",
                        "required":true,
                        "schema":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Optional. Kit category filter. Allowed values: standard = standard kits, device = device kits, titration = titration kits, advancedDispensation = advanced dispensation kits, all = all kit categories. Defaults to all when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":20,
                            "minLength":3,
                            "type":"string",
                            "example":"all",
                            "default":"all",
                            "enum":[
                                "standard",
                                "device",
                                "titration",
                                "advancedDispensation",
                                "all"
                            ]
                        }
                    },
                    {
                        "name":"excludeKitType",
                        "in":"query",
                        "description":"Optional. When false, only the selected kitType values are returned. When true, the selected kitType values are excluded from the response. Defaults to false when omitted.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false,
                            "enum":[
                                true,
                                false
                            ]
                        }
                    },
                    {
                        "name":"unblinded",
                        "in":"query",
                        "description":"Optional. Indicates whether unblinded kit fields should be included in the response. Defaults to false when omitted.",
                        "required":false,
                        "schema":{
                            "type":"boolean",
                            "example":false,
                            "default":false
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitsAllItemV6"
                                    }
                                },
                                "examples":{
                                    "GetKitsAllV7Success":{
                                        "description":"GetKitsAllV7Success",
                                        "value":[
                                            {
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeId":"KIT_STD_001",
                                                "kitDescription":"Standard treatment kit",
                                                "distributionSetting":"UNBLINDED",
                                                "deviceType":"WeightScale",
                                                "deviceConn":"DevicetoCloud",
                                                "trialSupplyType":"BOTTLE",
                                                "titrationKit":false,
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "serialized":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot retrieve kits for the supplied study and mode, or cannot apply the requested kitType, excludeKitType, and unblinded filters because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetKitsAllV7Error":{
                                        "description":"GetKitsAllV7Error",
                                        "value":{
                                            "errorCode":"C1-400",
                                            "errorMessage":"Invalid kitType parameter",
                                            "details":{
                                                "mode":"active",
                                                "kitType":"invalidType",
                                                "excludeKitType":false,
                                                "unblinded":false
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v7.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v7.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-ors-svc/rest/v7.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"V7.0",
                "description":"Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Optional. Kit type filter for dispensation visits. Allowed values: ALL = all supported kit types, STANDARD = standard kits, TITRATION = titration kits, DEVICE = device kits. Defaults to ALL when omitted.",
                        "required":false,
                        "schema":{
                            "maxLength":9,
                            "minLength":3,
                            "type":"string",
                            "example":"ALL",
                            "default":"ALL",
                            "enum":[
                                "ALL",
                                "STANDARD",
                                "TITRATION",
                                "DEVICE"
                            ]
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensingRowResponseV7"
                                    }
                                },
                                "examples":{
                                    "GetDispensingsV7Success":{
                                        "description":"GetDispensingsV7Success",
                                        "value":[
                                            {
                                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                "armid":"C1B8327AFAA6412287106192AB5984EF",
                                                "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                                "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                "quantity":1,
                                                "dnd":5,
                                                "dispenseoutsidewindow":false,
                                                "id":"E1B8327AFAA6412287106192AB5984EF",
                                                "allowTitration":true,
                                                "titrationKits":[
                                                    {
                                                        "kitTypeId":"KIT_STD_001",
                                                        "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitQuantity":1
                                                    }
                                                ],
                                                "blindedInfo":{
                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitSettings":{
                                                        "deviceType":"ActivityWatch",
                                                        "deviceConn":"DevicetoCloud",
                                                        "calculatingDoses":true,
                                                        "titratingDoses":false,
                                                        "titrationKit":false,
                                                        "distributionSetting":"BLINDED",
                                                        "kitTypeId":"KIT_STD_001",
                                                        "kitDescription":"Standard treatment kit",
                                                        "storageSetting":"AMBIENT",
                                                        "trialSupplyType":"BOTTLE",
                                                        "minShipUnits":10,
                                                        "serialized":true,
                                                        "hazardousMaterial":false,
                                                        "controlSubstance":false,
                                                        "bufferdays":5,
                                                        "dispenseOutsideWindow":false
                                                    },
                                                    "kitUnitSettings":{
                                                        "unitsPerKit":20,
                                                        "singleUnitDose":{
                                                            "value":10,
                                                            "units":"mg"
                                                        }
                                                    },
                                                    "dosings":[
                                                        {
                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                            "name":"Weight-based dose",
                                                            "question":{
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                            },
                                                            "visit":{
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"ScreeningVisit"
                                                            },
                                                            "dose":{
                                                                "precision":1,
                                                                "roundUp":1,
                                                                "frequency":"Daily",
                                                                "leftOverUnits":false
                                                            },
                                                            "measurement":{
                                                                "kit":{
                                                                    "value":10,
                                                                    "units":"mg"
                                                                },
                                                                "subject":{
                                                                    "value":70,
                                                                    "units":"kg"
                                                                }
                                                            }
                                                        }
                                                    ],
                                                    "exceptions":[
                                                        {
                                                            "id":"91B8327AFAA6412287106192AB5984EF",
                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "sequence":1,
                                                            "startingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":1,
                                                                        "kitDosage":"QD",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "endingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":2,
                                                                        "kitDosage":"BID",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "minTimeBetweenDoseChangesUnit":"Days",
                                                            "minTimeBetweenDoseChanges":2,
                                                            "exceptionType":"UP_EXCEPTION"
                                                        }
                                                    ],
                                                    "advancedDosing":1,
                                                    "advancedDosingGroups":[
                                                        {
                                                            "id":"71B8327AFAA6412287106192AB5984EF",
                                                            "groupName":"Adults",
                                                            "groupCriteria":[
                                                                {
                                                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                                                    "criteriaType":"Question",
                                                                    "visitName":"Screening",
                                                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "formName":"Demographics",
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "questionName":"Age",
                                                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                    "variable":"System Screening Date",
                                                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                    "timePeriod":"Before",
                                                                    "dateValue":"2026-01-15",
                                                                    "answer":[
                                                                        {
                                                                            "value":"18_PLUS",
                                                                            "label":"18 years or older"
                                                                        }
                                                                    ],
                                                                    "rule":{
                                                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                                                        "ruleName":"Greater Than Or Equal To",
                                                                        "value":"18",
                                                                        "valueList":[
                                                                            {
                                                                                "value":"18",
                                                                                "label":"18"
                                                                            }
                                                                        ],
                                                                        "lower":{
                                                                            "value":"18",
                                                                            "inclusive":true
                                                                        },
                                                                        "upper":{
                                                                            "value":"120",
                                                                            "inclusive":true
                                                                        }
                                                                    }
                                                                }
                                                            ],
                                                            "kitSettings":[
                                                                {
                                                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitName":"Standard treatment kit",
                                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                    "kitUnitSettings":{
                                                                        "unitsPerKit":20,
                                                                        "singleUnitDose":{
                                                                            "value":10,
                                                                            "units":"mg"
                                                                        }
                                                                    },
                                                                    "dosings":[
                                                                        {
                                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                            "name":"Weight-based dose",
                                                                            "question":{
                                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                            },
                                                                            "visit":{
                                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                                "type":"ScreeningVisit"
                                                                            },
                                                                            "dose":{
                                                                                "precision":1,
                                                                                "roundUp":1,
                                                                                "frequency":"Daily",
                                                                                "leftOverUnits":false
                                                                            },
                                                                            "measurement":{
                                                                                "kit":{
                                                                                    "value":10,
                                                                                    "units":"mg"
                                                                                },
                                                                                "subject":{
                                                                                    "value":70,
                                                                                    "units":"kg"
                                                                                }
                                                                            }
                                                                        }
                                                                    ],
                                                                    "dosingLabel":"Dose 1",
                                                                    "quantity":1
                                                                }
                                                            ],
                                                            "instructions":"Dispense one kit when the adult criteria are met."
                                                        }
                                                    ],
                                                    "versionStart":"2026-01-15T10:15:30Z",
                                                    "versionEnd":"3099-12-31T00:00:00Z",
                                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                    "studyVersionStart":"2026-01-15T10:15:30Z",
                                                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                    "poolingId":"POOL12",
                                                    "isDefault":true,
                                                    "dosage":50
                                                },
                                                "errorParamList":[
                                                    {
                                                        "ErrorParam":[
                                                            {
                                                                "key":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"Visit",
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Week 1"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot retrieve dispensing visit definitions for the supplied study version and kitType filter because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "GetDispensingsV7Error":{
                                        "description":"GetDispensingsV7Error",
                                        "value":{
                                            "errorCode":"C1-500",
                                            "errorMessage":"Unable to retrieve dispensing visit definitions for the requested study version.",
                                            "details":{
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "version":"1.0.0.1",
                                                "kitType":"ALL"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v7.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-ors-svc-rest-v7.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"V7.0",
                "description":"Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study unique identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"CF1E6500073D4AD298F4DA93DA670786"
                        }
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version identifier.",
                        "required":true,
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        }
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Optional. Randomization visit unique identifier used to scope the dispensing update when provided.",
                        "required":false,
                        "schema":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid",
                            "example":"3BCE1EE7AD7B4625B76876A49A7144CF",
                            "default":"empty"
                        }
                    },
                    {
                        "name":"visitDesignPathIds",
                        "in":"query",
                        "description":"Optional. Comma-separated list of visit design path IDs used to scope the update when the randomization algorithm is None.",
                        "required":false,
                        "schema":{
                            "maxLength":4096,
                            "minLength":32,
                            "type":"string",
                            "example":"3BCE1EE7AD7B4625B76876A49A7144CF,4BCE1EE7AD7B4625B76876A49A7144CE,7BCE1EE7AD7B4625B76876A49A7144CD"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit DTOs used to update existing study version dispensings.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/DispensingRowRequestV7"
                                }
                            },
                            "examples":{
                                "UpdateDispensingsV7Request":{
                                    "description":"UpdateDispensingsV7Request",
                                    "value":[
                                        {
                                            "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                            "armid":"C1B8327AFAA6412287106192AB5984EF",
                                            "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                            "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                            "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                            "quantity":1,
                                            "dnd":5,
                                            "dispenseoutsidewindow":false,
                                            "id":"E1B8327AFAA6412287106192AB5984EF",
                                            "allowTitration":true,
                                            "titrationKits":[
                                                {
                                                    "kitTypeId":"KIT_STD_001",
                                                    "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitQuantity":1
                                                }
                                            ],
                                            "blindedInfo":{
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitSettings":{
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConn":"DevicetoCloud",
                                                    "calculatingDoses":true,
                                                    "titratingDoses":false,
                                                    "titrationKit":false,
                                                    "distributionSetting":"BLINDED",
                                                    "kitTypeId":"KIT_STD_001",
                                                    "kitDescription":"Standard treatment kit",
                                                    "storageSetting":"AMBIENT",
                                                    "trialSupplyType":"BOTTLE",
                                                    "minShipUnits":10,
                                                    "serialized":true,
                                                    "hazardousMaterial":false,
                                                    "controlSubstance":false,
                                                    "bufferdays":5,
                                                    "dispenseOutsideWindow":false
                                                },
                                                "kitUnitSettings":{
                                                    "unitsPerKit":20,
                                                    "singleUnitDose":{
                                                        "value":10,
                                                        "units":"mg"
                                                    }
                                                },
                                                "dosings":[
                                                    {
                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                        "name":"Weight-based dose",
                                                        "question":{
                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                        },
                                                        "visit":{
                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                            "type":"ScreeningVisit"
                                                        },
                                                        "dose":{
                                                            "precision":1,
                                                            "roundUp":1,
                                                            "frequency":"Daily",
                                                            "leftOverUnits":false
                                                        },
                                                        "measurement":{
                                                            "kit":{
                                                                "value":10,
                                                                "units":"mg"
                                                            },
                                                            "subject":{
                                                                "value":70,
                                                                "units":"kg"
                                                            }
                                                        }
                                                    }
                                                ],
                                                "exceptions":[
                                                    {
                                                        "id":"91B8327AFAA6412287106192AB5984EF",
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "sequence":1,
                                                        "startingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":1,
                                                                    "kitDosage":"QD",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "endingDoseJson":{
                                                            "titrationKitExceptionItems":[
                                                                {
                                                                    "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                    "kitSeq":2,
                                                                    "kitDosage":"BID",
                                                                    "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                }
                                                            ]
                                                        },
                                                        "minTimeBetweenDoseChangesUnit":"Days",
                                                        "minTimeBetweenDoseChanges":2,
                                                        "exceptionType":"UP_EXCEPTION"
                                                    }
                                                ],
                                                "advancedDosing":1,
                                                "advancedDosingGroups":[
                                                    {
                                                        "id":"71B8327AFAA6412287106192AB5984EF",
                                                        "groupName":"Adults",
                                                        "groupCriteria":[
                                                            {
                                                                "id":"72B8327AFAA6412287106192AB5984EF",
                                                                "criteriaType":"Question",
                                                                "visitName":"Screening",
                                                                "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                "formName":"Demographics",
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "questionName":"Age",
                                                                "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                "variable":"System Screening Date",
                                                                "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                "timePeriod":"Before",
                                                                "dateValue":"2026-01-15",
                                                                "answer":[
                                                                    {
                                                                        "value":"18_PLUS",
                                                                        "label":"18 years or older"
                                                                    }
                                                                ],
                                                                "rule":{
                                                                    "id":"74B8327AFAA6412287106192AB5984EF",
                                                                    "ruleName":"Greater Than Or Equal To",
                                                                    "value":"18",
                                                                    "valueList":[
                                                                        {
                                                                            "value":"18",
                                                                            "label":"18"
                                                                        }
                                                                    ],
                                                                    "lower":{
                                                                        "value":"18",
                                                                        "inclusive":true
                                                                    },
                                                                    "upper":{
                                                                        "value":"120",
                                                                        "inclusive":true
                                                                    }
                                                                }
                                                            }
                                                        ],
                                                        "kitSettings":[
                                                            {
                                                                "id":"75B8327AFAA6412287106192AB5984EF",
                                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                "kitName":"Standard treatment kit",
                                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                "kitUnitSettings":{
                                                                    "unitsPerKit":20,
                                                                    "singleUnitDose":{
                                                                        "value":10,
                                                                        "units":"mg"
                                                                    }
                                                                },
                                                                "dosings":[
                                                                    {
                                                                        "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                        "name":"Weight-based dose",
                                                                        "question":{
                                                                            "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                            "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                        },
                                                                        "visit":{
                                                                            "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                            "type":"ScreeningVisit"
                                                                        },
                                                                        "dose":{
                                                                            "precision":1,
                                                                            "roundUp":1,
                                                                            "frequency":"Daily",
                                                                            "leftOverUnits":false
                                                                        },
                                                                        "measurement":{
                                                                            "kit":{
                                                                                "value":10,
                                                                                "units":"mg"
                                                                            },
                                                                            "subject":{
                                                                                "value":70,
                                                                                "units":"kg"
                                                                            }
                                                                        }
                                                                    }
                                                                ],
                                                                "dosingLabel":"Dose 1",
                                                                "quantity":1
                                                            }
                                                        ],
                                                        "instructions":"Dispense one kit when the adult criteria are met."
                                                    }
                                                ],
                                                "versionStart":"2026-01-15T10:15:30Z",
                                                "versionEnd":"3099-12-31T00:00:00Z",
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "studyVersionStart":"2026-01-15T10:15:30Z",
                                                "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                "poolingId":"POOL12",
                                                "isDefault":true,
                                                "dosage":50
                                            }
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensingRowResponseV7"
                                    }
                                },
                                "examples":{
                                    "UpdateDispensingsV7Success":{
                                        "description":"UpdateDispensingsV7Success",
                                        "value":[
                                            {
                                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                "armid":"C1B8327AFAA6412287106192AB5984EF",
                                                "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                                "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                "quantity":1,
                                                "dnd":5,
                                                "dispenseoutsidewindow":false,
                                                "id":"E1B8327AFAA6412287106192AB5984EF",
                                                "allowTitration":true,
                                                "titrationKits":[
                                                    {
                                                        "kitTypeId":"KIT_STD_001",
                                                        "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitQuantity":1
                                                    }
                                                ],
                                                "blindedInfo":{
                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitSettings":{
                                                        "deviceType":"ActivityWatch",
                                                        "deviceConn":"DevicetoCloud",
                                                        "calculatingDoses":true,
                                                        "titratingDoses":false,
                                                        "titrationKit":false,
                                                        "distributionSetting":"BLINDED",
                                                        "kitTypeId":"KIT_STD_001",
                                                        "kitDescription":"Standard treatment kit",
                                                        "storageSetting":"AMBIENT",
                                                        "trialSupplyType":"BOTTLE",
                                                        "minShipUnits":10,
                                                        "serialized":true,
                                                        "hazardousMaterial":false,
                                                        "controlSubstance":false,
                                                        "bufferdays":5,
                                                        "dispenseOutsideWindow":false
                                                    },
                                                    "kitUnitSettings":{
                                                        "unitsPerKit":20,
                                                        "singleUnitDose":{
                                                            "value":10,
                                                            "units":"mg"
                                                        }
                                                    },
                                                    "dosings":[
                                                        {
                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                            "name":"Weight-based dose",
                                                            "question":{
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                            },
                                                            "visit":{
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"ScreeningVisit"
                                                            },
                                                            "dose":{
                                                                "precision":1,
                                                                "roundUp":1,
                                                                "frequency":"Daily",
                                                                "leftOverUnits":false
                                                            },
                                                            "measurement":{
                                                                "kit":{
                                                                    "value":10,
                                                                    "units":"mg"
                                                                },
                                                                "subject":{
                                                                    "value":70,
                                                                    "units":"kg"
                                                                }
                                                            }
                                                        }
                                                    ],
                                                    "exceptions":[
                                                        {
                                                            "id":"91B8327AFAA6412287106192AB5984EF",
                                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "sequence":1,
                                                            "startingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":1,
                                                                        "kitDosage":"QD",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "endingDoseJson":{
                                                                "titrationKitExceptionItems":[
                                                                    {
                                                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                                        "kitSeq":2,
                                                                        "kitDosage":"BID",
                                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                                    }
                                                                ]
                                                            },
                                                            "minTimeBetweenDoseChangesUnit":"Days",
                                                            "minTimeBetweenDoseChanges":2,
                                                            "exceptionType":"UP_EXCEPTION"
                                                        }
                                                    ],
                                                    "advancedDosing":1,
                                                    "advancedDosingGroups":[
                                                        {
                                                            "id":"71B8327AFAA6412287106192AB5984EF",
                                                            "groupName":"Adults",
                                                            "groupCriteria":[
                                                                {
                                                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                                                    "criteriaType":"Question",
                                                                    "visitName":"Screening",
                                                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                                    "formName":"Demographics",
                                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                    "questionName":"Age",
                                                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                                    "variable":"System Screening Date",
                                                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                                    "timePeriod":"Before",
                                                                    "dateValue":"2026-01-15",
                                                                    "answer":[
                                                                        {
                                                                            "value":"18_PLUS",
                                                                            "label":"18 years or older"
                                                                        }
                                                                    ],
                                                                    "rule":{
                                                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                                                        "ruleName":"Greater Than Or Equal To",
                                                                        "value":"18",
                                                                        "valueList":[
                                                                            {
                                                                                "value":"18",
                                                                                "label":"18"
                                                                            }
                                                                        ],
                                                                        "lower":{
                                                                            "value":"18",
                                                                            "inclusive":true
                                                                        },
                                                                        "upper":{
                                                                            "value":"120",
                                                                            "inclusive":true
                                                                        }
                                                                    }
                                                                }
                                                            ],
                                                            "kitSettings":[
                                                                {
                                                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                                    "kitName":"Standard treatment kit",
                                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                                    "kitUnitSettings":{
                                                                        "unitsPerKit":20,
                                                                        "singleUnitDose":{
                                                                            "value":10,
                                                                            "units":"mg"
                                                                        }
                                                                    },
                                                                    "dosings":[
                                                                        {
                                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                                            "name":"Weight-based dose",
                                                                            "question":{
                                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                                            },
                                                                            "visit":{
                                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                                "type":"ScreeningVisit"
                                                                            },
                                                                            "dose":{
                                                                                "precision":1,
                                                                                "roundUp":1,
                                                                                "frequency":"Daily",
                                                                                "leftOverUnits":false
                                                                            },
                                                                            "measurement":{
                                                                                "kit":{
                                                                                    "value":10,
                                                                                    "units":"mg"
                                                                                },
                                                                                "subject":{
                                                                                    "value":70,
                                                                                    "units":"kg"
                                                                                }
                                                                            }
                                                                        }
                                                                    ],
                                                                    "dosingLabel":"Dose 1",
                                                                    "quantity":1
                                                                }
                                                            ],
                                                            "instructions":"Dispense one kit when the adult criteria are met."
                                                        }
                                                    ],
                                                    "versionStart":"2026-01-15T10:15:30Z",
                                                    "versionEnd":"3099-12-31T00:00:00Z",
                                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                    "studyVersionStart":"2026-01-15T10:15:30Z",
                                                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                                                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                                    "poolingId":"POOL12",
                                                    "isDefault":true,
                                                    "dosage":50
                                                },
                                                "errorParamList":[
                                                    {
                                                        "ErrorParam":[
                                                            {
                                                                "key":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"Visit",
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "name":"Week 1"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service cannot update dispensing visit definitions for the supplied study version because of an unexpected server-side failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "UpdateDispensingsV7Error":{
                                        "description":"UpdateDispensingsV7Error",
                                        "value":{
                                            "errorCode":"C1-500",
                                            "errorMessage":"Unable to update dispensing visit definitions for the requested study version.",
                                            "details":{
                                                "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                                "version":"1.0.0.1",
                                                "randVisitId":"3BCE1EE7AD7B4625B76876A49A7144CF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-ors-svc-rest-v7.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-ors-svc-rest-v7.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-reporting-svc/rest/v1.0/notification/{notificationType}":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Submit request for sending notifications",
                "description":"Submits a request for sending notification on the given input, using the QueryParams parameter. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"sendNotification",
                "parameters":[
                    {
                        "name":"notificationType",
                        "in":"path",
                        "description":"Notification Type (e.g., Created, On, Off).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Created"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier as a UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Notification payload as request body.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationPayloadWrapper"
                            },
                            "examples":{
                                "NotificationRequest":{
                                    "summary":"Example notification payload",
                                    "description":"NotificationRequest",
                                    "value":{
                                        "notificationPayloadMap":{
                                            "subjectId":{
                                                "fieldKey":"subjectId",
                                                "fieldName":"Subject ID",
                                                "fieldValue":"SUBJ001"
                                            },
                                            "visit":{
                                                "fieldKey":"visit",
                                                "fieldName":"Visit",
                                                "fieldValue":"SCREENING"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Notification successfully triggered.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Success":{
                                        "summary":"Operation successful, no content returned.",
                                        "description":"Success"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Input validation failed; error in the payload.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ValidationResult"
                                },
                                "examples":{
                                    "ValidationError":{
                                        "summary":"Validation failed on payload",
                                        "description":"ValidationError",
                                        "value":{
                                            "isValid":false,
                                            "errors":[
                                                "Field 'subjectId' is required."
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized access. The user is not allowed to send this notification.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "UnauthorizedResponse":{
                                        "summary":"User is not authorized",
                                        "description":"UnauthorizedResponse",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_401",
                                                "errorMessage":"User not authorized",
                                                "details":"No access to requested study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-notification-{notificationType}-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-notification-notificationtype-post"
            }
        },
        "/ec-reporting-svc/rest/v1.0/reports":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Generate report based on search specifications and query parameters",
                "description":"Submits a request for generating a report and returns Job ID in response. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateReport_1",
                "parameters":[
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Report ID",
                        "schema":{
                            "type":"string"
                        },
                        "example":"546A79C296BE11EABB370242AC130002"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Format of the report",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CSV"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"ID of the study for which you want to generate report. Tenant reports, such as HSL report, can be generated by making study ID as null.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"JobRequest object as request body",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/JobRequest"
                            },
                            "examples":{
                                "JobRequestExample":{
                                    "summary":"Example job-based report request",
                                    "description":"JobRequestExample",
                                    "value":{
                                        "fieldSpecsList":[
                                            {
                                                "fldId":"546A77A696BE11EABB370242AC130002",
                                                "fieldType":"list",
                                                "fieldName":"fileName",
                                                "fieldValueList":[
                                                    "Study Name_Form Name_Timestamp (CSV only)"
                                                ]
                                            },
                                            {
                                                "fieldType":"list",
                                                "fieldName":"siteId",
                                                "fldId":"546A79C296BE11EABB370242AC130002",
                                                "fieldValueList":[
                                                    "549AD8CA793C46688ECF6332C8926319"
                                                ]
                                            }
                                        ],
                                        "extFieldSpecsList":[
                                            {
                                                "fldId":"546A77A696BE11EABB370242AC130002",
                                                "fieldName":"File Name",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "Study Name_Form Name_Timestamp (CSV only)"
                                                ]
                                            },
                                            {
                                                "fldId":"546A79C296BE11EABB370242AC130002",
                                                "fieldName":"Site",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "Site001 - Site002"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "SuccessExample":{
                                        "summary":"A successful report execution log response",
                                        "description":"SuccessExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"123E4567E89B12D3A456426614174000",
                                                "rptId":"234E5678E89B12D3A456426614174001",
                                                "versionStart":"2025-11-04T00:00:00.123Z",
                                                "runDuration":123456789,
                                                "userId":"345E6789E89B12D3A456426614174002",
                                                "versionEnd":"2025-11-04T01:00:00.789Z",
                                                "operationType":"INSERT",
                                                "reason":"Example: report run for E2E demo",
                                                "comment":"This is a user comment for audit.",
                                                "rptKickoffDatetime":"2025-11-04T00:00:00.000Z",
                                                "rptName":"Subject Listing",
                                                "rptStatCd":"SUCCESS",
                                                "rptFormat":"PDF",
                                                "recCount":12345,
                                                "currSearchSpec":"{\"study\":\"D5E16DD550CB4AD1B330E0D09B4B8F3F\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":2,
                                                "softwareVersionNumber":2.1,
                                                "fileStorageId":"456E7890E89B12D3A456426614174003",
                                                "studyId":"567E8901E89B12D3A456426614174004"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized user.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "UnauthorizedExample":{
                                        "summary":"Unauthorized or invalid user",
                                        "description":"UnauthorizedExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"User is unauthorized."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-reports-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-reports-post"
            },
            "delete":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Delete report based on query parameters",
                "description":"Removes an existing report based on the given input, using the Query parameter. <br><b>Right:</b> <i>ReportingDelete</i>.",
                "operationId":"archiveReport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"ID of the study for which you want to delete the generated report. Tenant reports, such as HSL report, can be deleted by making study ID as null.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "NoContent":{
                                        "summary":"Report deleted successfully",
                                        "description":"NoContent",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid parameters': 'Insufficient parameters'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "summary":"Bad request for report deletion",
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"400",
                                                "errorMessage":"Insufficient parameters"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"User not authorized: to download the report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "Unauthorized":{
                                        "summary":"Unauthorized deletion attempt",
                                        "description":"Unauthorized",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Not authorized to delete"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found:",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "NotFound":{
                                        "summary":"Resource not found for deletion",
                                        "description":"NotFound",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"404",
                                                "errorMessage":"Resource not found"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-reports-delete",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-reports-delete"
            }
        },
        "/ec-reporting-svc/rest/v1.0/studies/{studyId}/{mode}/reports/direct":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Generate report based on the direct report payload",
                "description":"Generates a direct report for a given study and mode, using the supplied report sections and data.",
                "operationId":"generateDirectReport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier in UUID hex format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Report identifier template (string, unique).",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Desired export format: HTML or PDF.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"HTML"
                    }
                ],
                "requestBody":{
                    "description":"Direct report payload containing all section data. Supply required fields; see example for structure.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DirectReportPayload"
                            },
                            "examples":{
                                "DirectReportRequest":{
                                    "summary":"Typical direct report generation request",
                                    "description":"DirectReportRequest",
                                    "value":{
                                        "reportSection":[
                                            {
                                                "rptName":"Subject Kit Dispensation",
                                                "rptSeq":1,
                                                "result":{
                                                    "count":2,
                                                    "data":[
                                                        [
                                                            "1001",
                                                            "2025-10-27",
                                                            "BASELINE"
                                                        ],
                                                        [
                                                            "1002",
                                                            "2025-10-29",
                                                            "FOLLOWUP"
                                                        ]
                                                    ],
                                                    "columns":[
                                                        "SubjectId",
                                                        "Date",
                                                        "VisitType"
                                                    ],
                                                    "headers":{
                                                        "siteNumbr":"S01",
                                                        "investigator":"Dr. Smith",
                                                        "shipmentNumbr":"123ABCXYZ"
                                                    }
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Direct report accepted for generation, returns execution log object.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "Accepted":{
                                        "summary":"Report execution response",
                                        "description":"Accepted",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"123E4567E89B12D3A456426614174000",
                                                "rptId":"234E5678E89B12D3A456426614174001",
                                                "versionStart":"2025-11-04T00:00:00.123Z",
                                                "runDuration":123456789,
                                                "userId":"345E6789E89B12D3A456426614174002",
                                                "versionEnd":"2025-11-04T01:00:00.789Z",
                                                "operationType":"INSERT",
                                                "reason":"Example: report run for E2E demo",
                                                "comment":"This is a user comment for audit.",
                                                "rptKickoffDatetime":"2025-11-04T00:00:00.000Z",
                                                "rptName":"Subject Listing",
                                                "rptStatCd":"SUCCESS",
                                                "rptFormat":"PDF",
                                                "recCount":12345,
                                                "currSearchSpec":"{\"study\":\"D5E16DD550CB4AD1B330E0D09B4B8F3F\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":2,
                                                "softwareVersionNumber":2.1,
                                                "fileStorageId":"456E7890E89B12D3A456426614174003",
                                                "studyId":"567E8901E89B12D3A456426614174004"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request: (missing or invalid payload or parameters).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "summary":"Missing required parameters or payload",
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_003",
                                                "errorMessage":"Missing required field: reportSection",
                                                "details":"Payload is null or incomplete."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized: or user lacks rights to generate report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "Unauthorized":{
                                        "summary":"User not authorized",
                                        "description":"Unauthorized",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_401",
                                                "errorMessage":"User not authorized",
                                                "details":"No access to requested report."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error:",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "ServerError":{
                                        "summary":"Unexpected exception",
                                        "description":"ServerError",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_500",
                                                "errorMessage":"Unexpected error occurred",
                                                "details":"Stack trace or further details"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-studies-{studyId}-{mode}-reports-direct-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-studies-studyid-mode-reports-direct-post"
            }
        },
        "/ec-reporting-svc/rest/v1.0/report/job/{jobId}":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Kickstart the generation of report",
                "description":"Invoked by Reporting retrial thread. This API starts the processing of report. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateReport",
                "parameters":[
                    {
                        "name":"jobId",
                        "in":"path",
                        "description":"Report job ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6A7C29DD011241DFBE1B64399283C860"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"ID of the study for which you want to generate report. Tenant reports, such as HSL report, can be generated by making study ID as null.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"CFD8129A430A473C8A02F4BA5DAAD865"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"ExtFieldSpecs request body for retriable jobs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ExtFieldSpecs"
                            },
                            "examples":{
                                "ExtFieldSpecsExample":{
                                    "summary":"Example retriable job request",
                                    "description":"ExtFieldSpecsExample",
                                    "value":{
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"runId",
                                                "fieldType":"string",
                                                "fieldValue":"RPT_JOB_1001"
                                            }
                                        ],
                                        "extFieldSpecsList":[
                                            {
                                                "fieldName":"sessionToken",
                                                "fieldType":"string",
                                                "fieldValue":"RETRY_001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "RetriableReportSuccess":{
                                        "summary":"A report retrial was accepted",
                                        "description":"RetriableReportSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"123e4567-e89b-12d3-a456-426614174000",
                                                "rptId":"234e5678-e89b-12d3-a456-426614174001",
                                                "versionStart":"2025-11-04T00:00:00Z",
                                                "runDuration":123456789,
                                                "userId":"345e6789-e89b-12d3-a456-426614174002",
                                                "versionEnd":"2025-11-04T01:00:00Z",
                                                "operationType":"INSERT",
                                                "reason":"Example: report run for E2E demo",
                                                "comment":"This is a user comment for audit.",
                                                "rptKickoffDatetime":"2025-11-04T00:00:00Z",
                                                "rptName":"Subject Listing",
                                                "rptStatCd":"SUCCESS",
                                                "rptFormat":"PDF",
                                                "recCount":12345,
                                                "currSearchSpec":"{\"study\":\"D5E16DD550CB4AD1B330E0D09B4B8F3F\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":2,
                                                "softwareVersionNumber":2.1,
                                                "fileStorageId":"456e7890-e89b-12d3-a456-426614174003",
                                                "studyId":"567e8901-e89b-12d3-a456-426614174004"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized user.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "RetriableReportUnauthorized":{
                                        "summary":"Unauthorized attempt for retrial",
                                        "description":"RetriableReportUnauthorized",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Not authorized for retrial"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-report-job-{jobId}-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-report-job-jobid-post"
            }
        },
        "/ec-reporting-svc/rest/v1.0/scheduled/reports":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Generate a scheduled report",
                "description":"Generates a report through a scheduler invocation, based on the given key-value pair of strings as JSON body and query parameters. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateScheduledReportByName",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"query",
                        "description":"Report Name",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Subject Data Extract"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Report ID",
                        "schema":{
                            "type":"string"
                        },
                        "example":"BABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Report file format to be generated.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CSV"
                    }
                ],
                "requestBody":{
                    "description":"Key-value pair request body for scheduled reports",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"string"
                            },
                            "examples":{
                                "ScheduledReportRequest":{
                                    "summary":"Example key-value map scheduled report request",
                                    "description":"ScheduledReportRequest",
                                    "value":{
                                        "reportName":"Subject Data Extract",
                                        "reportid":"BABB1234DD884FA1A9DC1AFDECBA1A35",
                                        "format":"CSV",
                                        "params":{
                                            "date":"2025-10-27",
                                            "type":"DATE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Success:",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "ScheduledReportSuccess":{
                                        "summary":"Report schedule accepted",
                                        "description":"ScheduledReportSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"123e4567-e89b-12d3-a456-426614174000",
                                                "rptId":"234e5678-e89b-12d3-a456-426614174001",
                                                "versionStart":"2025-11-04T00:00:00Z",
                                                "runDuration":123456789,
                                                "userId":"345e6789-e89b-12d3-a456-426614174002",
                                                "versionEnd":"2025-11-04T01:00:00Z",
                                                "operationType":"INSERT",
                                                "reason":"Example: report run for E2E demo",
                                                "comment":"This is a user comment for audit.",
                                                "rptKickoffDatetime":"2025-11-04T00:00:00Z",
                                                "rptName":"Subject Listing",
                                                "rptStatCd":"SUCCESS",
                                                "rptFormat":"PDF",
                                                "recCount":12345,
                                                "currSearchSpec":"{\"study\":\"D5E16DD550CB4AD1B330E0D09B4B8F3F\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":2,
                                                "softwareVersionNumber":2.1,
                                                "fileStorageId":"456e7890-e89b-12d3-a456-426614174003",
                                                "studyId":"567e8901-e89b-12d3-a456-426614174004"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Validation error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "ScheduledUnauthorized":{
                                        "summary":"User failed validation",
                                        "description":"ScheduledUnauthorized",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Validation failed for request"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-scheduled-reports-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-scheduled-reports-post"
            }
        },
        "/ec-reporting-svc/rest/v2.0/reports/download":{
            "get":{
                "tags":[
                    "Reporting/v2.0"
                ],
                "summary":"Download report for a given report job ID",
                "description":"Downloads a specific report for a given job ID and streams the result as a file attachment if successful. The response body is the file content and headers (such as Content-Disposition) are set for file download. Example response is shown for a CSV file.",
                "operationId":"downloadReport",
                "parameters":[
                    {
                        "name":"id",
                        "in":"query",
                        "description":"ID of the report job to download. This is mandatory",
                        "schema":{
                            "type":"string"
                        },
                        "example":"6A7C29DD011241DFBE1B64399283C860"
                    },
                    {
                        "name":"reportName",
                        "in":"query",
                        "description":"Report Name",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Subject Data Extract"
                    },
                    {
                        "name":"rptKickoffDatetime",
                        "in":"query",
                        "description":"Report Kickoff Date Time",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-06-04T11:27:52.014Z"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"ID of the study for which you want to download report. Tenant reports, such as HSL report, can be downloaded by making study ID as null.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"CFD8129A430A473C8A02F4BA5DAAD865"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success. The response will include the file data as an attachment, typically with headers: \n`Content-Disposition: attachment; filename=report.csv` \n`Content-Type: text/csv` (or appropriate for format requested)\n\nThe body contains the raw report file (for example, CSV data).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "description":"Report file content, streamed as a file. Example shown is CSV.",
                                    "format":"binary"
                                },
                                "examples":{
                                    "DownloadSuccess":{
                                        "summary":"A successful download response (CSV)",
                                        "description":"DownloadSuccess",
                                        "value":"\"SubjectId,Visit,Value\\n1001,Screening,42\\n1002,Baseline,28\\n\"\n// Downloaded as report.csv"
                                    }
                                }
                            },
                            "text/html":{
                                "schema":{
                                    "type":"string",
                                    "description":"Report file content, streamed as a file. Example shown is CSV.",
                                    "format":"binary"
                                },
                                "examples":{
                                    "DownloadSuccess":{
                                        "summary":"A successful download response (CSV)",
                                        "description":"DownloadSuccess",
                                        "value":"\"SubjectId,Visit,Value\\n1001,Screening,42\\n1002,Baseline,28\\n\"\n// Downloaded as report.csv"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid parameters', 'Insufficient parameters'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequestExample":{
                                        "summary":"Download bad request response",
                                        "description":"BadRequestExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid id or parameter"
                                            }
                                        }
                                    }
                                }
                            },
                            "text/html":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequestExample":{
                                        "summary":"Download bad request response",
                                        "description":"BadRequestExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid id or parameter"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"User not authorized to download the report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "UnauthorizedExample":{
                                        "summary":"Unauthorized download attempt",
                                        "description":"UnauthorizedExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Not allowed"
                                            }
                                        }
                                    }
                                }
                            },
                            "text/html":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "UnauthorizedExample":{
                                        "summary":"Unauthorized download attempt",
                                        "description":"UnauthorizedExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Not allowed"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "NotFoundExample":{
                                        "summary":"Resource not found",
                                        "description":"NotFoundExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found"
                                            }
                                        }
                                    }
                                }
                            },
                            "text/html":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "NotFoundExample":{
                                        "summary":"Resource not found",
                                        "description":"NotFoundExample",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v2.0-reports-download-get",
                "x-filename-id":"ec-reporting-svc-rest-v2.0-reports-download-get"
            }
        },
        "/ec-reporting-svc/rest/v2.0/studies/{studyId}/{mode}/reports/direct":{
            "post":{
                "tags":[
                    "Reporting/v2.0"
                ],
                "summary":"Generate report based on the direct report payload",
                "description":"Generate a direct report by passing data into payload as JSON with query parameters. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateDirectReport_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"ID of the study for which you want to generate report. Tenant reports, such as HSL report, can be generated by making study ID as null.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CFD8129A430A473C8A02F4BA5DAAD865"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Report ID",
                        "schema":{
                            "type":"string"
                        },
                        "example":"EDC92F315747471BB9852B6B8B904202"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Report format",
                        "schema":{
                            "type":"string"
                        },
                        "example":"HTML"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"object"
                            }
                        }
                    }
                },
                "responses":{
                    "202":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "Accepted":{
                                        "summary":"Generated report response",
                                        "description":"Accepted",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"2E1740822B1E41A08926B00E4B850A1F",
                                                "rptId":"1E1740822B1E41A08926B00E4B850A1F",
                                                "versionStart":"2025-06-04T11:27:52.123Z",
                                                "runDuration":789000,
                                                "userId":"EDC92F315747471BB9852B6B8B904202",
                                                "versionEnd":"2025-06-04T12:00:00.999Z",
                                                "operationType":"INSERT",
                                                "reason":"Initial run",
                                                "comment":"Successful report start.",
                                                "rptKickoffDatetime":"2025-06-04T11:27:52.000Z",
                                                "rptName":"Subject Kit Dispensation",
                                                "rptStatCd":"SUBMITTED",
                                                "rptFormat":"HTML",
                                                "recCount":100,
                                                "currSearchSpec":"{\"siteId\":\"SITE300\",\"subjectId\":\"SUBJ-789\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":2,
                                                "fileStorageId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "studyId":"CFD8129A430A473C8A02F4BA5DAAD865"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "summary":"Bad request",
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"400",
                                                "errorMessage":"Missing payload"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized user.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "Unauthorized":{
                                        "summary":"User not authorized to generate report",
                                        "description":"Unauthorized",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Unauthorized"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Empty payload.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "EmptyPayload":{
                                        "summary":"Payload was empty",
                                        "description":"EmptyPayload",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"500",
                                                "errorMessage":"Payload was empty."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v2.0-studies-{studyId}-{mode}-reports-direct-post",
                "x-filename-id":"ec-reporting-svc-rest-v2.0-studies-studyid-mode-reports-direct-post"
            }
        },
        "/ec-reporting-svc/rest/v2.0/scheduled/reports":{
            "post":{
                "tags":[
                    "Reporting/v2.0"
                ],
                "summary":"Generate a scheduled report",
                "description":"Generates a report through a scheduler invocation, based on the given key and list of values of strings as JSON body and query parameters. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateScheduledReportByName_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"query",
                        "description":"Report Name",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Subject Data Extract"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Report ID",
                        "schema":{
                            "type":"string"
                        },
                        "example":"4F1D07A2E6844F1198A0223935578D83"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Report file format to be generated.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"XLSX"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"object",
                                "additionalProperties":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "202":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ExecutionLog"
                                },
                                "examples":{
                                    "ScheduledSuccess":{
                                        "summary":"Scheduled report accepted and being processed",
                                        "description":"ScheduledSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "id":"4F1D07A2E6844F1198A0223935578D83",
                                                "rptId":"SUBJDATA",
                                                "versionStart":"2025-06-04T08:15:33.201Z",
                                                "runDuration":1200000,
                                                "userId":"C12A9EF1ABCD467B8D2310293F2E333A",
                                                "versionEnd":"2025-06-04T09:15:33.888Z",
                                                "operationType":"INSERT",
                                                "reason":"Scheduled",
                                                "comment":"Auto-triggered.",
                                                "rptKickoffDatetime":"2025-06-04T08:15:33.000Z",
                                                "rptName":"Subject Data Extract",
                                                "rptStatCd":"SUBMITTED",
                                                "rptFormat":"XLSX",
                                                "recCount":250,
                                                "currSearchSpec":"{\"siteId\":[\"SITE110\",\"SITE209\"],\"visit\":\"Screening\"}",
                                                "currSortSpec":"subjectId ASC",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":2,
                                                "fileStorageId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "studyId":"FDECBB9AFA001B1EA107D71A22D70121"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Validation error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "ScheduledUnauthorized":{
                                        "summary":"User failed validation for scheduled report",
                                        "description":"ScheduledUnauthorized",
                                        "value":{
                                            "status":"error",
                                            "errorData":{
                                                "errorCode":"401",
                                                "errorMessage":"Validation failed"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v2.0-scheduled-reports-post",
                "x-filename-id":"ec-reporting-svc-rest-v2.0-scheduled-reports-post"
            }
        },
        "/ec-reporting-svc/rest/v1.0/reportmetadata":{
            "get":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Get metadata for all reports based on query parameters",
                "description":"Retrieves all reporting metadata for the given study and mode. Returns a full list of ReportMetadataStatusContainer objects containing all details for the reporting templates for this study.",
                "operationId":"getAllReportingMetaData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successfully returned all reporting metadata.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "MetadataSuccessResponse":{
                                        "summary":"Success response with metadata list",
                                        "description":"MetadataSuccessResponse",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "reportId":"AABB1234DD884FA1A9DC1AFDECBA1A35",
                                                    "reportName":"Subject Data Extract",
                                                    "reportType":"Study",
                                                    "rptTypeSeq":1,
                                                    "rptSeq":100,
                                                    "fieldSpecsList":[
                                                        {
                                                            "fldId":"1A2B3C4D5E6F7890A1B2C3D4E5F67890",
                                                            "fieldName":"visit",
                                                            "reportSearchSpec":"visit:BASELINE",
                                                            "reportSortSpec":"visit:asc",
                                                            "fieldUiCtrlType":"dropdown",
                                                            "fieldPreftchUri":"/api/sites",
                                                            "mandatoryFldInd":true,
                                                            "fldSeq":1,
                                                            "fldUiLabel":"Visit",
                                                            "idFldName":"visitId",
                                                            "valFldName":"visitName",
                                                            "parFldId":"BBAACF7D12C245A2A59B1C23DEADBEEF",
                                                            "resultPath":"visits[0]",
                                                            "defaultValue":"SCREENING",
                                                            "hideInUI":"VISIBLE"
                                                        }
                                                    ],
                                                    "reportRunStatusList":[
                                                        {
                                                            "rptKickoffDatetime":"2025-10-27T10:00:00Z",
                                                            "rptFormat":"PDF",
                                                            "currSearchSpec":"siteId:SITE001",
                                                            "currSortSpec":"subjectId",
                                                            "downloadId":"BBAACF7D12C245A2A59B1C23DEADBEEF",
                                                            "rptId":"CDEE1234FAFB4EDE983293A0D98BEEFE"
                                                        }
                                                    ]
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request or study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "summary":"Invalid/missing studyId parameter",
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_003",
                                                "errorMessage":"Missing or invalid studyId",
                                                "details":"studyId is required and must be a valid UUID."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found: User not authorized for download or metadata not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "NotFound":{
                                        "summary":"Study or metadata not found",
                                        "description":"NotFound",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_404",
                                                "errorMessage":"No metadata found or user unauthorized",
                                                "details":"No matching reporting data for the study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "InternalError":{
                                        "summary":"Unexpected exception",
                                        "description":"InternalError",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_500",
                                                "errorMessage":"Unexpected error occurred",
                                                "details":"Stack trace or further details"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-reportmetadata-get",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-reportmetadata-get"
            }
        },
        "/ec-reporting-svc/rest/v2.0/reportmetadata/downloadList":{
            "get":{
                "tags":[
                    "Reporting/v2.0"
                ],
                "summary":"Get generated reports available for download",
                "description":"Retrieves the paginated list of download runs for a given study/report in v2.0. Specify parameters to control paging.",
                "operationId":"getDownloadList",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID, required)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"AABB1234DD884FA1A9DC1AFDECBA1A35"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"rptId",
                        "in":"query",
                        "description":"Reporting template identifier (UUID).",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"BBAACF7D12C245A2A59B1C23DEADBEEF"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Results paging start offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Requested maximum page size.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Query returned a paginated list of report runs.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedReportRunStatus"
                                },
                                "examples":{
                                    "DownloadListSuccess":{
                                        "summary":"Example paginated run data",
                                        "description":"DownloadListSuccess",
                                        "value":{
                                            "hasMore":"true",
                                            "totalResults":200,
                                            "count":50,
                                            "limit":50,
                                            "offset":0,
                                            "reportId":"AABB1234DD884FA1A9DC1AFDECBA1A35",
                                            "reportRunStatusList":[
                                                {
                                                    "rptKickoffDatetime":"2025-10-27T10:00:00Z",
                                                    "rptFormat":"PDF",
                                                    "currSearchSpec":"siteId:SITE001",
                                                    "currSortSpec":"subjectId",
                                                    "downloadId":"BBAACF7D12C245A2A59B1C23DEADBEEF",
                                                    "rptId":"CDEE1234FAFB4EDE983293A0D98BEEFE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameter/validation error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "DownloadListBadRequest":{
                                        "summary":"Missing required parameters or invalid input.",
                                        "description":"DownloadListBadRequest",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_003",
                                                "errorMessage":"Missing or invalid 'limit' value.",
                                                "details":"limit parameter must be greater than 0."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User not authorized to view download list.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "DownloadListForbidden":{
                                        "summary":"User is not authorized",
                                        "description":"DownloadListForbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_401",
                                                "errorMessage":"User not authorized",
                                                "details":"No access to requested study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v2.0-reportmetadata-downloadList-get",
                "x-filename-id":"ec-reporting-svc-rest-v2.0-reportmetadata-downloadlist-get"
            }
        },
        "/ec-reporting-svc/rest/v1.0/crf/reports":{
            "post":{
                "tags":[
                    "Reporting/v1.0"
                ],
                "summary":"Aggregate data for Oracle CRF Submit",
                "description":"Provides the aggregated/collated data based on the given query parameters. Submit required field specifications in the request body. <br><b>Right:</b> <i>ReportingPost</i>.",
                "operationId":"generateReportForCrf",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"query",
                        "description":"Report name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"CRF_SUBJECT_DATA"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier. Provide as uppercase HEX UUID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study. Accepts test, active, or training.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Format CASEBOOK or UNIQUE",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CASEBOOK"
                    }
                ],
                "requestBody":{
                    "description":"Payload of field specifications for CRF report generation.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ExtFieldSpecs"
                            },
                            "examples":{
                                "FullRequest":{
                                    "summary":"CRF Report Generation Request",
                                    "description":"FullRequest",
                                    "value":{
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"format",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "CASEBOOK"
                                                ]
                                            }
                                        ],
                                        "extFieldSpecsList":[
                                            {
                                                "fieldName":"visit",
                                                "fieldType":"string",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "SCREENING",
                                                    "BASELINE"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success Returns a BaseResponse containing an ODM object.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ODM1"
                                },
                                "examples":{
                                    "Success":{
                                        "summary":"Success BaseResponse with populated ODM",
                                        "description":"Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "study":[
                                                    {
                                                        "globalVariables":{
                                                            "studyName":{
                                                                "value":"PHASE3_DIABETES_2025"
                                                            },
                                                            "studyDescription":{
                                                                "value":"Randomized, double-blind, multicenter phase 3 trial for diabetes treatment"
                                                            },
                                                            "protocolName":{
                                                                "value":"P-2024-0001"
                                                            }
                                                        },
                                                        "basicDefinitions":{
                                                            "measurementUnit":[
                                                                {
                                                                    "symbol":{
                                                                        "translatedText":[
                                                                            {
                                                                                "lang":"en",
                                                                                "value":"mg/dL"
                                                                            }
                                                                        ]
                                                                    },
                                                                    "alias":[
                                                                        {
                                                                            "context":"US",
                                                                            "name":"mg per deciliter"
                                                                        }
                                                                    ],
                                                                    "oid":"F71C0A5ED4E448EFB2A7A2B716A39216",
                                                                    "name":"mg/dL"
                                                                }
                                                            ]
                                                        },
                                                        "metaDataVersion":[
                                                            {
                                                                "versionOID":"MDV1"
                                                            }
                                                        ],
                                                        "oid":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                    }
                                                ],
                                                "adminData":[
                                                    {
                                                        "user":[
                                                            {
                                                                "loginName":{
                                                                    "value":"INVEST001"
                                                                },
                                                                "displayName":{
                                                                    "value":"Dr. J. Smith"
                                                                },
                                                                "fullName":{
                                                                    "value":"John Smith"
                                                                },
                                                                "firstName":{
                                                                    "value":"John"
                                                                },
                                                                "lastName":{
                                                                    "value":"Smith"
                                                                },
                                                                "organization":{
                                                                    "value":"Site 101 Hospital"
                                                                },
                                                                "address":[
                                                                    {
                                                                        "streetName":[
                                                                            {
                                                                                "value":"123 Main St"
                                                                            }
                                                                        ],
                                                                        "city":{
                                                                            "value":"Anytown"
                                                                        },
                                                                        "stateProv":{
                                                                            "value":"California"
                                                                        },
                                                                        "country":{
                                                                            "value":"USA"
                                                                        },
                                                                        "postalCode":{
                                                                            "value":"90001"
                                                                        },
                                                                        "otherText":{
                                                                            "value":"Apt 4B"
                                                                        }
                                                                    }
                                                                ],
                                                                "email":[
                                                                    {
                                                                        "value":"john.smith@email.com"
                                                                    }
                                                                ],
                                                                "picture":{
                                                                    "pictureFileName":"photo.jpg",
                                                                    "imageType":"image/jpeg"
                                                                },
                                                                "pager":{
                                                                    "value":"555-1234"
                                                                },
                                                                "fax":[
                                                                    {
                                                                        "value":"555-5678"
                                                                    }
                                                                ],
                                                                "phone":[
                                                                    {
                                                                        "value":"555-9876"
                                                                    }
                                                                ],
                                                                "locationRef":[
                                                                    {
                                                                        "locationOID":"LOC101"
                                                                    }
                                                                ],
                                                                "certificate":[
                                                                    {
                                                                        "value":"CERT123"
                                                                    }
                                                                ],
                                                                "oid":"A8C41D8062A14FCC89EDA475C3E3AF12",
                                                                "userType":"INVESTIGATOR"
                                                            }
                                                        ],
                                                        "location":[
                                                            {
                                                                "locationOID":"LOC101",
                                                                "locationName":"Site 101 Hospital"
                                                            }
                                                        ],
                                                        "signatureDef":[
                                                            {
                                                                "sigType":"Data Entry"
                                                            }
                                                        ],
                                                        "studyOID":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                                                    }
                                                ],
                                                "referenceData":[
                                                    {
                                                        "refType":"Protocol",
                                                        "refValue":"P-2024-0001"
                                                    }
                                                ],
                                                "clinicalData":[
                                                    {
                                                        "subjectOID":"E2C181FD82B446F19ED8792A73E7C780",
                                                        "visit":"Screening",
                                                        "crf":[
                                                            {
                                                                "crfName":"Vitals",
                                                                "itemGroup":[
                                                                    {
                                                                        "itemName":"Blood Glucose",
                                                                        "value":"130"
                                                                    }
                                                                ]
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "association":[
                                                    {
                                                        "assocType":"INVESTIGATOR",
                                                        "assocId":"91FB3223E8274C47A6B371E1FBA91568"
                                                    }
                                                ],
                                                "signature":[
                                                    {
                                                        "signedBy":"Dr. Smith",
                                                        "signatureType":"Data Entry",
                                                        "dateTime":"2025-10-28T12:00:00Z"
                                                    }
                                                ],
                                                "description":"CRF Report ODM data for sample study.",
                                                "fileType":"CASEBOOK",
                                                "granularity":"ALL",
                                                "archival":"YES",
                                                "fileOID":"FFBAA1C5287D40679B1ED676151C7F63",
                                                "creationDateTime":"2025-10-27T10:00:00Z",
                                                "priorFileOID":"9678B5A2C18C4A20A1400729839CC661",
                                                "asOfDateTime":"2025-10-26T23:59:59Z",
                                                "odmVersion":"1.3.2",
                                                "originator":"ORACLE_CDM_SYSTEM",
                                                "sourceSystem":"ClinicalOne",
                                                "sourceSystemVersion":"v3.0.0",
                                                "id":"71C8CED11E264FFDB165B07AF5117602"
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request : Required fields missing or invalid.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "summary":"Missing or invalid input",
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_003",
                                                "errorMessage":"Missing required field: siteIds",
                                                "details":"fieldSpecsList is null or incomplete"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"Unauthorized : User lacks access.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "Unauthorized":{
                                        "summary":"Unauthorized",
                                        "description":"Unauthorized",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_401",
                                                "errorMessage":"User not authorized",
                                                "details":"No access to requested study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal Server Error : Unexpected server failure.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BaseResponse"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "summary":"Unexpected error",
                                        "description":"InternalServerError",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REPT_500",
                                                "errorMessage":"Unexpected error occurred",
                                                "details":"Stack trace or further details"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-reporting-svc-rest-v1.0-crf-reports-post",
                "x-filename-id":"ec-reporting-svc-rest-v1.0-crf-reports-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/codingstatus":{
            "get":{
                "tags":[
                    "Data Integration/Coding Status/Get data elements to be coded by code type"
                ],
                "summary":"v1.0",
                "description":"Retrieves data elements to be coded based on codeType parameter.",
                "operationId":"getVerbatimTerms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"codeType",
                        "in":"query",
                        "description":"Type of coded questions to be fetched. Allowed values: NeedsCodingOrDeleted and NeedsCoding.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"NeedsCodingOrDeleted"
                    },
                    {
                        "name":"bookMark",
                        "in":"query",
                        "description":"Pagination bookmark for fetching the next page of coded data",
                        "schema":{
                            "type":"string"
                        },
                        "example":"NEXT_PAGE_TOKEN_001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CodedDataDTO"
                                    }
                                },
                                "examples":{
                                    "CodedDataList":{
                                        "description":"CodedDataList",
                                        "value":[
                                            {
                                                "subjectInitials":"JD",
                                                "siteName":"Main Site",
                                                "siteMnemonic":"SITE001",
                                                "formRefName":"AE_FORM",
                                                "formName":"Adverse Events",
                                                "itemRefName":"AE_TERM",
                                                "itemName":"Adverse Event Term",
                                                "eventRefName":"VISIT_1",
                                                "eventName":"Visit 1",
                                                "Id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "studyVersion":"v1.0",
                                                "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                "visitId":"699EF3745FC545589F186D2198F3C65E",
                                                "siteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "itemId":"D4E5F6A1B2C347839ABCDEF012345678",
                                                "formId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                "value":"Headache",
                                                "subjectNumber":"SUBJ-0001",
                                                "context":"{}",
                                                "verstionStart":"2023-01-01T09:00:00Z",
                                                "dataElementId":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-codingstatus-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-codingstatus-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/history/{dataElementId}":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get the audit history for a data element with sign verify history"
                ],
                "summary":"v1.0",
                "description":"Retrieves the audit history for a data element. This api returns records with sign/verify history.",
                "operationId":"getDataElementAuditHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"dataElementId",
                        "in":"path",
                        "description":"The unique identifier of the data element for which to retrieve audit history.The format of the id should be UUID, 32-character uppercase hexadecimal string",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DataElementDto11List":{
                                        "description":"DataElementDto11List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-31T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F4229A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "itemType":"TEXT",
                                                "itemD":"DETAIL",
                                                "itemF":"FLAG",
                                                "itemR":"REASON",
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.7F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.8F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                                                ],
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-history-{dataElementId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-history-dataelementid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/dataelements":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements for a visit and form combination"
                ],
                "summary":"v1.0",
                "description":"Filters and retrieves data elements for form data in an event. This supports the start date for Integration Hub. If a start date is provided, it returns the snapshot of data elements just before start date. In the case when the current query parameter is set to true, this will return the latest data.",
                "operationId":"getDataElementsByFormIDSubjectId4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"current",
                        "in":"query",
                        "description":"If set to true, it returns the current data. Else, it returns the data just before the visit is complete.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The date for which you want to retrieve the data values.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementDto50List":{
                                        "description":"DataElementDto50List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.0123456789ABCDEF0123456789ABCDEF",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.0123456789ABCDEF0123456789ABCDEF"
                                                ],
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-dataelements-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-forms-formid-subjects-subjectid-dataelements-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements for one or multiple subjects and their visits"
                ],
                "summary":"v1.0",
                "description":"Retrieves all data elements for a subject and a visit or for all subjects and all of their visits.",
                "operationId":"getDataElementsByStudyId",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"includeSignVerifyFreeze",
                        "in":"query",
                        "description":"Include sign, verify and freeze status related changes in the response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DataElementDto11List":{
                                        "description":"DataElementDto11List",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"E5F6A7B8C9D04123E1F2A3B4C5D60015",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"35",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":35,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"NUMERIC",
                                                    "itemD":null,
                                                    "itemF":"35",
                                                    "itemR":"35",
                                                    "repeatFormNumber":3
                                                },
                                                {
                                                    "id":"0E8187CF9D6046F38064195AAE332C6A",
                                                    "versionStart":"2022-05-11T13:16:47.182Z",
                                                    "transactionStart":null,
                                                    "transactionEnd":null,
                                                    "validationStatus":"SUCCESS",
                                                    "validationFailure":null,
                                                    "studyId":"A1B2C3D4E5F64123A7B8C9D0E1F20011",
                                                    "studyName":"SignVerifyRegStudy",
                                                    "studyVersion":"2.0.0.6",
                                                    "subjectId":"B2C3D4E5F6A74123B8C9D0E1F2A30012",
                                                    "eventId":"C3D4E5F6A7B84123C9D0E1F2A3B40013",
                                                    "formId":"D4E5F6A7B8C94123D0E1F2A3B4C50014",
                                                    "formSectionId":null,
                                                    "repeatSequenceNumber":null,
                                                    "itemId":"B8C9D0E1F2A34123B4C5D6E7F8A90018",
                                                    "siteId":"F6A7B8C9D0E14123F2A3B4C5D6E70016",
                                                    "variableId":null,
                                                    "originatorId":null,
                                                    "vendorCode":"EIN:2022-02-02;RFN:Form3",
                                                    "value":"[{\"value\":\"1\",\"label\":\"Yes\"}]",
                                                    "measureUnit":null,
                                                    "normalizedValue":null,
                                                    "normalizedUnitId":null,
                                                    "numValue":null,
                                                    "floatValue":null,
                                                    "dateTimeValueUTC":null,
                                                    "monthValue":null,
                                                    "dayValue":null,
                                                    "yearValue":null,
                                                    "hourValue":null,
                                                    "minuteValue":null,
                                                    "secondValue":null,
                                                    "parentId":null,
                                                    "rootId":null,
                                                    "userId":"A7B8C9D0E1F24123A3B4C5D6E7F80017",
                                                    "reason":null,
                                                    "comment":null,
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":8,
                                                    "eventInstanceNum":2,
                                                    "targets":[
                                                    ],
                                                    "dataFlag":null,
                                                    "signedStatus":null,
                                                    "verifiedStatus":null,
                                                    "freezedStatus":null,
                                                    "propertyId":null,
                                                    "propertyVersionStart":null,
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "itemType":"CHOICE",
                                                    "itemD":"1",
                                                    "itemF":"Yes",
                                                    "itemR":"Yes",
                                                    "repeatFormNumber":3
                                                }
                                            ],
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/all":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements history with pagination"
                ],
                "summary":"v1.0",
                "description":"Retrieves all data elements with history for a subject and a visit or for all subjects and all of their visits.",
                "operationId":"getDataElementsByStudyId_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"includeSVI",
                        "in":"query",
                        "description":"Boolean attribute to indicate whether Subject Visit Information (SVI) should be included or not.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fetchOnlyTwoSecForms",
                        "in":"query",
                        "description":"???Limits the response to only include data from two sections forms. Set to true to apply this limitation",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fetchOnlyLabForms",
                        "in":"query",
                        "description":"Limits the response to only include data from lab forms. Set to true to apply this limitation.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto120"
                                    }
                                },
                                "examples":{
                                    "DataElementDto120List":{
                                        "description":"DataElementDto120List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-31T09:00:00Z",
                                                        "transactionStart":"2023-01-01T09:00:00Z",
                                                        "transactionEnd":"2023-01-01T10:00:00Z",
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":"",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "studyName":"STUDY-ABC",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectId":"10F75668189F422F9A461A315D211111",
                                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                        "eventInstanceNum":1,
                                                        "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                        "repeatSequenceNumber":1,
                                                        "repeatFormNumber":2,
                                                        "innerRepeat":0,
                                                        "outerRepeat":0,
                                                        "formStatus":"COMPLETED",
                                                        "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                        "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                        "vendorCode":"VENDOR1",
                                                        "value":"120",
                                                        "measureUnit":"mg/dL",
                                                        "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "targets":[
                                                            "A78AD8C31CD843CD8B847C06C0420FF5.B78AD8C31CD843CD8B847C06C0420FF5",
                                                            "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.B78AD8C31CD843CD8B847C06C0420FF5"
                                                        ],
                                                        "numValue":120,
                                                        "floatValue":12.34,
                                                        "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                        "monthValue":10,
                                                        "dayValue":16,
                                                        "yearValue":2025,
                                                        "hourValue":14,
                                                        "minuteValue":30,
                                                        "secondValue":31,
                                                        "itemType":"TEXT",
                                                        "itemD":"DETAIL",
                                                        "itemF":"FLAG",
                                                        "itemR":"REASON",
                                                        "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "reason":"Initial entry",
                                                        "comment":"Captured by device",
                                                        "operationType":"MODIFIED",
                                                        "objectVersionNumber":14,
                                                        "softwareVersionNumber":14,
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                        "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves data elements for a list of items. Separate the item IDs with commas.The response in V2.0 has one more field than V1.0 operationType.",
                "operationId":"getDataElementsBySubjectIdItemIds3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response, separated by comma.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF,40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementDto50List":{
                                        "description":"DataElementDto50List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.ABCDEF1234567890ABCDEF1234567890",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.ABCDEF1234567890ABCDEF1234567890"
                                                ],
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataelements/subjectId/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data element records for subject inserted or updated after visit completion for a given date range"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the data elements records for a subject inserted or updated after a visit completion and for a particular date range. This API is developed based on the downstream services like Digital Gateway requirements.",
                "operationId":"getDatatElementsForChngEvntInRangeBySubjectId",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"30-Jan-2023 17:00:00.000"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"31-Jan-2023 17:00:00.000"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto50"
                                    }
                                },
                                "examples":{
                                    "DataElementDto50List":{
                                        "description":"DataElementDto50List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.0123456789ABCDEF0123456789ABCDEF",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.0123456789ABCDEF0123456789ABCDEF"
                                                ],
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataelements-subjectId-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-subjectid-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/visit/{visitId}/deleted/dataelements":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements that have been deleted"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of data elements that have been deleted, mainly used for repeating forms and two sections forms",
                "operationId":"getDeletedItemsForAVisit",
                "parameters":[
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto120"
                                    }
                                },
                                "examples":{
                                    "DataElementDto120List":{
                                        "description":"DataElementDto120List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-31T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "innerRepeat":0,
                                                "outerRepeat":0,
                                                "formStatus":"REMOVED",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "itemType":"TEXT",
                                                "itemD":"DETAIL",
                                                "itemF":"FLAG",
                                                "itemR":"REASON",
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "reason":"Removed during cleanup",
                                                "comment":"Visit deleted",
                                                "operationType":"REMOVED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.2BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                ],
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-visit-{visitId}-deleted-dataelements-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-visit-visitid-deleted-dataelements-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/dataElements/subjects/{subjectId}/documentDetails":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get document details for a subject"
                ],
                "summary":"v1.0",
                "description":"This API retrieves data elements associated with a subject, including their document details like documentId and documentVersion, within a specified date range.",
                "operationId":"getDocumentDetailsForSubject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto123"
                                    }
                                },
                                "examples":{
                                    "DataElementDto123List":{
                                        "description":"DataElementDto123List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-31T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "innerRepeat":0,
                                                "outerRepeat":0,
                                                "formStatus":"COMPLETED",
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "itemType":"TEXT",
                                                "itemD":"DETAIL",
                                                "itemF":"FLAG",
                                                "itemR":"REASON",
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "documentId":"93CC828113AC439181071CB44D2C6FE5",
                                                "documentVersion":1,
                                                "validationRules":[
                                                ],
                                                "clearedLabs":[
                                                ],
                                                "clearedChildDataElements":[
                                                ],
                                                "dataEventType":"FORM_RESTORED",
                                                "affidavitCodeValue":"AFFIDAVIT_CODE_1",
                                                "visitStartDateLockedStatus":"LOCKED",
                                                "visitStartDateLockedDateTime":"2023-01-01T09:00:00Z",
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.2BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                ],
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"SIGNED",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "hdiId":"HDI1234567890",
                                                "lockedStatus":"LOCKED",
                                                "lockedDateTime":"2023-01-01T09:00:00Z",
                                                "sourceTimeStamp":"2023-01-01T08:59:59Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-dataElements-subjects-{subjectId}-documentDetails-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-dataelements-subjects-subjectid-documentdetails-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/formassociations":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get form associations by study ID"
                ],
                "summary":"v1.0",
                "description":"This API retrieves a list of form associations for a given study, filtered by parameters such as subject ID, event ID, and event instance number. The response includes a paginated list of form associations, containing details about the source and associated forms, events, and subjects.",
                "operationId":"getFormAssociations",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormsAssociationsHistoryDto2"
                                    }
                                },
                                "examples":{
                                    "PaginatedFormsAssociationsHistoryDto2List":{
                                        "description":"PaginatedFormsAssociationsHistoryDto2List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":2,
                                                "count":1,
                                                "limit":10,
                                                "offset":1,
                                                "resultData":[
                                                    {
                                                        "id":"6EA5909F111340EDB5972E3E4F751E99",
                                                        "versionStart":"2023-02-01T02:12:23.691Z",
                                                        "objectVersionNumber":1,
                                                        "subjectId":"4C1A9F82B2E84971A6C0C7AB1F6F9A3D",
                                                        "siteId":"F0E3A1C993F54E6B820FA3241F447D82",
                                                        "srcEventId":"D1B7E2C4AF0B49C7A89E3E4C9D77F331",
                                                        "srcEventInstanceNum":null,
                                                        "srcFormId":"A3F9B8C12E6D4A87B913F55E0F44A9DC",
                                                        "srcRepeatSequenceNumber":1,
                                                        "srcStudyVersion":"1.3.0.8",
                                                        "associatedEventId":"D1B7E2C4AF0B49C7A89E3E4C9D77F331",
                                                        "associatedEventInstanceNum":null,
                                                        "associatedFormId":"0C3E2B1F9A8846F4A2C8E5D7B1F23A44",
                                                        "associatedRepeatSequenceNumber":null,
                                                        "associatedStudyVersion":"1.3.0.8",
                                                        "reason":null,
                                                        "comment":null,
                                                        "srcItemId":"71C4E9B2F0DA49AB8D3F11C6E77A5F2B",
                                                        "operationType":"CREATED",
                                                        "userId":"TESTUSER10",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "softwareVersionNumber":1,
                                                        "srcFormSectionId":null,
                                                        "associatedFormSectionId":null,
                                                        "srcRepeatFormNumber":null,
                                                        "associatedRepeatFormNumber":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-formassociations-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-formassociations-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/formStatus":{
            "put":{
                "tags":[
                    "Data Integration/Data Elements/Get form statuses for list of event or form IDs"
                ],
                "summary":"v1.0",
                "description":"This endpoint retrieves the status of forms associated with a specific subject in a study. It requires the study ID, subject ID, and a list of form details to fetch the status for. The response includes the form status for each form specified in the request.",
                "operationId":"getFormStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDetailsRequestDto"
                            },
                            "examples":{
                                "FormDetailsRequestDto":{
                                    "description":"FormDetailsRequestDto",
                                    "value":{
                                        "formDetails":[
                                            {
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "eventInstanceNum":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormStatusDto"
                                    }
                                },
                                "examples":{
                                    "FormStatusDtoList":{
                                        "description":"FormStatusDtoList",
                                        "value":[
                                            {
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "outerRepeat":0,
                                                "eventInstanceNum":1,
                                                "formStatus":"COMPLETED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-formStatus-put",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-formstatus-put"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/subjects/{subjectId}/events/{eventId}/vendorCode/{vendorCode}/dataelements/withvendorcode":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code"
                ],
                "summary":"v1.0",
                "description":"Retrieves data elements based on form ID, Subject ID, Event ID and Vendor code.",
                "operationId":"getDataElementsForVendorCode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"DEFDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EFGDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"vendorCode",
                        "in":"path",
                        "description":"Unique identifier assigned to an external vendor participating in the clinical trial.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Vendor123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DataElementsByVendorCodeResponse":{
                                        "description":"DataElementsByVendorCodeResponse",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-31T09:00:00Z",
                                                "transactionStart":"2023-01-01T09:00:00Z",
                                                "transactionEnd":"2023-01-01T10:00:00Z",
                                                "validationStatus":"SUCCESS",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "eventInstanceNum":1,
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "repeatFormNumber":2,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.2BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                ],
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "itemType":"TEXT",
                                                "itemD":"DETAIL",
                                                "itemF":"FLAG",
                                                "itemR":"REASON",
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "freezedStatus":"UNFROZEN",
                                                "signedStatus":"UNSIGNED",
                                                "verifiedStatus":"UNVERIFIED",
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"2-svc-rest-v1.0-studies-{studyId}-{mode}-forms-{formId}-subjects-{subjectId}-events-{eventId}-vendorCode-{vendorCode}-dataelements-withvendorcode-get",
                "x-filename-id":"2-svc-rest-v1.0-studies-studyid-mode-forms-formid-subjects-subjectid-events-eventid-vendorcode-vendorcode-dataelements-withvendorcode-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/lock/subjects":{
            "get":{
                "tags":[
                    "Data Integration/Subjects Lock Status/Get subject lock status for given subject list"
                ],
                "summary":"v1.0",
                "description":"Retrieves latest lock status for all subjects under a study.",
                "operationId":"getAllSubjectsLockStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"E3E70682E5F7473E8D39BB0D7B1A3B52"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"starting offset",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"number of records",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "default":5000
                        },
                        "example":5000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "schema":{
                            "type":"string",
                            "default":"DESC"
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LockedStatusDTO"
                                    }
                                },
                                "examples":{
                                    "LockedStatusList":{
                                        "description":"LockedStatusList",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-01T10:00:00Z",
                                                "operationType":"MODIFIED",
                                                "userId":"225B79C982104415886DE02BC73C1E1E",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":300,
                                                "reason":"Bulk lock",
                                                "comment":"Locked by data manager",
                                                "siteID":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "formId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                "eventId":"D4E5F6A1B2C347839ABCDEF012345678",
                                                "repeatSequenceNumber":0,
                                                "itemId":"0F1E2D3C4B5A69788796A5B4C3D2E1F0",
                                                "formSectionId":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12",
                                                "repeatFormNumber":0,
                                                "innerRepeat":0,
                                                "outerRepeat":0,
                                                "action":"LOCKED",
                                                "visitStartDateAction":"SCREEN_ENABLE",
                                                "studyVersion":"1.0.0.3",
                                                "eventInstanceNum":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-lock-subjects-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-lock-subjects-get"
            },
            "post":{
                "tags":[
                    "Data Integration/Subjects Lock Status/Add subject lock status for given subject list"
                ],
                "summary":"v1.0",
                "description":"API to fetch subject lock status for given subject list.",
                "operationId":"getSubjectLockStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Payload containing list of subjects to fetch lock status",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectLockRequestDTO"
                            },
                            "examples":{
                                "SubjectLockRequest":{
                                    "description":"SubjectLockRequest",
                                    "value":{
                                        "subjects":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataActionsDTO"
                                    }
                                },
                                "examples":{
                                    "DataActionsList":{
                                        "description":"DataActionsList",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-01T10:00:00Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"225B79C982104415886DE02BC73C1E1E",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":300,
                                                        "reason":"Bulk lock",
                                                        "comment":"Locked by data manager",
                                                        "siteID":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                        "formId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                        "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                        "eventId":"D4E5F6A1B2C347839ABCDEF012345678",
                                                        "repeatSequenceNumber":0,
                                                        "itemId":"0F1E2D3C4B5A69788796A5B4C3D2E1F0",
                                                        "formSectionId":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12",
                                                        "repeatFormNumber":0,
                                                        "innerRepeat":0,
                                                        "outerRepeat":0,
                                                        "action":"LOCKED",
                                                        "visitStartDateAction":"SCREEN_ENABLE",
                                                        "studyVersion":"1.0.0.3",
                                                        "eventInstanceNum":1
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-lock-subjects-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-lock-subjects-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/lockedstatus":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get Latest lock records for all subjects in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves latest lock records for all subjects in a study.",
                "operationId":"getLockData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"E3E70682E5F7473E8D39BB0D7B1A3B52"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"F1E2D3C4B5A69788796A5B4C3D2E1F0A"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    {
                        "name":"itemId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"0F1E2D3C4B5A69788796A5B4C3D2E1F0"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":1
                    },
                    {
                        "name":"outerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":0
                    },
                    {
                        "name":"innerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "schema":{
                            "type":"integer"
                        },
                        "example":0
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"asc or desc",
                        "schema":{
                            "type":"string"
                        },
                        "example":"DESC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LockedStatusDTO"
                                    }
                                },
                                "examples":{
                                    "LockedStatusList":{
                                        "description":"LockedStatusList",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-01T10:00:00Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"699EF3745FC545589F186D2198F3C65E",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":300,
                                                        "reason":"Site audit lock",
                                                        "comment":"Locked for monitoring",
                                                        "siteID":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                        "formId":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A",
                                                        "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                        "eventId":"D4E5F6A1B2C347839ABCDEF012345678",
                                                        "repeatSequenceNumber":0,
                                                        "itemId":"0F1E2D3C4B5A69788796A5B4C3D2E1F0",
                                                        "formSectionId":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12",
                                                        "repeatFormNumber":0,
                                                        "innerRepeat":0,
                                                        "outerRepeat":0,
                                                        "action":"LOCKED",
                                                        "visitStartDateAction":"SCREEN_ENABLE",
                                                        "studyVersion":"1.0.0.3",
                                                        "eventInstanceNum":1
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-lockedstatus-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-lockedstatus-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/properties/history":{
            "get":{
                "tags":[
                    "Data Integration/DCProperties APIs/Get Data Capture properties history"
                ],
                "summary":"v1.0",
                "description":"Retrieves Data Capture properties history.",
                "operationId":"getDCPropertiesHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"propertyId",
                        "in":"query",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/PropertyDto1"
                                    }
                                },
                                "examples":{
                                    "PaginatedPropertyHistory":{
                                        "description":"PaginatedPropertyHistory",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":3,
                                                "count":3,
                                                "limit":5,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1AAE6996C0574E1487A7DA1999DCE978",
                                                        "versionStart":"2023-04-13T16:38:25.364Z",
                                                        "propertyType":"CODING_PROPERTY",
                                                        "propertyKey":"4ADE8BE8019A4B93BC3A389ABC9D5B1D",
                                                        "propertyValue":"VerbQues1",
                                                        "propertyAttr":"{}",
                                                        "propertyStatus":"1",
                                                        "reason":null,
                                                        "comment":null,
                                                        "versionEnd":"2023-04-13T16:38:29.366Z",
                                                        "operationType":"CREATED",
                                                        "userId":"D4F8A1BC22EF4A8C9D77F112AA33CC55",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":null
                                                    },
                                                    {
                                                        "id":"1AAE6996C0574E1487A7DA1999DCE978",
                                                        "versionStart":"2023-04-13T16:38:29.366Z",
                                                        "propertyType":"CODING_PROPERTY",
                                                        "propertyKey":"4ADE8BE8019A4B93BC3A389ABC9D5B1D",
                                                        "propertyValue":"verb1update",
                                                        "propertyAttr":"{}",
                                                        "propertyStatus":"1",
                                                        "reason":null,
                                                        "comment":null,
                                                        "versionEnd":"2023-04-13T16:38:31.593Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"D4F8A1BC22EF4A8C9D77F112AA33CC55",
                                                        "objectVersionNumber":2,
                                                        "softwareVersionNumber":null
                                                    },
                                                    {
                                                        "id":"1AAE6996C0574E1487A7DA1999DCE978",
                                                        "versionStart":"2023-04-13T16:38:31.593Z",
                                                        "propertyType":"CODING_PROPERTY",
                                                        "propertyKey":"4ADE8BE8019A4B93BC3A389ABC9D5B1D",
                                                        "propertyValue":null,
                                                        "propertyAttr":"{}",
                                                        "propertyStatus":"1",
                                                        "reason":null,
                                                        "comment":null,
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"D4F8A1BC22EF4A8C9D77F112AA33CC55",
                                                        "objectVersionNumber":3,
                                                        "softwareVersionNumber":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-properties-history-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-properties-history-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/asynch/report/{reportName}":{
            "post":{
                "tags":[
                    "Data Integration/Subject Reports/Generate report for a subject's data and events (Asynchronous)"
                ],
                "summary":"v1.0",
                "description":"Asynchronous call to generates a report for the subject's data and events and to calculate projected dispensation date: DC_SUBJECT_EVENTS, DC_SUBJECT_DATA, DC_SUBJECT_DATA_OPTION3,DC_STUDY_SETTINGS,DC_SUBJECT_SETTINGS,DC_SDV_SETTINGS,DC_SDV_STRATEGIES,DC_ENROLLMENT_SETTINGS,DC_SCREEN_RAND_LIMIT_COUNTRY,DC_VISIT_SETTINGS_REPORT,DC_CUSTOM_ENROLLMENT_SETTINGS,DC_VISIT_SETTINGS,DC_PROJECTEDVISITDATE..",
                "operationId":"generateAsynchDcsReport10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Name of the report to generate: DC_SUBJECT_EVENTS, DC_SUBJECT_DATA, DC_SUBJECT_DATA_OPTION3,DC_STUDY_SETTINGS,DC_SUBJECT_SETTINGS,DC_SDV_SETTINGS,DC_SDV_STRATEGIES,DC_ENROLLMENT_SETTINGS,DC_SCREEN_RAND_LIMIT_COUNTRY,DC_VISIT_SETTINGS_REPORT,DC_CUSTOM_ENROLLMENT_SETTINGS,DC_VISIT_SETTINGS,DC_PROJECTEDVISITDATE.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DC_SUBJECT_DATA"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"Unique report identifier",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"File type for data extract.File Type supported are CSV, HTML and PDF",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CSV"
                    }
                ],
                "requestBody":{
                    "description":"Filters to apply.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ExtFieldSpecs"
                            },
                            "examples":{
                                "ExtFieldSpecs":{
                                    "description":"ExtFieldSpecs",
                                    "value":{
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteId",
                                                "fieldType":"list",
                                                "fieldSequence":0,
                                                "fldId":"546A79C296BE11EABB370242AC130002",
                                                "fieldValueList":[
                                                    "4B84F3F89C0A487A8FFB075DF7B44562"
                                                ]
                                            }
                                        ],
                                        "extFieldSpecsList":[
                                            {
                                                "fieldName":"Site",
                                                "fieldType":"list",
                                                "fieldSequence":0,
                                                "fldId":"546A79C296BE11EABB370242AC130002",
                                                "fieldValueList":[
                                                    "AutomationStudyActive1 - DCSOrg1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success"
                    },
                    "202":{
                        "description":"Successful operation."
                    },
                    "400":{
                        "description":"Invalid request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"User not authorized to generate the report.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-asynch-report-{reportName}-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-asynch-report-reportname-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Data Integration/Subject Reports/Generate a report based on the path parameter"
                ],
                "summary":"v1.0",
                "description":"Generates the following reports: DC_SUBJECT_VISIT, DC_SUBJECT_DATA, DC_SUBJECT_EVENTS, DC_SUBJECT_SETTINGS, DC_STUDY_SETTINGS, DC_SDV_SETTINGS, DC_SDV_STRATEGIES, DC_VISIT_SETTINGS, DC_GENERAL_SETTINGS, DC_ENROLLMENT_SETTINGS, DC_SCREEN_RAND_LIMIT_COUNTRY, DC_VISIT_SETTINGS_REPORT, DC_CUSTOM_ENROLLMENT_SETTINGS, DC_SITE_SETTINGS, DC_COUNTRY_SETTINGS, DC_GENERAL_SETTINGS_AUDIT, DC_COUNTRY_SETTINGS_AUDIT, SUBJECT_DATA_CTMS, DC_SUBJECT_DATA_EXTRACT, DC_SIGNATURE_CONFIGS_REPORT and DC_SIGNATURE_CONFIGS.",
                "operationId":"generateDCSReport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Name of the report to generate. Reports include:  DC_SUBJECT_VISIT, DC_SUBJECT_DATA, DC_SUBJECT_EVENTS, DC_SUBJECT_SETTINGS, DC_STUDY_SETTINGS, DC_SDV_SETTINGS, DC_SDV_STRATEGIES, DC_VISIT_SETTINGS, DC_GENERAL_SETTINGS, DC_ENROLLMENT_SETTINGS, DC_SCREEN_RAND_LIMIT_COUNTRY, DC_VISIT_SETTINGS_REPORT, DC_CUSTOM_ENROLLMENT_SETTINGS, DC_SITE_SETTINGS, DC_COUNTRY_SETTINGS, DC_GENERAL_SETTINGS_AUDIT, DC_COUNTRY_SETTINGS_AUDIT, SUBJECT_DATA_CTMS, DC_SUBJECT_DATA_EXTRACT, DC_SIGNATURE_CONFIGS_REPORT and DC_SIGNATURE_CONFIGS.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DC_SUBJECT_DATA"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Token to identify the session.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"File type for data extract.File Type supported are CSV, HTML and PDF",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CSV"
                    }
                ],
                "requestBody":{
                    "description":"Filters to apply.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecsSet"
                            },
                            "examples":{
                                "SearchSpecsSet":{
                                    "description":"SearchSpecsSet",
                                    "value":{
                                        "limit":100,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"subjectId",
                                                "fieldType":"List",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "A1B2C3D4E5F647839ABCDEF012345678"
                                                ],
                                                "fieldNameList":[
                                                    "subjectId"
                                                ],
                                                "fieldValueSets":[
                                                    [
                                                        "A1B2C3D4E5F647839ABCDEF012345678"
                                                    ]
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "PaginatedReport":{
                                        "description":"PaginatedReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":100,
                                            "offset":0,
                                            "columns":[
                                                "SiteID",
                                                "SiteName",
                                                "SubjectNumber"
                                            ],
                                            "data":[
                                                [
                                                    "A1B2C3D4E5F647839ABCDEF012345678",
                                                    "SiteLosAngeles",
                                                    "Subject1"
                                                ],
                                                [
                                                    "A1B2C3D4E5F647839ABCDEF012345679",
                                                    "SiteLosAngeles",
                                                    "Subject2"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/signconfiguration/history":{
            "get":{
                "tags":[
                    "Data Integration/Signature Configuration/Get sign configuration history"
                ],
                "summary":"v1.0",
                "description":"Retrieves sign configuration history.",
                "operationId":"getSignatureConfigurationHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"configId",
                        "in":"query",
                        "description":"Signature configuration identifier (UUID, 32-character uppercase hexadecimal string).",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignatureConfigurationDTO"
                                    }
                                },
                                "examples":{
                                    "PaginatedSignatureConfigurationHistory":{
                                        "description":"PaginatedSignatureConfigurationHistory",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":true,
                                                "totalResults":5,
                                                "count":1,
                                                "limit":1,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"A1B2C3D4E5F6472398A7BC12D3EF9911",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-01T10:00:00Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"F9E8D7C6B5A4432199AF88EE77CC5522",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":300,
                                                        "reason":"Updated affidavit",
                                                        "comment":"Changed requiredBy list",
                                                        "configName":"Site PI Signoff",
                                                        "requiredOn":"FORM",
                                                        "affidavitCodeValue":"Electronic Signature Affidavit",
                                                        "requiredBy":[
                                                            "11AA22BB33CC44DD55EE66FF77889900",
                                                            "99AABBCCDDEEFF001122334455667788"
                                                        ],
                                                        "targetSet":"Y",
                                                        "targetDate":7,
                                                        "targetAfter":"START",
                                                        "emailReminder":"N",
                                                        "requiredOnForms":[
                                                            "ABCDEF1234567890ABCDEF1234567890"
                                                        ],
                                                        "requiredOnVisits":[
                                                            "12345678ABCDEF0011223344AABBCCDD"
                                                        ],
                                                        "triggerQuestion":"FFEEDDCCBBAA99887766554433221100",
                                                        "triggerAnswer":[
                                                            "YES"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad_Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-signconfiguration-history-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-signconfiguration-history-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/signeligibility/history":{
            "get":{
                "tags":[
                    "Data Integration/Signature Eligibility/Get eligibility data"
                ],
                "summary":"v1.0",
                "description":"Retrieves the flat history of eligibility.",
                "operationId":"getEligibilityHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"offset",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"limit",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignEligibilityDTO"
                                    }
                                },
                                "examples":{
                                    "PaginatedEligibilityHistory":{
                                        "description":"PaginatedEligibilityHistory",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":746,
                                                "count":0,
                                                "limit":0,
                                                "offset":1000,
                                                "resultData":[
                                                    {
                                                        "id":"A3F6D9E1B2C447CC9AF5D2E1C9B77123",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-02T09:00:00Z",
                                                        "operationType":"CREATE",
                                                        "userId":"F1A2B3C4D5E6472399ACBB1188DDEEFF",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"All inclusion and no exclusion criteria met",
                                                        "comment":"Eligibility approved by investigator",
                                                        "configId":"D4C3B2A19876453210ABCDEF11223344",
                                                        "startEligibibleDate":"2023-01-01T09:00:00Z",
                                                        "requiredOn":"SUBJECT",
                                                        "siteId":"99AABBCCDDEEFF001122334455667788",
                                                        "subjectId":"11223344556677889900AABBCCDDEEFF",
                                                        "eventId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "eventInstanceNum":1,
                                                        "formId":"CAFEBABECAFEBABE1234567890ABCDEF",
                                                        "repeatSequenceNumber":0,
                                                        "repeatFormNumber":0,
                                                        "innerRepeat":0,
                                                        "outerRepeat":0,
                                                        "formSectionId":"5566778899AABBCCDDEEFF0011223344",
                                                        "status":"NEVER_SIGNED",
                                                        "studyVersion":"1.0.0.2"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-signeligibility-history-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-signeligibility-history-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visit/verify/history":{
            "post":{
                "tags":[
                    "Data Integration/Subjects/Get records for Source Data Verification with site information"
                ],
                "summary":"v1.0",
                "description":"Retrieves either the latest or the audit records for Source Data Verification (SDV) with site information where visit was completed.",
                "operationId":"getSDVSelectedSubjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "description":"Request to get the visits verification for a date range.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitVerifyHistoryRequest"
                            },
                            "examples":{
                                "SubjectVisitVerifyHistoryRequest":{
                                    "description":"SubjectVisitVerifyHistoryRequest",
                                    "value":{
                                        "subjects":[
                                            "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        ],
                                        "startDate":"01-JAN-2023",
                                        "endDate":"31-DEC-2023"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitVerifyHistoryDto2"
                                    }
                                },
                                "examples":{
                                    "SubjectVisitVerifyHistoryDto2Response":{
                                        "description":"SubjectVisitVerifyHistoryDto2Response",
                                        "value":[
                                            {
                                                "subjectId":"6D5F9311C591424F852B99FD902E98A4",
                                                "eventId":"7D5F9311C591424F852B99FD902E98A4",
                                                "verifyStatus":"VERIFIED",
                                                "eventInstanceNum":1,
                                                "versionSatrt":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-31T09:00:00Z",
                                                "studyVersion":"1.0.0",
                                                "siteId":"SITE001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visit-verify-history-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visit-verify-history-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/svf":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get latest records for sign, verify and freeze"
                ],
                "summary":"v1.0",
                "description":"Retrieves latest records for sign, verify and freeze.",
                "operationId":"getSVF",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"8D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":10
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which the response records will be returned It can be : asc or desc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ASC"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SignVerifyFreezeDTOv40"
                                    }
                                },
                                "examples":{
                                    "PaginatedSignVerifyFreezeExample":{
                                        "description":"PaginatedSignVerifyFreezeExample",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "formSectionId":null,
                                                        "id":"DF85A392E2044023A7DB975B575231BC",
                                                        "versionStart":"2023-06-30T08:48:27.313Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"CREATED",
                                                        "userId":"00000000000000000000000000000007",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":5,
                                                        "reason":null,
                                                        "comment":null,
                                                        "formId":null,
                                                        "subjectId":"EF85A392E2044023A7DB975B575231BC",
                                                        "eventId":"FF85A392E2044023A7DB975B575231BC",
                                                        "repeatSequenceNumber":null,
                                                        "itemId":null,
                                                        "signed":null,
                                                        "verify":"VERIFY_REQUIRED",
                                                        "freeze":null,
                                                        "studyVersion":"1.0.0.1",
                                                        "eventInstanceNum":null,
                                                        "repeatFormNumber":null,
                                                        "innerRepeat":null,
                                                        "outerRepeat":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-svf-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-svf-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/sdvGroup":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get records for Source Data Verification group"
                ],
                "summary":"v1.0",
                "description":"Retrieves either the latest or the audit records for Source Data Verification (SDV) group.",
                "operationId":"getSDV",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"sdvGroupId",
                        "in":"query",
                        "description":"ID of the Source Data Verification (SDV) group. The format is UUID, 32-character uppercase hexadecimal string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "description":"Is Audit Data required: true/false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"active",
                        "in":"query",
                        "description":"Is Active records required: true/false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which the response records will be returned It can be : asc or desc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDVGroupInfoDTOv20"
                                    }
                                },
                                "examples":{
                                    "PaginatedSDVGroupInfoDTOv20List":{
                                        "description":"PaginatedSDVGroupInfoDTOv20List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":4,
                                                "count":4,
                                                "limit":60,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"9C38EABF5B694998ADFCAC3A7ABF8AD9",
                                                        "versionStart":"2021-02-26T08:18:52.247Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"A1B2C3D4E5F6471290ABCDEF11223344",
                                                        "objectVersionNumber":5,
                                                        "softwareVersionNumber":1,
                                                        "reason":null,
                                                        "comment":null,
                                                        "attributeValue":"Critical Questions Only",
                                                        "attributeKey":"REMAINING_SUBJECTS_SDV_TYPE",
                                                        "sdvGroupName":"TestSDV_GROUP1UpdatedSecond",
                                                        "sdvGroupId":"55AA33CC22DD44EE66FF77889900BBAA"
                                                    },
                                                    {
                                                        "id":"8D38660547404D46AE5C7D56802299F1",
                                                        "versionStart":"2021-02-26T08:18:52.246Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"A1B2C3D4E5F6471290ABCDEF11223344",
                                                        "objectVersionNumber":6,
                                                        "softwareVersionNumber":1,
                                                        "reason":null,
                                                        "comment":null,
                                                        "attributeValue":"All Questions",
                                                        "attributeKey":"INITIAL_SUBJECTS_SDV_TYPE",
                                                        "sdvGroupName":"TestSDV_GROUP1UpdatedSecond",
                                                        "sdvGroupId":"55AA33CC22DD44EE66FF77889900BBAA"
                                                    },
                                                    {
                                                        "id":"BA595F0105DB45CB8913DBA95BE826E8",
                                                        "versionStart":"2021-02-26T08:18:48.795Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"A1B2C3D4E5F6471290ABCDEF11223344",
                                                        "objectVersionNumber":4,
                                                        "softwareVersionNumber":1,
                                                        "reason":null,
                                                        "comment":null,
                                                        "attributeValue":"99",
                                                        "attributeKey":"REMAINING_SUBJECTS_PERCENTAGE",
                                                        "sdvGroupName":"TestSDV_GROUP1UpdatedSecond",
                                                        "sdvGroupId":"55AA33CC22DD44EE66FF77889900BBAA"
                                                    },
                                                    {
                                                        "id":"5B1CA782E8BC4572B2903EECF058DF2D",
                                                        "versionStart":"2021-02-26T08:18:48.794Z",
                                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                                        "operationType":"MODIFIED",
                                                        "userId":"A1B2C3D4E5F6471290ABCDEF11223344",
                                                        "objectVersionNumber":4,
                                                        "softwareVersionNumber":1,
                                                        "reason":null,
                                                        "comment":null,
                                                        "attributeValue":"555",
                                                        "attributeKey":"INITIAL_SUBJECTS_COUNT",
                                                        "sdvGroupName":"TestSDV_GROUP1UpdatedSecond",
                                                        "sdvGroupId":"55AA33CC22DD44EE66FF77889900BBAA"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-sdvGroup-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-sdvgroup-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/odmsubmit/visitsMetadata/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get visits MetaData which is part of ODMSubmit"
                ],
                "summary":"v1.0",
                "description":"Returns all visits metadata for the specified subject.",
                "operationId":"getStudyOdmMetaData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"date",
                        "in":"query",
                        "description":"As-of date for metadata snapshot",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ODM1"
                                    }
                                },
                                "examples":{
                                    "ODMList":{
                                        "description":"ODMList",
                                        "value":{
                                            "Study":[
                                                {
                                                    "GlobalVariables":{
                                                        "StudyName":{
                                                            "Value":"RandORS"
                                                        },
                                                        "StudyDescription":null,
                                                        "ProtocolName":{
                                                            "Value":"RandORS"
                                                        }
                                                    },
                                                    "BasicDefinitions":null,
                                                    "MetaDataVersion":[
                                                        {
                                                            "Include":null,
                                                            "Protocol":{
                                                                "Description":null,
                                                                "StudyEventRef":[
                                                                    {
                                                                        "OrderNumber":1,
                                                                        "Mandatory":"Yes",
                                                                        "CollectionExceptionConditionOID":null,
                                                                        "StudyEventOID":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                                    },
                                                                    {
                                                                        "OrderNumber":2,
                                                                        "Mandatory":"Yes",
                                                                        "CollectionExceptionConditionOID":null,
                                                                        "StudyEventOID":"af77c645-0be9-4de2-93c9-630142e0afad.1_8_0_29"
                                                                    }
                                                                ],
                                                                "Alias":[
                                                                ]
                                                            },
                                                            "StudyEventDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Baseline",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "FormRef":[
                                                                        {
                                                                            "FormOID":"C1DOV.Form",
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29",
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Baseline"
                                                                        }
                                                                    ],
                                                                    "Name":"B1",
                                                                    "Repeating":"No",
                                                                    "Type":"Scheduled",
                                                                    "Category":null,
                                                                    "OID":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Screening",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "FormRef":[
                                                                        {
                                                                            "FormOID":"C1DOV.Form",
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29",
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Screening"
                                                                        }
                                                                    ],
                                                                    "Name":"S1",
                                                                    "Repeating":"No",
                                                                    "Type":"Scheduled",
                                                                    "Category":null,
                                                                    "OID":"af77c645-0be9-4de2-93c9-630142e0afad.1_8_0_29"
                                                                }
                                                            ],
                                                            "FormDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"test form 1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"test form 1(FORM_03)"
                                                                        }
                                                                    ],
                                                                    "Name":"test form 1",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:23Z",
                                                                    "OID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29",
                                                                    "ID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"forms2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"forms2(FORM_02)"
                                                                        }
                                                                    ],
                                                                    "Name":"forms2",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:23Z",
                                                                    "OID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                    "ID":"7978b7dd-0a0a-4ca8-99c4-85990994300c"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"verbatium(FORM_04)"
                                                                        }
                                                                    ],
                                                                    "Name":"verbatium",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:23Z",
                                                                    "OID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                    "ID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"C1DOV.ItemGroup"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Date of Visit(C1DOV.Form)"
                                                                        }
                                                                    ],
                                                                    "Name":"Date of Visit",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:22Z",
                                                                    "OID":"C1DOV.Form",
                                                                    "ID":"730f410f-5cf8-4c40-99db-ab5703bc029d"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Test",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Test(FORM_01)"
                                                                        }
                                                                    ],
                                                                    "Name":"Test",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:23Z",
                                                                    "OID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29",
                                                                    "ID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef"
                                                                }
                                                            ],
                                                            "ItemGroupDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"test form 1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"test form 1",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"forms2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"forms2",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":5,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"verbatium",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"C1DOV.Item",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"Date of Visit",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"C1DOV.ItemGroup"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Test",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"95dc21fd-e522-4cc6-9d94-92ece0f25120.1_8_0_29",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"Test",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29"
                                                                }
                                                            ],
                                                            "ItemDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"gender",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":{
                                                                        "CodeListOID":"70c37dff-c668-41cf-899f-74b67896fa67.1_8_0_29"
                                                                    },
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"DROPDOWN_03",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"pulldown",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"84139481-c981-489e-ba93-e9d8c3f7dc57.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"gender",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":{
                                                                        "CodeListOID":"86e83895-8674-443d-b2c9-f3a7ed25d119.1_8_0_29"
                                                                    },
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"DROPDOWN_02",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"pulldown",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"question",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_01",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_02",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Indication",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_03",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"ROA",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_04",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_05",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_06",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"C1DOV.Item",
                                                                    "DataType":"datetime",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"calendar",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":"7",
                                                                    "StartYear":"1900",
                                                                    "EndYear":"2025",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"C1DOV.Item"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"gender",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":{
                                                                        "CodeListOID":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                                                    },
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"RADIOSET_01",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"radiogroup",
                                                                    "ControlLayout":2,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"95dc21fd-e522-4cc6-9d94-92ece0f25120.1_8_0_29"
                                                                }
                                                            ],
                                                            "CodeList":[
                                                                {
                                                                    "Description":null,
                                                                    "ExternalCodeList":null,
                                                                    "EnumeratedItem":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"selectbox",
                                                                    "DataType":"STRING",
                                                                    "SasformatName":null,
                                                                    "Items":[
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"male",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"1",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"female",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"2",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Not specific",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"3",
                                                                            "OrderNumber":null
                                                                        }
                                                                    ],
                                                                    "OID":"70c37dff-c668-41cf-899f-74b67896fa67.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "ExternalCodeList":null,
                                                                    "EnumeratedItem":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"selectbox",
                                                                    "DataType":"STRING",
                                                                    "SasformatName":null,
                                                                    "Items":[
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Male",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"1",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Female",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"2",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Not specific",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"3",
                                                                            "OrderNumber":null
                                                                        }
                                                                    ],
                                                                    "OID":"86e83895-8674-443d-b2c9-f3a7ed25d119.1_8_0_29"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "ExternalCodeList":null,
                                                                    "EnumeratedItem":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"radioset",
                                                                    "DataType":"STRING",
                                                                    "SasformatName":null,
                                                                    "Items":[
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Male",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"1",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Female",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"2",
                                                                            "OrderNumber":null
                                                                        }
                                                                    ],
                                                                    "OID":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                                                }
                                                            ],
                                                            "ImputationMethod":[
                                                            ],
                                                            "Presentation":[
                                                            ],
                                                            "ConditionDef":[
                                                            ],
                                                            "MethodDef":[
                                                            ],
                                                            "Name":"RandORS",
                                                            "Description":"1.8.0.29-(English)",
                                                            "OID":"1.8.0.29"
                                                        },
                                                        {
                                                            "Include":null,
                                                            "Protocol":{
                                                                "Description":null,
                                                                "StudyEventRef":[
                                                                    {
                                                                        "OrderNumber":1,
                                                                        "Mandatory":"Yes",
                                                                        "CollectionExceptionConditionOID":null,
                                                                        "StudyEventOID":"77ad209a-99bc-4b84-901a-2dcd173dcda7.2_0_0_39"
                                                                    }
                                                                ],
                                                                "Alias":[
                                                                ]
                                                            },
                                                            "StudyEventDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Vsist1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "FormRef":[
                                                                        {
                                                                            "FormOID":"C1DOV.Form",
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39",
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.2_0_0_39",
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "FormOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.2_0_0_39",
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Vsist1"
                                                                        }
                                                                    ],
                                                                    "Name":"v1",
                                                                    "Repeating":"No",
                                                                    "Type":"Scheduled",
                                                                    "Category":null,
                                                                    "OID":"77ad209a-99bc-4b84-901a-2dcd173dcda7.2_0_0_39"
                                                                }
                                                            ],
                                                            "FormDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"C1DOV.ItemGroup"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"Date of Visit(C1DOV.Form)"
                                                                        }
                                                                    ],
                                                                    "Name":"Date of Visit",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-10-29T11:28:22Z",
                                                                    "OID":"C1DOV.Form",
                                                                    "ID":"730f410f-5cf8-4c40-99db-ab5703bc029d"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"test form 1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"test form 1(FORM_03)"
                                                                        }
                                                                    ],
                                                                    "Name":"test form 1",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-11-07T17:21:11Z",
                                                                    "OID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39",
                                                                    "ID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"forms2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.2_0_0_39"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"forms2(FORM_02)"
                                                                        }
                                                                    ],
                                                                    "Name":"forms2",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-11-07T17:21:10Z",
                                                                    "OID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.2_0_0_39",
                                                                    "ID":"7978b7dd-0a0a-4ca8-99c4-85990994300c"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemGroupRef":[
                                                                        {
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null,
                                                                            "ItemGroupOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.2_0_0_39"
                                                                        }
                                                                    ],
                                                                    "ArchiveLayout":[
                                                                    ],
                                                                    "Alias":[
                                                                        {
                                                                            "Context":"bookmark",
                                                                            "Name":"verbatium(FORM_04)"
                                                                        }
                                                                    ],
                                                                    "Name":"verbatium",
                                                                    "Repeating":"No",
                                                                    "HasIPR":false,
                                                                    "Note":null,
                                                                    "RevisionDate":"2025-11-07T17:21:11Z",
                                                                    "OID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.2_0_0_39",
                                                                    "ID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef"
                                                                }
                                                            ],
                                                            "ItemGroupDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"C1DOV.Item",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"Date of Visit",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"C1DOV.ItemGroup"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"test form 1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"75cf14e1-9387-40f9-8797-b443c604d160.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"8d2e7305-9217-425b-b516-cba4214191e8.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"test form 1",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"forms2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"ee9c0fdf-5fdc-4b02-8bf5-f299c4b278de.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"No",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"f5fb1bd2-dcd0-4954-8bb8-4e022d70025f.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"No",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"92386d95-4b6b-41b3-adcf-611ddf658301.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":5,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"c23f2e30-82d4-48d1-aa79-7a89dec1f02e.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":6,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"32869273-bff6-4028-b2a6-21e00c6bdd04.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":7,
                                                                            "Mandatory":"No",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"forms2",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":3,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":4,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":5,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"verbatium",
                                                                    "Repeating":"No",
                                                                    "IsReferenceData":"No",
                                                                    "Domain":null,
                                                                    "Origin":null,
                                                                    "Role":null,
                                                                    "Purpose":null,
                                                                    "Comment":null,
                                                                    "SasdatasetName":null,
                                                                    "OID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.2_0_0_39"
                                                                }
                                                            ],
                                                            "ItemDef":[
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Date of Visit",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"C1DOV.Item",
                                                                    "DataType":"datetime",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"calendar",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":"7",
                                                                    "StartYear":"1900",
                                                                    "EndYear":"2025",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"C1DOV.Item"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"gender",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":{
                                                                        "CodeListOID":"70c37dff-c668-41cf-899f-74b67896fa67.2_0_0_39"
                                                                    },
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"DROPDOWN_03",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"pulldown",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"84139481-c981-489e-ba93-e9d8c3f7dc57.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_14",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"75cf14e1-9387-40f9-8797-b443c604d160.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_15",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"8d2e7305-9217-425b-b516-cba4214191e8.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"gender",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":{
                                                                        "CodeListOID":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                                                    },
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"DROPDOWN_02",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"pulldown",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"question1234567",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_01",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"NUMBER_01",
                                                                    "DataType":"integer",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"98b9e2dc-f4b3-410a-8913-9e77e8f4b5dd.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"NUMBER_02",
                                                                    "DataType":"integer",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"37bc1990-ccc8-4e25-be9e-49b52072baac.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"qg1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"QUESTIONGROUP_01",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"group",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"98b9e2dc-f4b3-410a-8913-9e77e8f4b5dd.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"37bc1990-ccc8-4e25-be9e-49b52072baac.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"ee9c0fdf-5fdc-4b02-8bf5-f299c4b278de.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q3",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_09",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"f68a782c-13c4-427f-8e45-1135780f2000.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q4",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_10",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"435380d6-bfc3-4880-9e4e-5b61d2cce8be.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"qg2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"QUESTIONGROUP_02",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"group",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"f68a782c-13c4-427f-8e45-1135780f2000.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":1,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"435380d6-bfc3-4880-9e4e-5b61d2cce8be.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":2,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"f5fb1bd2-dcd0-4954-8bb8-4e022d70025f.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"EHR Dta",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_12",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"92386d95-4b6b-41b3-adcf-611ddf658301.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"validation",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_13",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"c23f2e30-82d4-48d1-aa79-7a89dec1f02e.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "Question":null,
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                        {
                                                                            "MeasurementUnitOID":"SMARTITEM_01_AGE.unit"
                                                                        }
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"SMARTITEM_01_AGE",
                                                                    "DataType":"integer",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":"Age",
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":4,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"1",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":1,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"267772db-142c-4e46-b91c-d51a05b03996.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "Question":null,
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"SMARTITEM_02_DOB",
                                                                    "DataType":"datetime",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":"Date of Birth",
                                                                    "ControlType":"calendar",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":4,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":"7",
                                                                    "StartYear":"1900",
                                                                    "EndYear":"2025",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":1,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"79b90056-5e95-460c-a5c2-84baaa756142.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Age",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"Age",
                                                                    "DataType":"string",
                                                                    "Length":null,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"group",
                                                                    "ControlLayout":2,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":null,
                                                                    "EndYear":null,
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                        {
                                                                            "ItemOID":"79b90056-5e95-460c-a5c2-84baaa756142.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":9,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        },
                                                                        {
                                                                            "ItemOID":"267772db-142c-4e46-b91c-d51a05b03996.2_0_0_39",
                                                                            "KeySequence":null,
                                                                            "MethodOID":null,
                                                                            "ImputationMethodOID":null,
                                                                            "Role":null,
                                                                            "RoleCodeListOID":null,
                                                                            "OrderNumber":8,
                                                                            "Mandatory":"Yes",
                                                                            "CollectionExceptionConditionOID":null
                                                                        }
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"32869273-bff6-4028-b2a6-21e00c6bdd04.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Verbatium",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_02",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"Indication",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_03",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"ROA",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_04",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q1",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_05",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"56848db9-487b-48df-b64b-2d037b126911.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":null,
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "Question":{
                                                                        "TranslatedText":[
                                                                            {
                                                                                "Value":"q2",
                                                                                "lang":null
                                                                            }
                                                                        ]
                                                                    },
                                                                    "ExternalQuestion":null,
                                                                    "MeasurementUnitRef":[
                                                                    ],
                                                                    "RangeCheck":[
                                                                    ],
                                                                    "CodeListRef":null,
                                                                    "Role":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"TEXT_06",
                                                                    "DataType":"text",
                                                                    "Length":4000,
                                                                    "SignificantDigits":null,
                                                                    "Origin":null,
                                                                    "Comment":null,
                                                                    "CaptionText":null,
                                                                    "ControlType":"text",
                                                                    "ControlLayout":1,
                                                                    "CaptionAlignment":1,
                                                                    "InitialRowCount":"-1",
                                                                    "DisplayMask":null,
                                                                    "StartYear":"0",
                                                                    "EndYear":"0",
                                                                    "UnknownMask":null,
                                                                    "Calculated":"0",
                                                                    "SelectionValue":null,
                                                                    "ItemRef":[
                                                                    ],
                                                                    "IsDynamic":0,
                                                                    "IsSmartItem":0,
                                                                    "SasfieldName":null,
                                                                    "SdsvarName":null,
                                                                    "OID":"cb84cd66-c345-4d4d-8e81-06db43a29936.2_0_0_39"
                                                                }
                                                            ],
                                                            "CodeList":[
                                                                {
                                                                    "Description":null,
                                                                    "ExternalCodeList":null,
                                                                    "EnumeratedItem":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"selectbox",
                                                                    "DataType":"STRING",
                                                                    "SasformatName":null,
                                                                    "Items":[
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"male",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"1",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"female",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"2",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Not specific",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"3",
                                                                            "OrderNumber":null
                                                                        }
                                                                    ],
                                                                    "OID":"70c37dff-c668-41cf-899f-74b67896fa67.2_0_0_39"
                                                                },
                                                                {
                                                                    "Description":null,
                                                                    "ExternalCodeList":null,
                                                                    "EnumeratedItem":[
                                                                    ],
                                                                    "Alias":[
                                                                    ],
                                                                    "Name":"selectbox",
                                                                    "DataType":"STRING",
                                                                    "SasformatName":null,
                                                                    "Items":[
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Male",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"1",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Female",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"2",
                                                                            "OrderNumber":null
                                                                        },
                                                                        {
                                                                            "Decode":{
                                                                                "TranslatedText":[
                                                                                    {
                                                                                        "Value":"Not specific",
                                                                                        "lang":null
                                                                                    }
                                                                                ]
                                                                            },
                                                                            "Alias":[
                                                                            ],
                                                                            "CodedValue":"3",
                                                                            "OrderNumber":null
                                                                        }
                                                                    ],
                                                                    "OID":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                                                }
                                                            ],
                                                            "ImputationMethod":[
                                                            ],
                                                            "Presentation":[
                                                            ],
                                                            "ConditionDef":[
                                                            ],
                                                            "MethodDef":[
                                                            ],
                                                            "Name":"RandORS",
                                                            "Description":"2.0.0.39-(English)",
                                                            "OID":"2.0.0.39"
                                                        }
                                                    ],
                                                    "OID":"RandORS.222eabde-1b96-48f6-9d3b-6250880a2b09"
                                                }
                                            ],
                                            "AdminData":[
                                                {
                                                    "User":[
                                                    ],
                                                    "Location":[
                                                        {
                                                            "MetaDataVersionRef":[
                                                                {
                                                                    "StudyOID":"1.8.0.29.222eabde-1b96-48f6-9d3b-6250880a2b09",
                                                                    "MetaDataVersionOID":"1.8.0.29",
                                                                    "EffectiveDate":"2025-11-07",
                                                                    "EffectiveDateTime":"2025-11-07T17:21:09Z"
                                                                },
                                                                {
                                                                    "StudyOID":"2.0.0.39.222eabde-1b96-48f6-9d3b-6250880a2b09",
                                                                    "MetaDataVersionOID":"2.0.0.39",
                                                                    "EffectiveDate":"2025-11-07",
                                                                    "EffectiveDateTime":"2025-11-07T17:21:09Z"
                                                                }
                                                            ],
                                                            "Name":null,
                                                            "LocationType":"OTHER",
                                                            "OID":null
                                                        }
                                                    ],
                                                    "SignatureDef":[
                                                    ],
                                                    "StudyOID":null
                                                }
                                            ],
                                            "ReferenceData":[
                                            ],
                                            "ClinicalData":[
                                            ],
                                            "Association":[
                                            ],
                                            "Signature":[
                                            ],
                                            "Description":null,
                                            "FileType":null,
                                            "Granularity":null,
                                            "Archival":null,
                                            "FileOID":null,
                                            "CreationDateTime":null,
                                            "PriorFileOID":null,
                                            "AsOfDateTime":null,
                                            "Originator":null,
                                            "SourceSystem":null,
                                            "SourceSystemVersion":null,
                                            "ODMVersion":null,
                                            "ID":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-odmsubmit-visitsMetadata-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-odmsubmit-visitsmetadata-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get details for a subject"
                ],
                "summary":"v1.0",
                "description":"Retrieves the current details for the specified subject.",
                "operationId":"getSubjectById3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto4"
                                    }
                                },
                                "examples":{
                                    "SubjectDto4List":{
                                        "description":"SubjectDto4List",
                                        "value":[
                                            {
                                                "id":"93CC828113AC439181071CB44D2C6FE5",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject with mHealth linkage",
                                                "subjectNumber":"SUBJ-0002",
                                                "eventType":"New",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectTransferId":"BBCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "objectVersionNumber":"1",
                                                "state":"ACTIVE",
                                                "stateDate":"2023-01-01T09:00:00Z",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"",
                                                "enrollmentOverride":"",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"[{\"value\":\"1\",\"label\":\"male\"}]",
                                                "codeBreak":"N",
                                                "reason":"Profile update",
                                                "comment":"Updated contact info",
                                                "studyVersion":"3.0.0.1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Forbidden request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/events":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get list of events by type"
                ],
                "summary":"v1.0",
                "description":"Retrieves all events for all subjects within the specified study and mode. Can restrict to events of a particular type that occurred within a specified date range. For example, you can retrieve a list of all screening events that took place in the previous month.",
                "operationId":"getSubjectEvents",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"events",
                        "in":"query",
                        "description":"The type of event you want to retrieve. Accepts (case-sensitive): New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Transferred, Screen_Failed, Code_Break, Complete, Undo_Complete, Undo_ScrFailed, Visit_Complete, or DataElement_Change. You can specify more than one event type by repeating this parameter with different values.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "Screened"
                        ]
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:45.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:45.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectEventsInfoDto"
                                },
                                "examples":{
                                    "SubjectEventsInfoDto":{
                                        "description":"SubjectEventsInfoDto",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "tenant":"oracle",
                                                "studyId":"8D49FF45B7224550A67784F7B17E6487",
                                                "mode":"TEST",
                                                "events":[
                                                    {
                                                        "eventId":"SubjectNumberReplaced",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"SubjectNumberChanged",
                                                        "subjects":[
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "B0716716016F441FAA45928EC760EFC5"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Enrolled",
                                                        "subjects":[
                                                            "CA26C02E7F7A4CF5A4910E70A6A7ED7F"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"New",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "37BFEAA662CA44A0B9A15ECEC55633CB",
                                                            "AC8E9B58871445288293E17273B0EF47"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Randomized",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "13BAB3A68A4A4E86AA309EC9AEB88447"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Complete",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Undo_Withdrawn",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Transferred",
                                                        "subjects":[
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "AC8E9B58871445288293E17273B0EF47"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Withdrawn",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "2AEC8FC777FA4B949A8F947A3EECAB50"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Screened",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A",
                                                            "BE6921A86D264F52AFFFA0C0C34A15BC"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Screen_Failed",
                                                        "subjects":[
                                                            "AC8E9B58871445288293E17273B0EF47"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"Visit_Complete",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"VisitDispensed",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"VisitRandomized",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A"
                                                        ]
                                                    },
                                                    {
                                                        "eventId":"VisitScreened",
                                                        "subjects":[
                                                            "B0716716016F441FAA45928EC760EFC5",
                                                            "808F903E700D427F929ED65D4311DB7A"
                                                        ]
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-events-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-events-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get history of all subjects in a mode"
                ],
                "summary":"[Deprecated]:v1.0",
                "description":"Retrieves the history of all subjects in a mode.",
                "operationId":"getSubjectHistory4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto9"
                                    }
                                },
                                "examples":{
                                    "SubjectDto9List":{
                                        "description":"SubjectDto9List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-02T10:00:00Z",
                                                        "description":"Historical subject record",
                                                        "subjectNumber":"SUBJ-0003",
                                                        "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "subjectStudySerialNumber":"STUDY-0001-001",
                                                        "subjectSiteSerialNumber":"SITE-0001-001",
                                                        "dob":"null",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"ACTIVE",
                                                        "stateDate":"2023-01-01T09:00:00Z",
                                                        "screeningFailure":"",
                                                        "enrollmentFailure":"",
                                                        "enrollmentOverride":"",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":"[{\"value\":\"2\",\"label\":\"female\"}]",
                                                        "codeBreak":"N",
                                                        "reason":"Visit completed",
                                                        "comment":"All good",
                                                        "studyVersion":"3.0.0.1",
                                                        "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "eventType":"Screened",
                                                        "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                        "objectVersionNumber":14,
                                                        "softwareVersionNumber":14,
                                                        "operationType":"MODIFIED",
                                                        "signedStatus":"NOT_APPLICABLE",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "freezedStatus":"FROZEN",
                                                        "lastSigned":"2025-10-16T14:30:31.892Z",
                                                        "sourceTimeStamp":"2025-10-16T14:30:31.892Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]:v1.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier.",
                "operationId":"getSubjectHistory5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"4F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto9"
                                    }
                                },
                                "examples":{
                                    "SubjectDto9List":{
                                        "description":"SubjectDto9List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-02T10:00:00Z",
                                                "description":"Historical subject record",
                                                "subjectNumber":"SUBJ-0004",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "subjectStudySerialNumber":"STUDY-0001-002",
                                                "subjectSiteSerialNumber":"SITE-0001-002",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"ACTIVE",
                                                "stateDate":"2023-01-01T09:00:00Z",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"",
                                                "enrollmentOverride":"",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"[{\"value\":\"1\",\"label\":\"male\"}]",
                                                "codeBreak":"N",
                                                "reason":"Visit completed",
                                                "comment":"No issues",
                                                "studyVersion":"3.0.0.1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventType":"Screened",
                                                "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "operationType":"MODIFIED",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a subject's events within a date range"
                ],
                "summary":"[Deprecated]:v1.0",
                "description":"Retrieves the events for a specific subject within a specified date range. Used by Integration Hub to retrieve events associated with a specific subject.",
                "operationId":"getSubjectInRange",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto5"
                                    }
                                },
                                "examples":{
                                    "SubjectDto5List":{
                                        "description":"SubjectDto5List",
                                        "value":[
                                            {
                                                "id":"ABCDEF1234567890ABCDEF1234567890",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject in date range",
                                                "subjectNumber":"SUBJ-1001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"ACTIVE",
                                                "stateDate":"2023-01-01T09:00:00Z",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"",
                                                "enrollmentOverride":"",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"[{\"value\":\"1\",\"label\":\"male\"}]",
                                                "codeBreak":"N",
                                                "reason":"Within range",
                                                "comment":"Fetched in range",
                                                "studyVersion":"3.0.0.1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventType":"Screened",
                                                "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                "objectVersionNumber":14
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/lov/{pathAttr}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a list of subject-related values"
                ],
                "summary":"v1.0",
                "description":"Retrieves all possible values for the study and mode for the specified subject-related list of values. For example, get all subject numbers for the study and mode.",
                "operationId":"getSubjectLovByColumn",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"pathAttr",
                        "in":"path",
                        "description":"Attribute for which you want to get all values. Accepts (case-sensitive): codeBreak, comment, description, dob, enrollmentFailure, enrollmentOrverride, gender, id, informedConsentDate, reason, screeningDate, screeningFailure, siteId, state, stateDate, studyId, studyVersion, subjectNumber, userId, or versionStart.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"state"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                },
                                "examples":{
                                    "Subject List Of Value Response":{
                                        "description":"Array of String having the state of the subject",
                                        "value":[
                                            {
                                                "state":"ACTIVE"
                                            },
                                            {
                                                "state":"COMPLETED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-lov-{pathAttr}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-lov-pathattr-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/odmsubmit/clinicaldata/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get Clinical Data which is part of ODMSubmit"
                ],
                "summary":"v1.0",
                "description":"Returns history for the specified subject as multiple subject records for each change that was made, including current details.",
                "operationId":"getSubjectOdmClinicalData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"date",
                        "in":"query",
                        "description":"As-of date to retrieve clinical data",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"10-Dec-2025 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ClinicalData1"
                                    }
                                },
                                "examples":{
                                    "ClinicalDataList":{
                                        "description":"ClinicalDataList",
                                        "value":{
                                            "SubjectData":[
                                                {
                                                    "AuditRecord":null,
                                                    "Signature":null,
                                                    "InvestigatorRef":null,
                                                    "SiteRef":{
                                                        "LocationOID":"475454D6B7F247C88D401DB25CA2C7D2",
                                                        "Name":"475454D6B7F247C88D401DB25CA2C7D2"
                                                    },
                                                    "Annotation":[
                                                    ],
                                                    "StudyEventData":[
                                                        {
                                                            "AuditRecord":null,
                                                            "Signature":null,
                                                            "Annotation":[
                                                            ],
                                                            "FormData":[
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:09",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:09 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"C1DOV.Item",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"29-Oct-2025"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"C1DOV.Item",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"29-Oct-2025"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"C1DOV.ItemGroup",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"C1DOV.Form",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:10",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:10 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"95dc21fd-e522-4cc6-9d94-92ece0f25120.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"95dc21fd-e522-4cc6-9d94-92ece0f25120.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"8edfab38-a7fc-4cdd-9d7a-413d4af7ddef.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:14",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:14 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:14",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:14 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"ds"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"00000000000000000000000000000003"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:16",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:16 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"ds"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"ds"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:17",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:17 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"sa"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"sa"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:17",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:17 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"a"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"a"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:17",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:17 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"d"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"d"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:17",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:17 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"c"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"c"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T14:54:17",
                                                                                            "FormattedValue":"29-Oct-2025 20:24:17 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"z"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"z"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                }
                                                            ],
                                                            "StudyEventOID":"af77c645-0be9-4de2-93c9-630142e0afad.1_8_0_29",
                                                            "StudyEventRepeatKey":null,
                                                            "RepeatingFormSummary":null
                                                        },
                                                        {
                                                            "AuditRecord":null,
                                                            "Signature":null,
                                                            "Annotation":[
                                                            ],
                                                            "FormData":[
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:48:49",
                                                                                            "FormattedValue":"29-Oct-2025 22:18:49 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"C1DOV.Item",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"29-Oct-2025"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"C1DOV.Item",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"29-Oct-2025"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"C1DOV.ItemGroup",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"C1DOV.Form",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:48:49",
                                                                                            "FormattedValue":"29-Oct-2025 22:18:49 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"male"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:48:54",
                                                                                            "FormattedValue":"29-Oct-2025 22:18:54 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"60665a6f-cd88-4913-abd4-aa6a0c555eee.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"Male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:48:54",
                                                                                            "FormattedValue":"29-Oct-2025 22:18:54 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"sq"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"00000000000000000000000000000003"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:48:55",
                                                                                            "FormattedValue":"29-Oct-2025 22:18:55 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"sq"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"sq"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"7978b7dd-0a0a-4ca8-99c4-85990994300c.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:49:00",
                                                                                            "FormattedValue":"29-Oct-2025 22:19:00 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"e849b7d8-f26f-433f-8ae8-0ba7298d8ee4.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:49:00",
                                                                                            "FormattedValue":"29-Oct-2025 22:19:00 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"a609bfb7-5a7a-4c6b-8bc6-91cc2853ca7b.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:49:00",
                                                                                            "FormattedValue":"29-Oct-2025 22:19:00 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cdb9564b-c2f1-4b76-b9ca-5f5f8007c16a.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:49:00",
                                                                                            "FormattedValue":"29-Oct-2025 22:19:00 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"56848db9-487b-48df-b64b-2d037b126911.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-10-29T16:49:00",
                                                                                            "FormattedValue":"29-Oct-2025 22:19:00 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"cb84cd66-c345-4d4d-8e81-06db43a29936.1_8_0_29",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"s"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"4d865fab-d4a1-4cc2-b78f-5bdc79e4ceef.1_8_0_29",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Completed, Unlocked",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                }
                                                            ],
                                                            "StudyEventOID":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29",
                                                            "StudyEventRepeatKey":null,
                                                            "RepeatingFormSummary":null
                                                        },
                                                        {
                                                            "AuditRecord":null,
                                                            "Signature":null,
                                                            "Annotation":[
                                                            ],
                                                            "FormData":[
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                            ],
                                                                            "ItemGroupOID":"C1DOV.ItemGroup",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"C1DOV.Form",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Not Started",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                },
                                                                {
                                                                    "AuditRecord":null,
                                                                    "Signature":null,
                                                                    "ArchiveLayoutRef":null,
                                                                    "Annotation":[
                                                                    ],
                                                                    "ItemGroupData":[
                                                                        {
                                                                            "AuditRecord":null,
                                                                            "Signature":null,
                                                                            "Annotation":[
                                                                            ],
                                                                            "Items":[
                                                                                {
                                                                                    "AuditRecord":{
                                                                                        "UserRef":{
                                                                                            "UserOID":"0000000000000000000000000000000A"
                                                                                        },
                                                                                        "LocationRef":{
                                                                                            "LocationOID":null
                                                                                        },
                                                                                        "DateTimeStamp":{
                                                                                            "Value":"2025-12-10T04:56:26",
                                                                                            "FormattedValue":"10-Dec-2025 10:26:26 India Time ( Asia/Kolkata )"
                                                                                        },
                                                                                        "ReasonForChange":{
                                                                                            "Value":null
                                                                                        },
                                                                                        "SourceID":null,
                                                                                        "ID":null
                                                                                    },
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.2_0_0_39",
                                                                                    "TransactionType":"CONTEXT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"male"
                                                                                },
                                                                                {
                                                                                    "AuditRecord":null,
                                                                                    "Signature":null,
                                                                                    "MeasurementUnitRef":null,
                                                                                    "Annotation":[
                                                                                    ],
                                                                                    "ItemOID":"84139481-c981-489e-ba93-e9d8c3f7dc57.2_0_0_39",
                                                                                    "TransactionType":"UPSERT",
                                                                                    "ParentItemOID":null,
                                                                                    "NotDone":null,
                                                                                    "SelectedCodeListItemsType":null,
                                                                                    "Value":"male"
                                                                                }
                                                                            ],
                                                                            "ItemGroupOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39",
                                                                            "ItemGroupRepeatKey":null,
                                                                            "TransactionType":"UPDATE"
                                                                        }
                                                                    ],
                                                                    "FormOID":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.2_0_0_39",
                                                                    "FormRepeatKey":null,
                                                                    "TransactionType":"UPSERT",
                                                                    "Status":null,
                                                                    "TitleAddendum":null,
                                                                    "FormStatus":"Incomplete",
                                                                    "NotDoneValue":null,
                                                                    "Signatures":null
                                                                }
                                                            ],
                                                            "StudyEventOID":"77ad209a-99bc-4b84-901a-2dcd173dcda7.2_0_0_39",
                                                            "StudyEventRepeatKey":null,
                                                            "RepeatingFormSummary":null
                                                        }
                                                    ],
                                                    "SubjectKey":"001Hyd31",
                                                    "TransactionType":"UPSERT",
                                                    "Initials":null,
                                                    "TransferData":[
                                                    ]
                                                }
                                            ],
                                            "AuditRecords":[
                                            ],
                                            "Signatures":[
                                            ],
                                            "Annotations":[
                                            ],
                                            "StudyOID":null,
                                            "MetaDataVersionOID":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-odmsubmit-clinicaldata-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-odmsubmit-clinicaldata-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get list of subjects for the specified study and mode"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all subjects for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and details described in the Response section for each subject.",
                "operationId":"getSubjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto1"
                                    }
                                },
                                "examples":{
                                    "SubjectDtoList":{
                                        "description":"SubjectDtoList",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"ACTIVE",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"",
                                                "enrollmentOverride":"",
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":"[{\"value\":\"1\",\"label\":\"male\"}]",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Eligible",
                                                "studyVersion":"3.0.0.1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/forResupply":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get screened and randomized subjects for resupply grouped by site"
                ],
                "summary":"v1.0",
                "description":"Retrieves all screened and randomized subjects for resupply grouped by site.",
                "operationId":"getSubjectsForResupply",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"ignoreIfOutsideOfVisitWindowBy",
                        "in":"query",
                        "description":"Integer value for the number of days a subject can be outside its next dispensation visit window after which it will not be returned in the response.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":2
                    },
                    {
                        "name":"ignoreSubjectsWhichSkippedVisit",
                        "in":"query",
                        "description":"Boolean value to decide whether to return a subject that skipped a dispensation visit.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F60718ABCDEF12AB34CD56"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplySubjectsListDto"
                                },
                                "examples":{
                                    "ResupplySubjectsListDto":{
                                        "description":"ResupplySubjectsListDto",
                                        "value":{
                                            "siteResupplySubjectsList":[
                                                {
                                                    "siteId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                    "screenedSubjects":[
                                                        "A3F1C4B2D8E947F0A1B2C3D4E5F6A7B8",
                                                        "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                                                    ],
                                                    "randomizedSubjects":[
                                                        "3C1D5E7F9A0B2C4D6E8F0A1B2C3D4E5F",
                                                        "ABCDEF1234567890ABCDEF1234567890"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-forResupply-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-forresupply-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/visitschedule":{
            "post":{
                "tags":[
                    "Data Integration/Subjects/Get subjects and their visit schedule"
                ],
                "summary":"v1.0",
                "description":"Get subjects and their visit schedule",
                "operationId":"getSubjectsVisitSchedule",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"showUndoSFWithdCompVisits",
                        "in":"query",
                        "description":"show all undo ScreenFail/Withdrawal/Completion visits",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule filter and pagination request body",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsVisitScheduleRequest"
                            },
                            "examples":{
                                "SubjectsVisitScheduleRequest":{
                                    "description":"SubjectsVisitScheduleRequest",
                                    "value":{
                                        "sites":[
                                            "D3C9A4B5E6F78123456789ABCDEF1234",
                                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                                        ],
                                        "limit":25,
                                        "offset":0,
                                        "order":"asc",
                                        "reviewStatus":"ALL",
                                        "subjectStates":[
                                            "ENROLLED",
                                            "IN_TREATMENT"
                                        ],
                                        "exactSearchKeywords":[
                                            "1001",
                                            "SMITH"
                                        ],
                                        "containsSearchKeywords":[
                                            "100",
                                            "SMI"
                                        ],
                                        "nextVisitOnly":false,
                                        "notStarted":false,
                                        "projectionTillDate":"16-Oct-2025"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectsVisitScheduleDto70"
                                    }
                                },
                                "examples":{
                                    "SubjectsVisitScheduleDto70List":{
                                        "description":"SubjectsVisitScheduleDto70List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":2,
                                                "count":2,
                                                "limit":25,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "subject":{
                                                            "screeningDate":null,
                                                            "codeBreak":null,
                                                            "userId":"8A1F3B2C4D5E6789ABCD0123EF456789",
                                                            "eventType":"New",
                                                            "subjectTransferId":null,
                                                            "objectVersionNumber":1,
                                                            "mhealthSubjectId":null,
                                                            "fromStudyId":null,
                                                            "subjNumSiteOrgId":"AutomationStudyActive",
                                                            "signedStatus":"NEVER_SIGNED",
                                                            "verifiedStatus":"NEVER_VERIFIED",
                                                            "freezedStatus":"NEVER_FROZEN",
                                                            "lastSigned":"",
                                                            "id":"A1B2C3D4E5F60718293A4BC5D6E7F890",
                                                            "versionStart":"2022-03-07T10:08:08.307Z",
                                                            "description":null,
                                                            "subjectNumber":"AutomationStudyActive4011",
                                                            "studyId":"11223344556677889900AABBCCDDEEFF",
                                                            "siteId":"FFEEDDCCBBAA00998877665544332211",
                                                            "dob":null,
                                                            "state":"New",
                                                            "stateDate":"2022-03-07T10:08:08.000Z",
                                                            "screeningFailure":null,
                                                            "enrollmentFailure":null,
                                                            "enrollmentOverride":null,
                                                            "informedConsentDate":null,
                                                            "gender":null,
                                                            "reason":null,
                                                            "comment":null,
                                                            "studyVersion":"1.0.0.1"
                                                        },
                                                        "visits":[
                                                        ],
                                                        "scheduledVisits":[
                                                            {
                                                                "eventId":"AAAABBBBCCCCDDDDEEEEFFFF00001111",
                                                                "title":"ScreeningRandomizationDispensation",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"22223333444455556666777788889999",
                                                                "title":"Dispensation1",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"12341234123412341234123412341234",
                                                                "title":"NonDispensation1",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"ABABABABCDCDCDCD12341234EFEFABAB",
                                                                "title":"RandomizationVisit",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"CAFEBABE1234567890ABCDEF11223344",
                                                                "title":"Dispensation2",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"FACEFACE987698769876987698769876",
                                                                "title":"Dispensation3",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"0F0E0D0C0B0A09080706050403020100",
                                                                "title":"RandomizationDispensation",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"ABCDEFABCDEFABCDEFABCDEFABCDEFAB",
                                                                "title":"Dispensation4",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"C001C001C001C001C001C001C001C001",
                                                                "title":"NonDispensation2",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"99998888777766665555444433332222",
                                                                "title":"Dispensation5",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            }
                                                        ],
                                                        "crntStateStudyVrsn":null
                                                    },
                                                    {
                                                        "subject":{
                                                            "screeningDate":null,
                                                            "codeBreak":null,
                                                            "userId":"8A1F3B2C4D5E6789ABCD0123EF456789",
                                                            "eventType":"New",
                                                            "subjectTransferId":null,
                                                            "objectVersionNumber":1,
                                                            "mhealthSubjectId":null,
                                                            "fromStudyId":null,
                                                            "subjNumSiteOrgId":"AutomationStudyActive",
                                                            "signedStatus":"NEVER_SIGNED",
                                                            "verifiedStatus":"NEVER_VERIFIED",
                                                            "freezedStatus":"NEVER_FROZEN",
                                                            "lastSigned":"",
                                                            "id":"ABC123ABC123ABC123ABC123ABC123AB",
                                                            "versionStart":"2022-03-07T10:10:50.960Z",
                                                            "description":null,
                                                            "subjectNumber":"AutomationStudyActive4004",
                                                            "studyId":"11223344556677889900AABBCCDDEEFF",
                                                            "siteId":"FFEEDDCCBBAA00998877665544332211",
                                                            "dob":null,
                                                            "state":"New",
                                                            "stateDate":"2022-03-07T10:07:31.000Z",
                                                            "screeningFailure":null,
                                                            "enrollmentFailure":null,
                                                            "enrollmentOverride":null,
                                                            "informedConsentDate":null,
                                                            "gender":null,
                                                            "reason":null,
                                                            "comment":null,
                                                            "studyVersion":"1.0.0.1"
                                                        },
                                                        "visits":[
                                                        ],
                                                        "scheduledVisits":[
                                                            {
                                                                "eventId":"AAAABBBBCCCCDDDDEEEEFFFF00001111",
                                                                "title":"ScreeningRandomizationDispensation",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"22223333444455556666777788889999",
                                                                "title":"Dispensation1",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"12341234123412341234123412341234",
                                                                "title":"NonDispensation1",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"ABABABABCDCDCDCD12341234EFEFABAB",
                                                                "title":"RandomizationVisit",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"CAFEBABE1234567890ABCDEF11223344",
                                                                "title":"Dispensation2",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"FACEFACE987698769876987698769876",
                                                                "title":"Dispensation3",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"0F0E0D0C0B0A09080706050403020100",
                                                                "title":"RandomizationDispensation",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"ABCDEFABCDEFABCDEFABCDEFABCDEFAB",
                                                                "title":"Dispensation4",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"C001C001C001C001C001C001C001C001",
                                                                "title":"NonDispensation2",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            },
                                                            {
                                                                "eventId":"99998888777766665555444433332222",
                                                                "title":"Dispensation5",
                                                                "scheduledWindowStartDate":null,
                                                                "scheduledDate":null,
                                                                "scheduledWindowEndDate":null,
                                                                "eventInstanceNum":null,
                                                                "cycleCount":null
                                                            }
                                                        ],
                                                        "crntStateStudyVrsn":null
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-visitschedule-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-visitschedule-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/sitestudyversion":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get, search or filter list of subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieve a list of subjects for a specific mode and study id, filtered by their sign and verify status. You can use the siteId, subjectState, reviewStatus and signVerifyStatus query parameters to customize the filter criteria.",
                "operationId":"getSubjectsWithSiteStudyVersionAndSignVerifyFilter",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "format":"uuid"
                            }
                        },
                        "example":[
                            "ABCDEF1234567890ABCDEF1234567890",
                            "93CC828113AC439181071CB44D2C6FE5"
                        ]
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which the response records will be returned It can be : asc or desc.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"exactSearchKeyword",
                        "in":"query",
                        "description":"List of search words matching exactly the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "1001",
                            "SMITH"
                        ]
                    },
                    {
                        "name":"containsSearchKeyword",
                        "in":"query",
                        "description":"List of search words containing the subject number.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "100",
                            "SMI"
                        ]
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.Values can be ALL, OPENQUERIES, NOOPENQUERIES, SIGNED, FROZEN, VERIFIED, SIGNEDANDVERIFIED, READYTOSIGN, READYTOVERIFY, LOCKED, UNLOCKED or ALLVISITSCOMPLETE",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"subjectState",
                        "in":"query",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":[
                            "ACTIVE"
                        ]
                    },
                    {
                        "name":"reviewStatus",
                        "in":"query",
                        "description":"Review status of the subject like sign, verify, open queries etc.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto6"
                                    }
                                },
                                "examples":{
                                    "PaginatedSubjectDto6List":{
                                        "description":"PaginatedSubjectDto6List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"ABCDEF1234567890ABCDEF1234567890",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "description":"Subject with filters",
                                                        "subjectNumber":"SUBJ-2001",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "dob":"null",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"ACTIVE",
                                                        "stateDate":"2023-01-01T09:00:00Z",
                                                        "screeningFailure":"",
                                                        "enrollmentFailure":"",
                                                        "enrollmentOverride":"",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":[
                                                            {
                                                                "value":"2",
                                                                "label":"female"
                                                            }
                                                        ],
                                                        "codeBreak":"N",
                                                        "reason":"Screened",
                                                        "comment":"Eligible",
                                                        "studyVersion":"3.0.0.1",
                                                        "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "lastSigned":"2025-10-16T14:30:31.892Z"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-sitestudyversion-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjects-sitestudyversion-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers":{
            "get":{
                "tags":[
                    "Data Integration/Subject Transfer/Get transfer records for a study"
                ],
                "summary":"v1.0",
                "description":"The API endpoint is designed to fetch all subject transfers for a given study, as indicated by the studyId path parameter.",
                "operationId":"getAllSubjectTransfers",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectNumberTransferDto"
                                    }
                                },
                                "examples":{
                                    "SubjectNumberTransfers":{
                                        "description":"SubjectNumberTransfers",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-01T10:00:00Z",
                                                "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                "subjectNumber":"SUBJ-0001",
                                                "newSubjectNumber":"SUBJ-0001-NEW",
                                                "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                                "reason":"Site change",
                                                "comment":"Automated renumber after transfer",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":300,
                                                "userId":"225B79C982104415886DE02BC73C1E1E",
                                                "randNumber":"R-000123"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjecttransfers-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjecttransfers-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subject Transfer/Get transfer records for a subject and date range"
                ],
                "summary":"v1.0",
                "description":"Retrieves all the transfers for a subject that happened in a specific date range.",
                "operationId":"getAllSubjectTransfersInRange",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID of the subject for whom you want to retrieve transfer details.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"30-Jan-2023 17:00:00.000"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"31-Jan-2023 17:00:00.000"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransferDto"
                                    }
                                },
                                "examples":{
                                    "SubjectTransfers":{
                                        "description":"SubjectTransfers",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                "subjectNumber":"SUBJ-0001",
                                                "newSubjectNumber":"SUBJ-0001-NEW",
                                                "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                                "reason":"Site transfer",
                                                "comment":"Moved subject due to site consolidation"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjecttransfers-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjecttransfers-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers/{transferId}":{
            "get":{
                "tags":[
                    "Data Integration/Subject Transfer/Get information for a transfer ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves subject transfer records for the specified transfer ID.",
                "operationId":"getSubjectTransferById",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"transferId",
                        "in":"path",
                        "description":"ID for the transfer details to retrieve.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTransferDto"
                                },
                                "examples":{
                                    "SubjectTransfer":{
                                        "description":"SubjectTransfer",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "versionStart":"2023-01-01T09:00:00Z",
                                            "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                            "subjectNumber":"SUBJ-0001",
                                            "newSubjectNumber":"SUBJ-0001-NEW",
                                            "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                            "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                            "reason":"Site change",
                                            "comment":"Moved subject to new site"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjecttransfers-{transferId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjecttransfers-transferid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/subjecttransfers/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subject Transfer/Get all the transfer records for a subject ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of subject transfer records based on the subject ID.",
                "operationId":"getSubjectTransferBySubjectId2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectTransferDto"
                                    }
                                },
                                "examples":{
                                    "SubjectTransfersBySubjectId":{
                                        "description":"SubjectTransfersBySubjectId",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "subjectId":"A1B2C3D4E5F647839ABCDEF012345678",
                                                "subjectNumber":"SUBJ-0001",
                                                "newSubjectNumber":"SUBJ-0001-NEW",
                                                "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                                                "reason":"Site change",
                                                "comment":"Transferred for operational reasons"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-subjecttransfers-subjects-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-subjecttransfers-subjects-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Visits Status/Get list of visits status for a date range"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of visits status for a given date range, for the given subject identifier.",
                "operationId":"getAllVisitsStatusInRange",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto4"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusInRangeResponse":{
                                        "description":"VisitsStatusInRangeResponse",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventId":"42CE52A1AF9A48EBABA25A361F6EC0FE",
                                                "siteId":"5D5F9311C591424F852B99FD902E98A4",
                                                "visitStatus":"COMPLETED",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "visitStartDate":"2023-01-01T08:30:00Z",
                                                "eventInstanceNum":1,
                                                "studyVersion":"1.0.0.2"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visitstatus-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visitstatus-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Integration/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.",
                "operationId":"getVisStatusForSubjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.Values can be ALL, OPENQUERIES, NOOPENQUERIES, SIGNED, FROZEN, VERIFIED, SIGNEDANDVERIFIED, READYTOSIGN, READYTOVERIFY, LOCKED, UNLOCKED or ALLVISITSCOMPLETE",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"VERIFIED"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"If true, returns only the next scheduled visit for each subject",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.3"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"0C50E26E482246B2BB9646C739E97CAA"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If true, filters for subjects with visits not yet started",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "6F16EA0A597F4733ADD7A749EB317978",
                                            "0C50E26E482246B2BB9646C739E97CAA"
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse70"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse70":{
                                        "description":"SubjectVisitsStatusResponse70",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"6F16EA0A597F4733ADD7A749EB317978",
                                                    "crntStateStudyVrsn":"1.0.0.0",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"VERIFIED",
                                                    "freezedStatus":"FROZEN",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "visits":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "subjectId":"6F16EA0A597F4733ADD7A749EB317978",
                                                            "eventId":"71FDDA57471E41A7A32EF5C37FCDE459",
                                                            "siteId":"05AA035054104541AD9FA774ACAFA666",
                                                            "visitStatus":"COMPLETED",
                                                            "visitType":"SCREENING",
                                                            "eventType":"Visit_Not_Started",
                                                            "reason":"All checks passed",
                                                            "comment":"Visit complete",
                                                            "visitStartDate":"2023-01-01T08:30:00Z",
                                                            "eventInstanceNum":1,
                                                            "associatedStudyVersion":"3.0.0.1",
                                                            "studyVersion":"3.0.0.1",
                                                            "signedStatus":"NOT_APPLICABLE",
                                                            "verifiedStatus":"NOT_APPLICABLE",
                                                            "freezedStatus":"FROZEN",
                                                            "repeatingFormCount":2,
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z"
                                                        }
                                                    ],
                                                    "scheduledVisits":[
                                                        {
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "title":"Baseline",
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledDate":"2025-10-12T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "eventInstanceNum":1,
                                                            "cycleCount":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/history/{visitsStatusId}":{
            "get":{
                "tags":[
                    "Data Integration/Visits Status/Get audit history records for the given visit status ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the audit history of visit statuses for the given visit status ID. This API also provides unscheduled events in response.",
                "operationId":"getVisitStartDetails",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"visitsStatusId",
                        "in":"path",
                        "description":"Visit ID for which you want to retrieve the history.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C50E26E482246B2BB9646C739E97CAA"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto5"
                                    }
                                },
                                "examples":{
                                    "VisitStartDetailsResponse":{
                                        "description":"VisitStartDetailsResponse",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectId":"42CE52A1AF9A48EBABA25A361F6EC0FE",
                                                "eventId":"5D5F9311C591424F852B99FD902E98A4",
                                                "siteId":"6D5F9311C591424F852B99FD902E98A4",
                                                "studyVersion":"1.0.0",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "versionEnd":"2023-01-02T09:00:00Z",
                                                "visitStatus":"NEW",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "reason":"Subject arrived",
                                                "comment":"Visit started",
                                                "visitStartDate":"2023-01-01T09:05:00Z",
                                                "eventInstanceNum":1,
                                                "objectVersionNumber":14,
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"NOT_APPLICABLE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visitstatus-history-{visitsStatusId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visitstatus-history-visitsstatusid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus":{
            "get":{
                "tags":[
                    "Data Integration/Visits Status/Get list of visits status"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of visit statuses for a event Id. If the event ID is null, then it lists all the visit statuses records for a subject.This API also provides unscheduled events details.",
                "operationId":"getVisitsStatus",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6F16EA0A597F4733ADD7A749EB317978"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"71FDDA57471E41A7A32EF5C37FCDE459"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6F16EA0A597F4733ADD7A749EB317978"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto11"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusResponse":{
                                        "description":"VisitsStatusResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-02T10:00:00Z",
                                                        "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "eventId":"42CE52A1AF9A48EBABA25A361F6EC0FE",
                                                        "siteId":"5D5F9311C591424F852B99FD902E98A4",
                                                        "studyVersion":"3.0.0.1",
                                                        "visitStatus":"COMPLETED",
                                                        "visitType":"SCREENING",
                                                        "eventType":"Visit_Not_Started",
                                                        "reason":"Data verified",
                                                        "comment":"No issues",
                                                        "operationType":"MODIFIED",
                                                        "userId":"699EF3745FC545589F186D2198F3C65E",
                                                        "objectVersionNumber":14,
                                                        "softwareVersionNumber":14,
                                                        "visitStartDate":"2023-01-01T08:30:00Z",
                                                        "eventInstanceNum":1,
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "repeatingFormCount":2,
                                                        "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                        "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                        "associatedStudyVersion":"3.0.0.1",
                                                        "visitAction":"LOCKED"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visitstatus-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visitstatus-get"
            }
        },
        "/ec-dataintegration-svc/rest/v1.0/studies/{studyId}/{mode}/visitstatus/history":{
            "get":{
                "tags":[
                    "Data Integration/Visits Status History/Get list of visits status history"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of visit statuses for a visit. If the event ID is null, then it lists all the visit statuses records for a subject.This API also provides unscheduled events details.",
                "operationId":"getVisitsStatusHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"updateStatus",
                        "in":"query",
                        "description":"Reevaluates the visit status with the current design, if set to true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Starting offset.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of subjects limit.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto10"
                                    }
                                },
                                "examples":{
                                    "PaginatedVisitsStatusHistoryResponse":{
                                        "description":"PaginatedVisitsStatusHistoryResponse",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":3,
                                                "count":1,
                                                "limit":10,
                                                "offset":1,
                                                "resultData":[
                                                    {
                                                        "id":"A1B2C3D4E5F6471890ABCDEF12345678",
                                                        "subjectId":"BB22CC33DD44EE55FF6677889900AABB",
                                                        "eventId":"11223344556677889900AABBCCDDEEFF",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "eventInstanceNum":1,
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-02T09:00:00Z",
                                                        "visitStatus":"COMPLETED",
                                                        "visitType":"SCREENING",
                                                        "eventType":"Visit_Not_Started",
                                                        "reason":"Visit completed",
                                                        "comment":"All good",
                                                        "visitStartDate":"2023-01-01T08:30:00Z",
                                                        "associatedStudyVersion":"3.0.0.1",
                                                        "studyVersion":"3.0.0.1",
                                                        "display":"Baseline Visit",
                                                        "leadingDataelementId":"CDEF9876ABCD5432EF1098765432ABCD",
                                                        "signedStatus":"NOT_APPLICABLE",
                                                        "verifiedStatus":"VERIFIED",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "repeatingFormCount":2,
                                                        "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                        "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                        "userId":"FFEEDDCCBBAA00998877665544332211"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v1.0-studies-{studyId}-{mode}-visitstatus-history-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v1.0-studies-studyid-mode-visitstatus-history-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements for one or multiple subjects and their visits"
                ],
                "summary":"v2.0",
                "description":"Retrieves all data elements for a subject and a visit or for all subjects and all of their visits.For the version V2.0 the field repeatFormNumber will have data if the repeat form number is applicable for the dataElement",
                "operationId":"getDataElementsByStudyId_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier in uppercase hex format",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"includeSignVerifyFreeze",
                        "in":"query",
                        "description":"Flag to check if sign verify info needs to be included in response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"includingClearedItems",
                        "in":"query",
                        "description":"Flag to check if cleared items needs to be included in response",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto11"
                                    }
                                },
                                "examples":{
                                    "DataElementDto11List":{
                                        "description":"DataElementDto11List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "transactionStart":"2025-10-16T14:30:31.892Z",
                                                "transactionEnd":"2025-10-16T14:30:31.892Z",
                                                "validationStatus":"VALID",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"120",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF6",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF9",
                                                "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "itemType":"TEXT",
                                                "itemD":"DETAIL",
                                                "itemF":"FLAG",
                                                "itemR":"REASON",
                                                "eventInstanceNum":1,
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                                "versionEnd":"2025-10-16T14:30:31.892Z",
                                                "repeatFormNumber":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-dataelements-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/all":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements history with pagination"
                ],
                "summary":"v2.0",
                "description":"Retrieves all data elements with history for a subject and a visit or for all subjects and all of their visits or with formIds and outerRepeat combinations, with the possibility of using pagination. Differences from v1 version of the API: Base path updated to v2.0. New filters: fromDate lower-bounds the history window, fetchOnlyLabForms restricts results to lab forms, and fetchOnlyTwoSecForms restricts to two-section forms. Response elements are DataElementDto120 including formStatus and property metadata.",
                "operationId":"getDataElementsByStudyId_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier in uppercase hex format",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    {
                        "name":"eventInstanceNum",
                        "in":"query",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"outerRepeat",
                        "in":"query",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"fromDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the data values.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"31-Jan-2023 17:00:00.000"
                    },
                    {
                        "name":"includeSVI",
                        "in":"query",
                        "description":"Boolean attribute to indicate whether Subject Visit Information (SVI) should be included or not.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fetchOnlyTwoSecForms",
                        "in":"query",
                        "description":"???Limits the response to only include data from two sections forms. Set to true to apply this limitation",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fetchOnlyLabForms",
                        "in":"query",
                        "description":"Limits the response to only include data from lab forms. Set to true to apply this limitation.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDto120"
                                    }
                                },
                                "examples":{
                                    "DataElementDto120Paginated":{
                                        "description":"DataElementDto120Paginated",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "versionEnd":"2023-01-31T09:00:00Z",
                                                        "transactionStart":"2023-01-01T09:00:00Z",
                                                        "transactionEnd":"2023-01-01T10:00:00Z",
                                                        "validationStatus":"SUCCESS",
                                                        "validationFailure":"",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "studyName":"STUDY-ABC",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectId":"10F75668189F422F9A461A315D211111",
                                                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                        "eventInstanceNum":1,
                                                        "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                        "repeatSequenceNumber":1,
                                                        "repeatFormNumber":2,
                                                        "innerRepeat":0,
                                                        "outerRepeat":0,
                                                        "formStatus":"REMOVED",
                                                        "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                        "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                        "vendorCode":"VENDOR1",
                                                        "value":"120",
                                                        "measureUnit":"mg/dL",
                                                        "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "numValue":120,
                                                        "floatValue":12.34,
                                                        "dateTimeValueUTC":"2023-01-01T09:00:00Z",
                                                        "monthValue":10,
                                                        "dayValue":16,
                                                        "yearValue":2025,
                                                        "hourValue":14,
                                                        "minuteValue":30,
                                                        "secondValue":31,
                                                        "itemType":"TEXT",
                                                        "itemD":"DETAIL",
                                                        "itemF":"FLAG",
                                                        "itemR":"REASON",
                                                        "parentId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "rootId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                        "userId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                        "reason":"Removed during cleanup",
                                                        "comment":"Visit deleted",
                                                        "operationType":"REMOVED",
                                                        "objectVersionNumber":14,
                                                        "softwareVersionNumber":14,
                                                        "targets":[
                                                            "A78AD8C31CD843CD8B847C06C0420FF5.1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D.2BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        ],
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                        "propertyVersionStart":"2023-01-01T09:00:00Z",
                                                        "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-dataelements-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/dataelements/subjects/{subjectId}/items":{
            "get":{
                "tags":[
                    "Data Integration/Data Elements/Get data elements for a list of items by subject ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves data elements for a list of items. Separate the item IDs with commas.The response in V2.0 has one more field than V1.0 operationType.",
                "operationId":"getDataElementsBySubjectIdItemIds3_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"itemIds",
                        "in":"query",
                        "description":"Item IDs from the Designer API response, separated by comma.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF,40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"ID for the subject for which you want to retrieve data elements.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DataElementDtoV60"
                                    }
                                },
                                "examples":{
                                    "DataElementDto60List":{
                                        "description":"DataElementDto60List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "transactionStart":"2025-10-16T14:30:31.892Z",
                                                "transactionEnd":"2025-10-16T14:45:31.892Z",
                                                "validationStatus":"VALID",
                                                "validationFailure":"",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "studyName":"STUDY-ABC",
                                                "studyVersion":"3.0.0.1",
                                                "subjectId":"10F75668189F422F9A461A315D211111",
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                                "repeatSequenceNumber":1,
                                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                                "vendorCode":"VENDOR1",
                                                "value":"120",
                                                "measureUnit":"mg/dL",
                                                "normalizedValue":"120",
                                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                                "numValue":120,
                                                "floatValue":12.34,
                                                "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                                "monthValue":10,
                                                "dayValue":16,
                                                "yearValue":2025,
                                                "hourValue":14,
                                                "minuteValue":30,
                                                "secondValue":31,
                                                "parentId":"A78AD8C31CD843CD8B847C06C0420FF6",
                                                "rootId":"A78AD8C31CD843CD8B847C06C0420FF9",
                                                "reason":"Initial entry",
                                                "comment":"Captured by device",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":14,
                                                "softwareVersionNumber":14,
                                                "eventInstanceNum":1,
                                                "targets":[
                                                    "A78AD8C31CD843CD8B847C06C0420FF5.9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                    "V78AD8C31CD843CD8B847C06C0420FF8.9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                                                ],
                                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-dataelements-subjects-{subjectId}-items-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-dataelements-subjects-subjectid-items-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subject/{subjectId}/formStatus":{
            "put":{
                "tags":[
                    "Data Integration/Data Elements/Get form statuses for list of event or form IDs"
                ],
                "summary":"v2.0",
                "description":"Retrieves a list of form statuses, form completion, form last update and form start for the given form IDs. Differences from v1 version of API: Base path updated to v2.0. Request body also includes usePersistence flag to control persistence usage. Response upgraded to include metadata timestamps formStart, formCompletion, formLastUpdate for repeat level (outerRepeat and innerRepeat both are not-null for repeat level) and  instance level (inner repeat is null and outer repeat is not null for instance level) of a form.",
                "operationId":"getFormStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"10F75668189F422F9A461A315D211111"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDetailsRequestDto2"
                            },
                            "examples":{
                                "FormDetailsRequestDto2":{
                                    "description":"FormDetailsRequestDto2",
                                    "value":{
                                        "formDetails":[
                                            {
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "eventInstanceNum":1,
                                                "usePersistence":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormStatusDto2"
                                    }
                                },
                                "examples":{
                                    "FormStatusResponse":{
                                        "description":"FormStatusResponse",
                                        "value":[
                                            {
                                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                                "outerRepeat":0,
                                                "eventInstanceNum":1,
                                                "formStatus":"COMPLETED",
                                                "innerRepeat":0,
                                                "formStart3":"2025-10-16T14:30:31.892Z",
                                                "formCompletion3":"2025-10-16T14:30:32.892Z",
                                                "formLastUpdate3":"2025-10-16T14:30:33.892Z",
                                                "formStart":"2025-10-16T14:30:31.892Z",
                                                "formCompletion":"2025-10-16T14:30:32.892Z",
                                                "formLastUpdate":"2025-10-16T14:30:33.892Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subject-{subjectId}-formStatus-put",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subject-subjectid-formstatus-put"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get details for a subject"
                ],
                "summary":"v2.0",
                "description":"Retrieves the current details for the specified subject along with withdrawal or completion date and EHR link status.",
                "operationId":"getSubjectById",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto13List":{
                                        "description":"SubjectRespDto13List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "eventType":"Screened",
                                                "signedStatus":"SIGNED",
                                                "subjectTransferId":"5D5F9311C591424F852B99FD902E98A4",
                                                "subjNumSiteOrgId":"8D5F9311C591424F852B99FD902E98A4",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "objectVersionNumber":"1",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Forbidden request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get history of all subjects in a mode"
                ],
                "summary":"[Deprecated]:v2.0",
                "description":"Retrieves the history of all subjects in a mode. New field 'randomizationNumber' is added to the response in this version.",
                "operationId":"getSubjectHistory4_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto110"
                                    }
                                },
                                "examples":{
                                    "SubjectDto110List":{
                                        "description":"SubjectDto110List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "description":"Subject record version start",
                                                        "subjectNumber":"SUBJ-0001",
                                                        "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "dob":"null",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"Active",
                                                        "stateDate":"2023-02-01T10:00:00Z",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":"male",
                                                        "codeBreak":"N",
                                                        "reason":"Initial enrollment",
                                                        "comment":"Subject created",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectStudySerialNumber":"STUDY-0001-001",
                                                        "subjectSiteSerialNumber":"SITE-0001-001",
                                                        "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "screeningFailure":"Not applicable",
                                                        "enrollmentFailure":"Not applicable",
                                                        "enrollmentOverride":"None",
                                                        "signedStatus":"NOT_APPLICABLE",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "freezedStatus":"FROZEN",
                                                        "lastSigned":"2025-10-16T14:30:31.892Z",
                                                        "eventType":"Screened",
                                                        "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                        "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "objectVersionNumber":14,
                                                        "versionEnd":"2023-02-01T10:00:00Z",
                                                        "softwareVersionNumber":13,
                                                        "operationType":"CREATED",
                                                        "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                        "screenFailureDate":"2023-01-01T09:00:00Z",
                                                        "randomizationNumber":"RND-001"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]:v2.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier.",
                "operationId":"getSubjectHistory5_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto110"
                                    }
                                },
                                "examples":{
                                    "SubjectDto110List":{
                                        "description":"SubjectDto110List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "fromStudyId":"BBCDEF1234567890ABCDEF1234567890",
                                                "mhealthSubjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                "subjectTransferId":"DBCDEF1234567890ABCDEF1234567890",
                                                "subjNumSiteOrgId":"EBCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "eventType":"Screened",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "randomizationNumber":"RND-001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a subject's events within a date range"
                ],
                "summary":"[Deprecated]:v2.0",
                "description":"Retrieves the events for a specific subject within a specified date range. Used by Integration Hub to retrieve events associated with a specific subject.",
                "operationId":"getSubjectInRange_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto101"
                                    }
                                },
                                "examples":{
                                    "SubjectDto101List":{
                                        "description":"SubjectDto101List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject in date range",
                                                "subjectNumber":"SUBJ-0001",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Within range",
                                                "comment":"Fetched in range",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"FROZEN",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "eventType":"Screened",
                                                "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "objectVersionNumber":14,
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":10,
                                                "operationType":"MODIFIED",
                                                "sourceTimeStamp":"2023-01-15T09:00:00Z",
                                                "screenFailureDate":"2023-01-20T09:00:00Z",
                                                "randomizationNumber":"RND-001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/subjects":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subjects for the specified study and mode"
                ],
                "summary":"v2.0",
                "description":"Lists all subjects with lock status for the specified study and mode. It only returns subjects for the sites to which the requesting user has access and describes details in the Response section for each subject with lock status and includes completion and withdrawal dates.",
                "operationId":"getSubjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto14"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto14List":{
                                        "description":"SubjectRespDto14List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "description":"Subject record version start",
                                                        "subjectNumber":"SUBJ-0001",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "dob":"null",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"Active",
                                                        "stateDate":"2023-02-01T10:00:00Z",
                                                        "screeningFailure":"Not applicable",
                                                        "enrollmentFailure":"Not applicable",
                                                        "enrollmentOverride":"None",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":"male",
                                                        "codeBreak":"N",
                                                        "reason":"Initial enrollment",
                                                        "comment":"Subject created",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectStudySerialNumber":"STUDY-0001-001",
                                                        "subjectSiteSerialNumber":"SITE-0001-001",
                                                        "versionEnd":"2023-02-01T10:00:00Z",
                                                        "softwareVersionNumber":14,
                                                        "operationType":"CREATED",
                                                        "previousSubjectNumber":null,
                                                        "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                        "screenFailureDate":"2023-01-01T09:00:00Z",
                                                        "lockedStatus":"LOCKED",
                                                        "hasLockData":false,
                                                        "lockedDateTime":"2023-02-02T11:00:00Z",
                                                        "canBeCompleted":true,
                                                        "lockedInStudyVersion":"3.0.0.4",
                                                        "screeningNumber":"SCR-0001",
                                                        "randomizationNumber":"RND-001",
                                                        "ehrLinkStatus":1,
                                                        "withdrawalDate":"2023-03-01T09:00:00Z",
                                                        "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                        "withdrawalReason":"Subject withdrew consent",
                                                        "withdrawalComment":"No longer participating",
                                                        "screenFailureComment":"Not applicable",
                                                        "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                        "unResolvedQueries":2,
                                                        "incompleteVisits":1,
                                                        "canBeReplaced":true,
                                                        "fromStudyId":"NBCDEF1234567890ABCDEF1234567890",
                                                        "mhealthSubjectId":"VBCDEF1234567890ABCDEF1234567890",
                                                        "subjectTransferId":"BBCDEF1234567890ABCDEF1234567890",
                                                        "subjNumSiteOrgId":"PBCDEF1234567890ABCDEF1234567890",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "canBeUndoWithdrawn":true
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-subjects-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Visits Status/Get list of visits status for a date range"
                ],
                "summary":"v2.0",
                "description":"Retrieves the list of visits status for a given date range, mainly used by Integration hub.Base path of the API updated to v2.0. Adds dgEventsOnly (default true) to filter out non-Data Capture events .",
                "operationId":"getAllVisitsStatusInRange_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Subject ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The start date from which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The end date until which you want to retrieve the visits details.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"dgEventsOnly",
                        "in":"query",
                        "description":"Flag to get only DG related events",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsStatusDto4"
                                    }
                                },
                                "examples":{
                                    "VisitsStatusInRangeResponse":{
                                        "description":"VisitsStatusInRangeResponse",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "subjectId":"6F16EA0A597F4733ADD7A749EB317978",
                                                "eventId":"0C50E26E482246B2BB9646C739E97CAA",
                                                "siteId":"71FDDA57471E41A7A32EF5C37FCDE459",
                                                "visitStatus":"COMPLETED",
                                                "visitType":"SCREENING",
                                                "eventType":"Visit_Not_Started",
                                                "reason":"Subject completed the visit successfully",
                                                "comment":"All data verified",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "visitStartDate":"2023-01-01T08:30:00Z",
                                                "eventInstanceNum":1,
                                                "studyVersion":"1.0.0.2"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-visitstatus-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v2.0/studies/{studyId}/{mode}/visitstatus/subjects":{
            "post":{
                "tags":[
                    "Data Integration/Visits Status/Get list of visits status for subjects"
                ],
                "summary":"v2.0",
                "description":"Retrieves a list of visits status for subjects, as well as the study version associated with each visit status. This API request also lists unscheduled event details.Now supports query param cycleCountToDate for filtering by scheduled date for cycles Supports cycleCountToDate filtering to compute cycle counts up to the specified date. Special handling when signVerifyStatus is LOCKED/UNLOCKED to include lock information. Populates data actions for downstream consumers and adds canBeCompleted . Response upgraded to SubjectVisitsStatusResponse90 with canBeCompleted and lockedInStudyVersion, and visits enriched with visitAction and lock metadata.",
                "operationId":"getVisitStatusForSubjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"signVerifyStatus",
                        "in":"query",
                        "description":"Status of Sign / Verify.Values can be ALL, OPENQUERIES, NOOPENQUERIES, SIGNED, FROZEN, VERIFIED, SIGNEDANDVERIFIED, READYTOSIGN, READYTOVERIFY, LOCKED, UNLOCKED or ALLVISITSCOMPLETE",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"nextVisitOnly",
                        "in":"query",
                        "description":"If true, returns only the next scheduled visit for each subject",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"siteStudyVersion",
                        "in":"query",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.0.0.1"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier representing the clinical site.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"6D5F9311C591424F852B99FD902E98A4"
                    },
                    {
                        "name":"notStarted",
                        "in":"query",
                        "description":"If true, filters for subjects with visits not yet started",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"cycleCountToDate",
                        "in":"query",
                        "description":"Date used to compute cycle counts up to the specified time",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2023-01-01T09:00:00Z"
                    }
                ],
                "requestBody":{
                    "description":"Subjects for which you want to retrieve all the visits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectVisitsReq"
                            },
                            "examples":{
                                "SubjectVisitsReq":{
                                    "description":"SubjectVisitsReq",
                                    "value":{
                                        "subjects":[
                                            "5D5F9311C591424F852B99FD902E98A4",
                                            "6D5F9311C591424F852B99FD902E98A4"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse90"
                                },
                                "examples":{
                                    "SubjectVisitsStatusResponse90":{
                                        "description":"SubjectVisitsStatusResponse90",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "crntStateStudyVrsn":"3.0.0.1",
                                                    "signedStatus":"SIGNED",
                                                    "verifiedStatus":"VERIFIED",
                                                    "freezedStatus":"FROZEN",
                                                    "lastSigned":"2023-01-01T09:00:00Z",
                                                    "lockedStatus":"LOCKED",
                                                    "canBeCompleted":true,
                                                    "lockedInStudyVersion":"3.0.0.1",
                                                    "visits":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "versionStart":"2023-01-01T09:00:00Z",
                                                            "subjectId":"7D5F9311C591424F852B99FD902E98A4",
                                                            "eventId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "siteId":"42CE52A1AF9A48EBABA25A361F6EC0FE",
                                                            "studyVersion":"1.0.0",
                                                            "visitStatus":"COMPLETED",
                                                            "reason":"Completed",
                                                            "comment":"All checks passed",
                                                            "operationType":"MODIFIED",
                                                            "userId":"699EF3745FC545589F186D2198F3C65E",
                                                            "objectVersionNumber":14,
                                                            "softwareVersionNumber":14,
                                                            "visitStartDate":"2023-01-01T08:30:00Z",
                                                            "visitType":"Screening Visit",
                                                            "eventType":"Visit_Not_Started",
                                                            "eventInstanceNum":1,
                                                            "signedStatus":"SIGNED",
                                                            "verifiedStatus":"VERIFIED",
                                                            "freezedStatus":"FROZEN",
                                                            "repeatingFormCount":2,
                                                            "versionEnd":"2023-01-02T10:00:00Z",
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "associatedStudyVersion":"3.0.0.1",
                                                            "visitAction":"SCREEN_DISABLE",
                                                            "lockedStatus":"UNLOCKED",
                                                            "visitStartDateLockedStatus":"UNLOCKED",
                                                            "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                                            "visitStartDateLockedDateTime":"2025-10-16T14:30:31.892Z"
                                                        }
                                                    ],
                                                    "scheduledVisits":[
                                                        {
                                                            "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                                            "title":"Baseline",
                                                            "scheduledWindowStartDate":"2025-10-10T14:30:31.892Z",
                                                            "scheduledDate":"2025-10-12T14:30:31.892Z",
                                                            "scheduledWindowEndDate":"2025-10-20T14:30:31.892Z",
                                                            "eventInstanceNum":1,
                                                            "cycleCount":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v2.0-studies-{studyId}-{mode}-visitstatus-subjects-post",
                "x-filename-id":"ec-dataintegration-svc-rest-v2.0-studies-studyid-mode-visitstatus-subjects-post"
            }
        },
        "/ec-dataintegration-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get details for a subject"
                ],
                "summary":"v3.0",
                "description":"Retrieves the current details for the specified subject along with withdrawal or completion date and EHR link status.",
                "operationId":"getSubjectById_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto16"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto16List":{
                                        "description":"SubjectRespDto16List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":16,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable",
                                                "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                "unResolvedQueries":2,
                                                "incompleteVisits":1,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":true,
                                                "reScreenEventInstanceNum":2,
                                                "enrollmentDate":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"Forbidden request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get history of all subjects in a mode"
                ],
                "summary":"v3.0",
                "description":"Retrieves the history of all subjects in a mode. This version adds a screeningNumber field which stores value of subject number, while subject number holds randomization number if the subject is randomized.",
                "operationId":"getSubjectHistory4_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto30"
                                    }
                                },
                                "examples":{
                                    "SubjectDto30List":{
                                        "description":"SubjectDto30List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "description":"Subject record version start",
                                                        "subjectNumber":"SUBJ-0001",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "fromStudyId":"NBCDEF1234567890ABCDEF1234567890",
                                                        "mhealthSubjectId":"VBCDEF1234567890ABCDEF1234567890",
                                                        "subjectTransferId":"BBCDEF1234567890ABCDEF1234567890",
                                                        "subjNumSiteOrgId":"PBCDEF1234567890ABCDEF1234567890",
                                                        "dob":"null",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"Active",
                                                        "stateDate":"2023-02-01T10:00:00Z",
                                                        "screeningFailure":"Not applicable",
                                                        "enrollmentFailure":"Not applicable",
                                                        "enrollmentOverride":"None",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":"male",
                                                        "codeBreak":"N",
                                                        "reason":"Initial enrollment",
                                                        "comment":"Subject created",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectStudySerialNumber":"STUDY-0001-001",
                                                        "subjectSiteSerialNumber":"SITE-0001-001",
                                                        "versionEnd":"2023-02-01T10:00:00Z",
                                                        "softwareVersionNumber":30,
                                                        "operationType":"CREATED",
                                                        "previousSubjectNumber":null,
                                                        "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                        "screenFailureDate":"2023-01-01T09:00:00Z",
                                                        "randomizationNumber":"RND-001",
                                                        "screeningNumber":"SCR-0001"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v3.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"[Deprecated]:v3.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier.",
                "operationId":"getSubjectHistory5_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectDto110"
                                    }
                                },
                                "examples":{
                                    "SubjectDto110List":{
                                        "description":"SubjectDto110List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "fromStudyId":"BBCDEF1234567890ABCDEF1234567890",
                                                "mhealthSubjectId":"CBCDEF1234567890ABCDEF1234567890",
                                                "subjectTransferId":"DBCDEF1234567890ABCDEF1234567890",
                                                "subjNumSiteOrgId":"EBCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "eventType":"Screened",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "objectVersionNumber":"13",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":110,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "randomizationNumber":"RND-001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-dataintegration-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v3.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a subject's events within a date range"
                ],
                "summary":"v3.0",
                "description":"Retrieves the events for a specific subject within a specified date range. New properties are withdrawal or completion date and EHR link status.",
                "operationId":"getSubjectInRange_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto13List":{
                                        "description":"SubjectRespDto13List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject in date range",
                                                "subjectNumber":"SUBJ-0001",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Within range",
                                                "comment":"Fetched in range",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "screeningFailure":"",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"FROZEN",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "eventType":"Screened",
                                                "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "objectVersionNumber":14,
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"MODIFIED",
                                                "sourceTimeStamp":"2023-01-15T09:00:00Z",
                                                "screenFailureDate":"2023-01-20T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v3.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"v4.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier.",
                "operationId":"getSubjectHistory",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto13"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto13List":{
                                        "description":"SubjectRespDto13List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":13,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable",
                                                "fromStudyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "mhealthSubjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "freezedStatus":"FROZEN",
                                                "lastSigned":"2025-10-16T14:30:31.892Z",
                                                "eventType":"Screened",
                                                "subjectTransferId":"93CC828113AC439181071CB44D2C6FE5",
                                                "subjNumSiteOrgId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "objectVersionNumber":14
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v4.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/history/all":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get history of all subjects in a mode"
                ],
                "summary":"v4.0",
                "description":"Retrieves the history of all subjects in a mode. This version adds a screeningNumber field which stores value of subject number, while subject number holds randomization number if the subject is randomized. Also adds replaceRand field for replaced randomization.",
                "operationId":"getSubjectHistory4_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto14"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto14List":{
                                        "description":"SubjectRespDto14List",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "hasMore":false,
                                                "totalResults":19,
                                                "count":19,
                                                "limit":50,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "versionStart":"2023-01-01T09:00:00Z",
                                                        "description":"Subject record version start",
                                                        "subjectNumber":"SUBJ-0001",
                                                        "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                        "dob":"null",
                                                        "screeningDate":"2023-01-01T09:00:00Z",
                                                        "state":"Active",
                                                        "stateDate":"2023-02-01T10:00:00Z",
                                                        "screeningFailure":"Not applicable",
                                                        "enrollmentFailure":"Not applicable",
                                                        "enrollmentOverride":"None",
                                                        "informedConsentDate":"2023-01-01T09:00:00Z",
                                                        "gender":"male",
                                                        "codeBreak":"N",
                                                        "reason":"Initial enrollment",
                                                        "comment":"Subject created",
                                                        "studyVersion":"3.0.0.1",
                                                        "subjectStudySerialNumber":"STUDY-0001-001",
                                                        "subjectSiteSerialNumber":"SITE-0001-001",
                                                        "versionEnd":"2023-02-01T10:00:00Z",
                                                        "softwareVersionNumber":14,
                                                        "operationType":"CREATED",
                                                        "previousSubjectNumber":null,
                                                        "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                        "screenFailureDate":"2023-01-01T09:00:00Z",
                                                        "lockedStatus":"UNLOCKED",
                                                        "hasLockData":false,
                                                        "lockedDateTime":"2023-02-02T11:00:00Z",
                                                        "canBeCompleted":true,
                                                        "lockedInStudyVersion":"3.0.0.4",
                                                        "screeningNumber":"SCR-0001",
                                                        "randomizationNumber":"RND-001",
                                                        "ehrLinkStatus":1,
                                                        "withdrawalDate":"2023-03-01T09:00:00Z",
                                                        "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                        "withdrawalReason":"Subject withdrew consent",
                                                        "withdrawalComment":"No longer participating",
                                                        "screenFailureComment":"Not applicable",
                                                        "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                        "unResolvedQueries":2,
                                                        "incompleteVisits":1,
                                                        "canBeReplaced":true,
                                                        "fromStudyId":"NBCDEF1234567890ABCDEF1234567890",
                                                        "mhealthSubjectId":"VBCDEF1234567890ABCDEF1234567890",
                                                        "subjectTransferId":"BBCDEF1234567890ABCDEF1234567890",
                                                        "subjNumSiteOrgId":"PBCDEF1234567890ABCDEF1234567890",
                                                        "freezedStatus":"NOT_APPLICABLE",
                                                        "signedStatus":"SIGNED",
                                                        "verifiedStatus":"NOT_APPLICABLE",
                                                        "canBeUndoWithdrawn":true
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-history-all-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v4.0-studies-studyid-mode-subjects-history-all-get"
            }
        },
        "/ec-dataintegration-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a subject's events within a date range"
                ],
                "summary":"v4.0",
                "description":"Retrieves the events for a specific subject within a specified date range. New properties are withdrawal or completion date and EHR link status. The Api also returns new properties named reScreenEventInstanceNum and unResolvedQueries.",
                "operationId":"getSubjectInRange_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto15"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto15List":{
                                        "description":"SubjectRespDto15List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"WITHDRAWN",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":"[{value:1,label:male}]",
                                                "codeBreak":"N",
                                                "reason":"Protocol break happened",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "comment":"Initial enrollment",
                                                "fromStudyId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "mhealthSubjectId":"1E8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2025-10-16T14:30:31.892Z",
                                                "softwareVersionNumber":14,
                                                "operationType":"MODIFIED",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                                "screenFailureDate":"2025-10-16T14:30:31.892Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                                "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"Subject breached protocols",
                                                "screenFailureComment":"Subject breached protocols",
                                                "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                "unResolvedQueries":2,
                                                "incompleteVisits":1,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":true,
                                                "reScreenEventInstanceNum":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v4.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"v5.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier.The response includes additional fields like: reScreenEventInstanceNum, unResolvedQueries etc.",
                "operationId":"getSubjectHistory_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto15"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto15List":{
                                        "description":"SubjectRespDto15List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":15,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable",
                                                "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                "unResolvedQueries":2,
                                                "incompleteVisits":1,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":true,
                                                "reScreenEventInstanceNum":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v5.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/dateRange/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get a subject's events within a date range"
                ],
                "summary":"v5.0",
                "description":"Retrieves the events for a specific subject within a specified date range. In addition to v4 fields, the response now includes enrollmentDate.",
                "operationId":"getSubjectInRange_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional) for which you want to get events. If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"25-Oct-2023 14:30:15.123"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional) for which you want to get events. If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, dd-MMM-yyyy HH:mm, or dd-MMM-yyyy.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"26-Oct-2023 14:30:15.123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Subjects success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto16"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto16List":{
                                        "description":"SubjectRespDto16List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2025-10-16T14:30:31.892Z",
                                                "description":"Screened subject",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2025-10-01T10:00:00.000Z",
                                                "state":"WITHDRAWN",
                                                "stateDate":"2025-10-16T14:30:31.892Z",
                                                "screeningFailure":"Inclusion criteria not met",
                                                "enrollmentFailure":"Consent withdrawn",
                                                "enrollmentOverride":"Subject Enrollment Overridden",
                                                "informedConsentDate":"2025-09-25T09:00:00.000Z",
                                                "gender":"[{value:1,label:male}]",
                                                "codeBreak":"N",
                                                "reason":"Protocol break happened",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"NOT_APPLICABLE",
                                                "subjNumSiteOrgId":"5D5F9311C591424F852B99FD902E98A4",
                                                "comment":"Initial enrollment",
                                                "fromStudyId":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "mhealthSubjectId":"1E8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2025-10-16T14:30:31.892Z",
                                                "softwareVersionNumber":16,
                                                "operationType":"MODIFIED",
                                                "previousSubjectNumber":"SUBJECT-0001-OLD",
                                                "sourceTimeStamp":"2025-10-16T14:30:31.892Z",
                                                "screenFailureDate":"2025-10-16T14:30:31.892Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2025-10-16T14:30:31.892Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2025-10-16T14:30:31.892Z",
                                                "studyCompletionDate":"2025-10-16T14:30:31.892Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"Subject breached protocols",
                                                "screenFailureComment":"Subject breached protocols",
                                                "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                "unResolvedQueries":2,
                                                "incompleteVisits":1,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":true,
                                                "reScreenEventInstanceNum":2,
                                                "enrollmentDate":"2025-09-20T09:00:00.000Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-dateRange-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v5.0-studies-studyid-mode-subjects-daterange-subjectid-get"
            }
        },
        "/ec-dataintegration-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/history/{subjectId}":{
            "get":{
                "tags":[
                    "Data Integration/Subjects/Get subject history"
                ],
                "summary":"v6.0",
                "description":"Retrieves the history of a subject in a mode in a study based on the subject identifier. The response includes additional fields like: reScreenEventInstanceNum, unResolvedQueries, enrollmentDate etc.",
                "operationId":"getSubjectHistory_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1F2504E04F8911D39A0C0305E82C3301"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectRespDto16"
                                    }
                                },
                                "examples":{
                                    "SubjectRespDto16List":{
                                        "description":"SubjectRespDto16List",
                                        "value":[
                                            {
                                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "versionStart":"2023-01-01T09:00:00Z",
                                                "description":"Subject record version start",
                                                "subjectNumber":"SUBJ-0001",
                                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                                "dob":"null",
                                                "screeningDate":"2023-01-01T09:00:00Z",
                                                "state":"Active",
                                                "freezedStatus":"NOT_APPLICABLE",
                                                "signedStatus":"NOT_APPLICABLE",
                                                "verifiedStatus":"VERIFIED",
                                                "stateDate":"2023-02-01T10:00:00Z",
                                                "screeningFailure":"Not applicable",
                                                "enrollmentFailure":"Not applicable",
                                                "enrollmentOverride":"None",
                                                "informedConsentDate":"2023-01-01T09:00:00Z",
                                                "gender":"male",
                                                "codeBreak":"N",
                                                "reason":"Initial enrollment",
                                                "comment":"Subject created",
                                                "studyVersion":"3.0.0.1",
                                                "subjectStudySerialNumber":"STUDY-0001-001",
                                                "subjectSiteSerialNumber":"SITE-0001-001",
                                                "versionEnd":"2023-02-01T10:00:00Z",
                                                "softwareVersionNumber":16,
                                                "operationType":"CREATED",
                                                "previousSubjectNumber":null,
                                                "sourceTimeStamp":"2023-01-01T09:00:00Z",
                                                "screenFailureDate":"2023-01-01T09:00:00Z",
                                                "lockedStatus":"UNLOCKED",
                                                "hasLockData":false,
                                                "lockedDateTime":"2023-02-02T11:00:00Z",
                                                "canBeCompleted":true,
                                                "lockedInStudyVersion":"3.0.0.4",
                                                "screeningNumber":"SCR-0001",
                                                "randomizationNumber":"RND-001",
                                                "ehrLinkStatus":1,
                                                "withdrawalDate":"2023-03-01T09:00:00Z",
                                                "studyCompletionDate":"2023-06-01T09:00:00Z",
                                                "withdrawalReason":"Subject withdrew consent",
                                                "withdrawalComment":"No longer participating",
                                                "screenFailureComment":"Not applicable",
                                                "replaceRand":"93CC828113AC439181071CB44D2C6FE5",
                                                "unResolvedQueries":2,
                                                "incompleteVisits":1,
                                                "canBeReplaced":true,
                                                "canBeUndoWithdrawn":true,
                                                "reScreenEventInstanceNum":2,
                                                "enrollmentDate":"2023-01-01T09:00:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RestResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-dataintegration-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-history-{subjectId}-get",
                "x-filename-id":"ec-dataintegration-svc-rest-v6.0-studies-studyid-mode-subjects-history-subjectid-get"
            }
        },
        "/ec-notifications-svc/rest/v1.0/email/{templatetype}":{
            "post":{
                "tags":[
                    "Notifications/Email/Use a template to send notifications"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Sends email to users provided in body by template name",
                "operationId":"sendEmail",
                "parameters":[
                    {
                        "name":"templatetype",
                        "in":"path",
                        "description":"Name of the template to use to send email. Valid values are taken from email template configuration database, Allowed Values: CompletedTrainingTemplate, DefaultTrainingTemplate_L10n, CompletedTrainingTemplate_L10n, WithoutStudyTrainingTemplate, AssignedTrainingTemplate",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DefaultTrainingTemplate_L10n"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EmailTemplateDto1"
                            },
                            "examples":{
                                "EmailTemplateDto1":{
                                    "description":"EmailTemplateDto1",
                                    "value":{
                                        "subject":"Training Status Reminder",
                                        "users":[
                                            "0000000000000000000000000000000A"
                                        ],
                                        "placeHolderValueMap":{
                                            "userTrainingDetails":" ",
                                            "redirectUrl":"",
                                            "username":"system",
                                            "studyName":"AutomationStudy"
                                        },
                                        "placeHolderImageMap":{
                                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                                            "image2":"NOTIFICATION.EMAIL.IMAGE2",
                                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                                            "image5":"NOTIFICATION.EMAIL.IMAGE5"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be null",
                                                        "contextItem":"users"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v1.0-email-{templatetype}-post",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-email-templatetype-post"
            }
        },
        "/ec-notifications-svc/rest/v2.0/email/{templatetype}":{
            "post":{
                "tags":[
                    "Notifications/Email/Use a template to send notifications"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Sends email to users with the specified template. Supports a list of email addresses. Relative to v1.0: Support email addresses of user to send notifications.",
                "operationId":"sendEmail_1",
                "parameters":[
                    {
                        "name":"templatetype",
                        "in":"path",
                        "description":"Name of the template to use to send email. Valid values are taken from email template configuration database, Allowed Values: CompletedTrainingTemplate, DefaultTrainingTemplate_L10n, CompletedTrainingTemplate_L10n, WithoutStudyTrainingTemplate, AssignedTrainingTemplate",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DefaultTrainingTemplate_L10n"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EmailTemplateDto2"
                            },
                            "examples":{
                                "EmailTemplateDto2":{
                                    "description":"EmailTemplateDto2",
                                    "value":{
                                        "subject":"Training Status Reminder",
                                        "users":[
                                            "0000000000000000000000000000000A"
                                        ],
                                        "placeHolderValueMap":{
                                            "userTrainingDetails":" ",
                                            "redirectUrl":"",
                                            "username":"system",
                                            "studyName":"AutomationStudy"
                                        },
                                        "placeHolderImageMap":{
                                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                                            "image2":"NOTIFICATION.EMAIL.IMAGE2",
                                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                                            "image5":"NOTIFICATION.EMAIL.IMAGE5"
                                        },
                                        "emailAddresses":[
                                            "john.doe@oracle.com"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be null",
                                                        "contextItem":"emailAddresses"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v2.0-email-{templatetype}-post",
                "x-filename-id":"ec-notifications-svc-rest-v2.0-email-templatetype-post"
            }
        },
        "/ec-notifications-svc/rest/v3.0/email/{templatetype}":{
            "post":{
                "tags":[
                    "Notifications/Email/Use a template to send notifications"
                ],
                "summary":"V3.0",
                "description":"Sends email to users with the specified template. Supports a list of study role IDs in addition to email addresses. Relative to v2.0: Support studyRoleId to send notifications.",
                "operationId":"sendEmail_2",
                "parameters":[
                    {
                        "name":"templatetype",
                        "in":"path",
                        "description":"Name of the template to use to send email. Valid values are taken from email template configuration database, Allowed Values: CompletedTrainingTemplate, DefaultTrainingTemplate_L10n, CompletedTrainingTemplate_L10n, WithoutStudyTrainingTemplate, AssignedTrainingTemplate",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DefaultTrainingTemplate_L10n"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EmailTemplateDto3"
                            },
                            "examples":{
                                "EmailTemplateDto3":{
                                    "description":"EmailTemplateDto3",
                                    "value":{
                                        "subject":"Training Status Reminder",
                                        "placeHolderValueMap":{
                                            "userTrainingDetails":"",
                                            "redirectUrl":"",
                                            "username":"system",
                                            "studyName":"S4-Copy"
                                        },
                                        "placeHolderImageMap":{
                                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                                            "image2":"NOTIFICATION.EMAIL.IMAGE2",
                                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                                            "image5":"NOTIFICATION.EMAIL.IMAGE5"
                                        },
                                        "studyRoleIds":[
                                            "C60845098A70473488281FD30E248F20"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be null",
                                                        "contextItem":"studyRoleIds"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v3.0-email-{templatetype}-post",
                "x-filename-id":"ec-notifications-svc-rest-v3.0-email-templatetype-post"
            }
        },
        "/ec-notifications-svc/rest/v4.0/email/{templatetype}":{
            "post":{
                "tags":[
                    "Notifications/Email/Use a template to send notifications"
                ],
                "summary":"V4.0",
                "description":"Sends email to users with the specified template. Supports a list of study role IDs in addition to email addresses and adds siteId scoping. Relative to v3.0: adds siteId to scope recipients to a site.",
                "operationId":"sendEmail_3",
                "parameters":[
                    {
                        "name":"templatetype",
                        "in":"path",
                        "description":"Name of the template to use to send email. Valid values are taken from email template configuration database, Allowed Values: CompletedTrainingTemplate, DefaultTrainingTemplate_L10n, CompletedTrainingTemplate_L10n, WithoutStudyTrainingTemplate, AssignedTrainingTemplate",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DefaultTrainingTemplate_L10n"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EmailTemplateDto4"
                            },
                            "examples":{
                                "EmailTemplateDto4":{
                                    "description":"EmailTemplateDto4",
                                    "value":{
                                        "subject":"Training Status Reminder",
                                        "placeHolderValueMap":{
                                            "userTrainingDetails":"",
                                            "redirectUrl":"",
                                            "username":"system",
                                            "studyName":"S4-Copy"
                                        },
                                        "placeHolderImageMap":{
                                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                                            "image2":"NOTIFICATION.EMAIL.IMAGE2",
                                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                                            "image5":"NOTIFICATION.EMAIL.IMAGE5"
                                        },
                                        "studyRoleIds":[
                                            "C60845098A70473488281FD30E248F20"
                                        ],
                                        "siteId":"97EF9A19358D4EEC9224429DD6053609"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be null",
                                                        "contextItem":"studyRoleIds"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v4.0-email-{templatetype}-post",
                "x-filename-id":"ec-notifications-svc-rest-v4.0-email-templatetype-post"
            }
        },
        "/ec-notifications-svc/rest/v1.0/i18support/email/{templatetype}":{
            "post":{
                "tags":[
                    "Notifications/Email/Use a template and an i18n to send notifications"
                ],
                "summary":"V1.0",
                "description":"Sends email to users with the specified template. Provide support to internationalization in addition to list of study role IDs and email addresses.",
                "operationId":"sendEmail_4",
                "parameters":[
                    {
                        "name":"templatetype",
                        "in":"path",
                        "description":"Name of the template to use to send email. Valid values are taken from email template configuration database, Allowed Values: CompletedTrainingTemplate, DefaultTrainingTemplate_L10n, CompletedTrainingTemplate_L10n, WithoutStudyTrainingTemplate, AssignedTrainingTemplate",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"DefaultTrainingTemplate_L10n"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/EmailTemplateNotificationDto"
                            },
                            "examples":{
                                "EmailTemplateNotificationDto":{
                                    "description":"EmailTemplateNotificationDto",
                                    "value":{
                                        "subject":{
                                            "anchorKey":"NTF_SIGN_OVERDUE",
                                            "anchorValues":{
                                                "keyValues":[
                                                    {
                                                        "key":"0",
                                                        "value":"ACTIVE",
                                                        "type":"TEXT"
                                                    }
                                                ]
                                            }
                                        },
                                        "placeHolderValueMap":{
                                            "properties":[
                                                {
                                                    "propertyName":"NTF_HEADER_STUDY_NAME",
                                                    "propertyValue":"NTF_HEADER_STUDY_NAME",
                                                    "anchors":[
                                                        {
                                                            "anchorKey":"NTF_HEADER_GO_TO_C1",
                                                            "anchorValues":{
                                                                "keyValues":[
                                                                    {
                                                                        "key":"0",
                                                                        "value":"ACTIVE",
                                                                        "type":"TEXT"
                                                                    }
                                                                ]
                                                            }
                                                        },
                                                        {
                                                            "anchorKey":"NTF_AUTH_STUDYACCESS_FURTHER_ASSISTANCE",
                                                            "anchorValues":{
                                                                "keyValues":[
                                                                    {
                                                                        "key":1,
                                                                        "value":"PENDING",
                                                                        "type":"TEXT"
                                                                    }
                                                                ]
                                                            }
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        "placeHolderImageMap":{
                                            "logo":"https://cdn.example.com/assets/logo.png"
                                        },
                                        "emailAddresses":[
                                            "john.doe@oracle.com"
                                        ],
                                        "studyRoleIds":[
                                            "1BC29B36F5D64B1B95F4B123CEA481BE"
                                        ],
                                        "users":[
                                            "0000000000000000000000000000000A"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Invalid ID.",
                                                        "contextItem":"users"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-i18support-email-{templatetype}-post",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-i18support-email-templatetype-post"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/notificationlog":{
            "get":{
                "tags":[
                    "Notifications/Log/Get list of all notification logs"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Retrieves a list of all the notification logs with added support for attachments.",
                "operationId":"get",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    },
                    {
                        "name":"id",
                        "in":"query",
                        "description":"Filter by notification log ID (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E888424ABE9B4F259EBFDC1960BBB795"
                    },
                    {
                        "name":"privilege",
                        "in":"query",
                        "description":"Filter by privilege/right name. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ReportNotification"
                    },
                    {
                        "name":"messageSubject",
                        "in":"query",
                        "description":"Filter by message subject (full or partial match, depending on implementation)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"S4-Copy | Study Design Report is ready in Clinical One"
                    },
                    {
                        "name":"serviceName",
                        "in":"query",
                        "description":"Filter by originating service name. Some Examples: dc, ors, reporting",
                        "schema":{
                            "type":"string"
                        },
                        "example":"reporting"
                    },
                    {
                        "name":"priority",
                        "in":"query",
                        "description":"Filter by priority. Some examples: High, Low, 1, 2",
                        "schema":{
                            "type":"string"
                        },
                        "example":"High"
                    },
                    {
                        "name":"category",
                        "in":"query",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Report Generation"
                    },
                    {
                        "name":"entityType",
                        "in":"query",
                        "description":"Filter by entity type Allowed Values: Study, Site, Subject",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Study",
                                "Site",
                                "Subject"
                            ]
                        },
                        "example":"Study"
                    },
                    {
                        "name":"approvalFlag",
                        "in":"query",
                        "description":"Filter by approval flag.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"Y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NotificationLogDto"
                                    }
                                },
                                "examples":{
                                    "NotificationLogDto":{
                                        "description":"NotificationLogDto",
                                        "value":[
                                            {
                                                "serviceName":"reporting",
                                                "messageSubject":"S4-Copy | Study Design Report is ready in Clinical One",
                                                "messageDescription":"Study Design Report is now ready in Clinical One.",
                                                "priority":"Low",
                                                "entityType":"Study",
                                                "category":"Report Generation",
                                                "privilege":"ReportNotification",
                                                "createdBy":"reporting",
                                                "entityId":"6153170BDE5244A0BB3DF169C4168483",
                                                "approvalFlag":"N",
                                                "createdDate":"2025-09-26T16:53:04.759Z",
                                                "userList":"0000000000000000000000000000000A",
                                                "immediateFlag":"Y",
                                                "userId":"0000000000000000000000000000000A",
                                                "versionStart":"2025-09-26T16:53:06.961Z",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "id":"E888424ABE9B4F259EBFDC1960BBB795",
                                                "softwareVersionNumber":1,
                                                "objectVersionNumber":2,
                                                "notificationDatetime":"2025-09-26T16:53:06.961Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"One or more query parameters are invalid",
                                                "details":{
                                                    "contextItem":"EMPTY LIST",
                                                    "message":"No results found for the specified criteria"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationlog-get",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationlog-get"
            },
            "post":{
                "tags":[
                    "Notifications/Log/Create a log entry and broadcast immediately or schedule notifications"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates a log entry and immediately broadcast it or schedules it.",
                "operationId":"addNotificationLog_v1.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationLogDto"
                            },
                            "examples":{
                                "NotificationLogDto":{
                                    "description":"NotificationLogDto",
                                    "value":{
                                        "serviceName":"dc",
                                        "priority":"2",
                                        "createdBy":"Eva, Hulshagen",
                                        "reason":"Inventory control system failure",
                                        "messageSubject":"Cancellation Shipment Request",
                                        "messageDescription":"Drug Order ID: 090098 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 500 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot.",
                                        "comment":"Please ignore.",
                                        "privilege":"SiteStatusChangeNotification",
                                        "entityId":"C8501101155E4EBEA67430A6C60D983E",
                                        "approvalFlag":"Y",
                                        "entityType":"Site",
                                        "category":"cat1",
                                        "immediateFlag":"n"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationLogDto"
                                },
                                "examples":{
                                    "NotificationLogDto":{
                                        "description":"NotificationLogDto",
                                        "value":{
                                            "serviceName":"dc",
                                            "messageSubject":"Cancellation Shipment Request",
                                            "messageDescription":"Drug Order ID: 090098",
                                            "priority":"2",
                                            "entityType":"Site",
                                            "category":"cat1",
                                            "privilege":"SiteStatusChangeNotification",
                                            "createdBy":"Eva, Hulshagen",
                                            "reason":"Inventory control system failure",
                                            "comment":"Please ignore.",
                                            "entityId":"C8501101155E4EBEA67430A6C60D983E",
                                            "approvalFlag":"Y",
                                            "createdDate":"2025-11-28T10:27:45.820Z",
                                            "userList":null,
                                            "immediateFlag":"n",
                                            "userId":"0000000000000000000000000000000A",
                                            "versionStart":"2025-11-28T10:27:45.820Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"CREATED",
                                            "id":"6C6946FB5E78471F8CA0E5DD76524F1D",
                                            "softwareVersionNumber":1,
                                            "objectVersionNumber":1,
                                            "notificationDatetime":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be empty or null.",
                                                        "contextItem":"messageDescription"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationlog-post",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationlog-post"
            }
        },
        "/ec-notifications-svc/rest/v2.0/studies/{studyId}/{mode}/notificationlog":{
            "get":{
                "tags":[
                    "Notifications/Log/Get list of all notification logs"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Retrieves a list of all the notification logs with added support for attachments. Relative to v1.0: includes email delivery fields (emailAddressList, attachment, emailOnlyFlag, attachmentUrl, attachmentUrlProvider, attachmentProviderVersion).",
                "operationId":"get_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    },
                    {
                        "name":"id",
                        "in":"query",
                        "description":"Filter by notification log ID (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E888424ABE9B4F259EBFDC1960BBB795"
                    },
                    {
                        "name":"privilege",
                        "in":"query",
                        "description":"Filter by privilege/right name. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ReportNotification"
                    },
                    {
                        "name":"messageSubject",
                        "in":"query",
                        "description":"Filter by message subject (full or partial match, depending on implementation)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"S4-Copy | Study Design Report is ready in Clinical One"
                    },
                    {
                        "name":"serviceName",
                        "in":"query",
                        "description":"Filter by originating service name. Some examples: dc, ors, reporting",
                        "schema":{
                            "type":"string"
                        },
                        "example":"reporting"
                    },
                    {
                        "name":"priority",
                        "in":"query",
                        "description":"Filter by priority. Some examples: High, Low, 1, 2",
                        "schema":{
                            "type":"string"
                        },
                        "example":"High"
                    },
                    {
                        "name":"category",
                        "in":"query",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Report Generation"
                    },
                    {
                        "name":"entityType",
                        "in":"query",
                        "description":"Filter by entity type Allowed Values: Study, Site, Subject",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Study",
                                "Site",
                                "Subject"
                            ]
                        },
                        "example":"Study"
                    },
                    {
                        "name":"approvalFlag",
                        "in":"query",
                        "description":"Filter by approval flag",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"Y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NotificationLogDto2"
                                    }
                                },
                                "examples":{
                                    "NotificationLogDto2List":{
                                        "description":"NotificationLogDto2List",
                                        "value":[
                                            {
                                                "serviceName":"ors",
                                                "messageSubject":null,
                                                "messageDescription":null,
                                                "priority":"1",
                                                "entityType":"Site",
                                                "category":"category",
                                                "privilege":"CodeBreakNotification",
                                                "createdBy":"system",
                                                "reason":"NTF_ORS_BODY_NO",
                                                "comment":"Notification",
                                                "entityId":"E229D075442943B48C2AEE41B167DA10",
                                                "approvalFlag":"N",
                                                "createdDate":"2025-10-07T18:11:19.397Z",
                                                "userList":null,
                                                "immediateFlag":"Y",
                                                "userId":"0000000000000000000000000000000A",
                                                "versionStart":"2025-10-07T18:11:19.540Z",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "id":"D0CAD25C187A4C379D7ED32264D28287",
                                                "emailAddressList":null,
                                                "attachment":null,
                                                "emailOnlyFlag":"N",
                                                "attachmentUrl":null,
                                                "attachmentUrlProvider":null,
                                                "attachmentProviderVersion":null,
                                                "softwareVersionNumber":3,
                                                "objectVersionNumber":2,
                                                "notificationDatetime":"2025-10-07T18:11:19.540Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Illegal Arguments used",
                                                "details":{
                                                    "message":"Invalid Query parameter",
                                                    "contextItem":"Notification.QueryParams"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v2.0-studies-{studyId}-{mode}-notificationlog-get",
                "x-filename-id":"ec-notifications-svc-rest-v2.0-studies-studyid-mode-notificationlog-get"
            },
            "post":{
                "tags":[
                    "Notifications/Log/Create a log entry and broadcast immediately or schedule notifications"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Creates a log entry and immediately sends it or schedules it to be sent with the Scheduler service. This API includes added support for attachment and list of email addresses. Relative to v1.0: adds emailAddressList, attachment, emailOnlyFlag, and attachmentUrl/attachmentUrlProvider/attachmentProviderVersion fields.",
                "operationId":"addNotificationLog_v2.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationLogDto2"
                            },
                            "examples":{
                                "NotificationLogDto2":{
                                    "description":"NotificationLogDto2",
                                    "value":{
                                        "serviceName":"dc",
                                        "priority":"2",
                                        "createdBy":"Eva, Hulshagen",
                                        "reason":"Inventory control system failure",
                                        "messageSubject":"Cancellation Shipment Request",
                                        "messageDescription":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Dabir Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot.",
                                        "comment":"Please ignore.",
                                        "privilege":"SiteStatusChangeNotification",
                                        "entityId":"C8501101155E4EBEA67430A6C60D983E",
                                        "approvalFlag":"Y",
                                        "entityType":"Site",
                                        "category":"cat1",
                                        "immediateFlag":"n",
                                        "emailAddressList":"john.doe@oracle.com",
                                        "attachment":"SGVsbG8gd29ybGQh11",
                                        "emailOnlyFlag":"y",
                                        "attachmentUrl":"",
                                        "attachmentUrlProvider":"",
                                        "attachmentProviderVersion":""
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationLogDto2"
                                },
                                "examples":{
                                    "NotificationLogDto2":{
                                        "description":"NotificationLogDto2",
                                        "value":{
                                            "serviceName":"dc",
                                            "messageSubject":"Cancellation Shipment Request",
                                            "messageDescription":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Dabir Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot.",
                                            "priority":"2",
                                            "entityType":"Site",
                                            "category":"cat1",
                                            "privilege":"SiteStatusChangeNotification",
                                            "createdBy":"Eva, Hulshagen",
                                            "reason":"Inventory control system failure",
                                            "comment":"Please ignore.",
                                            "entityId":"C8501101155E4EBEA67430A6C60D983E",
                                            "approvalFlag":"Y",
                                            "createdDate":"2025-12-02T17:44:20.219Z",
                                            "userList":null,
                                            "immediateFlag":"n",
                                            "userId":"0000000000000000000000000000000A",
                                            "versionStart":"2025-12-02T17:44:20.219Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"CREATED",
                                            "id":"B99E5A1CCB7949318B7A87AD54662EFC",
                                            "emailAddressList":"john.doe@oracle.com",
                                            "attachment":null,
                                            "emailOnlyFlag":"N",
                                            "attachmentUrl":null,
                                            "attachmentUrlProvider":null,
                                            "attachmentProviderVersion":null,
                                            "softwareVersionNumber":2,
                                            "objectVersionNumber":1,
                                            "notificationDatetime":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"You have provided an invalid entry in the payload. Please fix it and re-send.",
                                                        "contextItem":"attachmentUrlProvider"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v2.0-studies-{studyId}-{mode}-notificationlog-post",
                "x-filename-id":"ec-notifications-svc-rest-v2.0-studies-studyid-mode-notificationlog-post"
            }
        },
        "/ec-notifications-svc/rest/v3.0/studies/{studyId}/{mode}/notificationlog":{
            "get":{
                "tags":[
                    "Notifications/Log/Get list of all notification logs"
                ],
                "summary":"V3.0",
                "description":"Retrieves the list of all the notification logs with added support for attachments. Relative to v2.0: includes targetList in response.",
                "operationId":"get_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    },
                    {
                        "name":"id",
                        "in":"query",
                        "description":"Filter by notification log ID (UUID, 32-character uppercase hexadecimal string)",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"E888424ABE9B4F259EBFDC1960BBB795"
                    },
                    {
                        "name":"privilege",
                        "in":"query",
                        "description":"Filter by privilege/right name. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ReportNotification"
                    },
                    {
                        "name":"messageSubject",
                        "in":"query",
                        "description":"Filter by message subject (full or partial match, depending on implementation)",
                        "schema":{
                            "type":"string"
                        },
                        "example":"S4-Copy | Study Design Report is ready in Clinical One"
                    },
                    {
                        "name":"serviceName",
                        "in":"query",
                        "description":"Filter by originating service name. Some examples: dc, ors, reporting",
                        "schema":{
                            "type":"string"
                        },
                        "example":"reporting"
                    },
                    {
                        "name":"priority",
                        "in":"query",
                        "description":"Filter by priority. Some examples: High, Low, 1, 2",
                        "schema":{
                            "type":"string"
                        },
                        "example":"High"
                    },
                    {
                        "name":"category",
                        "in":"query",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Report Generation"
                    },
                    {
                        "name":"entityType",
                        "in":"query",
                        "description":"Filter by entity type Allowed Values: Study, Site, Subject",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Study",
                                "Site",
                                "Subject"
                            ]
                        },
                        "example":"Study"
                    },
                    {
                        "name":"approvalFlag",
                        "in":"query",
                        "description":"Filter by approval flag",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"Y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NotificationLogDto3"
                                    }
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":[
                                            {
                                                "serviceName":"dc",
                                                "messageSubject":null,
                                                "messageDescription":null,
                                                "priority":"1",
                                                "entityType":"Subject",
                                                "category":"category",
                                                "privilege":"SubjectUndoAddNotificationGet",
                                                "createdBy":"system",
                                                "reason":"Subject Undo Add",
                                                "comment":"Subject Undo Add Notification",
                                                "entityId":"515D8531E6A94B1BB238E58A572D8C80",
                                                "approvalFlag":"N",
                                                "createdDate":"2025-09-26T10:08:47.084Z",
                                                "userList":null,
                                                "immediateFlag":"Y",
                                                "userId":"0000000000000000000000000000000A",
                                                "versionStart":"2025-09-26T10:08:47.194Z",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "id":"2FDA6219BB4843FB938AA1305EFC318A",
                                                "emailAddressList":null,
                                                "attachment":null,
                                                "emailOnlyFlag":"N",
                                                "attachmentUrl":null,
                                                "attachmentUrlProvider":null,
                                                "attachmentProviderVersion":null,
                                                "targetList":[
                                                    {
                                                        "targetType":"Site",
                                                        "targetId":"515D8531E6A94B1BB238E58A572D8C80"
                                                    }
                                                ],
                                                "softwareVersionNumber":3,
                                                "objectVersionNumber":2,
                                                "notificationDatetime":"2025-09-26T10:08:47.194Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Illegal Arguments used",
                                                "details":{
                                                    "message":"Invalid Query parameter",
                                                    "contextItem":"Notification.QueryParams"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v3.0-studies-{studyId}-{mode}-notificationlog-get",
                "x-filename-id":"ec-notifications-svc-rest-v3.0-studies-studyid-mode-notificationlog-get"
            },
            "post":{
                "tags":[
                    "Notifications/Log/Create a log entry and broadcast immediately or schedule notifications"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Creates a log entry and immediately broadcast it or schedules it. Relative to v2.0: adds targetList to direct notifications to specific sites.",
                "operationId":"addNotificationLog_v3.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationLogDto3"
                            },
                            "examples":{
                                "NotificationLogDto3":{
                                    "description":"NotificationLogDto3",
                                    "value":{
                                        "serviceName":"dc",
                                        "priority":"2",
                                        "createdBy":"Eva, Hulshagen",
                                        "reason":"Inventory control system failure",
                                        "messageSubject":"Cancellation Shipment Request",
                                        "messageDescription":"Drug Order ID: 090098 Original Request Date: Eastern Time (US & Canada): 21-May-2012 09:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 03:56 PM Site ID: 500 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drg supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot.",
                                        "comment":"Please ignore.",
                                        "privilege":"SiteStatusChangeNotification",
                                        "entityId":"9B6204293336415DA7E62B84870312C0",
                                        "approvalFlag":"Y",
                                        "entityType":"Site",
                                        "category":"cat1",
                                        "immediateFlag":"n",
                                        "userList":null,
                                        "emailOnlyFlag":"n",
                                        "id":"9B6204293336415DA7E62B84870312C0",
                                        "userId":"0000000000000000000000000000000A",
                                        "targetList":[
                                            {
                                                "targetType":"Site",
                                                "targetId":"E229D075442943B48C2AEE41B167DA10"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationLogDto3"
                                },
                                "examples":{
                                    "NotificationLogDto3":{
                                        "description":"NotificationLogDto3",
                                        "value":{
                                            "serviceName":"dc",
                                            "messageSubject":"Cancellation Shipment Request",
                                            "messageDescription":"Drug Order ID: 090098 Original Request Date: Eastern Time (US & Canada): 21-May-2012 09:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 03:56 PM Site ID: 500 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drg supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot.",
                                            "priority":"2",
                                            "entityType":"Site",
                                            "category":"cat1",
                                            "privilege":"SiteStatusChangeNotification",
                                            "createdBy":"Eva, Hulshagen",
                                            "reason":"Inventory control system failure",
                                            "comment":"Please ignore.",
                                            "entityId":"9B6204293336415DA7E62B84870312C0",
                                            "approvalFlag":"Y",
                                            "createdDate":"2025-12-02T17:50:50.292Z",
                                            "userList":null,
                                            "immediateFlag":"n",
                                            "userId":"0000000000000000000000000000000A",
                                            "versionStart":"2025-12-02T17:50:50.292Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"CREATED",
                                            "id":"4E5B6E1C5E964A5E945FDC1D27F3E117",
                                            "emailAddressList":null,
                                            "attachment":null,
                                            "emailOnlyFlag":"n",
                                            "attachmentUrl":null,
                                            "attachmentUrlProvider":null,
                                            "attachmentProviderVersion":null,
                                            "targetList":[
                                                {
                                                    "targetType":"Site",
                                                    "targetId":"E229D075442943B48C2AEE41B167DA10"
                                                }
                                            ],
                                            "softwareVersionNumber":2,
                                            "objectVersionNumber":1,
                                            "notificationDatetime":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Invalid Site",
                                                        "contextItem":"targetList[0].targetId"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-notifications-svc-rest-v3.0-studies-{studyId}-{mode}-notificationlog-post",
                "x-filename-id":"ec-notifications-svc-rest-v3.0-studies-studyid-mode-notificationlog-post"
            }
        },
        "/ec-notifications-svc/rest/v4.0/studies/{studyId}/{mode}/notificationlog":{
            "post":{
                "tags":[
                    "Notifications/Log/Create a log entry and broadcast immediately or schedule notifications"
                ],
                "summary":"V4.0",
                "description":"Creates a log entry and immediately broadcast it or schedules it.This version supports multiple language. This version of the API take input a message with Subject and body and replaces the keys in it based on the user selected language. This API includes added support for attachment and list of email addresses. This version supports site/depot level access. Relative to v3.0: introduces messageLanguageSupported (subject/body anchor keys) and site/depot-level access.",
                "operationId":"addNotificationLog_v4.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationLogDto4"
                            },
                            "examples":{
                                "NotificationLogDto4":{
                                    "description":"NotificationLogDto4",
                                    "value":{
                                        "serviceName":"dc",
                                        "priority":"2",
                                        "createdBy":"Eva, Hulshagen",
                                        "reason":"Inventory control system failure",
                                        "comment":"Please ignore.",
                                        "privilege":"SiteStatusChangeNotification",
                                        "entityId":"9B6204293336415DA7E62B84870312C0",
                                        "approvalFlag":"Y",
                                        "entityType":"Site",
                                        "category":"cat1",
                                        "immediateFlag":"n",
                                        "userList":null,
                                        "emailOnlyFlag":"n",
                                        "id":"9B6204293336415DA7E62B84870312C0",
                                        "userId":"0000000000000000000000000000000A",
                                        "messageLanguageSupported":{
                                            "subject":{
                                                "anchorKey":"NTF_ORS_SUBJECT_DEPOT_LOW_KIT_SUPPLY",
                                                "values":[
                                                    {
                                                        "key":"0",
                                                        "keyType":"TEXT",
                                                        "name":"DEPO01"
                                                    }
                                                ]
                                            },
                                            "body":{
                                                "htmlContent":"Clinical OneNTF_ORS_DEPOT_LOW_KITNTF_ORS_BODY_STUDY_NAME: Rave_StudyNTF_ORS_BODY_STUDY_ID: Rave_StudyNTF_ORS_BODY_STUDY_MODE: NTF_ORS_MODE_ACTIVENTF_ORS_NEW_SHIPMENT_DEPOT_ID: DEPO01NTF_ORS_NEW_SHIPMENT_DEPOT_NAME: DEPO-01NTF_ORS_DEPOT_ADDRESS: #6700, Park Street,Opposite to Redfort,Noida,IN,Delhi,577126 NTF_ORS_KIT_TYPE_ID: KitB | NTF_ORS_KIT_TYPE_DESCRIPTION: KitB_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_KIT_TYPE_ID: KitA | NTF_ORS_KIT_TYPE_DESCRIPTION: KitA_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_DATE_ALERT_RAISED: NTF_ORS_DATE_PERFORMED",
                                                "anchors":[
                                                    {
                                                        "anchorKey":"NTF_ORS_DATE_PERFORMED",
                                                        "values":[
                                                            {
                                                                "key":"0",
                                                                "keyType":"DATE",
                                                                "name":"2025-11-24T18:31:02.789+0000"
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "anchorKey":"NTF_ORS_DEPOT_LOW_KIT",
                                                        "values":[
                                                            {
                                                                "key":"0",
                                                                "keyType":"TEXT",
                                                                "name":"DEPO01"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationLogDto4"
                                },
                                "examples":{
                                    "NotificationLogDto4":{
                                        "description":"NotificationLogDto4",
                                        "value":{
                                            "serviceName":"dc",
                                            "messageSubject":null,
                                            "messageDescription":null,
                                            "priority":"2",
                                            "entityType":"Site",
                                            "category":"cat1",
                                            "privilege":"SiteStatusChangeNotification",
                                            "createdBy":"Eva, Hulshagen",
                                            "reason":"Inventory control system failure",
                                            "comment":"Please ignore.",
                                            "entityId":"9B6204293336415DA7E62B84870312C0",
                                            "approvalFlag":"Y",
                                            "createdDate":"2025-12-02T17:54:22.867Z",
                                            "userList":null,
                                            "immediateFlag":"n",
                                            "userId":"0000000000000000000000000000000A",
                                            "versionStart":"2025-12-02T17:54:22.867Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"CREATED",
                                            "id":"91F58FA988FA43B28FE4D6B216351054",
                                            "emailAddressList":null,
                                            "attachment":null,
                                            "emailOnlyFlag":"n",
                                            "attachmentUrl":null,
                                            "attachmentUrlProvider":null,
                                            "attachmentProviderVersion":null,
                                            "targetList":null,
                                            "messageLanguageSupported":{
                                                "subject":{
                                                    "anchorKey":"NTF_ORS_SUBJECT_DEPOT_LOW_KIT_SUPPLY",
                                                    "values":[
                                                        {
                                                            "key":"0",
                                                            "keyType":"TEXT",
                                                            "name":"DEPO01"
                                                        }
                                                    ]
                                                },
                                                "body":{
                                                    "htmlContent":"Clinical OneNTF_ORS_DEPOT_LOW_KITNTF_ORS_BODY_STUDY_NAME: Rave_StudyNTF_ORS_BODY_STUDY_ID: Rave_StudyNTF_ORS_BODY_STUDY_MODE: NTF_ORS_MODE_ACTIVENTF_ORS_NEW_SHIPMENT_DEPOT_ID: DEPO01NTF_ORS_NEW_SHIPMENT_DEPOT_NAME: DEPO-01NTF_ORS_DEPOT_ADDRESS: #6700, Park Street,Opposite to Redfort,Noida,IN,Delhi,577126 NTF_ORS_KIT_TYPE_ID: KitB | NTF_ORS_KIT_TYPE_DESCRIPTION: KitB_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_KIT_TYPE_ID: KitA | NTF_ORS_KIT_TYPE_DESCRIPTION: KitA_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_DATE_ALERT_RAISED: NTF_ORS_DATE_PERFORMED",
                                                    "anchors":[
                                                        {
                                                            "anchorKey":"NTF_ORS_DATE_PERFORMED",
                                                            "values":[
                                                                {
                                                                    "key":"0",
                                                                    "keyType":"DATE",
                                                                    "name":"2025-11-24T18:31:02.789+0000"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "anchorKey":"NTF_ORS_DEPOT_LOW_KIT",
                                                            "values":[
                                                                {
                                                                    "key":"0",
                                                                    "keyType":"TEXT",
                                                                    "name":"DEPO01"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            },
                                            "softwareVersionNumber":3,
                                            "objectVersionNumber":1,
                                            "notificationDatetime":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Request payload validation failed"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v4.0-studies-{studyId}-{mode}-notificationlog-post",
                "x-filename-id":"ec-notifications-svc-rest-v4.0-studies-studyid-mode-notificationlog-post"
            }
        },
        "/ec-notifications-svc/rest/v5.0/studies/{studyId}/{mode}/notificationlog":{
            "post":{
                "tags":[
                    "Notifications/Log/Create a log entry and broadcast immediately or schedule notifications"
                ],
                "summary":"V5.0",
                "description":"Creates a log entry and immediately broadcast it or schedules it. This version supports anchor index which enables having multiple values for an anchor key. Relative to v4.0: adds anchorIndex on body anchors to disambiguate repeated keys.",
                "operationId":"addNotificationLog_v5.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationLogDto5"
                            },
                            "examples":{
                                "NotificationLogDto5":{
                                    "description":"NotificationLogDto5",
                                    "value":{
                                        "serviceName":"dc",
                                        "priority":"2",
                                        "createdBy":"Eva, Hulshagen",
                                        "reason":"Inventory control system failure",
                                        "comment":"Please ignore.",
                                        "privilege":"SiteStatusChangeNotification",
                                        "entityId":"9B6204293336415DA7E62B84870312C0",
                                        "approvalFlag":"Y",
                                        "entityType":"Site",
                                        "category":"cat1",
                                        "immediateFlag":"n",
                                        "userList":null,
                                        "emailOnlyFlag":"n",
                                        "id":"9B6204293336415DA7E62B84870312C0",
                                        "userId":"0000000000000000000000000000000A",
                                        "messageLanguageSupported":{
                                            "subject":{
                                                "anchorKey":"NTF_ORS_SUBJECT_DEPOT_LOW_KIT_SUPPLY",
                                                "values":[
                                                    {
                                                        "key":"0",
                                                        "keyType":"TEXT",
                                                        "name":"DEPO01"
                                                    }
                                                ]
                                            },
                                            "body":{
                                                "htmlContent":"Clinical OneNTF_ORS_DEPOT_LOW_KITNTF_ORS_BODY_STUDY_NAME: Rave_StudyNTF_ORS_BODY_STUDY_ID: Rave_StudyNTF_ORS_BODY_STUDY_MODE: NTF_ORS_MODE_ACTIVENTF_ORS_NEW_SHIPMENT_DEPOT_ID: DEPO01NTF_ORS_NEW_SHIPMENT_DEPOT_NAME: DEPO-01NTF_ORS_DEPOT_ADDRESS: #6700, Park Street,Opposite to Redfort,Noida,IN,Delhi,577126NTF_ORS_KIT_TYPE_ID: KitB | NTF_ORS_KIT_TYPE_DESCRIPTION: KitB_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_KIT_TYPE_ID: KitA | NTF_ORS_KIT_TYPE_DESCRIPTION: KitA_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_DATE_ALERT_RAISED: NTF_ORS_DATE_PERFORMED",
                                                "anchors":[
                                                    {
                                                        "anchorKey":"NTF_ORS_DATE_PERFORMED",
                                                        "anchorIndex":0,
                                                        "values":[
                                                            {
                                                                "key":"0",
                                                                "keyType":"DATE",
                                                                "name":"2025-11-24T18:31:02.789+0000"
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "anchorKey":"NTF_ORS_DEPOT_LOW_KIT",
                                                        "anchorIndex":0,
                                                        "values":[
                                                            {
                                                                "key":"0",
                                                                "keyType":"TEXT",
                                                                "name":"DEPO01"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationLogDto5"
                                },
                                "examples":{
                                    "NotificationLogDto5":{
                                        "description":"NotificationLogDto5",
                                        "value":{
                                            "serviceName":"dc",
                                            "messageSubject":null,
                                            "messageDescription":null,
                                            "priority":"2",
                                            "entityType":"Site",
                                            "category":"cat1",
                                            "privilege":"SiteStatusChangeNotification",
                                            "createdBy":"Eva, Hulshagen",
                                            "reason":"Inventory control system failure",
                                            "comment":"Please ignore.",
                                            "entityId":"9B6204293336415DA7E62B84870312C0",
                                            "approvalFlag":"Y",
                                            "createdDate":"2025-12-02T18:02:58.037Z",
                                            "userList":null,
                                            "immediateFlag":"n",
                                            "userId":"0000000000000000000000000000000A",
                                            "versionStart":"2025-12-02T18:02:58.037Z",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"CREATED",
                                            "id":"809A89ED38BE4836A6A4C524F3799D16",
                                            "emailAddressList":null,
                                            "attachment":null,
                                            "emailOnlyFlag":"n",
                                            "attachmentUrl":null,
                                            "attachmentUrlProvider":null,
                                            "attachmentProviderVersion":null,
                                            "targetList":null,
                                            "messageLanguageSupported":{
                                                "subject":{
                                                    "anchorKey":"NTF_ORS_SUBJECT_DEPOT_LOW_KIT_SUPPLY",
                                                    "values":[
                                                        {
                                                            "key":"0",
                                                            "keyType":"TEXT",
                                                            "name":"DEPO01"
                                                        }
                                                    ]
                                                },
                                                "body":{
                                                    "htmlContent":"Clinical OneNTF_ORS_DEPOT_LOW_KITNTF_ORS_BODY_STUDY_NAME: Rave_StudyNTF_ORS_BODY_STUDY_ID: Rave_StudyNTF_ORS_BODY_STUDY_MODE: NTF_ORS_MODE_ACTIVENTF_ORS_NEW_SHIPMENT_DEPOT_ID: DEPO01NTF_ORS_NEW_SHIPMENT_DEPOT_NAME: DEPO-01NTF_ORS_DEPOT_ADDRESS: #6700, Park Street,Opposite to Redfort,Noida,IN,Delhi,577126NTF_ORS_KIT_TYPE_ID: KitB | NTF_ORS_KIT_TYPE_DESCRIPTION: KitB_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_KIT_TYPE_ID: KitA | NTF_ORS_KIT_TYPE_DESCRIPTION: KitA_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0NTF_ORS_DATE_ALERT_RAISED: NTF_ORS_DATE_PERFORMED",
                                                    "anchors":[
                                                        {
                                                            "anchorKey":"NTF_ORS_DATE_PERFORMED",
                                                            "anchorIndex":0,
                                                            "values":[
                                                                {
                                                                    "key":"0",
                                                                    "keyType":"DATE",
                                                                    "name":"2025-11-24T18:31:02.789+0000"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "anchorKey":"NTF_ORS_DEPOT_LOW_KIT",
                                                            "anchorIndex":0,
                                                            "values":[
                                                                {
                                                                    "key":"0",
                                                                    "keyType":"TEXT",
                                                                    "name":"DEPO01"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            },
                                            "softwareVersionNumber":4,
                                            "objectVersionNumber":1,
                                            "notificationDatetime":"3099-12-31T00:00:00.000Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "ValidationError":{
                                        "description":"ValidationError",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":[
                                                    {
                                                        "message":"Field value cannot be empty or null",
                                                        "contextItem":"serviceName"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v5.0-studies-{studyId}-{mode}-notificationlog-post",
                "x-filename-id":"ec-notifications-svc-rest-v5.0-studies-studyid-mode-notificationlog-post"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/notificationProperties":{
            "get":{
                "tags":[
                    "Notifications/Log/Get notification notification properties for a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves the notification properties for a study.",
                "operationId":"addNotificationProperties_v1.0_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationPropertiesDto"
                                },
                                "examples":{
                                    "NotificationPropertiesDto":{
                                        "description":"NotificationPropertiesDto",
                                        "value":{
                                            "notificationProperties":[
                                                {
                                                    "propertyName":"helpdeskInfo",
                                                    "propertyValue":"For assistance, contact support@example.com or +1-800-123-4567."
                                                },
                                                {
                                                    "propertyName":"showLogo",
                                                    "propertyValue":"true"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-notificationProperties-get",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-notificationproperties-get"
            },
            "put":{
                "tags":[
                    "Notifications/Log/Update notification properties for a study"
                ],
                "summary":"V1.0",
                "description":"Adds or updates the notification properties for a study.",
                "operationId":"addNotificationProperties_v1.0",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationPropertiesDto"
                            },
                            "examples":{
                                "NotificationPropertiesDto":{
                                    "description":"NotificationPropertiesDto",
                                    "value":{
                                        "notificationProperties":[
                                            {
                                                "propertyName":"helpdeskInfo",
                                                "propertyValue":"For assistance, contact support@example.com or +1-800-123-4567."
                                            },
                                            {
                                                "propertyName":"showLogo",
                                                "propertyValue":"true"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationPropertiesDto"
                                },
                                "examples":{
                                    "NotificationPropertiesDto":{
                                        "description":"NotificationPropertiesDto",
                                        "value":{
                                            "notificationProperties":[
                                                {
                                                    "propertyName":"helpdeskInfo",
                                                    "propertyValue":"For assistance, contact support@example.com or +1-800-123-4567."
                                                },
                                                {
                                                    "propertyName":"showLogo",
                                                    "propertyValue":"true"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-notificationProperties-put",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-notificationproperties-put"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/notificationsbroadcast":{
            "get":{
                "tags":[
                    "Notifications/Broadcast/View notification broadcast message description"
                ],
                "summary":"V1.0",
                "description":"Gets list of notification based on query parameter for user in specific order",
                "operationId":"get_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    },
                    {
                        "name":"userEmailAddress",
                        "in":"query",
                        "description":"Filter by user email address.",
                        "schema":{
                            "type":"string",
                            "format":"email"
                        },
                        "example":"user@example.com"
                    },
                    {
                        "name":"userName",
                        "in":"query",
                        "description":"Filter by user name.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"system ClinicalOne"
                    },
                    {
                        "name":"subscription",
                        "in":"query",
                        "description":"Filter by subscription status. Accepted values: YES or NO.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "YES",
                                "NO"
                            ]
                        },
                        "example":"YES"
                    },
                    {
                        "name":"category",
                        "in":"query",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Report Generation"
                    },
                    {
                        "name":"approvalFlag",
                        "in":"query",
                        "description":"Filter by approval flag (Y or N).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Y",
                                "N"
                            ]
                        },
                        "example":"N"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"messageSubject",
                        "in":"query",
                        "description":"Filter by message subject (full or partial match, depending on implementation).",
                        "schema":{
                            "type":"string"
                        },
                        "example":"S4-Copy | Subject Visits (Unblinded) Report is ready in Clinical One"
                    },
                    {
                        "name":"entityId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Get list of notification in a specific order. Accepted values: a-z [Sort by notificationDateTime in ascending order & messageSubject in descending order], z-a [Sort by notificationDateTime & messageSubject in descending order], recent [Sort by entityType & messageSubject in descending order], type [Sort by notificationDateTime in descending order], read [Ordering not enabled], unread [Ordering not enabled]",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "a-z",
                                "z-a",
                                "recent",
                                "type",
                                "read",
                                "unread"
                            ]
                        },
                        "example":"recent"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NotificationsDetailResponse"
                                    }
                                },
                                "examples":{
                                    "NotificationsDetailResponseList":{
                                        "description":"NotificationsDetailResponseList",
                                        "value":[
                                            {
                                                "messageDescription":"Subject Visits (Unblinded) Report is now ready in Clinical One.",
                                                "messageSubject":"S4-Copy | Subject Visits (Unblinded) Report is ready in Clinical One",
                                                "entityId":"6153170BDE5244A0BB3DF169C4168483",
                                                "entityType":"Study",
                                                "notificationsBroadcast":{
                                                    "id":"143253DE694F4320AB69FF46195C38F6",
                                                    "versionStart":"2025-11-13T08:28:02.345Z",
                                                    "notificationLogId":"AB16747FB7DC4F26863979B26F58CBCD",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "userName":"system ClinicalOne",
                                                    "userEmailAddress":"N/A",
                                                    "subscription":"YES",
                                                    "messageReadDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                    "versionEnd":"3099-12-31T00:00:00.000Z",
                                                    "operationType":"MODIFIED",
                                                    "reason":"New Report",
                                                    "archiveDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                    "category":"Report Generation",
                                                    "emailAttemptDateTime":"2025-11-13T08:28:02.345Z",
                                                    "updatedBy":"0000000000000000000000000000000A",
                                                    "softwareVersionNumber":1,
                                                    "approvalFlag":"N",
                                                    "notificationDateTime":"Thu Nov 13 08:28:02 GMT 2025",
                                                    "objectVersionNumber":2,
                                                    "actionId":"143253DE694F4320AB69FF46195C38F6",
                                                    "comment":"New Report"
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Illegal Arguments used",
                                                "details":{
                                                    "message":"Invalid Query parameter",
                                                    "contextItem":"Notification.QueryParams"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationsbroadcast-get",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationsbroadcast-get"
            },
            "post":{
                "tags":[
                    "Notifications/Broadcast/Post request to broadcast notifications"
                ],
                "summary":"V1.0",
                "description":"Process all unprocessed notification logs. It returns processed notifications details in response.",
                "operationId":"addNotificationsBroadcasts_v1.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NotificationsBroadcast"
                                    }
                                },
                                "examples":{
                                    "NotificationsBroadcastList":{
                                        "description":"NotificationsBroadcastList",
                                        "value":[
                                            {
                                                "id":"143253DE694F4320AB69FF46195C38F6",
                                                "versionStart":"2025-11-13T08:28:02.345Z",
                                                "notificationLogId":"AB16747FB7DC4F26863979B26F58CBCD",
                                                "userId":"0000000000000000000000000000000A",
                                                "userName":"system ClinicalOne",
                                                "userEmailAddress":"N/A",
                                                "subscription":"YES",
                                                "messageReadDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "reason":"New Report",
                                                "archiveDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                "category":"Report Generation",
                                                "emailAttemptDateTime":"2025-11-13T08:28:02.345Z",
                                                "updatedBy":"0000000000000000000000000000000A",
                                                "softwareVersionNumber":1,
                                                "approvalFlag":"N",
                                                "notificationDateTime":"Thu Nov 13 08:28:02 GMT 2025",
                                                "objectVersionNumber":2,
                                                "actionId":"143253DE694F4320AB69FF46195C38F6",
                                                "comment":"New Report"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationsbroadcast-post",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationsbroadcast-post"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/notificationsbroadcast/{id}":{
            "get":{
                "tags":[
                    "Notifications/Broadcast/View notification broadcast message description with notification ID"
                ],
                "summary":"V1.0",
                "description":"Retrieves notification broadcast details by notification broadcast ID.",
                "operationId":"getNotificationsBroadcastDataById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the notification to retrieve (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"24C9C2B19F1B46ED964CD6653FC10791"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successfully retrieved broadcast emails. status: success and errorData: null",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationsDetailResponse"
                                },
                                "examples":{
                                    "NotificationsDetailResponse":{
                                        "description":"NotificationsDetailResponse",
                                        "value":{
                                            "messageDescription":"Subject Visits (Unblinded) Report is now ready in Clinical One.",
                                            "messageSubject":"S4-Copy | Subject Visits (Unblinded) Report is ready in Clinical One",
                                            "entityId":"6153170BDE5244A0BB3DF169C4168483",
                                            "entityType":"Study",
                                            "notificationsBroadcast":{
                                                "id":"143253DE694F4320AB69FF46195C38F6",
                                                "versionStart":"2025-11-13T08:28:02.345Z",
                                                "notificationLogId":"AB16747FB7DC4F26863979B26F58CBCD",
                                                "userId":"0000000000000000000000000000000A",
                                                "userName":"system ClinicalOne",
                                                "userEmailAddress":"N/A",
                                                "subscription":"YES",
                                                "messageReadDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                "versionEnd":"3099-12-31T00:00:00.000Z",
                                                "operationType":"MODIFIED",
                                                "reason":"New Report",
                                                "archiveDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                                "category":"Report Generation",
                                                "emailAttemptDateTime":"2025-11-13T08:28:02.345Z",
                                                "updatedBy":"0000000000000000000000000000000A",
                                                "softwareVersionNumber":1,
                                                "approvalFlag":"N",
                                                "notificationDateTime":"Thu Nov 13 08:28:02 GMT 2025",
                                                "objectVersionNumber":2,
                                                "actionId":"143253DE694F4320AB69FF46195C38F6",
                                                "comment":"New Report"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Validation Exception",
                                                "details":{
                                                    "message":"Invalid ID.",
                                                    "contextItem":"Id"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationsbroadcast-{id}-get",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationsbroadcast-id-get"
            },
            "put":{
                "tags":[
                    "Notifications/Broadcast/Update the notification broadcast"
                ],
                "summary":"V1.0",
                "description":"Updates the notification broadcast with the notification broadcast ID. Used for updating the read status of the notification. Returns updated notification broadcast record.",
                "operationId":"updateNotificationsBroadcastData",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the notification broadcast (UUID, 32-character uppercase hexadecimal string)",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"24C9C2B19F1B46ED964CD6653FC10791"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NotificationsBroadcast"
                            },
                            "examples":{
                                "NotificationsBroadcast":{
                                    "description":"NotificationsBroadcast",
                                    "value":{
                                        "id":"143253DE694F4320AB69FF46195C38F6",
                                        "versionStart":"2025-11-13T08:28:02.345Z",
                                        "notificationLogId":"AB16747FB7DC4F26863979B26F58C1CD",
                                        "userId":"0000000000000000000000000000000A",
                                        "userName":"system ClinicalOne",
                                        "userEmailAddress":"N/A",
                                        "subscription":"YES",
                                        "messageReadDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                        "versionEnd":"3099-12-31T00:00:00.000Z",
                                        "operationType":"MODIFIED",
                                        "reason":"New Report",
                                        "archiveDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                        "category":"Report Generation",
                                        "emailAttemptDateTime":"2025-11-13T08:28:02.345Z",
                                        "updatedBy":"0000000000000000000000000000000A",
                                        "softwareVersionNumber":1,
                                        "approvalFlag":"N",
                                        "notificationDateTime":"Thu Nov 13 08:28:02 GMT 2025",
                                        "objectVersionNumber":2,
                                        "actionId":"143253DE694F4320AB69FF46195C38F6",
                                        "comment":"New Report"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationsBroadcast"
                                },
                                "examples":{
                                    "NotificationsBroadcast":{
                                        "description":"NotificationsBroadcast",
                                        "value":{
                                            "id":"143253DE694F4320AB69FF46195C38F6",
                                            "versionStart":"2025-11-13T08:28:02.345Z",
                                            "notificationLogId":"AB16747FB7DC4F26863979B26F58C1CD",
                                            "userId":"0000000000000000000000000000000A",
                                            "userName":"system ClinicalOne",
                                            "userEmailAddress":"N/A",
                                            "subscription":"YES",
                                            "messageReadDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                            "versionEnd":"3099-12-31T00:00:00.000Z",
                                            "operationType":"MODIFIED",
                                            "reason":"New Report",
                                            "archiveDateTime":"Sun Dec 31 00:00:00 GMT 3099",
                                            "category":"Report Generation",
                                            "emailAttemptDateTime":"2025-11-13T08:28:02.345Z",
                                            "updatedBy":"0000000000000000000000000000000A",
                                            "softwareVersionNumber":1,
                                            "approvalFlag":"N",
                                            "notificationDateTime":"Thu Nov 13 08:28:02 GMT 2025",
                                            "objectVersionNumber":2,
                                            "actionId":"143253DE694F4320AB69FF46195C38F6",
                                            "comment":"New Report"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationsbroadcast-{id}-put",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationsbroadcast-id-put"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/notificationsbroadcast/notificationCount":{
            "get":{
                "tags":[
                    "Notifications/Broadcast/Retrieves the number of total and unread notifications"
                ],
                "summary":"V1.0",
                "description":"Display number of total and unread broadcast notifications for a user & study.",
                "operationId":"getNotificationsCount",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "active",
                                "test",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationCount"
                                },
                                "examples":{
                                    "NotificationCount":{
                                        "description":"NotificationCount",
                                        "value":{
                                            "totalCount":12,
                                            "unreadCount":10
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-notificationsbroadcast-notificationCount-get",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-notificationsbroadcast-notificationcount-get"
            }
        },
        "/ec-notifications-svc/rest/v2.0/studies/{studyId}/{mode}/notificationsbroadcast":{
            "post":{
                "tags":[
                    "Notifications/Broadcast/Post request to broadcast notifications"
                ],
                "summary":"V2.0",
                "description":"Request invoked by schedular service to process pending notification broadcasts. Relative to v1.0: Notifications broadcast asynchronously.",
                "operationId":"addNotificationsBroadcasts_v2.0",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"62A16307A4F4479D9415FE7DB0EA0233"
                    }
                ],
                "responses":{
                    "202":{
                        "description":"Request processed successfully, check the result"
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v2.0-studies-{studyId}-{mode}-notificationsbroadcast-post",
                "x-filename-id":"ec-notifications-svc-rest-v2.0-studies-studyid-mode-notificationsbroadcast-post"
            }
        },
        "/ec-notifications-svc/rest/v1.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Notifications/Reports/Generate specific report for notifications settings"
                ],
                "summary":"V1.0",
                "description":"Generates report for notification settings in a study based on the specified report name.",
                "operationId":"generateReport",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Name of the report to generate.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"PROPERTIES_REPORT"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"515D8531E6A94B1BB238E58A572D8C80"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "SearchSpecs":{
                                    "description":"SearchSpecs",
                                    "value":{
                                        "limit":10,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"dateRange",
                                                "fieldValueList":[
                                                    "07-jan-2022",
                                                    "07-dec-2027"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Request processed successfully, check the result",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "PaginatedResponseDto":{
                                        "description":"PaginatedResponseDto",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":10,
                                            "offset":0,
                                            "columns":[
                                                "Oracle Logo (On / Off)",
                                                "Footer Message",
                                                "Last Updated By",
                                                "Last Updated DateTime"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Error in request, check the request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NotificationResponse"
                                },
                                "examples":{
                                    "NotificationResponse":{
                                        "description":"NotificationResponse",
                                        "value":{
                                            "status":"Failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"REP-001",
                                                "errorMessage":"StudySettings"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-notifications-svc-rest-v1.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-notifications-svc-rest-v1.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/blindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded kits for study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Kits dataset for a single study and mode.</p><p>The dataset exposes blinded kit inventory and dispensation history, including study, site, subject, randomization, shipment, lot, kit status, verification/confirmation metadata, and audit columns, without exposing unblinded treatment-arm details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for blinded kits associated with the study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedKitsDataSetQuery",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedKitsDataSetQuery":{
                                    "description":"BlindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_MODE",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_VERSION",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RERANDOMIZATION",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "BLINDED_LOT_TITLE",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "SHIPMENT_RECEIVED_BY_ID",
                                            "SHIPMENT_RECEIVED_BY_WID",
                                            "SHIPMENT_RECEIPT_DATE",
                                            "SHIPMENT_RECEIVED_BY",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "KIT_STATUS",
                                            "KIT_NUMBER",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "STUDY_WID",
                                            "SITE_WID",
                                            "SUBJECT_WID",
                                            "SHIPMENT_WID",
                                            "USER_WID",
                                            "VERIFIED_BY_WID",
                                            "CONFIRMED_BY_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_MODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study mode used in the referencing data in a custom report, such as <code>Test</code>, <code>Training</code>, or <code>Active</code>. Possible values include <code>test</code>, <code>active</code>, or <code>training</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the principal investigator's prefix. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the Drug Enforcement Administration number associated with the site.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the Drug Enforcement Administration number.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Indicates the site's source data verification strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Indicates the number of initial subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the initial subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Indicates the percentage of remaining subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the remaining subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The ZIP or postal code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's phone number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's fax number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's email address, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country, as entered by the site administrator when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level code attributes associated with the site geography for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>NEW</code>: the visit was either dynamically triggered or added as part of Advanced Study Versioning (ASV) and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the system reference name of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization design settings and subject randomization outcome fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the status of a shipment, as updated by the system or by a user in the study. Can have one of the following values:</p><ul><li><code>PENDING</code></li><li><code>IN TRANSIT</code></li><li><code>RECEIVED</code></li><li><code>CANCELLED</code></li><li><code>LOST</code></li><li><code>CONFIRMED</code></li><li><code>INVALID</code></li><li><code>PENDING DESTRUCTION</code></li><li><code>RECEIVED FOR DESTRUCTION</code></li><li><code>DESTROYED</code></li><li><code>QUARANTINED</code></li></ul></td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a manual shipment or an automatic shipment.</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIPT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the shipment was received.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who received the given shipment.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Required kit inventory, dispensing, dosing, and verification fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>BLISTERPACK</code>, <code>BOTTLE</code>, <code>DEVICE</code>, <code>SYRINGE</code>, <code>OINTMENT</code>, <code>VIAL</code>, <code>INHALER</code>, <code>INFUSION</code>, <code>BOX</code>, or <code>OTHER</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minimum number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>ActivityWatch</code>, <code>BloodPressureMonitor</code>, <code>GlucoseMonitor</code>, <code>WeightScale</code>, <code>ECGReader</code>, <code>Spirometer</code>, <code>MobileApp</code>, <code>SmartPillBottle</code>, <code>PulseOximeter</code>, <code>WearablePatch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether the inventory record was verified by a Clinical Research Associate (CRA). Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who confirmed the dispensation of the specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if 'Other' is selected.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the user identifier of the user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of a user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the study's inventory.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the study's inventory.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a shipment.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the user who verified inventory data.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of a user who confirmed the dispensation of a kit during a visit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedKitsDataSetReport":{
                                        "description":"BlindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "test",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "1.0.0.2",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active27",
                                                    "New",
                                                    "0",
                                                    "10004567",
                                                    "Randomized",
                                                    "2025-10-29T12:30:00.000Z",
                                                    "Blinded Lot 1",
                                                    "BLT1",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "SHIP-0001",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "31",
                                                    "2025-10-28T12:00:00.000Z",
                                                    "testuser1",
                                                    "TRK123456",
                                                    "Y",
                                                    "Y",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "0",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "BLINDED",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Available",
                                                    "50281",
                                                    "2025-10-29T12:00:00.000Z",
                                                    "0",
                                                    "AW-50281",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "testuser1",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2025-10-29T12:58:54.137Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "3",
                                                    "Data Entry Error",
                                                    "Corrected metadata",
                                                    "testuser1",
                                                    "Y",
                                                    "25",
                                                    "455",
                                                    "7",
                                                    "1001",
                                                    "31",
                                                    "88",
                                                    "88",
                                                    "2",
                                                    "2025-10-29T13:09:36.857Z",
                                                    "424CA68C1E623E82E063BDD14C646211",
                                                    "271",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "2F14BA8314EC4733A7B1504CDF494E16",
                                                    "27",
                                                    "Clinical Supply Manager - Unblinded (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedKitsDataSetEmptyReport":{
                                        "description":"BlindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-blindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-blindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/codelists":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get codelists for a study and a given mode"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Codelists dataset for a single study and explicitly selected study mode.</p><p>The dataset exposes codelist values used by forms and questions, together with study, form, item, codelist, audit and reference attributes.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for codelist values available in the selected study mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyCodelistDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, <code>CODELIST_ID</code>, and <code>CODELISTITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EC942244BB30163BE053BEC44C64CF34"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "StudyModeCodelistsDataSetQuery":{
                                    "description":"StudyModeCodelistsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "STUDY_VERSION",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFERENCE_CODE",
                                            "IS_REPEATING",
                                            "DH_TIMESTAMP",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "QUESTION_NAME",
                                            "QUESTION_REFERENCE_CODE",
                                            "QUESTION_REQUIRED",
                                            "CODELIST_ID",
                                            "CODELIST_WID",
                                            "CODE_LIST_TITLE",
                                            "LAB_NORMALS_TAGS",
                                            "CODE_LIST_DESCRIPTION",
                                            "CODELISTITEM_ID",
                                            "CODELISTITEM_WID",
                                            "CODE_VALUE",
                                            "CODE_DESCRIPTION",
                                            "CODE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "IS_CURRENT",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODELIST_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODELISTITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#codelist-context\">Codelist context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers and version metadata associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level attributes associated with the codelist value row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference code, as specified by the study designer.</td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>NUMBER(1)</td><td>Indicates whether the form is repeating. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level attributes associated with the codelist value row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>QUESTION_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>A question's reference code, as specified by the study designer when they created the question.</td></tr>\n    <tr><td><code>QUESTION_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"codelist-context\">Codelist context</h4>\n<p>Codelist value, code metadata, and codelist-level descriptive attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_LIST_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Title of the codelist associated with the question.</td></tr>\n    <tr><td><code>LAB_NORMALS_TAGS</code></td><td>VARCHAR2(1000 CHAR)</td><td>Lab normals tags associated with the codelist.</td></tr>\n    <tr><td><code>CODE_LIST_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Description of the codelist associated with the question.</td></tr>\n    <tr><td><code>CODE_VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The code value.</td></tr>\n    <tr><td><code>CODE_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the code record.</td></tr>\n    <tr><td><code>CODE</code></td><td>VARCHAR2(255 CHAR)</td><td>Custom defined identifier for a code in Clinical One Cloud Service.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>CODELIST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist.</td></tr>\n    <tr><td><code>CODELIST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the codelist.</td></tr>\n    <tr><td><code>CODELISTITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist item.</td></tr>\n    <tr><td><code>CODELISTITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who performed the action.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who performed the action.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>Data Hub timestamp for the dataset row.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Clinical One software version number associated with the dataset row.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "StudyModeCodelistsDataSetReport":{
                                        "description":"StudyModeCodelistsDataSetReport",
                                        "value":{
                                            "hasMore":"true",
                                            "totalResults":247,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFERENCE_CODE",
                                                "IS_REPEATING",
                                                "DH_TIMESTAMP",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "QUESTION_NAME",
                                                "QUESTION_REFERENCE_CODE",
                                                "QUESTION_REQUIRED",
                                                "CODELIST_ID",
                                                "CODELIST_WID",
                                                "CODE_LIST_TITLE",
                                                "LAB_NORMALS_TAGS",
                                                "CODE_LIST_DESCRIPTION",
                                                "CODELISTITEM_ID",
                                                "CODELISTITEM_WID",
                                                "CODE_VALUE",
                                                "CODE_DESCRIPTION",
                                                "CODE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "IS_CURRENT",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "STUDY01",
                                                    "1.0.0.1",
                                                    "E243611973104C1CB86F4EE3207F74CD",
                                                    "147",
                                                    "Pregnancy",
                                                    "PREGNANCY",
                                                    "0",
                                                    "2025-10-29T12:34:57.237Z",
                                                    "0826A6111AFC42D6B4FCD89752A38A7F",
                                                    "451",
                                                    "IS_FIRST_DELIVERY",
                                                    "IS_FIRST_DELIVERY",
                                                    "1",
                                                    "BC82F7EFE4974D93A685FC405C2F6D7C",
                                                    "135",
                                                    "IS_FIRST_DELIVERY",
                                                    "pregnancy;obstetrics",
                                                    "IS_FIRST_DELIVERY",
                                                    "2E92E11B70B940CA8C74E80BFFB7BB82",
                                                    "68",
                                                    "Yes",
                                                    "Yes",
                                                    "Y",
                                                    "2025-10-29T12:13:55.730Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Y",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "1",
                                                    "2",
                                                    "Initial load",
                                                    "Seeded from codelist migration"
                                                ]
                                            ]
                                        }
                                    },
                                    "StudyModeCodelistsDataSetEmptyReport":{
                                        "description":"StudyModeCodelistsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":100,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFERENCE_CODE",
                                                "IS_REPEATING",
                                                "DH_TIMESTAMP",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "QUESTION_NAME",
                                                "QUESTION_REFERENCE_CODE",
                                                "QUESTION_REQUIRED",
                                                "CODELIST_ID",
                                                "CODELIST_WID",
                                                "CODE_LIST_TITLE",
                                                "LAB_NORMALS_TAGS",
                                                "CODE_LIST_DESCRIPTION",
                                                "CODELISTITEM_ID",
                                                "CODELISTITEM_WID",
                                                "CODE_VALUE",
                                                "CODE_DESCRIPTION",
                                                "CODE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "IS_CURRENT",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-codelists-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-codelists-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/{mode}/dhSynchupTime":{
            "get":{
                "tags":[
                    "Data Hub/Get Datahub latest sync timestamp"
                ],
                "summary":"V1.0",
                "description":"Get Datahub latest sync timestamp",
                "operationId":"getDHSyncTimestamp",
                "parameters":[
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DHSyncDto"
                                },
                                "examples":{
                                    "DHSyncDto":{
                                        "description":"DHSyncDto",
                                        "value":{
                                            "mode":"active",
                                            "dhSyncTimestamp":"2025-11-17T17:30:03.737Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "DHSyncDto":{
                                        "description":"DHSyncDto",
                                        "value":{
                                            "description":"Invalid mode Invalid mode value. allowed values are{training|active|test|design}",
                                            "code":"Bad Request"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-{mode}-dhSynchupTime-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-mode-dhsynchuptime-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, and <code>BRANCH_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>NUMBER(10)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, and <code>TITRATION</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "Week2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/metrics":{
            "get":{
                "tags":[
                    "Data Hub/Datasets/Get datahub metrics details"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Metrics dataset for a single study and mode.</p><p>The dataset exposes study-level metadata and operational consistency metrics that compare source Clinical One row counts and maximum version timestamps with the Data Hub analytics model.</p><p>This endpoint returns the complete Metrics dataset row and does not accept select, filter, sort, limit, or offset query patterns.</p><p>The dataset can be used to verify the latest data refresh time and whether supported study data is currently consistent between Clinical One Cloud Service and Oracle Clinical One Analytics.</p><p><strong>Required permission</strong>: The caller must have access to at least one of the following Data Hub dataset permissions for the study: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedKitsDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DMActionsPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyAnalyticsCodelistDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">TenantCodelistDatasetPost</a>, <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>, or <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p>",
                "operationId":"getMetricsDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the output order, and <code>data</code> contains the single Metrics dataset row values in that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li>Column selection and pagination are not supported for this dataset.</li>\n  <li>If no metrics row is available for the requested study and mode, the API returns HTTP 200 with <code>data = []</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#clinical-one-source-metrics\">Clinical One source metrics</a> | <a href=\"#data-hub-metrics\">Data Hub metrics</a> | <a href=\"#synchronization-status\">Synchronization status</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level metadata associated with the metrics row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Study description associated with the current study version used by the metrics row.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"clinical-one-source-metrics\">Clinical One source metrics</h4>\n<p>Row counts and maximum version timestamps from the source Clinical One tables.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>C1_INVENTORIES_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>inventories</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_INVENTORIES_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>inventories</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_SUBJECT_FORMITEMS_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>subject form items</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_SUB_FORMITEMS_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>subject form items</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_STUDY_VERSIONS_HIST_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>study versions history</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_STDY_VER_HIST_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>study versions history</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_SUBJ_QUERIES_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>queries</code> table from the core Clinical One system.</td></tr>\n    <tr><td><code>C1_SUBJ_QUERIES_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>queries</code> table from the core Clinical One system.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"data-hub-metrics\">Data Hub metrics</h4>\n<p>Row counts and maximum version timestamps from the Oracle Clinical One Analytics data model.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>DH_INVENTORIES_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>inventories</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_INVENTORIES_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>inventories</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>subject form items</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_SUB_FORMITEMS_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>subject form items</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_STUDY_VERSIONS_HIST_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>study versions history</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_STDY_VER_HIST_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>study versions history</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_SUBJ_QUERIES_ROWCNT</code></td><td>NUMBER(10)</td><td>Row counts of the <code>queries</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n    <tr><td><code>DH_SUBJ_QUERIES_MAX_VER_START</code></td><td>TIMESTAMP(6)</td><td>Maximum version of the <code>queries</code> table from the data model in the Oracle Clinical One Analytics system.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"synchronization-status\">Synchronization status</h4>\n<p>Refresh timestamps and consistency status for the study and mode.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>LAST_ETL_RUN_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>Last time that the instance of Oracle Clinical One Analytics was processed for Analytics. Data processing always occurs after data retrieval.</td></tr>\n    <tr><td><code>HEARTBEAT_CONSOLIDATION_TS</code></td><td>TIMESTAMP(6)</td><td>Last time that the identified study and mode sent data that was retrieved for Oracle Clinical One Analytics.</td></tr>\n    <tr><td><code>IS_DATA_CONSISTENT</code></td><td>VARCHAR2(10 CHAR)</td><td><code>Yes</code> or <code>No</code> label for consistency check. Indicates whether the study's data is consistent by comparing row counts and maximum version history from core Clinical One Cloud Service and the Oracle Clinical One Analytics data model.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers used to associate the metrics row with the study.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the ID of the study as in the system.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>Numeric warehouse identifier for the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubSingleReportDto"
                                },
                                "examples":{
                                    "MetricsDataSetReport":{
                                        "description":"MetricsDataSetReport",
                                        "value":{
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "BLINDING_TYPE",
                                                "STUDY_TITLE",
                                                "STUDY_PHASE",
                                                "STUDY_REFNAME",
                                                "STUDY_DESCRIPTION",
                                                "THERAPEUTIC_AREA",
                                                "C1_INVENTORIES_ROWCNT",
                                                "C1_SUBJECT_FORMITEMS_ROWCNT",
                                                "C1_STUDY_VERSIONS_HIST_ROWCNT",
                                                "C1_INVENTORIES_MAX_VER_START",
                                                "C1_SUB_FORMITEMS_MAX_VER_START",
                                                "C1_STDY_VER_HIST_MAX_VER_START",
                                                "DH_INVENTORIES_ROWCNT",
                                                "DH_SUBJECT_FORMITEMS_ROWCNT",
                                                "DH_STUDY_VERSIONS_HIST_ROWCNT",
                                                "DH_INVENTORIES_MAX_VER_START",
                                                "DH_SUB_FORMITEMS_MAX_VER_START",
                                                "DH_STDY_VER_HIST_MAX_VER_START",
                                                "C1_SUBJ_QUERIES_ROWCNT",
                                                "DH_SUBJ_QUERIES_ROWCNT",
                                                "C1_SUBJ_QUERIES_MAX_VER_START",
                                                "DH_SUBJ_QUERIES_MAX_VER_START",
                                                "LAST_ETL_RUN_TIMESTAMP",
                                                "HEARTBEAT_CONSOLIDATION_TS",
                                                "IS_DATA_CONSISTENT"
                                            ],
                                            "data":[
                                                "E8230E450E844721A67F8EBFF71B160D",
                                                "10",
                                                "OpenLabel",
                                                "T24.21",
                                                "I",
                                                "T24.2",
                                                "Test24.21",
                                                "CardiologyVascularDiseases",
                                                "19482",
                                                "2177",
                                                "352",
                                                "2025-10-27T18:54:00.923Z",
                                                "2025-11-24T07:54:51.810Z",
                                                "2025-11-28T15:50:05.316Z",
                                                "19482",
                                                "2177",
                                                "352",
                                                "2025-10-27T18:54:00.923Z",
                                                "2025-11-24T07:54:51.810Z",
                                                "2025-11-28T15:50:05.316Z",
                                                "77",
                                                "77",
                                                "2025-10-10T07:04:45.332Z",
                                                "2025-10-10T07:04:45.332Z",
                                                "2025-12-01T17:18:14.683Z",
                                                "2025-12-03T19:32:11.789Z",
                                                "Yes"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code> path parameter values, or a validation error while resolving the Metrics dataset row.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidTenantId":{
                                        "description":"InvalidTenantId",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid UUID provided for tenantId: 00000000000000000000000"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-metrics-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-metrics-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/studies/{studyId}/{mode}/odm/admin":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for admin data"
                ],
                "summary":"V1.0",
                "description":"This API is used to extract administration data in CDISC ODM-XML format.",
                "operationId":"getAdminOdm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string",
                            "example":"true",
                            "enum":[
                                "true",
                                "false"
                            ]
                        }
                    },
                    {
                        "name":"includeUsers",
                        "in":"query",
                        "description":"Indicates whether to include Clinical One User data for the study in the ODM Extract. It accepts true or false. The default value is true.",
                        "schema":{
                            "type":"string",
                            "example":"true",
                            "enum":[
                                "true",
                                "false"
                            ]
                        }
                    },
                    {
                        "name":"includeLocations",
                        "in":"query",
                        "description":"Indicates whether to include Clinical One Sites data for the study in the ODM Extract. It accepts true or false. The default value is true.",
                        "schema":{
                            "type":"string",
                            "example":"true",
                            "enum":[
                                "true",
                                "false"
                            ]
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string",
                            "format":"date-time",
                            "example":"2023-01-01T00:00:00.000Z"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string",
                            "format":"date-time",
                            "example":"2023-12-31T23:59:59.999Z"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which user/site you want to start retrieving admin data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of users/sites, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve users in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/AdminDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-studies-{studyId}-{mode}-odm-admin-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-studies-studyid-mode-odm-admin-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract only includes item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract only includes item level transactions. Clinical One version start timestamp is used to sort the values in the XML file. Clinical One version start timestamp is the time when the user entered the value/transaction occurred in Clinical One.",
                "operationId":"getClinicalDataUnblinded",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in CDISC ODM-XML format.",
                "operationId":"getMetadata",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "10"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/sites":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study site dataset"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Site dataset for a single study and mode.</p><p>The dataset exposes audited study-site property history through <code>PROPERTY_NAME</code> and <code>PROPERTY_VALUE</code>, together with the latest available study, organization, address, country, investigator, SDV, supply, audit and reference attributes for the site. Supported audited properties are <code>StudyVersion</code>, <code>DrugDestruction</code>, <code>AddSubjectToSiteToggle</code>, <code>ScreenSubjectsAtSiteToggle</code>, <code>RandomizeSubjectsAtSiteToggle</code>, <code>DispensetoSubjectsAtSiteToggle</code>, <code>SiteScreeningLimit</code>, <code>SiteRandomizationLimit</code>, and <code>SiteStatus</code>.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows only for sites associated to the study and having an assigned Study Version at least once.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SiteDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SITE_ID</code>, <code>PROPERTY_NAME</code>, and <code>VERSION_START</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSiteDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SiteDataSetQuery":{
                                    "description":"SiteDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "STUDY_THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_ID_NAME",
                                            "PROPERTY_NAME",
                                            "PROPERTY_VALUE",
                                            "ORG_CATEGORY",
                                            "ORG_NAME",
                                            "ORG_STATUS",
                                            "ORG_ID_NAME",
                                            "ORG_TIMEZONE",
                                            "WEBSITE",
                                            "ORG_INT_IDENTIFIER",
                                            "ORG_TAX_IDENTIFIER",
                                            "VAT_NUMBER",
                                            "HAS_MSA",
                                            "MSA_START_DATE",
                                            "MSA_END_DATE",
                                            "SITE_IS_ACTIVE",
                                            "SITE_ACTIVE_MIN_DATE",
                                            "SITE_ACTIVE_MAX_DATE",
                                            "SITE_INACTIVE_MIN_DATE",
                                            "SITE_INACTIVE_MAX_DATE",
                                            "IS_MAIN_PRIMARY",
                                            "ADDRESS_TYPE",
                                            "ADDRESS_1",
                                            "ADDRESS_2",
                                            "CITY",
                                            "COUNTRY",
                                            "STATE_PROVINCE",
                                            "ZIP_POSTAL_CODE",
                                            "PHONE",
                                            "ALT_PHONE",
                                            "FAX",
                                            "SITE_COUNTRY",
                                            "PREFIX",
                                            "FIRST_NAME",
                                            "MIDDLE_NAME",
                                            "LAST_NAME",
                                            "SUFFIX",
                                            "DEGREE",
                                            "INV_TIMEZONE",
                                            "INV_IDENTIFIER",
                                            "INV_TAX_IDENTIFIER",
                                            "INV_INT_IDENTIFIER",
                                            "INV_SPECIALTY",
                                            "INV_SUB_SPECIALTY",
                                            "INV_LISC_NUM",
                                            "INV_EXEMPTION_NUM",
                                            "INV_MED_IDENTIFIER",
                                            "INV_NPI",
                                            "INV_DEA_NUM",
                                            "INV_DEA_EXP",
                                            "INV_STATUS",
                                            "SDV_STRATEGY_NAME",
                                            "INIT_SUBJ_COUNT",
                                            "INIT_SDV_TYPE",
                                            "REMAIN_SUBJ_PERC",
                                            "REMAIN_SDV_TYPE",
                                            "SUPPLY_STRATEGY_NAME",
                                            "RESUPPLY_TYPE",
                                            "USER_ID",
                                            "COMMENTS",
                                            "IS_CURRENT",
                                            "OBJECT_VERSION_NUMBER",
                                            "OPERATION_TYPE",
                                            "REASON",
                                            "USER_NAME",
                                            "VERSION_END",
                                            "VERSION_START",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "USER_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "STUDY_WID",
                                            "CURRENT_STUDY_ROLE_WID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SITE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"PROPERTY_NAME",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li>No single response column uniquely identifies a history row. Use (<code>STUDY_ID</code>, <code>SITE_ID</code>, <code>PROPERTY_NAME</code>, <code>VERSION_START</code>) as the stable row-version key.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-operations-context\">Site operations context</a> | <a href=\"#organization-context\">Organization context</a> | <a href=\"#primary-address-and-contact-context\">Primary address and contact context</a> | <a href=\"#investigator-context\">Investigator context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Latest study-level identifiers and descriptive protocol attributes applied to every returned audit row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study phase. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study blinding type. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>STUDY_THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study therapeutic area. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-operations-context\">Site operations context</h4>\n<p>Audited study-site property history, current site activity markers, SDV settings, and supply controls associated with the site.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>PROPERTY_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Canonical identifier of the audited study-site property. Possible values are <code>StudyVersion</code>, <code>DrugDestruction</code>, <code>AddSubjectToSiteToggle</code>, <code>ScreenSubjectsAtSiteToggle</code>, <code>RandomizeSubjectsAtSiteToggle</code>, <code>DispensetoSubjectsAtSiteToggle</code>, <code>SiteScreeningLimit</code>, <code>SiteRandomizationLimit</code>, or <code>SiteStatus</code>.</td></tr>\n    <tr><td><code>PROPERTY_VALUE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Value captured for the audited property in the current audit row. Possible values include <code>10.0.0.14</code>, <code>Active</code>, or <code>true...</code>.</td></tr>\n    <tr><td><code>SITE_IS_ACTIVE</code></td><td>CHAR(1)</td><td>Current active indicator derived from the latest site status. <code>Y</code> means the latest site status is <code>Active</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SITE_ACTIVE_MIN_DATE</code></td><td>TIMESTAMP(6)</td><td>Earliest date on which the site became active.</td></tr>\n    <tr><td><code>SITE_ACTIVE_MAX_DATE</code></td><td>TIMESTAMP(6)</td><td>Latest date on which the site became active.</td></tr>\n    <tr><td><code>SITE_INACTIVE_MIN_DATE</code></td><td>TIMESTAMP(6)</td><td>Earliest date on which the site became inactive.</td></tr>\n    <tr><td><code>SITE_INACTIVE_MAX_DATE</code></td><td>TIMESTAMP(6)</td><td>Latest date on which the site became inactive.</td></tr>\n    <tr><td><code>SDV_STRATEGY_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INIT_SUBJ_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INIT_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAIN_SUBJ_PERC</code></td><td>VARCHAR2(2048)</td><td>Percentage of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAIN_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>SUPPLY_STRATEGY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Name of the strategy that was applied to the site.</td></tr>\n    <tr><td><code>RESUPPLY_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the type of resupply strategy. Possible values include <code>MinMax</code> or <code>Predictive</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"organization-context\">Organization context</h4>\n<p>Organization profile, lifecycle, and legal attributes associated with the site.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ORG_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Organization name associated with the site profile.</td></tr>\n    <tr><td><code>ORG_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Identifier name of the organization associated with the site.</td></tr>\n    <tr><td><code>ORG_STATUS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the status of the organization associated with the site. Possible values include <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>ORG_CATEGORY</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>ORG_TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>WEBSITE</code></td><td>VARCHAR2(255 CHAR)</td><td>Web URL associated with the institution.</td></tr>\n    <tr><td><code>ORG_INT_IDENTIFIER</code></td><td>VARCHAR2(500 CHAR)</td><td>Integration ID associated with the institution, when available.</td></tr>\n    <tr><td><code>ORG_TAX_IDENTIFIER</code></td><td>VARCHAR2(50 CHAR)</td><td>Tax Identification Number (TIN) associated with the institution.</td></tr>\n    <tr><td><code>VAT_NUMBER</code></td><td>VARCHAR2(50 CHAR)</td><td>Value Added Tax (VAT) identification number associated with the institution.</td></tr>\n    <tr><td><code>HAS_MSA</code></td><td>VARCHAR2(5 CHAR)</td><td>Indicates whether the institution has a Master Service Agreement with established terms and conditions. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>MSA_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Start date on which the Master Service Agreement becomes effective.</td></tr>\n    <tr><td><code>MSA_END_DATE</code></td><td>TIMESTAMP(6)</td><td>End date through which the Master Service Agreement remains effective.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"primary-address-and-contact-context\">Primary address and contact context</h4>\n<p>Primary address, contact, and location fields associated with the site or organization.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>IS_MAIN_PRIMARY</code></td><td>CHAR(1)</td><td>Indicates whether the address is configured as the site's main primary address.</td></tr>\n    <tr><td><code>ADDRESS_TYPE</code></td><td>CHAR(7)</td><td>Indicates the address purpose configured for the site. In Data Hub, this dataset currently exposes only the <code>Primary</code> address.</td></tr>\n    <tr><td><code>ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>STATE_PROVINCE</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ZIP_POSTAL_CODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country in the site's primary address.</td></tr>\n    <tr><td><code>SITE_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the site profile.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ALT_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Alternate phone number associated with the contact.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"investigator-context\">Investigator context</h4>\n<p>Principal-investigator identity, credential, licensing, and specialty attributes associated with the site.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the principal investigator's prefix. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>FIRST_NAME</code></td><td>VARCHAR2(2048 CHAR)</td><td>First name of the associated contact.</td></tr>\n    <tr><td><code>MIDDLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Middle name of the associated contact.</td></tr>\n    <tr><td><code>LAST_NAME</code></td><td>VARCHAR2(2048 CHAR)</td><td>Last name of the associated contact.</td></tr>\n    <tr><td><code>SUFFIX</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the principal investigator's suffix. Possible values include <code>II</code>, <code>III</code>, <code>IV</code>, <code>CPA</code>, <code>DDS</code>, <code>Esq</code>, <code>JD</code>, <code>Jr</code>, <code>LLD</code>, <code>MD</code>, <code>PhD</code>, <code>Ret</code>, <code>RN</code>, <code>Sr</code>, or <code>DO</code>.</td></tr>\n    <tr><td><code>DEGREE</code></td><td>VARCHAR2(200 CHAR)</td><td>Degree or credential associated with the investigator.</td></tr>\n    <tr><td><code>INV_STATUS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the investigator status. Possible values include <code>New</code>, <code>Active</code>, <code>Disbarred</code>, <code>Deceased</code>, <code>Retired</code>, <code>Restricted</code>, or <code>Active Not In Use By Study</code>.</td></tr>\n    <tr><td><code>INV_SPECIALTY</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the investigator's primary specialty. Possible values include <code>Allergy and immunology</code>, <code>Anesthesiology</code>, <code>Dermatology</code>, <code>Diagnostic radiology</code>, <code>Emergency medicine</code>, <code>Family medicine</code>, <code>Internal medicine</code>, <code>Medical genetics</code>, <code>Neurology</code>, <code>Nuclear medicine</code>, <code>Obstetrics and gynecology</code>, <code>Ophthalmology</code>, <code>Pathology</code>, <code>Pediatrics</code>, <code>Physical medicine and rehabilitation</code>, <code>Preventive medicine</code>, <code>Psychiatry</code>, <code>Radiation oncology</code>, <code>Surgery</code>, or <code>Urology</code>.</td></tr>\n    <tr><td><code>INV_SUB_SPECIALTY</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the investigator sub-specialty. Valid values depend on <code>INV_SPECIALTY</code>. Possible values include <code>Critical care medicine</code>, <code>Hospice and palliative care</code>, <code>Pain medicine</code>, <code>Pediatric anesthesiology</code>, or <code>Sleep medicine</code>.</td></tr>\n    <tr><td><code>INV_TIMEZONE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the investigator time zone. Sample values shown are representative, not exhaustive. Possible values include <code>America/New_York</code>, <code>Europe/Madrid</code>, <code>Asia/Calcutta</code>, or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>INV_IDENTIFIER</code></td><td>VARCHAR2(50 CHAR)</td><td>Associated ID of the contact. This identifier is unique across contacts at your organizations.</td></tr>\n    <tr><td><code>INV_INT_IDENTIFIER</code></td><td>VARCHAR2(500 CHAR)</td><td>Integration ID associated with the contact, when available.</td></tr>\n    <tr><td><code>INV_TAX_IDENTIFIER</code></td><td>VARCHAR2(50 CHAR)</td><td>Tax Identification Number (TIN) associated with the contact.</td></tr>\n    <tr><td><code>INV_LISC_NUM</code></td><td>VARCHAR2(500 CHAR)</td><td>Licensed research number associated with the contact.</td></tr>\n    <tr><td><code>INV_MED_IDENTIFIER</code></td><td>VARCHAR2(500 CHAR)</td><td>Medical identifier associated with the contact.</td></tr>\n    <tr><td><code>INV_NPI</code></td><td>VARCHAR2(500 CHAR)</td><td>National Provider Identifier (NPI) associated with the contact. This is a unique identification number for covered health care providers.</td></tr>\n    <tr><td><code>INV_DEA_NUM</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>INV_DEA_EXP</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>INV_EXEMPTION_NUM</code></td><td>VARCHAR2(500 CHAR)</td><td>Exemption number associated with the contact.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing property-history row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the dataset row change, when provided.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Software version number stored on the underlying source row that produced the Site dataset record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SiteDataSetReport":{
                                        "description":"SiteDataSetReport",
                                        "value":{
                                            "hasMore":"true",
                                            "totalResults":157,
                                            "count":2,
                                            "limit":2,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "STUDY_THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_ID_NAME",
                                                "PROPERTY_NAME",
                                                "PROPERTY_VALUE",
                                                "ORG_CATEGORY",
                                                "ORG_NAME",
                                                "ORG_STATUS",
                                                "ORG_ID_NAME",
                                                "ORG_TIMEZONE",
                                                "WEBSITE",
                                                "ORG_INT_IDENTIFIER",
                                                "ORG_TAX_IDENTIFIER",
                                                "VAT_NUMBER",
                                                "HAS_MSA",
                                                "MSA_START_DATE",
                                                "MSA_END_DATE",
                                                "SITE_IS_ACTIVE",
                                                "SITE_ACTIVE_MIN_DATE",
                                                "SITE_ACTIVE_MAX_DATE",
                                                "SITE_INACTIVE_MIN_DATE",
                                                "SITE_INACTIVE_MAX_DATE",
                                                "IS_MAIN_PRIMARY",
                                                "ADDRESS_TYPE",
                                                "ADDRESS_1",
                                                "ADDRESS_2",
                                                "CITY",
                                                "COUNTRY",
                                                "STATE_PROVINCE",
                                                "ZIP_POSTAL_CODE",
                                                "PHONE",
                                                "ALT_PHONE",
                                                "FAX",
                                                "SITE_COUNTRY",
                                                "PREFIX",
                                                "FIRST_NAME",
                                                "MIDDLE_NAME",
                                                "LAST_NAME",
                                                "SUFFIX",
                                                "DEGREE",
                                                "INV_TIMEZONE",
                                                "INV_IDENTIFIER",
                                                "INV_TAX_IDENTIFIER",
                                                "INV_INT_IDENTIFIER",
                                                "INV_SPECIALTY",
                                                "INV_SUB_SPECIALTY",
                                                "INV_LISC_NUM",
                                                "INV_EXEMPTION_NUM",
                                                "INV_MED_IDENTIFIER",
                                                "INV_NPI",
                                                "INV_DEA_NUM",
                                                "INV_DEA_EXP",
                                                "INV_STATUS",
                                                "SDV_STRATEGY_NAME",
                                                "INIT_SUBJ_COUNT",
                                                "INIT_SDV_TYPE",
                                                "REMAIN_SUBJ_PERC",
                                                "REMAIN_SDV_TYPE",
                                                "SUPPLY_STRATEGY_NAME",
                                                "RESUPPLY_TYPE",
                                                "USER_ID",
                                                "COMMENTS",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "USER_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_WID",
                                                "CURRENT_STUDY_ROLE_WID"
                                            ],
                                            "data":[
                                                [
                                                    "E8230E450E844721A67F8EBFF71B160D",
                                                    "T24.2",
                                                    "T24.21",
                                                    "T24.2",
                                                    "I",
                                                    "CardiologyVascularDiseases",
                                                    "OpenLabel",
                                                    "C93C52A2CDC04B2FB50676737FB397A8",
                                                    "30",
                                                    "Appolo1",
                                                    "StudyVersion",
                                                    "1.0.0.1",
                                                    "Other",
                                                    "Bangalore",
                                                    "Active",
                                                    null,
                                                    "Asia/Calcutta",
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    "Y",
                                                    "2023-09-07T11:32:58.817Z",
                                                    "2024-05-17T08:21:07.018Z",
                                                    null,
                                                    null,
                                                    "Y",
                                                    "Primary",
                                                    "Marathalli",
                                                    null,
                                                    "Bangalore",
                                                    "India",
                                                    null,
                                                    "560066",
                                                    "9538292417",
                                                    null,
                                                    null,
                                                    "India",
                                                    "Dr",
                                                    "Pavan12",
                                                    "Kumar1",
                                                    "Nukala1",
                                                    "Ret",
                                                    "MBBS 212",
                                                    "Asia/Calcutta",
                                                    "1234567 INV ID1",
                                                    "TAX ID 1231",
                                                    "InetrationID21331",
                                                    "Anesthesiology",
                                                    "CDC0B37BC50540C4E053C3834C648480",
                                                    "Lic1234441",
                                                    "EXP123211",
                                                    "MMkk1211",
                                                    "DEA123123121",
                                                    "F91234563",
                                                    "2031-03-26",
                                                    "Active",
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    "Max/Min Test resupply",
                                                    "MinMax",
                                                    "0000000000000000000000000000000A",
                                                    null,
                                                    "N",
                                                    "1",
                                                    "CREATED",
                                                    null,
                                                    "system",
                                                    "2024-05-27T08:14:50.852Z",
                                                    "2024-05-17T09:47:46.377Z",
                                                    "TestSponsor",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "32",
                                                    "1",
                                                    "2026-04-08T17:06:13.059Z",
                                                    "10",
                                                    "27"
                                                ],
                                                [
                                                    "E8230E450E844721A67F8EBFF71B160D",
                                                    "T24.2",
                                                    "T24.21",
                                                    "T24.2",
                                                    "I",
                                                    "CardiologyVascularDiseases",
                                                    "OpenLabel",
                                                    "C93C52A2CDC04B2FB50676737FB397A8",
                                                    "30",
                                                    "Appolo1",
                                                    "StudyVersion",
                                                    "10.0.0.14",
                                                    "Other",
                                                    "Bangalore",
                                                    "Active",
                                                    null,
                                                    "Asia/Calcutta",
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    "Y",
                                                    "2023-09-07T11:32:58.817Z",
                                                    "2024-05-17T08:21:07.018Z",
                                                    null,
                                                    null,
                                                    "Y",
                                                    "Primary",
                                                    "Marathalli",
                                                    null,
                                                    "Bangalore",
                                                    "India",
                                                    null,
                                                    "560066",
                                                    "9538292417",
                                                    null,
                                                    null,
                                                    "India",
                                                    "Dr",
                                                    "Pavan12",
                                                    "Kumar1",
                                                    "Nukala1",
                                                    "Ret",
                                                    "MBBS 212",
                                                    "Asia/Calcutta",
                                                    "1234567 INV ID1",
                                                    "TAX ID 1231",
                                                    "InetrationID21331",
                                                    "Anesthesiology",
                                                    "CDC0B37BC50540C4E053C3834C648480",
                                                    "Lic1234441",
                                                    "EXP123211",
                                                    "MMkk1211",
                                                    "DEA123123121",
                                                    "F91234563",
                                                    "2031-03-26",
                                                    "Active",
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    null,
                                                    "Max/Min Test resupply",
                                                    "MinMax",
                                                    "0000000000000000000000000000000A",
                                                    null,
                                                    "N",
                                                    "2",
                                                    "MODIFIED",
                                                    null,
                                                    "system",
                                                    "2024-05-28T07:34:27.304Z",
                                                    "2024-05-27T08:14:50.852Z",
                                                    "TestSponsor",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "32",
                                                    "1",
                                                    "2026-04-08T17:06:13.059Z",
                                                    "10",
                                                    "27"
                                                ]
                                            ]
                                        }
                                    },
                                    "SiteDataSetEmptyReport":{
                                        "description":"SiteDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":0,
                                            "limit":1,
                                            "offset":25,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "STUDY_THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_ID_NAME",
                                                "PROPERTY_NAME",
                                                "PROPERTY_VALUE",
                                                "ORG_CATEGORY",
                                                "ORG_NAME",
                                                "ORG_STATUS",
                                                "ORG_ID_NAME",
                                                "ORG_TIMEZONE",
                                                "WEBSITE",
                                                "ORG_INT_IDENTIFIER",
                                                "ORG_TAX_IDENTIFIER",
                                                "VAT_NUMBER",
                                                "HAS_MSA",
                                                "MSA_START_DATE",
                                                "MSA_END_DATE",
                                                "SITE_IS_ACTIVE",
                                                "SITE_ACTIVE_MIN_DATE",
                                                "SITE_ACTIVE_MAX_DATE",
                                                "SITE_INACTIVE_MIN_DATE",
                                                "SITE_INACTIVE_MAX_DATE",
                                                "IS_MAIN_PRIMARY",
                                                "ADDRESS_TYPE",
                                                "ADDRESS_1",
                                                "ADDRESS_2",
                                                "CITY",
                                                "COUNTRY",
                                                "STATE_PROVINCE",
                                                "ZIP_POSTAL_CODE",
                                                "PHONE",
                                                "ALT_PHONE",
                                                "FAX",
                                                "SITE_COUNTRY",
                                                "PREFIX",
                                                "FIRST_NAME",
                                                "MIDDLE_NAME",
                                                "LAST_NAME",
                                                "SUFFIX",
                                                "DEGREE",
                                                "INV_TIMEZONE",
                                                "INV_IDENTIFIER",
                                                "INV_TAX_IDENTIFIER",
                                                "INV_INT_IDENTIFIER",
                                                "INV_SPECIALTY",
                                                "INV_SUB_SPECIALTY",
                                                "INV_LISC_NUM",
                                                "INV_EXEMPTION_NUM",
                                                "INV_MED_IDENTIFIER",
                                                "INV_NPI",
                                                "INV_DEA_NUM",
                                                "INV_DEA_EXP",
                                                "INV_STATUS",
                                                "SDV_STRATEGY_NAME",
                                                "INIT_SUBJ_COUNT",
                                                "INIT_SDV_TYPE",
                                                "REMAIN_SUBJ_PERC",
                                                "REMAIN_SDV_TYPE",
                                                "SUPPLY_STRATEGY_NAME",
                                                "RESUPPLY_TYPE",
                                                "USER_ID",
                                                "COMMENTS",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "USER_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_WID",
                                                "CURRENT_STUDY_ROLE_WID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-sites-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-sites-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/codelists":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get codelists for study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Level Codelists dataset for a single study and mode.</p><p>The dataset exposes versioned codelist configuration used in study design, including study, visit, form, and item context together with codelist definitions, localized code values, display metadata, grouping metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for codelists defined at study, event, form, and item level for the study versions available in the selected mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyCodelistDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>CODE_LEVEL</code>, <code>STUDY_VERSION</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, <code>CODE_ID</code>, <code>CODE_VALUE_ID</code>, and <code>LOCALE</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "StudyLevelCodelistsDataSetQuery":{
                                    "description":"StudyLevelCodelistsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_WID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_WID",
                                            "EVENT_ID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "FORM_WID",
                                            "FORM_ID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_ROLLOVER",
                                            "FORM_IS_REPEATING",
                                            "ITEM_WID",
                                            "ITEM_ID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "CODE_VALUE_ID",
                                            "CODE_VALUE_WID",
                                            "SEQUENCE",
                                            "CODE_VALUE",
                                            "CODE_LABEL",
                                            "CODE",
                                            "LOCALE",
                                            "CODE_ID",
                                            "CODE_WID",
                                            "CODE_NAME",
                                            "CODE_DESCRIPTION",
                                            "CODE_LEVEL",
                                            "CODE_GROUP_ID",
                                            "CODE_GROUP_WID",
                                            "CODE_GROUP_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_CODELIST_LEVEL",
                                            "DH_TIMESTAMP",
                                            "DISPLAY_CODE_NAME",
                                            "TAG",
                                            "CL_HIDDEN",
                                            "LOINC",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_VALUE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"LOCALE",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#codelist-context\">Codelist context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td>In this dataset view, <code>STUDY_TITLE</code> is populated with the study description associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>In this dataset view, <code>STUDY_ID_NAME</code> is populated with the study version title associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"codelist-context\">Codelist context</h4>\n<p>Codelist values, localization fields, and codelist-level metadata associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>The name of the codelist.</td></tr>\n    <tr><td><code>DISPLAY_CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that appears in a dropdown when a codelist is used.</td></tr>\n    <tr><td><code>CODE_LABEL</code></td><td>VARCHAR2(1000 CHAR)</td><td>Full code name that gets displayed.</td></tr>\n    <tr><td><code>CODE_VALUE</code></td><td>VARCHAR2(1000 CHAR)</td><td>The code value.</td></tr>\n    <tr><td><code>CODE</code></td><td>VARCHAR2(255 CHAR)</td><td>Custom defined identifier for a code in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>CODE_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the code record.</td></tr>\n    <tr><td><code>CODE_GROUP_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that identifies the code group.</td></tr>\n    <tr><td><code>CODE_LEVEL</code></td><td>VARCHAR2(32 CHAR)</td><td>Describes whether the record is at a system or custom level codelist. If it includes a custom codelist, this value indicates whether it is a static or dynamic codelist. Possible values include <code>SYSTEM</code>, <code>CUSTOM</code>, or <code>DYNAMIC</code>.</td></tr>\n    <tr><td><code>DH_CODELIST_LEVEL</code></td><td>VARCHAR2(5)</td><td>Indicates the Data Hub codelist row level represented in the dataset. Possible values include <code>item</code> or <code>study</code>.</td></tr>\n    <tr><td><code>LOCALE</code></td><td>VARCHAR2(255 CHAR)</td><td>Code locale. English, Chinese and Japanese languages are supported. Possible values include <code>en-US</code>, <code>zh-CN</code>, or <code>ja-JP</code>.</td></tr>\n    <tr><td><code>LOINC</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the <code>LOINC</code> code associated with the codelist value.</td></tr>\n    <tr><td><code>TAG</code></td><td>VARCHAR2(1000 CHAR)</td><td>User defined tag for the code.</td></tr>\n    <tr><td><code>CL_HIDDEN</code></td><td>NUMBER(1)</td><td>Denotes if a code is hidden to end users. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>SEQUENCE</code></td><td>NUMBER</td><td>Corresponds to the order assigned to a code in a codelist. This determines the order in which the codes in a codelist get listed.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's reference name. Displays a capitalized version of the user-entered <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface. This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent study version.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>Indicates the event type configured for the visit, for example <code>ONSITE</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Numeric visit order that follows the visit schedule as it was created.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> of the Scheduled From visit as defined in the Visit Schedule. If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit, in addition to the <code>DELAY_DAYS</code> field.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul> Possible values include <code>1 SECTION FORM</code>, <code>2 SECTION FORM</code>, or <code>LAB FORM</code>.</td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of question configured for the item, as specified by the study designer. Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>If this is a group question, indicates the group question ID.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>A question's reference code, as specified by the study designer when they created the question.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>CODE_VALUE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist value.</td></tr>\n    <tr><td><code>CODE_VALUE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist value.</td></tr>\n    <tr><td><code>CODE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist.</td></tr>\n    <tr><td><code>CODE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist.</td></tr>\n    <tr><td><code>CODE_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist group.</td></tr>\n    <tr><td><code>CODE_GROUP_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist group.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "StudyLevelCodelistsDataSetReport":{
                                        "description":"StudyLevelCodelistsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "25",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "205",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "73",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "346",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "D9C7A5634B804F28E053B7834C649CE1",
                                                    "2085",
                                                    "50",
                                                    "LT-43",
                                                    "Utena County",
                                                    "LT-43",
                                                    "ja-JP",
                                                    "E663E145A108493188C99CB71BA63CD6",
                                                    "13",
                                                    "Lithuania",
                                                    "Code list for Lithuania States",
                                                    "SYSTEM",
                                                    "4B9B6E1A2F3C4D5E8A9B0C1D2E3F4A5B",
                                                    "-1",
                                                    "Clinical One Default Code List",
                                                    "2025-10-29T11:41:11.052Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "1",
                                                    "00000000000000000000000000000001",
                                                    "43",
                                                    "testuser1",
                                                    "Initial load",
                                                    "Seeded by migration script",
                                                    "Y",
                                                    "study",
                                                    "2025-10-29T12:34:56.972Z",
                                                    "Lithuania Counties",
                                                    "geography",
                                                    "0",
                                                    "",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "StudyLevelCodelistsDataSetEmptyReport":{
                                        "description":"StudyLevelCodelistsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-codelists-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-codelists-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms/actions":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form level actions details"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Subject Form SVFL dataset for a single study and mode.</p><p>The dataset exposes form-level action history, including action type, action status, action object, sign metadata, action user/date, together with related study, site, subject, visit, and form context.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns action-history rows captured for subject form instances in the selected study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DMActionsPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, <code>ACTION_TYPE</code>, <code>ACTION_OBJECT</code>, <code>ACTION_STATUS</code>, <code>SIGN_LEVEL</code>, and <code>SIGN_NAME</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getFormsSvflDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormSvflDataSetQuery":{
                                    "description":"SubjectFormSvflDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "ADD_SUBJECTS",
                                            "ADDRESS_CITY",
                                            "ADDRESS_COUNTRY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "DEA_NUMBER",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "EMAIL",
                                            "EXPIRATION",
                                            "FAX",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "PHONE",
                                            "PI_PREFIX",
                                            "RANDOMIZE_SUBJECTS",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "SCREEN_SUBJECTS",
                                            "SDV_GROUP_NAME",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_ATTENTION",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_FAX",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "TIMEZONE",
                                            "INVESTIGATOR",
                                            "SITE_NAME",
                                            "SITE_TYPE",
                                            "EHR_ENABLED",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "EVENT_ID_NAME",
                                            "EVENT_INSTANCE_NUM",
                                            "EVENT_REFNAME",
                                            "EVENT_TITLE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "PROJECTED_VISIT_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_ORDER",
                                            "VISIT_START_DATE",
                                            "VISIT_STATUS",
                                            "VISIT_TYPE",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "INNER_REPEAT",
                                            "OUTER_REPEAT",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "OBJECT_VERSION_NUMBER",
                                            "OPERATION_TYPE",
                                            "REASON",
                                            "USER_NAME",
                                            "VERSION_END",
                                            "VERSION_START",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "DH_TIMESTAMP",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "STUDY_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENTINST_FORM_ID",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "USER_ID",
                                            "USER_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "ACTION_TYPE",
                                            "ACTION_DATE",
                                            "ACTION_USER",
                                            "ACTION_STATUS",
                                            "ACTION_OBJECT",
                                            "SIGN_NAME",
                                            "SIGN_LEVEL",
                                            "SIGN_AFFIDAVIT_NAME",
                                            "INTEGRATION_ID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_TYPE",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_OBJECT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_STATUS",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_NAME",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#action-context\">Action context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>ADVERSE_EVENT</code>: adverse event visit.</li><li><code>DISPENSATION</code>: dispensation visit.</li><li><code>NON_DISPENSATION</code>: non-dispensation visit.</li><li><code>OPTIONAL</code>: optional visit.</li><li><code>OPTIONAL_DISPENSATION</code>: optional dispensation visit.</li><li><code>RANDOMIZATION</code>: randomization visit.</li><li><code>RESCREENING</code>: rescreening visit.</li><li><code>SCREENFAILURE</code>: screen failure visit.</li><li><code>SCREENING</code>: screening visit.</li><li><code>SUBJECT_COMPLETE</code>: study completion visit.</li><li><code>UNSCHEDULED</code>: unscheduled visit.</li><li><code>UNSCHEDULED_DISPENSATION</code>: unscheduled dispensation visit.</li><li><code>WITHDRAW</code>: withdrawal visit.</li></ul></td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of <code>1</code>.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of <code>1</code>.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"action-context\">Action context</h4>\n<p>SVFL action and signature metadata describing what happened, when it happened, who performed it, and any associated signature details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ACTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the action that was updated for the given object. Possible values are <code>SIGN</code>, <code>VERIFY</code>, <code>FREEZE</code>, or <code>LOCK</code>.</td></tr>\n    <tr><td><code>ACTION_OBJECT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the refname of the Clinical One object where the action was applied.</td></tr>\n    <tr><td><code>ACTION_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>The resulting status after the action update. Possible values depend on the action type and can be:</p><ul><li><code>SIGNED</code></li><li><code>UNSIGNED</code></li><li><code>FROZEN</code></li><li><code>UNFROZEN</code></li><li><code>VERIFIED</code></li><li><code>UNVERIFIED</code></li><li><code>LOCKED</code></li><li><code>UNLOCKED</code></li></ul><p><strong>Note:</strong> There will be no record for the initial state where no action was applied. This is when the status for a given SVFL action to the object is <code>null</code>. For example, when the object is not currently signed and it has never been, so it cannot be unsigned either.</p></td></tr>\n    <tr><td><code>ACTION_DATE</code></td><td>TIMESTAMP(6)</td><td>The version start of the audit where the action was applied.</td></tr>\n    <tr><td><code>ACTION_USER</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user that performed the update to the action. This field displays SYSTEM if it is not a direct action update and is instead the result of an automatic recalculation performed by the system or any other user action that indirectly impacts SVFL status.</td></tr>\n    <tr><td><code>SIGN_LEVEL</code></td><td>VARCHAR2(16 CHAR)</td><td>Only applicable for sign actions. Indicates the level at which the signature was applied. Possible values include <code>CASEBOOK</code>, <code>FORM</code>, or <code>VISIT</code>.</td></tr>\n    <tr><td><code>SIGN_NAME</code></td><td>VARCHAR2(1000 CHAR)</td><td>Only applicable for sign actions. The configured name of the signature.</td></tr>\n    <tr><td><code>SIGN_AFFIDAVIT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Only applicable for sign actions. Indicates the name of the affidavit that the signature displays to users for their endorsement.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment when <code>Other</code> is selected in a change reason and populated with <code>Rule Execution</code> for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event referenced by this action; mirrors the entity whose numeric identifier is <code>EVENT_WID</code>.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form referenced by this action; mirrors the entity whose numeric identifier is <code>FORM_WID</code>.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID pointing to the event from which this row was scheduled, matching the site-specific entity whose numeric identifier is <code>SCHEDULED_FROM_EVENT_WID</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance (visit occurrence) identified numerically by <code>SUBJECT_EVENT_INST_WID</code>.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject form record (visit+form instance) described numerically by <code>SUBJECT_EVENTINST_FORM_WID</code>.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject whose numeric identifier is <code>SUBJECT_WID</code>.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject Form SVFL action record.</td></tr>\n    <tr><td><code>INTEGRATION_ID</code></td><td>VARCHAR2(1000 CHAR)</td><td>Identifier for the integration that produced the row, combining the integration GUID with the timestamp when it ran.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormSvflDataSetReport":{
                                        "description":"SubjectFormSvflDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "INNER_REPEAT",
                                                "OUTER_REPEAT",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENTINST_FORM_ID",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                                [
                                                    "6D4E9B79C21A4E34A2BA2F234345281B",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "1.0.0.3",
                                                    "true",
                                                    "Boston",
                                                    "US",
                                                    "560068",
                                                    "Kansas",
                                                    "456abc",
                                                    "Suite 12",
                                                    "AB1234567",
                                                    "true",
                                                    "false",
                                                    "test@abc.com",
                                                    "2027-12-31",
                                                    "343",
                                                    "10",
                                                    "Targeted",
                                                    "1234567891",
                                                    "Dr.",
                                                    "true",
                                                    "50",
                                                    "Reduced",
                                                    "true",
                                                    "100% SDV",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Receiving Dept",
                                                    "Boston",
                                                    "US",
                                                    "test@abc.com",
                                                    "343",
                                                    "1234567891",
                                                    "Kansas",
                                                    "560068",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "Asia/Kolkata",
                                                    "Tester2",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "N",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen03",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "14",
                                                    "0",
                                                    "Week1",
                                                    "1",
                                                    "WEEK1",
                                                    "Week1",
                                                    "Visit_Date_Changed",
                                                    "Y",
                                                    "2025-11-12T00:00:00.000Z",
                                                    "2025-11-16T00:00:00.000Z",
                                                    "2025-11-09T00:00:00.000Z",
                                                    "Baseline",
                                                    "1",
                                                    "360",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "INPROGRESS",
                                                    "DISPENSATION",
                                                    "4",
                                                    "0",
                                                    "3",
                                                    "0",
                                                    "BASELINE",
                                                    "AE(Repeating Form)",
                                                    "AE_REPEATINGFORM",
                                                    "COMPLETED",
                                                    "Y",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "1",
                                                    "Completed by site",
                                                    "Y",
                                                    "1",
                                                    "CREATED",
                                                    "Initial load",
                                                    "testuser1",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T14:53:24.352Z",
                                                    "Site User (template)",
                                                    "2025-10-29T14:55:50.119Z",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "202",
                                                    "FB76018539144E6C9B0C0655A2770C70",
                                                    "79",
                                                    "5DF278EB00F24820B9CEFE7BFD7A3078",
                                                    "42",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "5",
                                                    "25",
                                                    "7FF46717F885448C84E8D0E47863DD3C",
                                                    "9",
                                                    "703E9A2E119243869BF8D8F276178226",
                                                    "29",
                                                    "B2678D05929F4AC9B26282A2DAFBD4F9",
                                                    "3",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "SIGN",
                                                    "2025-10-29T14:53:24.352Z",
                                                    "testuser1",
                                                    "SIGNED",
                                                    "AE_REPEATINGFORM",
                                                    "Casebook Signature",
                                                    "CASEBOOK",
                                                    "Electronic Signature Affidavit",
                                                    "6D4E9B79C21A4E34A2BA2F234345281B:29-OCT-25 02.53.24.352000 PM"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormSvflDataSetEmptyReport":{
                                        "description":"SubjectFormSvflDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "INNER_REPEAT",
                                                "OUTER_REPEAT",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENTINST_FORM_ID",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-actions-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-forms-actions-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/items/actions":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject item level actions details"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Subject Item SVFL dataset for a single study and mode.</p><p>The dataset exposes item-level action history, including action type, action status, action object, sign metadata, action user/date, together with related study, site, subject, visit, form, and item context.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns action-history rows captured for subject item data points in the selected study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DMActionsPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, <code>ITEM_ID</code>, <code>ACTION_TYPE</code>, <code>ACTION_OBJECT</code>, <code>ACTION_STATUS</code>, <code>SIGN_LEVEL</code>, and <code>SIGN_NAME</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getItemsSvflDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectItemSvflDataSetQuery":{
                                    "description":"SubjectItemSvflDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "ADD_SUBJECTS",
                                            "ADDRESS_CITY",
                                            "ADDRESS_COUNTRY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "DEA_NUMBER",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "EMAIL",
                                            "EXPIRATION",
                                            "FAX",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "PHONE",
                                            "PI_PREFIX",
                                            "RANDOMIZE_SUBJECTS",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "SCREEN_SUBJECTS",
                                            "SDV_GROUP_NAME",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_ATTENTION",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_FAX",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "TIMEZONE",
                                            "INVESTIGATOR",
                                            "SITE_NAME",
                                            "SITE_TYPE",
                                            "EHR_ENABLED",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "EVENT_ID_NAME",
                                            "EVENT_INSTANCE_NUM",
                                            "EVENT_REFNAME",
                                            "EVENT_TITLE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "PROJECTED_VISIT_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_ORDER",
                                            "VISIT_START_DATE",
                                            "VISIT_STATUS",
                                            "VISIT_TYPE",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "INNER_REPEAT",
                                            "OUTER_REPEAT",
                                            "ITEM_NAME",
                                            "ITEM_REFNAME",
                                            "SAS_LABEL",
                                            "SAS_VARIABLE",
                                            "QUESTION_TYPE",
                                            "VALUE",
                                            "ITEM_F",
                                            "MEASURE_UNIT",
                                            "HIDDEN",
                                            "REQUIRED",
                                            "READONLY",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "REFERENCE_CODE",
                                            "HAS_QUERY",
                                            "IS_REQUIRED",
                                            "SDV_SELECTION_STATUS",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "OBJECT_VERSION_NUMBER",
                                            "OPERATION_TYPE",
                                            "REASON",
                                            "USER_NAME",
                                            "VERSION_END",
                                            "VERSION_START",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_IMPORTED",
                                            "DH_TIMESTAMP",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "STUDY_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENTINST_FORM_ID",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "SUBJECT_EVENTINST_FORMITEM_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "USER_ID",
                                            "USER_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "ACTION_TYPE",
                                            "ACTION_DATE",
                                            "ACTION_USER",
                                            "ACTION_STATUS",
                                            "ACTION_OBJECT",
                                            "SIGN_NAME",
                                            "SIGN_LEVEL",
                                            "SIGN_AFFIDAVIT_NAME",
                                            "INTEGRATION_ID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_TYPE",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_OBJECT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_STATUS",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_NAME",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#action-context\">Action context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in the dataset.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field displays the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Full name of the country associated with the subject, such as <code>United States</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the user-entered <code>EVENT_TITLE</code> with blank spaces removed. The system generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>ADVERSE_EVENT</code>: adverse event visit.</li><li><code>DISPENSATION</code>: dispensation visit.</li><li><code>NON_DISPENSATION</code>: non-dispensation visit.</li><li><code>OPTIONAL</code>: optional visit.</li><li><code>OPTIONAL_DISPENSATION</code>: optional dispensation visit.</li><li><code>RANDOMIZATION</code>: randomization visit.</li><li><code>RESCREENING</code>: rescreening visit.</li><li><code>SCREENFAILURE</code>: screen failure visit.</li><li><code>SCREENING</code>: screening visit.</li><li><code>SUBJECT_COMPLETE</code>: study completion visit.</li><li><code>UNSCHEDULED</code>: unscheduled visit.</li><li><code>UNSCHEDULED_DISPENSATION</code>: unscheduled dispensation visit.</li><li><code>WITHDRAW</code>: withdrawal visit.</li></ul></td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td>Refers to the form instance number of all applicable form types with repeating data: Two section forms, Lab forms, Repeating forms.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Refers to the row instance number of all applicable form types with repeating data: Two section forms, Lab forms, Repeating forms.</td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td>Refers to the Section Repeat values of all applicable form types with repeating data: Two section forms, Lab forms, Repeating forms.</td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td>Refers to the Form Repeat values of all applicable form types with repeating data: Two section forms, Lab forms, Repeating forms.</td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the item's reference name defined in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name when the item is part of a lab form.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>SDV_SELECTION_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates if, after all applicable Source Data Verification (SDV) settings combined, the question requires verification or not for the subject.</p><p>This is determined based on the study SDV settings, the SDV strategy assigned to the site, whether the subject is part of the pool of selected subjects for SDV, and SDV settings defined at the item level in form design. For more information, see Understand Source Data Verification.</p><p>This data element is populated with four possible values:</p><ul><li><p><code>OBLIGATORY</code>: the question requires verification. This means that either the study has a 100% SDV configuration or it has a Targeted SDV configuration and the question is selected for SDV for that given subject.</p></li><li><p><code>OPTIONAL</code>: the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>OPTIONAL_CRITICAL</code>: the question is set as a critical variable but the subject is not part of the SDV subject pool, hence the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>IRRELEVANT</code>: the question is not configured for SDV for this subject and it is not expected to be verified. This would be the case of:</p><ul><li>Read-only questions.</li><li>Studies set up for no SDV.</li><li>Studies with Targeted SDV configuration that don't allow SDV overrides.</li><li>Screen failed subjects when excluded from SDV.</li></ul></li></ul></td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"action-context\">Action context</h4>\n<p>SVFL action transitions and sign-specific attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ACTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the action that was updated for the given object. Possible values are <code>SIGN</code>, <code>VERIFY</code>, <code>FREEZE</code>, or <code>LOCK</code>.</td></tr>\n    <tr><td><code>ACTION_OBJECT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the refname of the Clinical One object where the action was applied.</td></tr>\n    <tr><td><code>ACTION_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>The resulting status after the action update. Possible values depend on the action type and can be:</p><ul><li><code>SIGNED</code></li><li><code>UNSIGNED</code></li><li><code>FROZEN</code></li><li><code>UNFROZEN</code></li><li><code>VERIFIED</code></li><li><code>UNVERIFIED</code></li><li><code>LOCKED</code></li><li><code>UNLOCKED</code></li></ul><p><strong>Note:</strong> There will be no record for the initial state where no action was applied. This is when the status for a given SVFL action to the object is <code>null</code>. For example, when the object is not currently signed and it has never been, so it cannot be unsigned either.</p></td></tr>\n    <tr><td><code>ACTION_DATE</code></td><td>TIMESTAMP(6)</td><td>The version start of the audit where the action was applied.</td></tr>\n    <tr><td><code>ACTION_USER</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user that performed the update to the action. This field displays SYSTEM if it is not a direct action update and is instead the result of an automatic recalculation performed by the system or any other user action that indirectly impacts SVFL status.</td></tr>\n    <tr><td><code>SIGN_LEVEL</code></td><td>VARCHAR2(16 CHAR)</td><td>Only applicable for sign actions. Indicates the level at which the signature was applied. Possible values include <code>CASEBOOK</code>, <code>FORM</code>, or <code>VISIT</code>.</td></tr>\n    <tr><td><code>SIGN_NAME</code></td><td>VARCHAR2(1000)</td><td>Only applicable for sign actions. The configured name of the signature.</td></tr>\n    <tr><td><code>SIGN_AFFIDAVIT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Only applicable for sign actions. Indicates the name of the affidavit that the signature displays to users for their endorsement.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td>Indicates if a question was populated via an Electronic Health Record (EHR) data import. If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>When present, provides the comment entered for the change reason or generated by rule execution.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which this visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance described by <code>SUBJECT_EVENT_INST_WID</code>.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form record tied to this event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record tied to this event instance and form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record that anchors each SVFL row.</td></tr>\n    <tr><td><code>INTEGRATION_ID</code></td><td>VARCHAR2(1000 CHAR)</td><td>Identifier of the integration that produced the dataset row, when applicable.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectItemSvflDataSetReport":{
                                        "description":"SubjectItemSvflDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "INNER_REPEAT",
                                                "OUTER_REPEAT",
                                                "ITEM_NAME",
                                                "ITEM_REFNAME",
                                                "SAS_LABEL",
                                                "SAS_VARIABLE",
                                                "QUESTION_TYPE",
                                                "VALUE",
                                                "ITEM_F",
                                                "MEASURE_UNIT",
                                                "HIDDEN",
                                                "REQUIRED",
                                                "READONLY",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "REFERENCE_CODE",
                                                "HAS_QUERY",
                                                "IS_REQUIRED",
                                                "SDV_SELECTION_STATUS",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_IMPORTED",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENTINST_FORM_ID",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "SUBJECT_EVENTINST_FORMITEM_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                                [
                                                    "9D6DE47A263049D0A24F9C614BD49A97",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "1.0.0.3",
                                                    "true",
                                                    "Boston",
                                                    "US",
                                                    "560068",
                                                    "Kansas",
                                                    "456abc",
                                                    "Suite 12",
                                                    "AB1234567",
                                                    "true",
                                                    "false",
                                                    "test@abc.com",
                                                    "2027-12-31",
                                                    "343",
                                                    "10",
                                                    "Targeted",
                                                    "1234567891",
                                                    "Dr.",
                                                    "true",
                                                    "50",
                                                    "Reduced",
                                                    "true",
                                                    "100% SDV",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Receiving Dept",
                                                    "Boston",
                                                    "US",
                                                    "test@abc.com",
                                                    "343",
                                                    "1234567891",
                                                    "Kansas",
                                                    "560068",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "Asia/Kolkata",
                                                    "Tester2",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "N",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen03",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "14",
                                                    "0",
                                                    "Week1",
                                                    "1",
                                                    "WEEK1",
                                                    "Week1",
                                                    "Visit_Date_Changed",
                                                    "Y",
                                                    "2025-11-12T00:00:00.000Z",
                                                    "2025-11-16T00:00:00.000Z",
                                                    "2025-11-09T00:00:00.000Z",
                                                    "Baseline",
                                                    "1",
                                                    "360",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "INPROGRESS",
                                                    "DISPENSATION",
                                                    "4",
                                                    "0",
                                                    "3",
                                                    "0",
                                                    "BASELINE",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "NEW",
                                                    "N",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "1",
                                                    "DBP",
                                                    "NUMBER_04",
                                                    "DBP",
                                                    "NUMBER_04",
                                                    "Measurement",
                                                    "80",
                                                    "TEXT",
                                                    "mmHg",
                                                    "0",
                                                    "1",
                                                    "0",
                                                    "LAB01",
                                                    "Central Lab A",
                                                    "NUMBER_04",
                                                    "N",
                                                    "1",
                                                    "OBLIGATORY",
                                                    "Initial data entry",
                                                    "Y",
                                                    "1",
                                                    "CREATED",
                                                    "Initial load",
                                                    "testuser1",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T14:53:24.355Z",
                                                    "Site User (template)",
                                                    "N",
                                                    "2025-10-29T14:55:48.844Z",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "202",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "E114B5FE929A41D0831E0E3154F35B91",
                                                    "178",
                                                    "5DF278EB00F24820B9CEFE7BFD7A3078",
                                                    "42",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "5",
                                                    "25",
                                                    "7FF46717F885448C84E8D0E47863DD3C",
                                                    "9",
                                                    "589CA821E41D4B4DA7BCA1F7158BCEB8",
                                                    "26",
                                                    "71476A82F95B433D9450071EDE9A4DF1",
                                                    "85",
                                                    "B2678D05929F4AC9B26282A2DAFBD4F9",
                                                    "3",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "SIGN",
                                                    "2025-10-29T14:53:24.355Z",
                                                    "testuser1",
                                                    "SIGNED",
                                                    "NUMBER_04",
                                                    "Casebook Signature",
                                                    "CASEBOOK",
                                                    "Electronic Signature Affidavit",
                                                    "9D6DE47A263049D0A24F9C614BD49A97:29-OCT-25 02.53.24.355000 PM"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectItemSvflDataSetEmptyReport":{
                                        "description":"SubjectItemSvflDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "INNER_REPEAT",
                                                "OUTER_REPEAT",
                                                "ITEM_NAME",
                                                "ITEM_REFNAME",
                                                "SAS_LABEL",
                                                "SAS_VARIABLE",
                                                "QUESTION_TYPE",
                                                "VALUE",
                                                "ITEM_F",
                                                "MEASURE_UNIT",
                                                "HIDDEN",
                                                "REQUIRED",
                                                "READONLY",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "REFERENCE_CODE",
                                                "HAS_QUERY",
                                                "IS_REQUIRED",
                                                "SDV_SELECTION_STATUS",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_IMPORTED",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENTINST_FORM_ID",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "SUBJECT_EVENTINST_FORMITEM_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-items-actions-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-items-actions-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "DH_SUBJECT_FORMITEMS_VERSION_START",
                                            "DH_SUBJECT_FORMITEMS_VERSION_END",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_CURRENT",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "SF_REPEAT_SEQUENCE_NUMBER",
                                            "SUBVIS_FORMS_DATASET_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "TO_SITE_ID",
                                            "TO_SITE_WID",
                                            "TO_SITE_NAME",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "INVESTIGATOR",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_VIS_DATASET_VERSION_START",
                                            "SUBJECT_VIS_DATASET_VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_TRANSFER_WID",
                                            "SUBJECT_TRANSFER_ID",
                                            "SUBJECT_TRANSFER_VERSION_START",
                                            "SUBJECT_TRANSFER_VERSION_END",
                                            "OLD_SUBJECT_NUMBER",
                                            "NEW_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_NAME",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBVIS_FORMS_DATASET_IS_CURRENT",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_SUBJECT_FORMITEMS_VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_SUBJECT_FORMITEMS_VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Date/time at which the transaction began processing.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Date/time at which the transaction began processing.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>The date and time when the current subject form item row became effective.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>The date and time when the current subject form item row stopped being current.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the item row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from.</td></tr>\n    <tr><td><code>TO_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site to which the subject was transferred.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Name of the subject associated with the item row.</td></tr>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>NEW_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject newly assigned number in the system after the subject was transferred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the visit associated with the item value.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SUBVIS_FORMS_DATASET_IS_CURRENT</code></td><td>CHAR(1)</td><td>Indicates whether the related subject visit form dataset row is the current version. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>REQUIRED</code></td><td>NUMBER</td><td>Indicates whether the question is required. Required questions must be answered in order to save the form that contains it.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>SUBJECT_VIS_DATASET_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>The date and time when the related subject visit dataset version became effective.</td></tr>\n    <tr><td><code>SUBJECT_VIS_DATASET_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>The date and time when the related subject visit dataset version stopped being current.</td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study-defined item (question) that produced the captured value.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site to which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier to which the subject was transferred.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the subject transfer record.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit/event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event whose scheduled visit spawned this visit.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Decoded or display-friendly representation of the stored response.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SF_REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat sequence number of the form instance that contains the item.</td></tr>\n    <tr><td><code>SUBVIS_FORMS_DATASET_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the related subject forms dataset row for the same visit context.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version became effective.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version stopped being current.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>The dataset GUID for the subject form item row, corresponding to the ODM <code>co:ItemGUID</code> that uniquely identifies the item-level instance.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the Designer variable/element tied to this question.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "DH_SUBJECT_FORMITEMS_VERSION_START",
                                                "DH_SUBJECT_FORMITEMS_VERSION_END",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_CURRENT",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "SF_REPEAT_SEQUENCE_NUMBER",
                                                "SUBVIS_FORMS_DATASET_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_VIS_DATASET_VERSION_START",
                                                "SUBJECT_VIS_DATASET_VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBVIS_FORMS_DATASET_IS_CURRENT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-09-26T13:14:48.944Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "1",
                                                    "8EC1CE9A19EB4844A046E9F36972B6E4",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "C93C52A2CDC04B2FB50676737FB397A8",
                                                    "30",
                                                    "Bangalore",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "LAB01",
                                                    "14",
                                                    "2025-09-26T13:15:59.654Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "Appolo2002",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "4",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "2024-10-15T09:55:55.694",
                                                    "3099-12-31T00:00:00.000",
                                                    "Appolo2002",
                                                    "APL03T24.2001",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "SCREENINGVISIT",
                                                    "0",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "1",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "DH_SUBJECT_FORMITEMS_VERSION_START",
                                                "DH_SUBJECT_FORMITEMS_VERSION_END",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_CURRENT",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "SF_REPEAT_SEQUENCE_NUMBER",
                                                "SUBVIS_FORMS_DATASET_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_VIS_DATASET_VERSION_START",
                                                "SUBJECT_VIS_DATASET_VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBVIS_FORMS_DATASET_IS_CURRENT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>FORM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "SUBJECT_FORMS_VERSION_START",
                                            "SUBJECT_FORMS_VERSION_END",
                                            "SUBJECT_FORMS_USER_ID",
                                            "SUBJECT_FORMS_USER_WID",
                                            "SUBJECT_FORMS_USER_NAME",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "DH_SUBJECT_FORMS_IS_CURRENT",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "SUBJECT_FORMS_DH_TIMESTAMP",
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "TO_SITE_ID",
                                            "TO_SITE_WID",
                                            "TO_SITE_NAME",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "INVESTIGATOR",
                                            "SUBJECT_EVENT_INST_WID",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_TRANSFER_WID",
                                            "SUBJECT_TRANSFER_ID",
                                            "SUBJECT_TRANSFER_VERSION_START",
                                            "SUBJECT_TRANSFER_VERSION_END",
                                            "OLD_SUBJECT_NUMBER",
                                            "NEW_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_NAME",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "IS_CURRENT",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the form row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from.</td></tr>\n    <tr><td><code>TO_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site to which the subject was transferred.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Name of the subject associated with the form row.</td></tr>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>NEW_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject newly assigned number in the system after the subject was transferred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the visit associated with the form row.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>SUBJECT_FORMS_USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail field that represents the user who performed the action on the subject form row.</td></tr>\n    <tr><td><code>SUBJECT_FORMS_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>The date and time when the current subject form row stopped being current.</td></tr>\n    <tr><td><code>SUBJECT_FORMS_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>The date and time when the current subject form row became effective.</td></tr>\n    <tr><td><code>SUBJECT_FORMS_DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the form row became available in the dataset.</td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>SUBJECT_FORMS_USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who performed the action on the subject form row.</td></tr>\n    <tr><td><code>SUBJECT_FORMS_USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user numeric identifier for the user who performed the action on the subject form row.</td></tr>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site to which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier to which the subject was transferred.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the subject transfer record.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMS_IS_CURRENT</code></td><td>CHAR(1)</td><td>Indicates whether the related subject forms dataset row is the current version. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject Forms dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version became effective.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version stopped being current.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "SUBJECT_FORMS_VERSION_START",
                                                "SUBJECT_FORMS_VERSION_END",
                                                "SUBJECT_FORMS_USER_ID",
                                                "SUBJECT_FORMS_USER_WID",
                                                "SUBJECT_FORMS_USER_NAME",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "DH_SUBJECT_FORMS_IS_CURRENT",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "SUBJECT_FORMS_DH_TIMESTAMP",
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "2025-09-24T16:27:34.906Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "system",
                                                    "2103",
                                                    "United States",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2026-04-16T08:45:14.691Z",
                                                    "D29A50B215F24E039E3BA66BF4412CCE",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "C93C52A2CDC04B2FB50676737FB397A8",
                                                    "30",
                                                    "Bangalore",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "Tester2",
                                                    "19",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "1",
                                                    "4",
                                                    "Initial load",
                                                    "Seeded by migration script",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "Appolo1002",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "4",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "2024-10-15T09:55:55.694",
                                                    "3099-12-31T00:00:00.000",
                                                    "Appolo1002",
                                                    "APL03T24.2001",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "SCREENINGVISIT",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "SIGNED"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "SUBJECT_FORMS_VERSION_START",
                                                "SUBJECT_FORMS_VERSION_END",
                                                "SUBJECT_FORMS_USER_ID",
                                                "SUBJECT_FORMS_USER_WID",
                                                "SUBJECT_FORMS_USER_NAME",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "DH_SUBJECT_FORMS_IS_CURRENT",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "SUBJECT_FORMS_DH_TIMESTAMP",
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "STUDY_VERSION",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NAME",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_NAME",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "SUBJECT_NUMBER",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "IS_CURRENT",
                                            "SUBJECT_TRANSFER_WID",
                                            "SUBJECT_TRANSFER_ID",
                                            "SUBJECT_TRANSFER_VERSION_START",
                                            "SUBJECT_TRANSFER_VERSION_END",
                                            "OLD_SUBJECT_NUMBER",
                                            "NEW_SUBJECT_NUMBER",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "TO_SITE_ID",
                                            "TO_SITE_WID",
                                            "TO_SITE_NAME",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from.</td></tr>\n    <tr><td><code>TO_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site to which the subject was transferred.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Name of the subject associated with the dataset row.</td></tr>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>NEW_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject newly assigned number in the system after the subject was transferred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER(10)</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER(10)</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit/event; mirrors the numeric <code>EVENT_WID</code> from the Reference folder.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the subject transfer record.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site to which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier to which the subject was transferred.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm, paired with <code>TREATMENT_WID</code> to identify the therapy.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version became effective.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer version stopped being current.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "STUDY_VERSION",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "SUBJECT_NUMBER",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "1.0.0.3",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "Appolo1001",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "SCREENINGVISIT",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "1",
                                                    "Tester2",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "Y",
                                                    "5",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "2024-12-23T11:00:15.015",
                                                    "3099-12-31T00:00:00.000",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "Appolo1059",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "19F81A4ADBFF4E059CC92E27637DC8DD",
                                                    "32",
                                                    "Appolo3",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "50262",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "STUDY_VERSION",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "SUBJECT_NUMBER",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/visits/actions":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject visit and visit date actions details"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the study-permissioned Subject Event SVFL dataset for a single study and mode.</p><p>The dataset exposes visit-level and visit-date-level action history, including action type, action status, action object, sign metadata, action user/date, together with related study, site, subject, and event context.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns action-history rows captured for subject visits in the selected study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DMActionsPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>OBJECT_TYPE</code>, <code>ACTION_TYPE</code>, <code>ACTION_OBJECT</code>, <code>ACTION_STATUS</code>, <code>SIGN_LEVEL</code>, and <code>SIGN_NAME</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getVisitsSvflDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectEventSvflDataSetQuery":{
                                    "description":"SubjectEventSvflDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "ADD_SUBJECTS",
                                            "ADDRESS_CITY",
                                            "ADDRESS_COUNTRY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "DEA_NUMBER",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "EMAIL",
                                            "EXPIRATION",
                                            "FAX",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "PHONE",
                                            "PI_PREFIX",
                                            "RANDOMIZE_SUBJECTS",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "SCREEN_SUBJECTS",
                                            "SDV_GROUP_NAME",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_ATTENTION",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_FAX",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "TIMEZONE",
                                            "INVESTIGATOR",
                                            "SITE_NAME",
                                            "SITE_TYPE",
                                            "EHR_ENABLED",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "EVENT_ID_NAME",
                                            "EVENT_INSTANCE_NUM",
                                            "EVENT_REFNAME",
                                            "EVENT_TITLE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "PROJECTED_VISIT_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_ORDER",
                                            "VISIT_START_DATE",
                                            "VISIT_STATUS",
                                            "VISIT_TYPE",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "OBJECT_VERSION_NUMBER",
                                            "OPERATION_TYPE",
                                            "REASON",
                                            "USER_NAME",
                                            "VERSION_END",
                                            "VERSION_START",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "DH_TIMESTAMP",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "STUDY_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "USER_ID",
                                            "USER_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "ACTION_TYPE",
                                            "ACTION_DATE",
                                            "ACTION_USER",
                                            "ACTION_STATUS",
                                            "ACTION_OBJECT",
                                            "OBJECT_TYPE",
                                            "SIGN_NAME",
                                            "SIGN_LEVEL",
                                            "SIGN_AFFIDAVIT_NAME",
                                            "INTEGRATION_ID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OBJECT_TYPE",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_TYPE",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_OBJECT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ACTION_STATUS",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SIGN_NAME",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#action-context\">Action context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in the dataset.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field displays the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the user-entered <code>EVENT_TITLE</code> with blank spaces removed. The system generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>ADVERSE_EVENT</code>: adverse event visit.</li><li><code>DISPENSATION</code>: dispensation visit.</li><li><code>NON_DISPENSATION</code>: non-dispensation visit.</li><li><code>OPTIONAL</code>: optional visit.</li><li><code>OPTIONAL_DISPENSATION</code>: optional dispensation visit.</li><li><code>RANDOMIZATION</code>: randomization visit.</li><li><code>RESCREENING</code>: rescreening visit.</li><li><code>SCREENFAILURE</code>: screen failure visit.</li><li><code>SCREENING</code>: screening visit.</li><li><code>SUBJECT_COMPLETE</code>: study completion visit.</li><li><code>UNSCHEDULED</code>: unscheduled visit.</li><li><code>UNSCHEDULED_DISPENSATION</code>: unscheduled dispensation visit.</li><li><code>WITHDRAW</code>: withdrawal visit.</li></ul></td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"action-context\">Action context</h4>\n<p>SVFL action transitions and sign-specific attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ACTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the action that was updated for the given object. Possible values are <code>SIGN</code>, <code>VERIFY</code>, <code>FREEZE</code>, or <code>LOCK</code>.</td></tr>\n    <tr><td><code>ACTION_OBJECT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the refname of the Clinical One object where the action was applied.</td></tr>\n    <tr><td><code>OBJECT_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Specifies if the action took place for the event itself or for the visit date. Possible values include <code>Event</code> or <code>Visit Date</code>.</td></tr>\n    <tr><td><code>ACTION_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>The resulting status after the action update. Possible values depend on the action type and can be:</p><ul><li><code>SIGNED</code></li><li><code>UNSIGNED</code></li><li><code>FROZEN</code></li><li><code>UNFROZEN</code></li><li><code>VERIFIED</code></li><li><code>UNVERIFIED</code></li><li><code>LOCKED</code></li><li><code>UNLOCKED</code></li></ul><p><strong>Note:</strong> There will be no record for the initial state where no action was applied. This is when the status for a given SVFL action to the object is <code>null</code>. For example, when the object is not currently signed and it has never been, so it cannot be unsigned either.</p></td></tr>\n    <tr><td><code>ACTION_DATE</code></td><td>TIMESTAMP(6)</td><td>The version start of the audit where the action was applied.</td></tr>\n    <tr><td><code>ACTION_USER</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user that performed the update to the action. This field displays SYSTEM if it is not a direct action update and is instead the result of an automatic recalculation performed by the system or any other user action that indirectly impacts SVFL status.</td></tr>\n    <tr><td><code>SIGN_LEVEL</code></td><td>VARCHAR2(16 CHAR)</td><td>Only applicable for sign actions. Indicates the level at which the signature was applied. Possible values are <code>CASEBOOK</code>, <code>FORM</code>, or <code>VISIT</code>.</td></tr>\n    <tr><td><code>SIGN_NAME</code></td><td>VARCHAR2(1000)</td><td>Only applicable for sign actions. The configured name of the signature.</td></tr>\n    <tr><td><code>SIGN_AFFIDAVIT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Only applicable for sign actions. Indicates the name of the affidavit that the signature displays to users for their endorsement.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if <code>Other</code> is selected; populated by rule execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent event from which this visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject visit row.</td></tr>\n    <tr><td><code>INTEGRATION_ID</code></td><td>VARCHAR2(1000 CHAR)</td><td>Identifier of the integration that recorded the action.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectEventSvflDataSetReport":{
                                        "description":"SubjectEventSvflDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "OBJECT_TYPE",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                                [
                                                    "775B3D573D6F4D89AB3B70FA4B4881C8",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "1.0.0.3",
                                                    "true",
                                                    "Boston",
                                                    "US",
                                                    "560068",
                                                    "Kansas",
                                                    "456abc",
                                                    "Suite 12",
                                                    "AB1234567",
                                                    "true",
                                                    "false",
                                                    "test@abc.com",
                                                    "2027-12-31",
                                                    "343",
                                                    "10",
                                                    "Targeted",
                                                    "1234567891",
                                                    "Dr.",
                                                    "true",
                                                    "50",
                                                    "Reduced",
                                                    "true",
                                                    "100% SDV",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Receiving Dept",
                                                    "Boston",
                                                    "US",
                                                    "test@abc.com",
                                                    "343",
                                                    "1234567891",
                                                    "Kansas",
                                                    "560068",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "Asia/Kolkata",
                                                    "Tester2",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "N",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen03",
                                                    "DATAHUB_AUT_Site2_Active03",
                                                    "0",
                                                    "0",
                                                    "SCR",
                                                    "0",
                                                    "SCREENINGFORM",
                                                    "ScreeningForm",
                                                    "Visit_Complete",
                                                    "Y",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "ScreeningForm",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "COMPLETE",
                                                    "SCREENING",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "SCREENINGFORM",
                                                    "Completed by site",
                                                    "Y",
                                                    "1",
                                                    "CREATED",
                                                    "Initial load",
                                                    "testuser1",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T14:53:24.455Z",
                                                    "Site User (template)",
                                                    "2025-10-29T14:55:48.777Z",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "5",
                                                    "25",
                                                    "4A6BDC6984C245BA9C9793F7ED6779BF",
                                                    "8",
                                                    "B2678D05929F4AC9B26282A2DAFBD4F9",
                                                    "3",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "SIGN",
                                                    "2025-10-29T14:53:24.455Z",
                                                    "testuser1",
                                                    "SIGNED",
                                                    "SCREENINGFORM",
                                                    "FORM",
                                                    "Casebook Signature",
                                                    "CASEBOOK",
                                                    "Electronic Signature Affidavit",
                                                    "775B3D573D6F4D89AB3B70FA4B4881C8:29-OCT-25 02.53.24.455000 PM"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectEventSvflDataSetEmptyReport":{
                                        "description":"SubjectEventSvflDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "ADD_SUBJECTS",
                                                "ADDRESS_CITY",
                                                "ADDRESS_COUNTRY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "DEA_NUMBER",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "EMAIL",
                                                "EXPIRATION",
                                                "FAX",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "PHONE",
                                                "PI_PREFIX",
                                                "RANDOMIZE_SUBJECTS",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SCREEN_SUBJECTS",
                                                "SDV_GROUP_NAME",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_ATTENTION",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_FAX",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "TIMEZONE",
                                                "INVESTIGATOR",
                                                "SITE_NAME",
                                                "SITE_TYPE",
                                                "EHR_ENABLED",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "EVENT_ID_NAME",
                                                "EVENT_INSTANCE_NUM",
                                                "EVENT_REFNAME",
                                                "EVENT_TITLE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "PROJECTED_VISIT_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_ORDER",
                                                "VISIT_START_DATE",
                                                "VISIT_STATUS",
                                                "VISIT_TYPE",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "OBJECT_VERSION_NUMBER",
                                                "OPERATION_TYPE",
                                                "REASON",
                                                "USER_NAME",
                                                "VERSION_END",
                                                "VERSION_START",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DH_TIMESTAMP",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "STUDY_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "ACTION_TYPE",
                                                "ACTION_DATE",
                                                "ACTION_USER",
                                                "ACTION_STATUS",
                                                "ACTION_OBJECT",
                                                "OBJECT_TYPE",
                                                "SIGN_NAME",
                                                "SIGN_LEVEL",
                                                "SIGN_AFFIDAVIT_NAME",
                                                "INTEGRATION_ID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-visits-actions-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-visits-actions-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, and <code>EVENT_INSTANCE_NUM</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "TO_SITE_ID",
                                            "TO_SITE_WID",
                                            "TO_SITE_NAME",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "INVESTIGATOR",
                                            "SUBJECT_EVENT_INST_WID",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_TRANSFER_WID",
                                            "SUBJECT_TRANSFER_ID",
                                            "SUBJECT_TRANSFER_VERSION_START",
                                            "SUBJECT_TRANSFER_VERSION_END",
                                            "OLD_SUBJECT_NUMBER",
                                            "NEW_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_NAME",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "IS_CURRENT",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study title associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Site name from which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Site name to which the subject was transferred.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Subject name associated with the dataset row.</td></tr>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Subject number assigned before the transfer or renumbering.</td></tr>\n    <tr><td><code>NEW_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Subject number assigned after the transfer or renumbering.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Visit title associated with the dataset row.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER(10)</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER(10)</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site to which the subject was transferred.</td></tr>\n    <tr><td><code>TO_SITE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the site to which the subject was transferred.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the subject transfer record.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer record version became effective.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Date and time when the subject transfer record version stopped being current.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "C93C52A2CDC04B2FB50676737FB397A8",
                                                    "30",
                                                    "Bangalore",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "Tester2",
                                                    "1",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Appolo2001",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "4",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "2024-10-15T09:55:55.694",
                                                    "3099-12-31T00:00:00.000",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "APL03T24.2001",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "SCREENINGVISIT",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "Y",
                                                    "1",
                                                    "1",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "TO_SITE_ID",
                                                "TO_SITE_WID",
                                                "TO_SITE_NAME",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "INVESTIGATOR",
                                                "SUBJECT_EVENT_INST_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_TRANSFER_WID",
                                                "SUBJECT_TRANSFER_ID",
                                                "SUBJECT_TRANSFER_VERSION_START",
                                                "SUBJECT_TRANSFER_VERSION_END",
                                                "OLD_SUBJECT_NUMBER",
                                                "NEW_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_NAME",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "IS_CURRENT",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "OLD_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY",
                                            "INVESTIGATOR",
                                            "IS_CURRENT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the subject row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the subject's site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "OLD_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY",
                                                "INVESTIGATOR",
                                                "IS_CURRENT"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "India",
                                                    "Tester2",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "OLD_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY",
                                                "INVESTIGATOR",
                                                "IS_CURRENT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/codelists":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get codelists for tenant"
                ],
                "summary":"V1.0",
                "description":"<p>Retrieves the tenant-permissioned Tenant Codelists dataset for a tenant.</p><p>The dataset exposes versioned tenant codelist configuration, including codelist definitions, localized code values, display metadata, grouping metadata, hidden flags, LOINC metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for system and tenant-level codelists available to the tenant.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">TenantCodelistDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>CODE_LEVEL</code>, <code>CODE_ID</code>, <code>CODE_VALUE_ID</code>, and <code>LOCALE</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_5",
                "parameters":[
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "TenantCodelistsDataSetQuery":{
                                    "description":"TenantCodelistsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "CODE_NAME",
                                            "DISPLAY_CODE_NAME",
                                            "CODE_LABEL",
                                            "CODE_VALUE",
                                            "CODE",
                                            "CODE_DESCRIPTION",
                                            "CODE_GROUP_NAME",
                                            "CODE_LEVEL",
                                            "LOCALE",
                                            "LOINC",
                                            "TAG",
                                            "CL_HIDDEN",
                                            "SEQUENCE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "CODE_VALUE_ID",
                                            "CODE_VALUE_WID",
                                            "CODE_ID",
                                            "CODE_WID",
                                            "CODE_GROUP_ID",
                                            "CODE_GROUP_WID",
                                            "USER_ID",
                                            "USER_WID",
                                            "DH_TIMESTAMP",
                                            "SOFTWARE_VERSION_NUMBER"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"CODE_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_VALUE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"LOCALE",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#codelist-context\">Codelist context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"codelist-context\">Codelist context</h4>\n<p>Codelist values, localization fields, display metadata, and codelist-level grouping metadata associated with the tenant row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Codelist name.</td></tr>\n    <tr><td><code>DISPLAY_CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the display name shown for the codelist. When no display-specific name exists, the codelist name is used.</td></tr>\n    <tr><td><code>CODE_LABEL</code></td><td>VARCHAR2(4000)</td><td>The code label associated with the codelist value.</td></tr>\n    <tr><td><code>CODE_VALUE</code></td><td>VARCHAR2(4000)</td><td>The displayed codelist value.</td></tr>\n    <tr><td><code>CODE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the code configured for the codelist value.</td></tr>\n    <tr><td><code>CODE_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Codelist description.</td></tr>\n    <tr><td><code>CODE_GROUP_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Represents the code group name to which the record belongs.</td></tr>\n    <tr><td><code>CODE_LEVEL</code></td><td>VARCHAR2(32 CHAR)</td><td>Describes whether the record is at a system or custom level codelist. Values are <code>SYSTEM</code> or <code>CUSTOM</code>.</td></tr>\n    <tr><td><code>LOCALE</code></td><td>VARCHAR2(255 CHAR)</td><td>Code locale. English, Chinese and Japanese languages are supported.</td></tr>\n    <tr><td><code>LOINC</code></td><td>VARCHAR2(400 CHAR)</td><td>Indicates the <code>LOINC</code> code associated with the codelist value.</td></tr>\n    <tr><td><code>TAG</code></td><td>VARCHAR2(4000)</td><td>Tag associated with the codelist value.</td></tr>\n    <tr><td><code>CL_HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates whether the codelist value is hidden. Values are <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>SEQUENCE</code></td><td>NUMBER</td><td>Sequence order of the codelist record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment captured for the change reason when provided; when the change is generated by rule execution, the system may populate this field with <code>Rule Execution</code>.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_VALUE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist value.</td></tr>\n    <tr><td><code>CODE_VALUE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist value.</td></tr>\n    <tr><td><code>CODE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist.</td></tr>\n    <tr><td><code>CODE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist.</td></tr>\n    <tr><td><code>CODE_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist group.</td></tr>\n    <tr><td><code>CODE_GROUP_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist group.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "TenantCodelistsDataSetReport":{
                                        "description":"TenantCodelistsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "CODE_NAME",
                                                "DISPLAY_CODE_NAME",
                                                "CODE_LABEL",
                                                "CODE_VALUE",
                                                "CODE",
                                                "CODE_DESCRIPTION",
                                                "CODE_GROUP_NAME",
                                                "CODE_LEVEL",
                                                "LOCALE",
                                                "LOINC",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "SEQUENCE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "DH_TIMESTAMP",
                                                "SOFTWARE_VERSION_NUMBER"
                                            ],
                                            "data":[
                                                [
                                                    "India",
                                                    "India States",
                                                    "Telangana",
                                                    "IN-TG",
                                                    "IN-TG",
                                                    "Code list for India States",
                                                    "Clinical One Default Code List",
                                                    "SYSTEM",
                                                    "en-US",
                                                    "LP12345-6",
                                                    "geography;state",
                                                    "0",
                                                    "34",
                                                    "2022-05-09T14:46:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "testuser1",
                                                    "1",
                                                    "Initial load",
                                                    "Seeded from master codelist",
                                                    "Y",
                                                    "D9C7A56348414F28E053B7834C649CE1",
                                                    "6875",
                                                    "214750A4DE924747A973BAF43C12E1B1",
                                                    "349",
                                                    "9F3C2D1E4A5B6C7D8E9F0A1B2C3D4E5F",
                                                    "-1",
                                                    "00000000000000000000000000000001",
                                                    "43",
                                                    "2025-10-29T12:34:56.865Z",
                                                    "1"
                                                ]
                                            ]
                                        }
                                    },
                                    "TenantCodelistsDataSetEmptyReport":{
                                        "description":"TenantCodelistsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "CODE_NAME",
                                                "DISPLAY_CODE_NAME",
                                                "CODE_LABEL",
                                                "CODE_VALUE",
                                                "CODE",
                                                "CODE_DESCRIPTION",
                                                "CODE_GROUP_NAME",
                                                "CODE_LEVEL",
                                                "LOCALE",
                                                "LOINC",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "SEQUENCE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "USER_ID",
                                                "USER_WID",
                                                "DH_TIMESTAMP",
                                                "SOFTWARE_VERSION_NUMBER"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-codelists-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-codelists-post"
            }
        },
        "/ec-datahub-svc/rest/v1.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "KIT_NUMBER",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50262",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v1.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v1.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v10.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'DataEventType' at the item level if deleted form is restored. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject. Deprecated: use /rest/v12.0/studies/{studyId}/{mode}/odm/clinicalData/blinded.",
                "operationId":"getClinicalDataBlinded_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v10.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v10.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'DataEventType' at the item level if it is not null. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject. Deprecated: use /rest/v12.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded.",
                "operationId":"getClinicalDataUnblinded_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v10.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v10.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"V10.0",
                "description":"This API is used to extract meta data in the CDISC ODM-XML format. In this version, a new Clinical One extension attribute CodelistLinkType is introduced. This attribute specifies whether an item is associated with STATIC or DYNAMIC codelists.",
                "operationId":"getMetadata_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2024-01-01T00:00:00Z"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV10"
                                },
                                "examples":{
                                    "StudyMetadataResponse":{
                                        "description":"StudyMetadataResponse",
                                        "value":"<?xmlversion=\"1.0\"?><ODMxmlns=\"http://www.cdisc.org/ns/odm/v1.3\"xmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"xmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\"Description=\"STUDY01\"FileType=\"Transactional\"FileOID=\"oracle/STUDY01/3E3376C945AC4481B71885A0B9D552B8\"CreationDateTime=\"2025-10-31T06:36:59.384Z\"ODMVersion=\"1.3.2\"Originator=\"system\"SourceSystem=\"Oracle Life Sciences Clinical One\"SourceSystemVersion=\"MetaData API v8.0\"co:studyMode=\"test\"co:includeCOExtensions=\"true\"co:fromTimestamp=\"2024-01-01T00:00:00Z\"co:studyVersion=\"1.0.0.3\"co:studyVersionSummary=\"false\"co:hasMore=\"false\"co:totalResults=\"1\"co:count=\"1\"co:limit=\"1\"co:offset=\"0\"><StudyOID=\"STUDY01\"co:SafetyIntegrationEnabled=\"false\"><GlobalVariables><StudyName>STUDY01</StudyName><StudyDescription>STUDY01</StudyDescription><ProtocolName>STUDY01</ProtocolName></GlobalVariables><BasicDefinitions><MeasurementUnitOID=\"mg\"Name=\"mg\"><Symbol><TranslatedText>mg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Years\"Name=\"Years\"><Symbol><TranslatedText>Years</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"mmHg\"Name=\"mmHg\"><Symbol><TranslatedText>mmHg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"cm\"Name=\"cm\"><Symbol><TranslatedText>cm</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kilogram\"Name=\"Kilogram\"><Symbol><TranslatedText>Kilogram</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"kg\"Name=\"kg\"><Symbol><TranslatedText>kg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kg\"Name=\"Kg\"><Symbol><TranslatedText>Kg</TranslatedText></Symbol></MeasurementUnit></BasicDefinitions><MetaDataVersionOID=\"STUDY01v1.0.0.3\"Name=\"STUDY01\"co:StudyWid=\"25\"co:GUID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:VersionStart=\"2025-10-29T14:37:54.638Z\"><Protocol><StudyEventRefStudyEventOID=\"AE_DBB3A65B0A97454DAFEAEDDAB37395A1\"OrderNumber=\"1\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"OrderNumber=\"2\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"OrderNumber=\"3\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week1_3279AFB1AA3C44CFB6D6C419AAAC8A84\"OrderNumber=\"4\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week2_57CCABE13C174836A48BCEDD46247AB8\"OrderNumber=\"5\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week3_449CBE4790CF4F66AB58619C86CA405B\"OrderNumber=\"6\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyCompletion_A165C73526474F698CBC2F8D018FDBB0\"OrderNumber=\"7\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyWithdrawal_AE61AFF53DB4438BA0D83A82278F7128\"OrderNumber=\"8\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"UnscheduleVisit1_4D7113375FD74C37BDACC4B5D5D83002\"OrderNumber=\"9\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week4_8A40FBC9DF6E4D9295F7CB10DB30DCB7\"OrderNumber=\"10\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week5_E2F63997717A427881FC32C8E2B25139\"OrderNumber=\"11\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit1_35882BCA293243E78EF8ACFB0195D3D3\"OrderNumber=\"12\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit2_4C4B0355050845FEBAE1DDC0A4FB7104\"OrderNumber=\"13\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit1_664DA4DAEA3A44DABACA22CC40BB9875\"OrderNumber=\"14\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"OrderNumber=\"15\"Mandatory=\"Yes\"></StudyEventRef></Protocol><StudyEventDefOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"Name=\"CBVISIT2\"Repeating=\"No\"Type=\"Scheduled\"Category=\"ScheduleAbleVisit\"co:StudyEventWid=\"248\"co:GUID=\"AD5ACD1ED5E346129C6FABE4FA2E7DBE\"co:VersionStart=\"2025-10-29T14:37:55.423Z\"co:DelayDays=\"4\"co:DelayHours=\"0\"co:DelayWindowBeforeDays=\"2\"co:DelayWindowBeforeHours=\"0\"co:DelayWindowAfterDays=\"2\"co:DelayWindowAfterHours=\"0\"><FormRefFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"OrderNumber=\"1\"Mandatory=\"Yes\"></FormRef><FormRefFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"OrderNumber=\"2\"Mandatory=\"Yes\"></FormRef></StudyEventDef><FormDefOID=\"DECISION_FORM_FOR_BRANCH_026521949ED24C69B0A82084832A3262\"Name=\"DecisionFrom For Branch\"Repeating=\"No\"><ItemGroupRefOrderNumber=\"1\"Mandatory=\"No\"ItemGroupOID=\"IG_DATE_TIME_6ED56EC23ADD4841B8AC22ECB6205774\"></ItemGroupRef><ItemGroupRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemGroupOID=\"IG_ENABLE_DYNAMIC_VISIT_18936986318C4B00AAF89CDA492E6876\"></ItemGroupRef></FormDef><ItemGroupDefOID=\"IG_LAB_FORM_XRAY_E98F15D6F16F425A8F0EC3B92C8B718F\"Name=\"Lab Form - XRAY\"Repeating=\"Yes\"><ItemRefOrderNumber=\"1\"Mandatory=\"No\"ItemOID=\"LB_TEST_0267AEECE55441088516DA2C0E1B2EDC\"></ItemRef><ItemRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemOID=\"LB_RESULT_DE498EE22C884D55A50D285580AB674D\"></ItemRef><ItemRefOrderNumber=\"3\"Mandatory=\"No\"ItemOID=\"LB_UNIT_00C6D2BF3F8B4178AAB25EBD3304E39E\"></ItemRef><ItemRefOrderNumber=\"4\"Mandatory=\"No\"ItemOID=\"LB_LOW_RANGE_C8B8EEFE75F543299542C222ED94C28F\"></ItemRef><ItemRefOrderNumber=\"5\"Mandatory=\"No\"ItemOID=\"LB_HIGH_RANGE_5CE74A4A9E97435B933B6C28645342AA\"></ItemRef><ItemRefOrderNumber=\"6\"Mandatory=\"No\"ItemOID=\"NORMAL_TEXT_RESULT_746B6577A50C4D0A9DB53E1CD6B60551\"></ItemRef></ItemGroupDef><ItemDefOID=\"ENABLE_DYNAMIC_VISIT_74D371375BF1410A9D056EA0485DFF8C\"Name=\"ENABLE_DYNAMIC_VISIT\"DataType=\"string\"co:ItemWid=\"890\"co:GUID=\"74D371375BF1410A9D056EA0485DFF8C\"co:ItemVersionStart=\"2025-10-29T14:37:54.872Z\"co:Precision=\"1\"co:AllowFutureDate=\"No\"co:DataClassification=\"Sponsor Data\"co:CodelistLinkType=\"STATIC\"><Question><TranslatedText>EnableDynamicVisit?</TranslatedText></Question><CodeListRefCodeListOID=\"ENABLE_DYNAMIC_VISIT_ENABLE_DYNAMIC_VISIT_20CA635B53BC48099D2C5CDF3DBFD60C\"></CodeListRef></ItemDef><CodeListOID=\"FlagType\"Name=\"FlagType\"DataType=\"text\"><CodeListItemCodedValue=\"Association\"co:SelectionOID=\"FlagType.Association\"><Decode><TranslatedText>Association</TranslatedText></Decode></CodeListItem></CodeList></MetaDataVersion></Study></ODM>"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v10.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v10.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"V10.0",
                "description":"<p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>LOCKED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getBlindedSubjectDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, SCREENINGVISIT is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given visit. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the visit are currently locked.</li><li><code>UNLOCKED</code>: The visit has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this visit.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v10.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v10.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>EHR_ENABLED</code>, <code>EHR_IMPORTED</code>, and <code>SDV_SELECTION_STATUS</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "EHR_ENABLED",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM",
                                            "EHR_IMPORTED",
                                            "SDV_SELECTION_STATUS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td><p>Indicates if a question was populated via an Electronic Health Record (EHR) data import.</p><p>If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_SELECTION_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates if, after all applicable Source Data Verification (SDV) settings combined, the question requires verification or not for the subject.</p><p>This is determined based on the study SDV settings, the SDV strategy assigned to the site, whether the subject is part of the pool of selected subjects for SDV, and SDV settings defined at the item level in form design. For more information, see Understand Source Data Verification.</p><p>This data element is populated with four possible values:</p><ul><li><p><code>OBLIGATORY</code>: the question requires verification. This means that either the study has a 100% SDV configuration or it has a Targeted SDV configuration and the question is selected for SDV for that given subject.</p></li><li><p><code>OPTIONAL</code>: the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>OPTIONAL_CRITICAL</code>: the question is set as a critical variable but the subject is not part of the SDV subject pool, hence the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>IRRELEVANT</code>: the question is not configured for SDV for this subject and it is not expected to be verified. This would be the case of:</p><ul><li>Read-only questions.</li><li>Studies set up for no SDV.</li><li>Studies with Targeted SDV configuration that don't allow SDV overrides.</li><li>Screen failed subjects when excluded from SDV.</li></ul></li></ul></td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the current status of the subject in the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Central Lab A",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v10.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v10.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>FORM_EVENT_TYPE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "FORM_EVENT_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>FORM_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Indicates the type of event for changes in form status records. This element currently shows events in the restore flow, setting it to <code>FORM_RESTORED</code> when a record was restored after deletion, otherwise it is <code>NULL</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "Visit_Complete"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v10.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v10.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>EHR_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "SCREENING_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT",
                                            "COUNT_OF_KITS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N",
                                                    "1"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v10.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v10.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"V10.0",
                "description":"<p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SHIPMENT_RCVD_SITE_DEPOT_DATE</code>, <code>SHIPMENT_RECEIVED_BY_WID</code>, <code>SHIPMENT_RECEIVED_BY_ID</code>, <code>SHIPMENT_RECEIVED_BY</code>, and <code>SHIPMENT_RECEIPT_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblindedKitsDataSetQuery",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "SCREENING_NUMBER",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                            "SHIPMENT_RECEIVED_BY_ID",
                                            "SHIPMENT_RECEIVED_BY_WID",
                                            "SHIPMENT_RECEIPT_DATE",
                                            "SHIPMENT_RECEIVED_BY",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "ORDER_TYPE",
                                            "FORCED_RAND",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "COMPOUNDING_KITS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>FORCED_RAND</code></td><td>CHAR(1)</td><td><p>Indicates whether the subject underwent forced randomization. This helps track how many times forced randomization has been used over the course of the study. This scenario can occur due to a lack of kits for at least one treatment arm in the study at the time of randomization. For this data element, the following values can be displayed:</p><ul><li><code>Y</code>: Indicates that a subject underwent forced randomization.</li><li><code>N</code>: Indicates that a subject was randomized normally.</li><li><code>NULL</code>: Indicates that a subject has not yet been randomized.</li></ul></td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>ORDER_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates how a shipment was initiated: <code>INITIAL</code>; <code>MANUAL</code>; <code>RESUPPLY</code></td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIPT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the shipment order was received.</td></tr>\n    <tr><td><code>SHIPMENT_RCVD_SITE_DEPOT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date the shipment was received at the site or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>COMPOUNDING_KITS</code></td><td>VARCHAR2(1)</td><td>Indicates whether a shipment contains compounding kits: <code>Y</code>: the shipment does contain compounding kits. <code>N</code>: the shipment does not contain compounding kits.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates if the kit is non serialized: <code>Y</code> (<code>Yes</code>) the kit is non-serialized. <code>N</code> (<code>No</code>) the kit is serialized.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the person who received the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the person who received the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "COMPOUNDING_KITS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T11:45:00.000Z",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "2025-10-28T10:15:00.000Z",
                                                    "Site Pharmacist",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "WEEK2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "1",
                                                    "N",
                                                    "Outbound",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "COMPOUNDING_KITS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v10.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v10.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v11.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"V11.0",
                "description":"This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'WithdrawalReason , WithdrawalComment,  ScreenFailureDate, ScreenFailureComment, ScreenFailureReason and RescreenRepeatKey' at the subject  level  data. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Snapshot"
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2023-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2099-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v11.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v11.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"V11.0",
                "description":"This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'WithdrawalReason , WithdrawalComment,  ScreenFailureDate, ScreenFailureComment, ScreenFailureReason and RescreenRepeatKey' at the subject  level  data. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Snapshot"
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2023-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2099-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v11.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v11.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"V11.0",
                "description":"<p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SDV_SELECTION_VISIT_DATE</code>. It also includes all expected dynamic and branch visits in the missing criteria and modifies the logic for <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getBlindedSubjectDataset_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT",
                                            "SDV_SELECTION_VISIT_DATE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, SCREENINGVISIT is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>SDV_SELECTION_VISIT_DATE</code></td><td>VARCHAR2(32 CHAR)</td><td>This element tracks visit dates for visits associated with the record that's part of the targeted SDV pool for a subject tied to the record. The possible values include: <code>OBLIGATORY</code> <code>OPTIONAL</code> <code>OPTIONAL_CRITICAL</code> <code>IRRELEVANT</code></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given visit. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the visit are currently locked.</li><li><code>UNLOCKED</code>: The visit has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this visit.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "SDV_SELECTION_VISIT_DATE"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "SDV_SELECTION_VISIT_DATE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v11.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v11.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>DATA_EVENT_TYPE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "EHR_ENABLED",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM",
                                            "EHR_IMPORTED",
                                            "DATA_EVENT_TYPE",
                                            "SDV_SELECTION_STATUS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td><p>Indicates if a question was populated via an Electronic Health Record (EHR) data import.</p><p>If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_SELECTION_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates if, after all applicable Source Data Verification (SDV) settings combined, the question requires verification or not for the subject.</p><p>This is determined based on the study SDV settings, the SDV strategy assigned to the site, whether the subject is part of the pool of selected subjects for SDV, and SDV settings defined at the item level in form design. For more information, see Understand Source Data Verification.</p><p>This data element is populated with four possible values:</p><ul><li><p><code>OBLIGATORY</code>: the question requires verification. This means that either the study has a 100% SDV configuration or it has a Targeted SDV configuration and the question is selected for SDV for that given subject.</p></li><li><p><code>OPTIONAL</code>: the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>OPTIONAL_CRITICAL</code>: the question is set as a critical variable but the subject is not part of the SDV subject pool, hence the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>IRRELEVANT</code>: the question is not configured for SDV for this subject and it is not expected to be verified. This would be the case of:</p><ul><li>Read-only questions.</li><li>Studies set up for no SDV.</li><li>Studies with Targeted SDV configuration that don't allow SDV overrides.</li><li>Screen failed subjects when excluded from SDV.</li></ul></li></ul></td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the current status of the subject in the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DATA_EVENT_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Data-event label captured when the transaction provides a non-null event type.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Central Lab A",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v11.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v11.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>LOCKED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "FORM_EVENT_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>FORM_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Indicates the type of event for changes in form status records. This element currently shows events in the restore flow, setting it to <code>FORM_RESTORED</code> when a record was restored after deletion, otherwise it is <code>NULL</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given form. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the form are currently locked.</li><li><code>UNLOCKED</code>: The form has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this form.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "Visit_Complete"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v11.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v11.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"V11.0",
                "description":"<p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>LOCKED</code> and <code>FORCED_RAND</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "SCREENING_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT",
                                            "COUNT_OF_KITS",
                                            "LOCKED",
                                            "FORCED_RAND"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given visit. This field can have the following values: <code>null</code>: No lock has ever been applied to this visit.</p><ul><li><code>LOCKED</code>: All objects within the visit are currently locked.</li><li><code>UNLOCKED</code>: The visit has no locks applied after being locked at one point in the past.</li></ul><p><strong>Note:</strong> Event or visit locking applies to the entire visit, including the Visit Date. For a visit to be marked as <code>LOCKED</code>, the Visit Date and all associated objects must be locked. If the Visit Date is not locked, the visit cannot be locked. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORCED_RAND</code></td><td>CHAR(1)</td><td><p>Indicates whether the subject underwent forced randomization. This helps track how many times forced randomization has been used over the course of the study. This scenario can occur due to a lack of kits for at least one treatment arm in the study at the time of randomization. For this data element, the following values can be displayed:</p><ul><li><code>Y</code>: Indicates that a subject underwent forced randomization.</li><li><code>N</code>: Indicates that a subject was randomized normally.</li><li><code>NULL</code>: Indicates that a subject has not yet been randomized.</li></ul></td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS",
                                                "LOCKED",
                                                "FORCED_RAND"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N",
                                                    "1",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS",
                                                "LOCKED",
                                                "FORCED_RAND"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v11.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v11.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v12.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"V12.0",
                "description":"This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Changes vs v11: Added new Clinical One extension attributes 'ScreenedDate' and 'EnrolledDate' at the subject level when they are not null. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Snapshot"
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2023-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2099-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v12.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v12.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v12.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"V12.0",
                "description":"This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Changes vs v11: Added new Clinical One extension attributes 'ScreenedDate' and 'EnrolledDate' at the subject level when they are not null. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Snapshot"
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2023-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string",
                            "format":"date"
                        },
                        "example":"2099-01-01T00:00:00.000Z"
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v12.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v12.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v12.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"V12.0",
                "description":"<p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>LOCKED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "EHR_ENABLED",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM",
                                            "EHR_IMPORTED",
                                            "DATA_EVENT_TYPE",
                                            "SDV_SELECTION_STATUS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Date/time when the transaction began processing.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time when the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td><p>Indicates if a question was populated via an Electronic Health Record (EHR) data import.</p><p>If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_SELECTION_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates if, after all applicable Source Data Verification (SDV) settings combined, the question requires verification or not for the subject.</p><p>This is determined based on the study SDV settings, the SDV strategy assigned to the site, whether the subject is part of the pool of selected subjects for SDV, and SDV settings defined at the item level in form design. For more information, see Understand Source Data Verification.</p><p>This data element is populated with four possible values:</p><ul><li><p><code>OBLIGATORY</code>: the question requires verification. This means that either the study has a 100% SDV configuration or it has a Targeted SDV configuration and the question is selected for SDV for that given subject.</p></li><li><p><code>OPTIONAL</code>: the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>OPTIONAL_CRITICAL</code>: the question is set as a critical variable but the subject is not part of the SDV subject pool, hence the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>IRRELEVANT</code>: the question is not configured for SDV for this subject and it is not expected to be verified. This would be the case of:</p><ul><li>Read-only questions.</li><li>Studies set up for no SDV.</li><li>Studies with Targeted SDV configuration that don't allow SDV overrides.</li><li>Screen failed subjects when excluded from SDV.</li></ul></li></ul></td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given question. This field can have the following values:</p><ul><li>&lt;null&gt;: No lock has ever been applied to this question.</li><li><code>LOCKED</code>: The question is currently locked.</li><li><code>UNLOCKED</code>: The question has no locks applied after being locked at one point in the past.</li></ul> Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit/event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent data element that owns this question.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Designer-provided GUID that identifies the question within the form.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event whose scheduled visit spawned this visit.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property that owns this data element.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DATA_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Data-event label captured when the transaction provides a non-null event type.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>The dataset GUID for the subject form item row, corresponding to the ODM <code>co:ItemGUID</code>.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the Designer variable or element tied to the question.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Identifier of the normalized measurement unit applied to the value.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section that contains the item.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Central Lab A",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v12.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v12.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v12.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>LOCKED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "FORM_EVENT_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>FORM_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Indicates the type of event for changes in form status records. This element currently shows events in the restore flow, setting it to <code>FORM_RESTORED</code> when a record was restored after deletion, otherwise it is <code>NULL</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given form. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the form are currently locked.</li><li><code>UNLOCKED</code>: The form has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this form.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "Visit_Complete"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v12.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v12.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v12.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"V12.0",
                "description":"<p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SDV_SELECTION_VISIT_DATE</code>. It also includes all expected dynamic and branch visits in the missing criteria and modifies the logic for <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "SCREENING_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT",
                                            "COUNT_OF_KITS",
                                            "LOCKED",
                                            "FORCED_RAND",
                                            "SDV_SELECTION_VISIT_DATE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>SDV_SELECTION_VISIT_DATE</code></td><td>VARCHAR2(32 CHAR)</td><td>This element tracks visit dates for visits that are part of the targeted SDV pool for a subject tied to the record. The possible values include: <code>OBLIGATORY</code>; <code>OPTIONAL</code>; <code>OPTIONAL_CRITICAL</code>; <code>IRRELEVANT</code></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given visit. This field can have the following values: <code>null</code>: No lock has ever been applied to this visit.</p><ul><li><code>LOCKED</code>: All objects within the visit are currently locked.</li><li><code>UNLOCKED</code>: The visit has no locks applied after being locked at one point in the past.</li></ul><p><strong>Note:</strong> Event or visit locking applies to the entire visit, including the Visit Date. For a visit to be marked as <code>LOCKED</code>, the Visit Date and all associated objects must be locked. If the Visit Date is not locked, the visit cannot be locked.</p></td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORCED_RAND</code></td><td>CHAR(1)</td><td><p>Indicates whether the subject underwent forced randomization. This helps track how many times forced randomization has been used over the course of the study. This scenario can occur due to a lack of kits for at least one treatment arm in the study at the time of randomization. For this data element, the following values can be displayed:</p><ul><li><code>Y</code>: Indicates that a subject underwent forced randomization.</li><li><code>N</code>: Indicates that a subject was randomized normally.</li><li><code>NULL</code>: Indicates that a subject has not yet been randomized.</li></ul></td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Audit comment captured when \"Other\" is chosen as the change reason; the system populates \"Rule Execution\" for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject; aligns with the numeric <code>SUBJECT_WID</code> described in the Reference folder.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit/event; mirrors the numeric <code>EVENT_WID</code> from the Reference folder.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID pointing to the parent visit from which the current visit was scheduled, matching the parent visit name described by <code>SCHEDULED_FROM_EVENT_NAME</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm, paired with <code>TREATMENT_WID</code> to identify the therapy.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort, aligning with the numeric <code>COHORT_WID</code> definition.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the inventory record tied to the dispensed kit.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Identifier of the kit type entered by the study designer when the kit type was created.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Identifier of the IoT-enabled device managed through Oracle Health Sciences mHealth Connector Cloud Services.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that represents the randomization status associated with the subject.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS",
                                                "LOCKED",
                                                "FORCED_RAND",
                                                "SDV_SELECTION_VISIT_DATE"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N",
                                                    "1",
                                                    "N",
                                                    "N",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS",
                                                "LOCKED",
                                                "FORCED_RAND",
                                                "SDV_SELECTION_VISIT_DATE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v12.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v12.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v13.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"V13.0",
                "description":"<p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes all expected items under expected dynamic visits and branch visits scheduled in the missing criteria. It also includes modified logic for <code>IS_MISSING_FORM</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "EHR_ENABLED",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM",
                                            "EHR_IMPORTED",
                                            "DATA_EVENT_TYPE",
                                            "SDV_SELECTION_STATUS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Date/time when the transaction began processing.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time when the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td><p>Indicates if a question was populated via an Electronic Health Record (EHR) data import.</p><p>If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_SELECTION_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates if, after all applicable Source Data Verification (SDV) settings combined, the question requires verification or not for the subject.</p><p>This is determined based on the study SDV settings, the SDV strategy assigned to the site, whether the subject is part of the pool of selected subjects for SDV, and SDV settings defined at the item level in form design. For more information, see Understand Source Data Verification.</p><p>This data element is populated with four possible values:</p><ul><li><p><code>OBLIGATORY</code>: the question requires verification. This means that either the study has a 100% SDV configuration or it has a Targeted SDV configuration and the question is selected for SDV for that given subject.</p></li><li><p><code>OPTIONAL</code>: the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>OPTIONAL_CRITICAL</code>: the question is set as a critical variable but the subject is not part of the SDV subject pool, hence the question may be verified but it is not required for that given subject.</p><p>This is only applicable for Targeted SDV studies that allow SDV overrides.</p></li><li><p><code>IRRELEVANT</code>: the question is not configured for SDV for this subject and it is not expected to be verified. This would be the case of:</p><ul><li>Read-only questions.</li><li>Studies set up for no SDV.</li><li>Studies with Targeted SDV configuration that don't allow SDV overrides.</li><li>Screen failed subjects when excluded from SDV.</li></ul></li></ul></td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given question. This field can have the following values:</p><ul><li>&lt;null&gt;: No lock has ever been applied to this question.</li><li><code>LOCKED</code>: The question is currently locked.</li><li><code>UNLOCKED</code>: The question has no locks applied after being locked at one point in the past.</li></ul> Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit/event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent data element that owns this question.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Designer-provided GUID that identifies the question within the form.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event whose scheduled visit spawned this visit.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property that owns this data element.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DATA_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Data-event label captured when the transaction provides a non-null event type.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>The dataset GUID for the subject form item row, corresponding to the ODM <code>co:ItemGUID</code>.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the Designer variable or element tied to the question.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Identifier of the normalized measurement unit applied to the value.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section that contains the item.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Central Lab A",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY",
                                                    "OBLIGATORY"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "EHR_ENABLED",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM",
                                                "EHR_IMPORTED",
                                                "DATA_EVENT_TYPE",
                                                "SDV_SELECTION_STATUS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v13.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v13.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v13.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"V13.0",
                "description":"<p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>LAST_UPDATED_DATE</code>, <code>LAST_UPDATED_BY_ID</code>, <code>LAST_UPDATED_BY_WID</code>, <code>LAST_UPDATED_BY</code>, <code>OBJECT_VERSION_NUMBER</code>, and <code>SOFTWARE_VERSION_NUMBER</code>. It also populates the temporal columns data for scheduled forms, including <code>VERSION_START</code>, <code>VERSION_END</code>, <code>USER_ID</code>, <code>USER_WID</code>, <code>USER_NAME</code>, <code>OPERATION_TYPE</code>, <code>REASON</code>, and <code>COMMENTS</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "OBJECT_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "FORM_EVENT_TYPE",
                                            "LAST_UPDATED_DATE",
                                            "LAST_UPDATED_BY_ID",
                                            "LAST_UPDATED_BY_WID",
                                            "LAST_UPDATED_BY",
                                            "REASON",
                                            "COMMENTS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>FORM_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Indicates the type of event for changes in form status records. This element currently shows events in the restore flow, setting it to <code>FORM_RESTORED</code> when a record was restored after deletion, otherwise it is <code>NULL</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates the information of the user who made the last change on the clinical data. This is only populated for the record of the latest change and it is associated with the data stored in the <code>LAST_UPDATED_DATE</code> data element.</p><p><strong>Note:</strong> The data contained in this element can only be used for current records from the dataset, marked as <code>IS_CURRENT=Y</code>, as the data updates independently of form status versioning.</p></td></tr>\n    <tr><td><code>LAST_UPDATED_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the time of the most recent clinical data change within a particular form. This includes entering data, clearing data, or restoring data. If no clinical data has been entered in a form, this data element displays a value of <code>NULL</code>.</p><p><strong>Note:</strong> The data contained in this element can only be used for current records from the dataset, marked as <code>IS_CURRENT=Y</code>, as the data updates independently of form status versioning. Moreover, the data contained within this element does not change as a result of Sign, Freeze, Verify, and Lock (SVFL) actions, nor does it change as a result of form associations or site transfers.</p></td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given form. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the form are currently locked.</li><li><code>UNLOCKED</code>: The form has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this form.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the dataset row change, when provided.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who last updated the form row.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY_WID</code></td><td>NUMBER</td><td>Indicates a user numeric identifier for the user who last updated the form row.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "OBJECT_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE",
                                                "LAST_UPDATED_DATE",
                                                "LAST_UPDATED_BY_ID",
                                                "LAST_UPDATED_BY_WID",
                                                "LAST_UPDATED_BY",
                                                "REASON",
                                                "COMMENTS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-28T13:34:34.345Z",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574435",
                                                    "45",
                                                    "user1",
                                                    "2",
                                                    "3",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "Visit_Complete",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "33D0D74837F6454B836AAB5BA2574435",
                                                    "45",
                                                    "user1",
                                                    "Other",
                                                    "ScreeningForm_VISIT_NEW_FORM_STATUS_EVENT_LEVEL"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "OBJECT_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE",
                                                "LAST_UPDATED_DATE",
                                                "LAST_UPDATED_BY_ID",
                                                "LAST_UPDATED_BY_WID",
                                                "LAST_UPDATED_BY",
                                                "REASON",
                                                "COMMENTS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v13.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v13.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v14.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"V14.0",
                "description":"<p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes all expected forms under expected dynamic and branch visits that are scheduled in the missing criteria.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "OBJECT_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "LOCKED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "FORM_EVENT_TYPE",
                                            "LAST_UPDATED_DATE",
                                            "LAST_UPDATED_BY_ID",
                                            "LAST_UPDATED_BY_WID",
                                            "LAST_UPDATED_BY",
                                            "REASON",
                                            "COMMENTS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>FORM_EVENT_TYPE</code></td><td>VARCHAR2(64)</td><td>Indicates the type of event for changes in form status records. This element currently shows events in the restore flow, setting it to <code>FORM_RESTORED</code> when a record was restored after deletion, otherwise it is <code>NULL</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(128)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates the information of the user who made the last change on the clinical data. This is only populated for the record of the latest change and it is associated with the data stored in the <code>LAST_UPDATED_DATE</code> data element.</p><p><strong>Note:</strong> The data contained in this element can only be used for current records from the dataset, marked as <code>IS_CURRENT=Y</code>, as the data updates independently of form status versioning.</p></td></tr>\n    <tr><td><code>LAST_UPDATED_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the time of the most recent clinical data change within a particular form. This includes entering data, clearing data, or restoring data. If no clinical data has been entered in a form, this data element displays a value of <code>NULL</code>.</p><p><strong>Note:</strong> The data contained in this element can only be used for current records from the dataset, marked as <code>IS_CURRENT=Y</code>, as the data updates independently of form status versioning. Moreover, the data contained within this element does not change as a result of Sign, Freeze, Verify, and Lock (SVFL) actions, nor does it change as a result of form associations or site transfers.</p></td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>LOCKED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the lock status of the given form. This field can have the following values:</p><ul><li><code>LOCKED</code>: All objects within the form are currently locked.</li><li><code>UNLOCKED</code>: The form has no locks applied after being locked at one point in the past.</li><li><code>null</code>: No lock has ever been applied to this form.</li></ul></td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(64)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the dataset row change, when provided.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(4)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who last updated the form row.</td></tr>\n    <tr><td><code>LAST_UPDATED_BY_WID</code></td><td>NUMBER</td><td>Indicates a user numeric identifier for the user who last updated the form row.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "OBJECT_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE",
                                                "LAST_UPDATED_DATE",
                                                "LAST_UPDATED_BY_ID",
                                                "LAST_UPDATED_BY_WID",
                                                "LAST_UPDATED_BY",
                                                "REASON",
                                                "COMMENTS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-28T13:34:34.345Z",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574435",
                                                    "45",
                                                    "user1",
                                                    "2",
                                                    "3",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "Visit_Complete",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "33D0D74837F6454B836AAB5BA2574435",
                                                    "45",
                                                    "user1",
                                                    "Other",
                                                    "ScreeningForm_VISIT_NEW_FORM_STATUS_EVENT_LEVEL"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "OBJECT_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "LOCKED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "FORM_EVENT_TYPE",
                                                "LAST_UPDATED_DATE",
                                                "LAST_UPDATED_BY_ID",
                                                "LAST_UPDATED_BY_WID",
                                                "LAST_UPDATED_BY",
                                                "REASON",
                                                "COMMENTS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v14.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v14.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/blindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded kits for study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Kits dataset for a single study and mode.</p><p>The dataset exposes blinded kit inventory and dispensation history, including study, site, subject, randomization, shipment, lot, kit status, verification/confirmation metadata, and audit columns, without exposing unblinded treatment-arm details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for blinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>, <code>COUNT_OF_KITS</code>, and <code>IS_NON_SERIALIZED_KIT</code>. It also renames <code>COUNTRY_NAME</code> to <code>COUNTRY</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedKitsDataSetQuery_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedKitsDataSetQuery":{
                                    "description":"BlindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_MODE",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_VERSION",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RERANDOMIZATION",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "BLINDED_LOT_TITLE",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "SHIPMENT_RECEIVED_BY_ID",
                                            "SHIPMENT_RECEIVED_BY_WID",
                                            "SHIPMENT_RECEIPT_DATE",
                                            "SHIPMENT_RECEIVED_BY",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "KIT_STATUS",
                                            "KIT_NUMBER",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "STUDY_WID",
                                            "SITE_WID",
                                            "SUBJECT_WID",
                                            "SHIPMENT_WID",
                                            "USER_WID",
                                            "VERIFIED_BY_WID",
                                            "CONFIRMED_BY_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_MODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study mode used in the referencing data in a custom report, such as <code>Testing</code>, <code>Training</code>, or <code>Active</code>. Possible values include <code>test</code>, <code>active</code>, or <code>training</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the principal investigator's prefix. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the Drug Enforcement Administration number associated with the site.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the Drug Enforcement Administration number.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Indicates the site's source data verification strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Indicates the number of initial subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the initial subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Indicates the percentage of remaining subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the remaining subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The ZIP or postal code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's phone number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's fax number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's email address, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country, as entered by the site administrator when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level code attributes associated with the site geography for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>NEW</code>: the visit was either dynamically triggered or added as part of Advanced Study Versioning (ASV) and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the system reference name of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization design settings and subject randomization outcome fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the status of a shipment, as updated by the system or by a user in the study. Can have one of the following values:</p><ul><li><code>PENDING</code></li><li><code>IN TRANSIT</code></li><li><code>RECEIVED</code></li><li><code>CANCELLED</code></li><li><code>LOST</code></li><li><code>CONFIRMED</code></li><li><code>INVALID</code></li><li><code>PENDING DESTRUCTION</code></li><li><code>RECEIVED FOR DESTRUCTION</code></li><li><code>DESTROYED</code></li><li><code>QUARANTINED</code></li></ul></td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a manual shipment or an automatic shipment.</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIPT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the shipment was received.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who received the given shipment.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Required kit inventory, dispensing, dosing, and verification fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>BLISTERPACK</code>, <code>BOTTLE</code>, <code>DEVICE</code>, <code>SYRINGE</code>, <code>OINTMENT</code>, <code>VIAL</code>, <code>INHALER</code>, <code>INFUSION</code>, <code>BOX</code>, or <code>OTHER</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minimum number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>Indicates the number of kits represented by the inventory record.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates whether the inventory record corresponds to a non-serialized kit. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>ActivityWatch</code>, <code>BloodPressureMonitor</code>, <code>GlucoseMonitor</code>, <code>WeightScale</code>, <code>ECGReader</code>, <code>Spirometer</code>, <code>MobileApp</code>, <code>SmartPillBottle</code>, <code>PulseOximeter</code>, <code>WearablePatch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether the inventory record was verified by a Clinical Research Associate (CRA). Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who confirmed the dispensation of the specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if 'Other' is selected.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the user identifier of the user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the study's inventory.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the study's inventory.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a shipment.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the user who verified inventory data.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed the dispensation of a kit during a visit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedKitsDataSetReport":{
                                        "description":"BlindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "test",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "1.0.0.2",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active27",
                                                    "New",
                                                    "0",
                                                    "10004567",
                                                    "Randomized",
                                                    "2025-10-29T12:30:00.000Z",
                                                    "Blinded Lot 1",
                                                    "BLT1",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "SHIP-0001",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "31",
                                                    "2025-10-28T12:00:00.000Z",
                                                    "testuser1",
                                                    "TRK123456",
                                                    "Y",
                                                    "Y",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "0",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "BLINDED",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Available",
                                                    "50281",
                                                    "2025-10-29T12:00:00.000Z",
                                                    "0",
                                                    "AW-50281",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "testuser1",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2025-10-29T12:58:54.137Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "3",
                                                    "Data Entry Error",
                                                    "Corrected metadata",
                                                    "testuser1",
                                                    "Y",
                                                    "25",
                                                    "455",
                                                    "7",
                                                    "1001",
                                                    "31",
                                                    "88",
                                                    "88",
                                                    "2",
                                                    "2025-10-29T13:09:36.857Z",
                                                    "424CA68C1E623E82E063BDD14C646211",
                                                    "271",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "1",
                                                    "N",
                                                    "2F14BA8314EC4733A7B1504CDF494E16",
                                                    "27",
                                                    "Clinical Supply Manager - Unblinded (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedKitsDataSetEmptyReport":{
                                        "description":"BlindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-blindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-blindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, and <code>BRANCH_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>NUMBER(10)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, and <code>TITRATION</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "Week2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study, accepts: test, active, or training. This will retrieve all study versions currently in that mode container, plus the study versions that were archived from that mode container.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v2.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract only includes item level transactions. Clinical One version start timestamp is used to sort the values in the XML file. Clinical One version start timestamp is the time when the user entered the value/transaction occurred in Clinical One.",
                "operationId":"getClinicalDataUnblinded_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study, accepts: test, active, or training. This will retrieve all study versions currently in that mode container, plus the study versions that were archived from that mode container.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v2.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in CDISC ODM-XML format.",
                "operationId":"getMetadata_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Mode of the study, accepts: test, active, or training. This will retrieve all study versions currently in that mode container, plus the study versions that were archived from that mode container.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>REPEAT_FORM_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/codelists":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get codelists for study"
                ],
                "summary":"V2.0",
                "description":"<p>Retrieves the study-permissioned Study Level Codelists dataset for a single study and mode.</p><p>The dataset exposes versioned codelist configuration used in study design, including study, visit, form, and item context together with codelist definitions, localized code values, display metadata, grouping metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for codelists defined at study, event, form, and item level for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyCodelistDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>CODE_LEVEL</code>, <code>STUDY_VERSION</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, <code>CODE_ID</code>, <code>CODE_VALUE_ID</code>, and <code>LOCALE</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "StudyLevelCodelistsDataSetQuery":{
                                    "description":"StudyLevelCodelistsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_WID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_WID",
                                            "EVENT_ID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "FORM_WID",
                                            "FORM_ID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_ROLLOVER",
                                            "FORM_IS_REPEATING",
                                            "ITEM_WID",
                                            "ITEM_ID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "CODE_VALUE_ID",
                                            "CODE_VALUE_WID",
                                            "SEQUENCE",
                                            "CODE_VALUE",
                                            "CODE_LABEL",
                                            "CODE",
                                            "LOCALE",
                                            "CODE_ID",
                                            "CODE_WID",
                                            "CODE_NAME",
                                            "CODE_DESCRIPTION",
                                            "CODE_LEVEL",
                                            "CODE_GROUP_ID",
                                            "CODE_GROUP_WID",
                                            "CODE_GROUP_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_CODELIST_LEVEL",
                                            "DH_TIMESTAMP",
                                            "DISPLAY_CODE_NAME",
                                            "TAG",
                                            "CL_HIDDEN",
                                            "LOINC",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_VALUE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"LOCALE",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#codelist-context\">Codelist context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td>In this dataset view, <code>STUDY_TITLE</code> is populated with the study description associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>In this dataset view, <code>STUDY_ID_NAME</code> is populated with the study version title associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"codelist-context\">Codelist context</h4>\n<p>Codelist values, localization fields, and codelist-level metadata associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>The name of the codelist.</td></tr>\n    <tr><td><code>DISPLAY_CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that appears in a dropdown when a codelist is used.</td></tr>\n    <tr><td><code>CODE_LABEL</code></td><td>VARCHAR2(1000 CHAR)</td><td>Full code name that gets displayed.</td></tr>\n    <tr><td><code>CODE_VALUE</code></td><td>VARCHAR2(1000 CHAR)</td><td>The code value.</td></tr>\n    <tr><td><code>CODE</code></td><td>VARCHAR2(255 CHAR)</td><td>Custom defined identifier for a code in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>CODE_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the code record.</td></tr>\n    <tr><td><code>CODE_GROUP_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that identifies the code group.</td></tr>\n    <tr><td><code>CODE_LEVEL</code></td><td>VARCHAR2(32 CHAR)</td><td>Describes whether the record is at a system or custom level codelist. If it includes a custom codelist, this value indicates whether it is a static or dynamic codelist. Possible values include <code>SYSTEM</code>, <code>CUSTOM</code>, or <code>DYNAMIC</code>.</td></tr>\n    <tr><td><code>DH_CODELIST_LEVEL</code></td><td>VARCHAR2(5)</td><td>Indicates the Data Hub codelist row level represented in the dataset. Possible values include <code>item</code> or <code>study</code>.</td></tr>\n    <tr><td><code>LOCALE</code></td><td>VARCHAR2(255 CHAR)</td><td>Code locale. English, Chinese and Japanese languages are supported. Possible values include <code>en-US</code>, <code>zh-CN</code>, or <code>ja-JP</code>.</td></tr>\n    <tr><td><code>LOINC</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the <code>LOINC</code> code associated with the codelist value.</td></tr>\n    <tr><td><code>TAG</code></td><td>VARCHAR2(1000 CHAR)</td><td>User defined tag for the code.</td></tr>\n    <tr><td><code>CL_HIDDEN</code></td><td>NUMBER(1)</td><td>Denotes if a code is hidden to end users. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>SEQUENCE</code></td><td>NUMBER</td><td>Corresponds to the order assigned to a code in a codelist. This determines the order in which the codes in a codelist get listed.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's reference name. Displays a capitalized version of the user-entered <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface. This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent study version.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>Indicates the event type configured for the visit, for example <code>ONSITE</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Numeric visit order that follows the visit schedule as it was created.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> of the Scheduled From visit as defined in the Visit Schedule. If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule. If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, <code>SCREENINGVISIT</code> is displayed for the Screening Visit, as it is the first visit in the schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit, in addition to the <code>DELAY_DAYS</code> field.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul> Possible values include <code>1 SECTION FORM</code>, <code>2 SECTION FORM</code>, or <code>LAB FORM</code>.</td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of question configured for the item, as specified by the study designer. Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>If this is a group question, indicates the group question ID.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>A question's reference code, as specified by the study designer when they created the question.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>CODE_VALUE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist value.</td></tr>\n    <tr><td><code>CODE_VALUE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist value.</td></tr>\n    <tr><td><code>CODE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist.</td></tr>\n    <tr><td><code>CODE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist.</td></tr>\n    <tr><td><code>CODE_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist group.</td></tr>\n    <tr><td><code>CODE_GROUP_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist group.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "StudyLevelCodelistsDataSetReport":{
                                        "description":"StudyLevelCodelistsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "25",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "205",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "WEEK1",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "73",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "346",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "D9C7A5634B804F28E053B7834C649CE1",
                                                    "2085",
                                                    "50",
                                                    "LT-43",
                                                    "Utena County",
                                                    "LT-43",
                                                    "ja-JP",
                                                    "E663E145A108493188C99CB71BA63CD6",
                                                    "13",
                                                    "Lithuania",
                                                    "Code list for Lithuania States",
                                                    "SYSTEM",
                                                    "4B9B6E1A2F3C4D5E8A9B0C1D2E3F4A5B",
                                                    "-1",
                                                    "Clinical One Default Code List",
                                                    "2025-10-29T11:41:11.052Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "1",
                                                    "00000000000000000000000000000001",
                                                    "43",
                                                    "testuser1",
                                                    "Initial load",
                                                    "Seeded by migration script",
                                                    "Y",
                                                    "study",
                                                    "2025-10-29T12:34:56.972Z",
                                                    "Lithuania Counties",
                                                    "geography",
                                                    "0",
                                                    "",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "StudyLevelCodelistsDataSetEmptyReport":{
                                        "description":"StudyLevelCodelistsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-codelists-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-codelists-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes subject event, form, study, site, contact, shipping, SDV, and site capability data points, including <code>REPEAT_SEQUENCE_NUMBER</code>, <code>VERSION_START</code>, <code>VERSION_END</code>, <code>DH_TIMESTAMP</code>, <code>SUBJECT_EVENT_INST_ID</code>, <code>SUBJECT_STATE</code>, <code>EVENT_TITLE</code>, <code>EVENT_REFNAME</code>, <code>EVENT_ID_NAME</code>, <code>VISIT_IS_REQUIRED</code>, <code>VISIT_ORDER</code>, <code>SUBJECT_EVENTINST_FORM_WID</code>, <code>FORM_STATUS</code>, <code>SITE_ID_NAME</code>, <code>SITE_STATUS</code>, <code>PHONE</code>, <code>FAX</code>, <code>EMAIL</code>, shipping address fields, study metadata, and SDV/site capability fields. It also removes legacy fields including <code>DH_SUBJECT_FORMITEMS_VERSION_START</code>, <code>DH_SUBJECT_FORMITEMS_VERSION_END</code>, <code>REQUIRED</code>, <code>SF_REPEAT_SEQUENCE_NUMBER</code>, <code>SUBVIS_FORMS_DATASET_ID</code>, <code>STUDY_NAME</code>, <code>FROM_SITE_ID</code>, <code>FROM_SITE_WID</code>, <code>FROM_SITE_NAME</code>, <code>TO_SITE_ID</code>, <code>TO_SITE_WID</code>, <code>TO_SITE_NAME</code>, <code>SUBJECT_VIS_DATASET_VERSION_START</code>, <code>SUBJECT_VIS_DATASET_VERSION_END</code>, <code>SUBJECT_NAME</code>, <code>SUBJECT_TRANSFER_WID</code>, <code>SUBJECT_TRANSFER_ID</code>, <code>SUBJECT_TRANSFER_VERSION_START</code>, <code>SUBJECT_TRANSFER_VERSION_END</code>, <code>OLD_SUBJECT_NUMBER</code>, <code>NEW_SUBJECT_NUMBER</code>, <code>EVENT_NAME</code>, and <code>SUBVIS_FORMS_DATASET_IS_CURRENT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Date/time when the transaction began processing.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time when the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent data element that owns this question.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Designer-provided GUID that identifies the question within the form.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance associated with this row, pairing with the numeric <code>SUBJECT_EVENT_INST_WID</code> identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event whose schedule spawned this visit.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Decoded or display-friendly representation of the stored response.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>The dataset GUID for the subject form item row, corresponding to the ODM <code>co:ItemGUID</code>.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the Designer variable or element tied to the question.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Identifier of the normalized measurement unit applied to the item value.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section that owns this item.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "LAB01",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes form, subject event, study, site, contact, shipping, SDV, and site capability data points, including <code>FORM_STATUS</code>, <code>DH_TIMESTAMP</code>, study metadata, site metadata, contact and shipping fields, <code>SUBJECT_EVENT_INST_ID</code>, <code>SUBJECT_STATE</code>, <code>EVENT_TITLE</code>, <code>EVENT_REFNAME</code>, <code>EVENT_ID_NAME</code>, <code>VISIT_IS_REQUIRED</code>, <code>VISIT_ORDER</code>, <code>SITE_STUDY_VERSION</code>, <code>DRUG_DESTRUCTION_CAPABLE</code>, <code>ADD_SUBJECTS</code>, <code>SCREEN_SUBJECTS</code>, <code>RANDOMIZE_SUBJECTS</code>, <code>DISPENSE_TO_SUBJECTS</code>, <code>DEA_NUMBER</code>, <code>EXPIRATION</code>, <code>TIMEZONE</code>, <code>SHIPPING_ATTENTION</code>, <code>PI_PREFIX</code>, <code>SDV_GROUP_NAME</code>, <code>INITIAL_SUBJECTS_COUNT</code>, <code>INITIAL_SUBJECTS_SDV_TYPE</code>, and <code>REMAINING_SUBJECTS_SDV_TYPE</code>. It also removes legacy fields including <code>SUBJECT_FORMS_VERSION_START</code>, <code>SUBJECT_FORMS_VERSION_END</code>, <code>SUBJECT_FORMS_USER_ID</code>, <code>SUBJECT_FORMS_USER_WID</code>, <code>SUBJECT_FORMS_USER_NAME</code>, <code>DH_SUBJECT_FORMS_IS_CURRENT</code>, <code>SUBJECT_FORMS_DH_TIMESTAMP</code>, <code>ID</code>, <code>STUDY_NAME</code>, <code>FROM_SITE_ID</code>, <code>FROM_SITE_WID</code>, <code>FROM_SITE_NAME</code>, <code>TO_SITE_ID</code>, <code>TO_SITE_WID</code>, <code>TO_SITE_NAME</code>, <code>OBJECT_VERSION_NUMBER</code>, <code>SOFTWARE_VERSION_NUMBER</code>, <code>REASON</code>, <code>COMMENT</code>, <code>SUBJECT_NAME</code>, <code>SUBJECT_TRANSFER_WID</code>, <code>SUBJECT_TRANSFER_ID</code>, <code>SUBJECT_TRANSFER_VERSION_START</code>, <code>SUBJECT_TRANSFER_VERSION_END</code>, <code>OLD_SUBJECT_NUMBER</code>, <code>NEW_SUBJECT_NUMBER</code>, <code>EVENT_NAME</code>, and <code>IS_REQUIRED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>FORM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "PI_PREFIX",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Dr.",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes study, site, subject, visit, kit, contact, shipping, SDV, and site capability data points, including <code>COUNTRY_NAME</code>, <code>VISIT_ORDER</code>, <code>DH_TIMESTAMP</code>, <code>KIT_DESCRIPTION</code>, <code>QUANTITY</code>, <code>SUBJECT_STATE</code>, <code>SITE_ID_NAME</code>, <code>SITE_STATUS</code>, <code>STUDY_ID_NAME</code>, <code>STUDY_TITLE</code>, <code>STUDY_REFNAME</code>, <code>STUDY_PHASE</code>, <code>BLINDING_TYPE</code>, <code>THERAPEUTIC_AREA</code>, <code>EVENT_TITLE</code>, <code>EVENT_REFNAME</code>, <code>EVENT_ID_NAME</code>, <code>DRUG_DESTRUCTION_CAPABLE</code>, <code>PI_PREFIX</code>, <code>ADD_SUBJECTS</code>, <code>SCREEN_SUBJECTS</code>, <code>RANDOMIZE_SUBJECTS</code>, <code>SITE_STUDY_VERSION</code>, <code>DISPENSE_TO_SUBJECTS</code>, <code>DEA_NUMBER</code>, <code>EXPIRATION</code>, <code>TIMEZONE</code>, <code>SHIPPING_ATTENTION</code>, <code>SDV_GROUP_NAME</code>, <code>INITIAL_SUBJECTS_COUNT</code>, <code>INITIAL_SUBJECTS_SDV_TYPE</code>, <code>REMAINING_SUBJECTS_PERCENTAGE</code>, <code>REMAINING_SUBJECTS_SDV_TYPE</code>, <code>PHONE</code>, <code>FAX</code>, <code>EMAIL</code>, and shipping address fields. It also removes legacy fields including <code>SUBJECT_NAME</code>, <code>EVENT_NAME</code>, <code>STUDY_NAME</code>, <code>SUBJECT_TRANSFER_WID</code>, <code>SUBJECT_TRANSFER_ID</code>, <code>SUBJECT_TRANSFER_VERSION_START</code>, <code>SUBJECT_TRANSFER_VERSION_END</code>, <code>OLD_SUBJECT_NUMBER</code>, <code>NEW_SUBJECT_NUMBER</code>, <code>FROM_SITE_ID</code>, <code>FROM_SITE_WID</code>, <code>FROM_SITE_NAME</code>, <code>TO_SITE_ID</code>, <code>TO_SITE_WID</code>, and <code>TO_SITE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "SITE_STUDY_VERSION",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER(10)</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER(10)</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "50262",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "1.0.0.3",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes study, site, subject, visit, contact, shipping, SDV, and site capability data points, including <code>COUNTRY_NAME</code>, <code>VISIT_ORDER</code>, <code>DH_TIMESTAMP</code>, <code>SUBJECT_STATE</code>, <code>SITE_ID_NAME</code>, <code>SITE_STATUS</code>, <code>STUDY_ID_NAME</code>, <code>STUDY_TITLE</code>, <code>STUDY_REFNAME</code>, <code>THERAPEUTIC_AREA</code>, <code>STUDY_PHASE</code>, <code>BLINDING_TYPE</code>, <code>EVENT_TITLE</code>, <code>EVENT_REFNAME</code>, <code>EVENT_ID_NAME</code>, <code>RAND_NUMBER</code>, <code>KIT_NUMBERS</code>, <code>SITE_STUDY_VERSION</code>, <code>DRUG_DESTRUCTION_CAPABLE</code>, <code>PI_PREFIX</code>, <code>ADD_SUBJECTS</code>, <code>SCREEN_SUBJECTS</code>, <code>RANDOMIZE_SUBJECTS</code>, <code>DISPENSE_TO_SUBJECTS</code>, <code>DEA_NUMBER</code>, <code>EXPIRATION</code>, <code>TIMEZONE</code>, <code>SHIPPING_ATTENTION</code>, <code>SDV_GROUP_NAME</code>, <code>INITIAL_SUBJECTS_COUNT</code>, <code>INITIAL_SUBJECTS_SDV_TYPE</code>, <code>REMAINING_SUBJECTS_PERCENTAGE</code>, <code>REMAINING_SUBJECTS_SDV_TYPE</code>, <code>PHONE</code>, <code>FAX</code>, <code>EMAIL</code>, and shipping address fields. It also removes legacy fields including <code>STUDY_NAME</code>, <code>FROM_SITE_ID</code>, <code>FROM_SITE_WID</code>, <code>FROM_SITE_NAME</code>, <code>TO_SITE_ID</code>, <code>TO_SITE_WID</code>, <code>TO_SITE_NAME</code>, <code>SUBJECT_NAME</code>, <code>SUBJECT_TRANSFER_WID</code>, <code>SUBJECT_TRANSFER_ID</code>, <code>SUBJECT_TRANSFER_VERSION_START</code>, <code>SUBJECT_TRANSFER_VERSION_END</code>, <code>OLD_SUBJECT_NUMBER</code>, <code>NEW_SUBJECT_NUMBER</code>, and <code>EVENT_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER(10)</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER(10)</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>TOTAL_VISITS</code>, <code>TOTAL_FORMS</code>, <code>COMPLETED_VISITS</code>, <code>TOTAL_FORMS_COMPLETED_VISITS</code>, and <code>COMPLETED_FORMS</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "OLD_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_NAME",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"VERSION_START",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Study identifier associated with the subject row.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the subject's site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "OLD_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "T24.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "India",
                                                    "Tester2",
                                                    "N",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "OLD_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_NAME",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v2.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>BLOCK_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "KIT_NUMBER",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50262",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v2.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v2.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/blindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded kits for study"
                ],
                "summary":"V3.0",
                "description":"<p>Retrieves the study-permissioned Blinded Kits dataset for a single study and mode.</p><p>The dataset exposes blinded kit inventory and dispensation history, including study, site, subject, randomization, shipment, lot, kit status, verification/confirmation metadata, and audit columns, without exposing unblinded treatment-arm details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for blinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>ORDER_TYPE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedKitsDataSetQuery_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedKitsDataSetQuery":{
                                    "description":"BlindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_MODE",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_VERSION",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RERANDOMIZATION",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "BLINDED_LOT_TITLE",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "SHIPMENT_RECEIVED_BY_ID",
                                            "SHIPMENT_RECEIVED_BY_WID",
                                            "SHIPMENT_RECEIPT_DATE",
                                            "SHIPMENT_RECEIVED_BY",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "KIT_STATUS",
                                            "KIT_NUMBER",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "STUDY_WID",
                                            "SITE_WID",
                                            "SUBJECT_WID",
                                            "SHIPMENT_WID",
                                            "USER_WID",
                                            "VERIFIED_BY_WID",
                                            "CONFIRMED_BY_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "ORDER_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_MODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study mode used in the referencing data in a custom report, such as <code>Testing</code>, <code>Training</code>, or <code>Active</code>. Possible values include <code>test</code>, <code>active</code>, or <code>training</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the principal investigator's prefix. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the Drug Enforcement Administration number associated with the site.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the Drug Enforcement Administration number.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Indicates the site's source data verification strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Indicates the number of initial subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the initial subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Indicates the percentage of remaining subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the remaining subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The ZIP or postal code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's phone number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's fax number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's email address, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country, as entered by the site administrator when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level code attributes associated with the site geography for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>NEW</code>: the visit was either dynamically triggered or added as part of Advanced Study Versioning (ASV) and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the system reference name of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization design settings and subject randomization outcome fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>ORDER_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates how the shipment was initiated. Possible values include <code>INITIAL</code>, <code>MANUAL</code>, or <code>RESUPPLY</code>.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the status of a shipment, as updated by the system or by a user in the study. Can have one of the following values:</p><ul><li><code>PENDING</code></li><li><code>IN TRANSIT</code></li><li><code>RECEIVED</code></li><li><code>CANCELLED</code></li><li><code>LOST</code></li><li><code>CONFIRMED</code></li><li><code>INVALID</code></li><li><code>PENDING DESTRUCTION</code></li><li><code>RECEIVED FOR DESTRUCTION</code></li><li><code>DESTROYED</code></li><li><code>QUARANTINED</code></li></ul></td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a manual shipment or an automatic shipment.</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIPT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the shipment was received.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who received the given shipment.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Required kit inventory, dispensing, dosing, and verification fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>BLISTERPACK</code>, <code>BOTTLE</code>, <code>DEVICE</code>, <code>SYRINGE</code>, <code>OINTMENT</code>, <code>VIAL</code>, <code>INHALER</code>, <code>INFUSION</code>, <code>BOX</code>, or <code>OTHER</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minimum number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>Indicates the number of kits represented by the inventory record.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates whether the inventory record corresponds to a non-serialized kit. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>ActivityWatch</code>, <code>BloodPressureMonitor</code>, <code>GlucoseMonitor</code>, <code>WeightScale</code>, <code>ECGReader</code>, <code>Spirometer</code>, <code>MobileApp</code>, <code>SmartPillBottle</code>, <code>PulseOximeter</code>, <code>WearablePatch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether the inventory record was verified by a Clinical Research Associate (CRA). Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who confirmed the dispensation of the specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if 'Other' is selected.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the user identifier of the user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the study's inventory.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the study's inventory.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a shipment.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the user who verified inventory data.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed the dispensation of a kit during a visit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedKitsDataSetReport":{
                                        "description":"BlindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "test",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "1.0.0.2",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active27",
                                                    "New",
                                                    "0",
                                                    "10004567",
                                                    "Randomized",
                                                    "2025-10-29T12:30:00.000Z",
                                                    "Blinded Lot 1",
                                                    "BLT1",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "SHIP-0001",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "31",
                                                    "2025-10-28T12:00:00.000Z",
                                                    "testuser1",
                                                    "TRK123456",
                                                    "Y",
                                                    "Y",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "0",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "BLINDED",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Available",
                                                    "50281",
                                                    "2025-10-29T12:00:00.000Z",
                                                    "0",
                                                    "AW-50281",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "testuser1",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2025-10-29T12:58:54.137Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "3",
                                                    "Data Entry Error",
                                                    "Corrected metadata",
                                                    "testuser1",
                                                    "Y",
                                                    "25",
                                                    "455",
                                                    "7",
                                                    "1001",
                                                    "31",
                                                    "88",
                                                    "88",
                                                    "2",
                                                    "2025-10-29T13:09:36.857Z",
                                                    "424CA68C1E623E82E063BDD14C646211",
                                                    "271",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "1",
                                                    "N",
                                                    "Outbound",
                                                    "2F14BA8314EC4733A7B1504CDF494E16",
                                                    "27",
                                                    "Clinical Supply Manager - Unblinded (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedKitsDataSetEmptyReport":{
                                        "description":"BlindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-blindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-blindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>EVENT_ID</code>, <code>SCHEDULED_FROM_EVENT_REFNAME</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, <code>SCHEDULED_FROM_EVENT_WID</code>, <code>FORM_ID</code>, and <code>ITEM_ID</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "WEEK1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_ID</code>, <code>SCHEDULED_FROM_EVENT_WID</code>, and <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, and <code>TITRATION</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v3.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v3.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in CDISC ODM-XML format.",
                "operationId":"getMetadata_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_12",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/codelists":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get codelists for study"
                ],
                "summary":"V3.0",
                "description":"<p>Retrieves the study-permissioned Study Level Codelists dataset for a single study and mode.</p><p>The dataset exposes versioned codelist configuration used in study design, including study, visit, form, and item context together with codelist definitions, localized code values, display metadata, grouping metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for codelists defined at study, event, form, and item level for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>SITE_ASSOCIATION</code> and <code>CODELIST_MODE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyCodelistDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>CODE_LEVEL</code>, <code>STUDY_VERSION</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, <code>CODE_ID</code>, <code>CODE_VALUE_ID</code>, <code>LOCALE</code>, and <code>CODELIST_MODE</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "StudyLevelCodelistsDataSetQuery":{
                                    "description":"StudyLevelCodelistsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_WID",
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_WID",
                                            "EVENT_ID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "FORM_WID",
                                            "FORM_ID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_ROLLOVER",
                                            "FORM_IS_REPEATING",
                                            "ITEM_WID",
                                            "ITEM_ID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "CODE_VALUE_ID",
                                            "CODE_VALUE_WID",
                                            "SEQUENCE",
                                            "CODE_VALUE",
                                            "CODE_LABEL",
                                            "CODE",
                                            "LOCALE",
                                            "CODE_ID",
                                            "CODE_WID",
                                            "CODE_NAME",
                                            "CODE_DESCRIPTION",
                                            "CODE_LEVEL",
                                            "CODE_GROUP_ID",
                                            "CODE_GROUP_WID",
                                            "CODE_GROUP_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_CODELIST_LEVEL",
                                            "DH_TIMESTAMP",
                                            "DISPLAY_CODE_NAME",
                                            "TAG",
                                            "CL_HIDDEN",
                                            "LOINC",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "SITE_ASSOCIATION",
                                            "CODELIST_MODE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_LEVEL",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODE_VALUE_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"LOCALE",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"CODELIST_MODE",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#codelist-context\">Codelist context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td>In this dataset view, <code>STUDY_TITLE</code> is populated with the study description associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>In this dataset view, <code>STUDY_ID_NAME</code> is populated with the study version title associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"codelist-context\">Codelist context</h4>\n<p>Codelist values, localization fields, and codelist-level metadata associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>The name of the codelist.</td></tr>\n    <tr><td><code>DISPLAY_CODE_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that appears in a dropdown when a codelist is used.</td></tr>\n    <tr><td><code>CODE_LABEL</code></td><td>VARCHAR2(1000 CHAR)</td><td>Full code name that gets displayed.</td></tr>\n    <tr><td><code>CODE_VALUE</code></td><td>VARCHAR2(1000 CHAR)</td><td>The code value.</td></tr>\n    <tr><td><code>CODE</code></td><td>VARCHAR2(255 CHAR)</td><td>Custom defined identifier for a code in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>CODE_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the code record.</td></tr>\n    <tr><td><code>CODE_GROUP_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td>Name that identifies the code group.</td></tr>\n    <tr><td><code>CODE_LEVEL</code></td><td>VARCHAR2(32 CHAR)</td><td>Describes whether the record is at a system or custom level codelist. If it includes a custom codelist, this value indicates whether it is a static or dynamic codelist. Possible values include <code>SYSTEM</code>, <code>CUSTOM</code>, or <code>DYNAMIC</code>.</td></tr>\n    <tr><td><code>DH_CODELIST_LEVEL</code></td><td>VARCHAR2(5)</td><td>Indicates the Data Hub codelist row level represented in the dataset. Possible values include <code>item</code> or <code>study</code>.</td></tr>\n    <tr><td><code>SITE_ASSOCIATION</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates which sites in that mode the code list is mapped to with a value of either <code>ALL SITES</code> or an alphabetical list of the sites based on site ID. This field only populates for <code>CODELIST_LEVEL = study</code>.</td></tr>\n    <tr><td><code>CODELIST_MODE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the mode in which the associated site was created: Training, Testing, or <code>Active</code>. Possible values include <code>test</code>, <code>active</code>, or <code>training</code>.</td></tr>\n    <tr><td><code>LOCALE</code></td><td>VARCHAR2(255 CHAR)</td><td>Code locale. English, Chinese and Japanese languages are supported. Possible values include <code>en-US</code>, <code>zh-CN</code>, or <code>ja-JP</code>.</td></tr>\n    <tr><td><code>LOINC</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the <code>LOINC</code> code associated with the codelist value.</td></tr>\n    <tr><td><code>TAG</code></td><td>VARCHAR2(1000 CHAR)</td><td>User defined tag for the code.</td></tr>\n    <tr><td><code>CL_HIDDEN</code></td><td>NUMBER(1)</td><td>Denotes if a code is hidden to end users. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>SEQUENCE</code></td><td>NUMBER</td><td>Corresponds to the order assigned to a code in a codelist. This determines the order in which the codes in a codelist get listed.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's reference name. Displays a capitalized version of the user-entered <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface. This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent study version.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>Indicates the event type configured for the visit, for example <code>ONSITE</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Numeric visit order that follows the visit schedule as it was created.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> of the Scheduled From visit as defined in the Visit Schedule. If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule. If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, <code>SCREENINGVISIT</code> is displayed for the Screening Visit, as it is the first visit in the schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit, in addition to the <code>DELAY_DAYS</code> field.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul> Possible values include <code>1 SECTION FORM</code>, <code>2 SECTION FORM</code>, or <code>LAB FORM</code>.</td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of question configured for the item, as specified by the study designer. Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>If this is a group question, indicates the group question ID.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>A question's reference code, as specified by the study designer when they created the question.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>VARCHAR2(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>VARCHAR2(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>VARCHAR2(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(4)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>CODE_VALUE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist value.</td></tr>\n    <tr><td><code>CODE_VALUE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist value.</td></tr>\n    <tr><td><code>CODE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist.</td></tr>\n    <tr><td><code>CODE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist.</td></tr>\n    <tr><td><code>CODE_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the codelist group.</td></tr>\n    <tr><td><code>CODE_GROUP_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the codelist group.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "StudyLevelCodelistsDataSetReport":{
                                        "description":"StudyLevelCodelistsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "SITE_ASSOCIATION",
                                                "CODELIST_MODE"
                                            ],
                                            "data":[
                                                [
                                                    "25",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "205",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "WEEK1",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "73",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "346",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "D9C7A5634B804F28E053B7834C649CE1",
                                                    "2085",
                                                    "50",
                                                    "LT-43",
                                                    "Utena County",
                                                    "LT-43",
                                                    "ja-JP",
                                                    "E663E145A108493188C99CB71BA63CD6",
                                                    "13",
                                                    "Lithuania",
                                                    "Code list for Lithuania States",
                                                    "SYSTEM",
                                                    "4B9B6E1A2F3C4D5E8A9B0C1D2E3F4A5B",
                                                    "-1",
                                                    "Clinical One Default Code List",
                                                    "2025-10-29T11:41:11.052Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "1",
                                                    "00000000000000000000000000000001",
                                                    "43",
                                                    "testuser1",
                                                    "Initial load",
                                                    "Seeded by migration script",
                                                    "Y",
                                                    "study",
                                                    "2025-10-29T12:34:56.972Z",
                                                    "Lithuania Counties",
                                                    "geography",
                                                    "0",
                                                    "",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "Site1,Site2",
                                                    "test"
                                                ]
                                            ]
                                        }
                                    },
                                    "StudyLevelCodelistsDataSetEmptyReport":{
                                        "description":"StudyLevelCodelistsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_WID",
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_WID",
                                                "EVENT_ID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "FORM_WID",
                                                "FORM_ID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_ROLLOVER",
                                                "FORM_IS_REPEATING",
                                                "ITEM_WID",
                                                "ITEM_ID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "CODE_VALUE_ID",
                                                "CODE_VALUE_WID",
                                                "SEQUENCE",
                                                "CODE_VALUE",
                                                "CODE_LABEL",
                                                "CODE",
                                                "LOCALE",
                                                "CODE_ID",
                                                "CODE_WID",
                                                "CODE_NAME",
                                                "CODE_DESCRIPTION",
                                                "CODE_LEVEL",
                                                "CODE_GROUP_ID",
                                                "CODE_GROUP_WID",
                                                "CODE_GROUP_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_CODELIST_LEVEL",
                                                "DH_TIMESTAMP",
                                                "DISPLAY_CODE_NAME",
                                                "TAG",
                                                "CL_HIDDEN",
                                                "LOINC",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "SITE_ASSOCIATION",
                                                "CODELIST_MODE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-codelists-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-codelists-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>REPEAT_FORM_NUMBER</code>, <code>OUTER_REPEAT</code>, and <code>INNER_REPEAT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Designer-provided GUID that identifies the question within the form.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent event from which the current scheduled visit originates.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Decoded or display-friendly representation of the stored response.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>REPEAT_FORM_NUMBER</code>, <code>OUTER_REPEAT</code>, <code>INNER_REPEAT</code>, <code>ASSOCIATED_EVENT_ID</code>, <code>ASSOCIATED_EVENT_WID</code>, <code>ASSOCIATED_EVENT_NAME</code>, <code>ASSOCIATED_EVENT_INSTANCE_NUM</code>, <code>ASSOCIATED_FORM_ID</code>, <code>ASSOCIATED_FORM_WID</code>, <code>ASSOCIATED_FORM_NAME</code>, <code>ASSOCIATED_FORM_REFNAME</code>, <code>ASSOCIATED_FORM_TYPE</code>, <code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code>, and <code>ASSOCIATED_STUDY_VERSION</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "SITE_STUDY_VERSION",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y for scheduled visits</code> or <code>N for unscheduled ones</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "50262",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "1.0.0.3",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes study metadata, site metadata, contact, shipping, SDV, and site capability data points, including <code>COUNTRY_NAME</code>, <code>DH_TIMESTAMP</code>, <code>STUDY_ID_NAME</code>, <code>STUDY_TITLE</code>, <code>STUDY_REFNAME</code>, <code>STUDY_PHASE</code>, <code>THERAPEUTIC_AREA</code>, <code>BLINDING_TYPE</code>, <code>SITE_ID_NAME</code>, <code>SITE_STATUS</code>, <code>ADDRESS_STREET_1</code>, <code>ADDRESS_STREET_2</code>, <code>ADDRESS_CITY</code>, <code>ADDRESS_STATE_OR_PROV_OR_CNTY</code>, <code>ADDRESS_POSTALCODE</code>, <code>ADDRESS_COUNTRY</code>, <code>FAX</code>, <code>EMAIL</code>, <code>PHONE</code>, <code>SHIPPING_ADDRESS_1</code>, <code>SHIPPING_ADDRESS_2</code>, <code>SHIPPING_CITY</code>, <code>SHIPPING_STATE_OR_PROV_OR_CNTY</code>, <code>SHIPPING_ZIP</code>, <code>SHIPPING_COUNTRY</code>, <code>SHIPPING_FAX</code>, <code>SHIPPING_EMAIL</code>, <code>SHIPPING_PHONE</code>, <code>SDV_GROUP_NAME</code>, <code>INITIAL_SUBJECTS_COUNT</code>, <code>INITIAL_SUBJECTS_SDV_TYPE</code>, <code>REMAINING_SUBJECTS_PERCENTAGE</code>, <code>REMAINING_SUBJECTS_SDV_TYPE</code>, <code>SITE_STUDY_VERSION</code>, <code>DRUG_DESTRUCTION_CAPABLE</code>, <code>ADD_SUBJECTS</code>, <code>SCREEN_SUBJECTS</code>, <code>RANDOMIZE_SUBJECTS</code>, <code>DISPENSE_TO_SUBJECTS</code>, <code>DEA_NUMBER</code>, <code>EXPIRATION</code>, <code>TIMEZONE</code>, <code>SHIPPING_ATTENTION</code>, and <code>PI_PREFIX</code>. It also removes <code>STUDY_NAME</code> and renames <code>COUNTRY</code> to <code>COUNTRY_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "FAX",
                                            "EMAIL",
                                            "PHONE",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_PHONE",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "PI_PREFIX"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "1.0.0.3",
                                                    "false",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Dr."
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v3.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>BLOCK_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "KIT_NUMBER",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50262",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "KIT_NUMBER",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/blindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded kits for study"
                ],
                "summary":"V4.0",
                "description":"<p>Retrieves the study-permissioned Blinded Kits dataset for a single study and mode.</p><p>The dataset exposes blinded kit inventory and dispensation history, including study, site, subject, randomization, shipment, lot, kit status, verification/confirmation metadata, and audit columns, without exposing unblinded treatment-arm details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for blinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SHIPMENT_RCVD_SITE_DEPOT_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedKitsDataSetQuery_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedKitsDataSetQuery":{
                                    "description":"BlindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_ID_NAME",
                                            "STUDY_MODE",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_VERSION",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RERANDOMIZATION",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "BLINDED_LOT_TITLE",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                            "SHIPMENT_RECEIVED_BY_ID",
                                            "SHIPMENT_RECEIVED_BY_WID",
                                            "SHIPMENT_RECEIPT_DATE",
                                            "SHIPMENT_RECEIVED_BY",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "KIT_STATUS",
                                            "KIT_NUMBER",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "STUDY_WID",
                                            "SITE_WID",
                                            "SUBJECT_WID",
                                            "SHIPMENT_WID",
                                            "USER_WID",
                                            "VERIFIED_BY_WID",
                                            "CONFIRMED_BY_WID",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "ORDER_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version associated with the dataset row.</td></tr>\n    <tr><td><code>STUDY_MODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study mode used in the referencing data in a custom report, such as <code>Testing</code>, <code>Training</code>, or <code>Active</code>. Possible values include <code>test</code>, <code>active</code>, or <code>training</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the principal investigator's prefix. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the Drug Enforcement Administration number associated with the site.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the Drug Enforcement Administration number.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Indicates the site's source data verification strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Indicates the number of initial subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the initial subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Indicates the percentage of remaining subjects to be eligible for source data verification, as specified by a study manager.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Indicates if all questions or only critical questions are eligible for source data verification for the remaining subjects, as specified by a study manager. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The ZIP or postal code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's phone number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's fax number, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>The site's email address, as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country, as entered by the site administrator when they created or last modified the site. This value reflects the country's ISO code.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level code attributes associated with the site geography for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>NEW</code>: the visit was either dynamically triggered or added as part of Advanced Study Versioning (ASV) and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the system reference name of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization design settings and subject randomization outcome fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>ORDER_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates how the shipment was initiated. Possible values include <code>INITIAL</code>, <code>MANUAL</code>, or <code>RESUPPLY</code>.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the status of a shipment, as updated by the system or by a user in the study. Can have one of the following values:</p><ul><li><code>PENDING</code></li><li><code>IN TRANSIT</code></li><li><code>RECEIVED</code></li><li><code>CANCELLED</code></li><li><code>LOST</code></li><li><code>CONFIRMED</code></li><li><code>INVALID</code></li><li><code>PENDING DESTRUCTION</code></li><li><code>RECEIVED FOR DESTRUCTION</code></li><li><code>DESTROYED</code></li><li><code>QUARANTINED</code></li></ul></td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a manual shipment or an automatic shipment.</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIPT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the shipment was received.</td></tr>\n    <tr><td><code>SHIPMENT_RCVD_SITE_DEPOT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the user-editable date when the shipment was received at the site or depot. Unlike <code>SHIPMENT_RECEIPT_DATE</code>, which is system-generated, this value reflects the actual receipt date entered by the user.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who received the given shipment.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Required kit inventory, dispensing, dosing, and verification fields associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>BLISTERPACK</code>, <code>BOTTLE</code>, <code>DEVICE</code>, <code>SYRINGE</code>, <code>OINTMENT</code>, <code>VIAL</code>, <code>INHALER</code>, <code>INFUSION</code>, <code>BOX</code>, or <code>OTHER</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minimum number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>Indicates the number of kits represented by the inventory record.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates whether the inventory record corresponds to a non-serialized kit. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>ActivityWatch</code>, <code>BloodPressureMonitor</code>, <code>GlucoseMonitor</code>, <code>WeightScale</code>, <code>ECGReader</code>, <code>Spirometer</code>, <code>MobileApp</code>, <code>SmartPillBottle</code>, <code>PulseOximeter</code>, <code>WearablePatch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether the inventory record was verified by a Clinical Research Associate (CRA). Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who confirmed the dispensation of the specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if 'Other' is selected.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the user identifier of the user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>SHIPMENT_RECEIVED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed receipt of the shipment order.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the unique identifier of the study's inventory.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the study's inventory.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of a shipment.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the user who verified inventory data.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of a user who confirmed the dispensation of a kit during a visit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedKitsDataSetReport":{
                                        "description":"BlindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "Study01",
                                                    "test",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "1.0.0.2",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active27",
                                                    "New",
                                                    "0",
                                                    "10004567",
                                                    "Randomized",
                                                    "2025-10-29T12:30:00.000Z",
                                                    "Blinded Lot 1",
                                                    "BLT1",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "SHIP-0001",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T11:45:00.000Z",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "31",
                                                    "2025-10-28T12:00:00.000Z",
                                                    "testuser1",
                                                    "TRK123456",
                                                    "Y",
                                                    "Y",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "0",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "BLINDED",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Available",
                                                    "50281",
                                                    "2025-10-29T12:00:00.000Z",
                                                    "0",
                                                    "AW-50281",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "1",
                                                    "1",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "testuser1",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2025-10-29T12:58:54.137Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "3",
                                                    "Data Entry Error",
                                                    "Corrected metadata",
                                                    "testuser1",
                                                    "Y",
                                                    "25",
                                                    "455",
                                                    "7",
                                                    "1001",
                                                    "31",
                                                    "88",
                                                    "88",
                                                    "2",
                                                    "2025-10-29T13:09:36.857Z",
                                                    "424CA68C1E623E82E063BDD14C646211",
                                                    "271",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "DATAHUB_AUT_Site2_Screen27",
                                                    "1",
                                                    "N",
                                                    "Outbound",
                                                    "2F14BA8314EC4733A7B1504CDF494E16",
                                                    "27",
                                                    "Clinical Supply Manager - Unblinded (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedKitsDataSetEmptyReport":{
                                        "description":"BlindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_ID_NAME",
                                                "STUDY_MODE",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_VERSION",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RERANDOMIZATION",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "BLINDED_LOT_TITLE",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "SHIPMENT_RCVD_SITE_DEPOT_DATE",
                                                "SHIPMENT_RECEIVED_BY_ID",
                                                "SHIPMENT_RECEIVED_BY_WID",
                                                "SHIPMENT_RECEIPT_DATE",
                                                "SHIPMENT_RECEIVED_BY",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "KIT_STATUS",
                                                "KIT_NUMBER",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "STUDY_WID",
                                                "SITE_WID",
                                                "SUBJECT_WID",
                                                "SHIPMENT_WID",
                                                "USER_WID",
                                                "VERIFIED_BY_WID",
                                                "CONFIRMED_BY_WID",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-blindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-blindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>ALLOW_MULTIPLE_INSTANCES</code> and <code>ALLOW_FUTURE_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_14",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>SERIALIZED</code>, <code>HAZARDOUS_MATERIAL</code>, and <code>CONTROL_SUBSTANCE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, and <code>TITRATION</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "SERIALIZED",
                                            "HAZARDOUS_MATERIAL",
                                            "CONTROL_SUBSTANCE",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>SERIALIZED</code></td><td>CHAR(1)</td><td>Indicates whether a kit is serialized or non-serialized. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONTROL_SUBSTANCE</code></td><td>CHAR(1)</td><td>Indicates whether a kit constitutes a controlled substance. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HAZARDOUS_MATERIAL</code></td><td>CHAR(1)</td><td>Indicates whether a kit contains hazardous materials. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v4.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v4.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in CDISC ODM-XML format.",
                "operationId":"getMetadata_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>IS_AUTO_QUERY</code> and <code>QUERY_TYPE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_16",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "IS_AUTO_QUERY",
                                            "QUERY_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>QUERY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the query type.</td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>IS_AUTO_QUERY</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates whether this is an automated query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>IS_MISSING_ITEM</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Numeric identifier of the parent record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Designer-provided GUID that identifies the question within the form.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event whose scheduled visit spawned this visit.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property that owns this data element.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>IS_MISSING_FORM</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "IS_MISSING_FORM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "IS_MISSING_FORM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "IS_MISSING_FORM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "SITE_STUDY_VERSION",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y for scheduled visits</code> or <code>N for unscheduled ones</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "50262",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "1.0.0.3",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "SITE_STUDY_VERSION",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>IS_MISSING_VISIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>, <code>FREEZE</code>, <code>VERIFIED</code>, <code>SIGNED</code>, and <code>EXTERNAL_SOURCE_STATUS_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v4.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v4.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v4.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>ALERT_OUTSIDE_VISIT_WINDOW</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_17",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "ALERT_OUTSIDE_VISIT_WINDOW",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>ALERT_OUTSIDE_VISIT_WINDOW</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates if there is any rule set to alert if visit date is out of window. Values can be:</p><ul><li><code>Off</code></li><li><code>Warning</code></li><li><code>Query</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "ALERT",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>RANDOMIZATION_STRATEGY</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, and <code>TITRATION</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_18",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "SERIALIZED",
                                            "HAZARDOUS_MATERIAL",
                                            "CONTROL_SUBSTANCE",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "RANDOMIZATION_STRATEGY"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>RANDOMIZATION_STRATEGY</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the randomization strategy selected for the randomization design. Possible values include <code>Central Stratified</code>, <code>Country Blocked Dynamic Stratified</code>, <code>Country Blocked Fixed Stratified</code>, <code>Site Blocked Dynamic Stratified</code>, <code>Region Blocked Fixed Stratified</code>, or <code>Region Blocked Dynamic Stratified</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>SERIALIZED</code></td><td>CHAR(1)</td><td>Indicates whether a kit is serialized or non-serialized. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONTROL_SUBSTANCE</code></td><td>CHAR(1)</td><td>Indicates whether a kit constitutes a controlled substance. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HAZARDOUS_MATERIAL</code></td><td>CHAR(1)</td><td>Indicates whether a kit contains hazardous materials. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "Central"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. This version of the extract additionally includes labId and labName in FormData, and queryType, assignedRole, and queryRaised in Query transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v5.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions. This version of the extract additionally includes labId and labName in FormData, and queryType, assignedRole, and queryRaised in Query transactions. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v5.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in CDISC ODM-XML format.",
                "operationId":"getMetadata_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_19",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "IS_AUTO_QUERY",
                                            "QUERY_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>QUERY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the query type.</td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>IS_AUTO_QUERY</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates whether this is an automated query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "27",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Decoded or display-friendly representation of the stored response.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "IS_MISSING_FORM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "FAX",
                                            "EMAIL",
                                            "PHONE",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_PHONE",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "PI_PREFIX",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "1.0.0.3",
                                                    "false",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Dr.",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "PI_PREFIX",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v5.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>MATERIAL_ID</code>, <code>ITEM_NUMBER</code>, <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v5.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v5.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"V6.0",
                "description":"<p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>EHR_MAPPING</code> and <code>OCC_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_20",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "ALERT_OUTSIDE_VISIT_WINDOW",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_MAPPING",
                                            "OCC_ENABLED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n    <tr><td><code>OCC_ENABLED</code></td><td>CHAR(1)</td><td><p>Indicates if a study is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a study or if a study was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>ALERT_OUTSIDE_VISIT_WINDOW</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates if there is any rule set to alert if visit date is out of window. Values can be:</p><ul><li><code>Off</code></li><li><code>Warning</code></li><li><code>Query</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>EHR_MAPPING</code></td><td>VARCHAR2(32767 CHAR)</td><td>Displays the OCC data dictionary mapping value for a question mapped for Electronic Health Record (EHR) data import.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "ALERT",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}",
                                                    "N",
                                                    "Y"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"V6.0",
                "description":"<p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>AD_GROUP_ID</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, <code>TITRATION</code>, and <code>AD_GROUP_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_21",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "SERIALIZED",
                                            "HAZARDOUS_MATERIAL",
                                            "CONTROL_SUBSTANCE",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PERCISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "RANDOMIZATION_STRATEGY",
                                            "AD_GROUP_ID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"AD_GROUP_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>RANDOMIZATION_STRATEGY</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the randomization strategy selected for the randomization design. Possible values include <code>Central Stratified</code>, <code>Country Blocked Dynamic Stratified</code>, <code>Country Blocked Fixed Stratified</code>, <code>Site Blocked Dynamic Stratified</code>, <code>Region Blocked Fixed Stratified</code>, or <code>Region Blocked Dynamic Stratified</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>AD_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the adaptive design group associated with the kit allocation configuration.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>SERIALIZED</code></td><td>CHAR(1)</td><td>Indicates whether a kit is serialized or non-serialized. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONTROL_SUBSTANCE</code></td><td>CHAR(1)</td><td>Indicates whether a kit constitutes a controlled substance. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HAZARDOUS_MATERIAL</code></td><td>CHAR(1)</td><td>Indicates whether a kit contains hazardous materials. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>PERCISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY",
                                                "AD_GROUP_ID"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "Central",
                                                    "00000000000000000000000000000000"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PERCISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY",
                                                "AD_GROUP_ID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions, labId and labName in FormData, and queryType, assignedRole, and queryRaised in Query transactions. This version of the extract additionally includes form association data. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v6.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in CDISC ODM-XML format. This extract includes subject, visit, and item level transactions, labId and labName in FormData, and queryType, assignedRole, and queryRaised in Query transactions. This version of the extract additionally includes form association data. If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v6.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in the CDISC ODM-XML format. This version introduces a new clinical one extension attribute for the alert outside visit window property",
                "operationId":"getMetadata_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_22",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "IS_AUTO_QUERY",
                                            "QUERY_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER(10)</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>QUERY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the query type.</td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>IS_AUTO_QUERY</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates whether this is an automated query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER(10)</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "27",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>LAB_ID</code> and <code>LAB_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID for the subject event instance that owns this data.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>ASSOCIATED_FORM_SECTION_ID</code>, <code>ASSOCIATED_REPEAT_FORM_NUM</code>, <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>TITRATION</code>, <code>TREATMENT_ARM_TITLE</code>, <code>TREATMENT_ARM_DESCRIPTION</code>, <code>UNBLIND_DATE</code>, <code>UNBLIND_REASON</code>, and <code>UNBLIND_COMMENT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "SCREENING_NUMBER",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v6.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "WEEK2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v6.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v6.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"V7.0",
                "description":"<p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>REQ_SCREENING</code>, <code>REQ_RANDOMIZE</code>, <code>REQ_DISPENSE</code>, and <code>SAFETY_INTEGRATION_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_23",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "ALERT_OUTSIDE_VISIT_WINDOW",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_MAPPING",
                                            "OCC_ENABLED",
                                            "REQ_SCREENING",
                                            "REQ_RANDOMIZE",
                                            "REQ_DISPENSE",
                                            "SAFETY_INTEGRATION_ENABLED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n    <tr><td><code>REQ_SCREENING</code></td><td>CHAR(1)</td><td>Indicates if the question is required for screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_RANDOMIZE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for randomization. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_DISPENSE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for dispensation. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>OCC_ENABLED</code></td><td>CHAR(1)</td><td><p>Indicates if a study is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a study or if a study was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SAFETY_INTEGRATION_ENABLED</code></td><td>CHAR(1)</td><td>Indicates if the Clinical One Cloud Service to Safety integration is enabled for the study. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>ALERT_OUTSIDE_VISIT_WINDOW</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates if there is any rule set to alert if visit date is out of window. Values can be:</p><ul><li><code>Off</code></li><li><code>Warning</code></li><li><code>Query</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>EHR_MAPPING</code></td><td>VARCHAR2(32767 CHAR)</td><td>Displays the OCC data dictionary mapping value for a question mapped for Electronic Health Record (EHR) data import.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "ALERT",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}",
                                                    "N",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/kitsAndRandomizations":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get kits and randomization design data for study"
                ],
                "summary":"V7.0",
                "description":"<p>Retrieves the study-permissioned Kits and Randomization Design dataset for a single study.</p><p>The dataset exposes versioned randomization and supply design configuration, including study-event linkage, randomization definitions, treatment arms, titration and allocation settings, kit types, calculated dose configuration, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for randomization and kit design entities configured for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>PRECISION_FOR_EACH_DOSE</code>. It also retains the legacy <code>PERCISION_FOR_EACH_DOSE</code> column for backward compatibility and should be treated as obsolete.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">KitsAndRandomizationDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>STUDYEVENT_ID</code>, <code>RAND_ID</code>, <code>ARM_ID</code>, <code>KIT_ID</code>, <code>SCHEDULED_FROM_EVENT_ID</code>, <code>TITRATION</code>, and <code>AD_GROUP_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_24",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EC942244BB30163BE053BEC44C64CF34"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "KitsAndRandomizationDataSetQuery":{
                                    "description":"KitsAndRandomizationDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "MODIFIED_BY",
                                            "STUDY_DESIGN_STATUS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "RAND_WID",
                                            "RAND_ID",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORTTYPE",
                                            "RERANDOMIZATION",
                                            "DH_TIMESTAMP",
                                            "ARM_WID",
                                            "ARM_ID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RANDOMIZATION_VERSION_START",
                                            "RANDOMIZATION_VERSION_END",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "STUDYEVENT_ID",
                                            "STUDYEVENT_WID",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "KIT_WID",
                                            "KIT_ID",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_TYPE_ID",
                                            "TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "TITRATION",
                                            "KIT_VERSION_START",
                                            "KIT_VERSION_END",
                                            "SERIALIZED",
                                            "HAZARDOUS_MATERIAL",
                                            "CONTROL_SUBSTANCE",
                                            "KIT_TYPE",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "PRECISION_FOR_EACH_DOSE",
                                            "ROUND_UP_FOR",
                                            "DOSING_FREQUENCY",
                                            "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "RANDOMIZATION_STRATEGY",
                                            "AD_GROUP_ID"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDYEVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"RAND_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ARM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"TITRATION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"AD_GROUP_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer when they design the randomization in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization. Possible values include <code>Blinded</code> or <code>Unblinded</code>.</td></tr>\n    <tr><td><code>RANDOMIZATION_STRATEGY</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the randomization strategy selected for the randomization design. Possible values include <code>Central Stratified</code>, <code>Country Blocked Dynamic Stratified</code>, <code>Country Blocked Fixed Stratified</code>, <code>Site Blocked Dynamic Stratified</code>, <code>Region Blocked Fixed Stratified</code>, or <code>Region Blocked Dynamic Stratified</code>.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the cohort name, as specified by a study designer.</td></tr>\n    <tr><td><code>COHORTTYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of cohort selected by a study designer when creating a randomization design: None, <code>Adaptive</code>, or <code>Demography</code>. Possible values include <code>NoCohort</code>, <code>Adaptive</code>, or <code>Demography</code>.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The title of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>The description of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>The ID of the treatment arm, as specified by the study designer when creating the arm.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n    <tr><td><code>AD_GROUP_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the adaptive design group associated with the kit allocation configuration.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the randomization data was entered.</td></tr>\n    <tr><td><code>RANDOMIZATION_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when randomization data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, scheduling rules, and visit-window attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A visit's reference name used in the system. This value is composed by <code>EVENT_TITLE</code> converted to uppercase with blank spaces removed and once created it doesn't update.</td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td>The event type of the visit.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours before the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days after the event or activity should happen.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates the number of hours after the event or activity should happen.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit design, supply configuration, and kit-type attributes associated with the study setup.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(23)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. Possible values include <code>Blister Pack</code>, <code>Bottle</code>, <code>Device</code>, <code>Syringe</code>, <code>Topical Ointment</code>, <code>Vial</code>, <code>Inhaler</code>, <code>Infusion</code>, <code>Box</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates how one unit in the kit is measured, specifically its specified value.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculations defined based on subjects' answers to one or more questions.</td></tr>\n    <tr><td><code>SERIALIZED</code></td><td>CHAR(1)</td><td>Indicates whether a kit is serialized or non-serialized. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CONTROL_SUBSTANCE</code></td><td>CHAR(1)</td><td>Indicates whether a kit constitutes a controlled substance. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>HAZARDOUS_MATERIAL</code></td><td>CHAR(1)</td><td>Indicates whether a kit contains hazardous materials. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. Possible values include <code>Activity Watch</code>, <code>Blood Pressure Monitor</code>, <code>Glucose Monitor</code>, <code>Weight Scale</code>, <code>ECG Reader</code>, <code>Spirometer</code>, <code>Mobile App</code>, <code>Smart Pill Bottle</code>, <code>Pulse Oximeter</code>, <code>Wearable Patch</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the type of distribution a kit has, as specified by the study designer. Possible values include <code>Blinded</code>, <code>Unblinded</code>, or <code>Unblinded Pharmacist</code>.</td></tr>\n    <tr><td><code>KIT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when the kit data was entered.</td></tr>\n    <tr><td><code>KIT_VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when kit data was changed, if the data is not current.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose definitions and dosing rules configured for kit supply design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSING_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td>[Obsolete]<code><s>PERCISION_FOR_EACH_DOSE</s></code></td><td><s>NUMBER</s></td><td><s>Nullable<s/></td><td><s>2</s></td><td><s>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</s></td></tr>\n    <tr><td><code>PRECISION_FOR_EACH_DOSE</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>ROUND_UP_FOR</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer.</td></tr>\n    <tr><td><code>USE_LEFTOVER_UNITS_IN_NEXT_DOSE</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata captured with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>The user who last modify the study.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>RAND_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the randomization design.</td></tr>\n    <tr><td><code>RAND_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the randomization design.</td></tr>\n    <tr><td><code>ARM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment arm.</td></tr>\n    <tr><td><code>ARM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the treatment arm.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>VARCHAR2(32767)</td><td>Identifier of the cohort selected in the randomization design.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>VARCHAR2(32767)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>STUDYEVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study event.</td></tr>\n    <tr><td><code>STUDYEVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study event.</td></tr>\n    <tr><td><code>KIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit.</td></tr>\n    <tr><td><code>KIT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the kit.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "KitsAndRandomizationDataSetReport":{
                                        "description":"KitsAndRandomizationDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PRECISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY",
                                                "AD_GROUP_ID"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "testuser1",
                                                    "APPROVED",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "26",
                                                    "1DAB0F8B8BB249FEBB686596C7598EB1",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "NoCohort",
                                                    "1",
                                                    "2025-10-29T12:34:57.563Z",
                                                    "19",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "1",
                                                    "0",
                                                    "2025-10-29T12:20:42.956Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "COHORT_1",
                                                    "101",
                                                    "Default Cohort",
                                                    "Y",
                                                    "Y",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "116",
                                                    "5A05BF29727D48D5BBB108991017CF98",
                                                    "Connected Syringe Pump",
                                                    "BLE",
                                                    "0",
                                                    "BLINDED",
                                                    "SyringeKit",
                                                    "SYRINGE",
                                                    "1",
                                                    "1",
                                                    "5.00",
                                                    "mL",
                                                    "0",
                                                    "2025-10-29T12:14:23.304Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "Investigational Product",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "10.00",
                                                    "70.00",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "Central",
                                                    "00000000000000000000000000000000"
                                                ]
                                            ]
                                        }
                                    },
                                    "KitsAndRandomizationDataSetEmptyReport":{
                                        "description":"KitsAndRandomizationDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "MODIFIED_BY",
                                                "STUDY_DESIGN_STATUS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "RAND_WID",
                                                "RAND_ID",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORTTYPE",
                                                "RERANDOMIZATION",
                                                "DH_TIMESTAMP",
                                                "ARM_WID",
                                                "ARM_ID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RANDOMIZATION_VERSION_START",
                                                "RANDOMIZATION_VERSION_END",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "STUDYEVENT_ID",
                                                "STUDYEVENT_WID",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "KIT_WID",
                                                "KIT_ID",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_TYPE_ID",
                                                "TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "TITRATION",
                                                "KIT_VERSION_START",
                                                "KIT_VERSION_END",
                                                "SERIALIZED",
                                                "HAZARDOUS_MATERIAL",
                                                "CONTROL_SUBSTANCE",
                                                "KIT_TYPE",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "PRECISION_FOR_EACH_DOSE",
                                                "ROUND_UP_FOR",
                                                "DOSING_FREQUENCY",
                                                "USE_LEFTOVER_UNITS_IN_NEXT_DOSE",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "RANDOMIZATION_STRATEGY",
                                                "AD_GROUP_ID"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-kitsAndRandomizations-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-kitsandrandomizations-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds Screening Number as a new clinical one extension attribute at the subject level and includes visit date queries as transactions at the visit level. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v7.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds Screening Number as a new clinical one extension attribute at the subject level and includes visit date queries as transactions at the visit level. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v7.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in the CDISC ODM-XML format. This version introduces a new clinical one extension attribute 'EHRMapping' if an item is mapped to an EHR item.",
                "operationId":"getMetadata_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"V7.0",
                "description":"<p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>PROPERTY_NAME</code>, <code>PROPERTY_TYPE</code>, <code>SCREENING_NUMBER</code>, and <code>DATA_ELEMENT_VERSION_START</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_25",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "PROPERTY_NAME",
                                            "PROPERTY_TYPE",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "IS_AUTO_QUERY",
                                            "QUERY_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "DATA_ELEMENT_VERSION_START"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(16000)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(16000)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(16000)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(16000)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>PROPERTY_NAME</code></td><td>VARCHAR2(256 CHAR)</td><td><p>Name of the property to which the query is associated to.</p><p><strong>Note:</strong> This only applies to queries on visit dates and the default is <code>visitStartDate</code>. For other queries, this value is <code>null</code>.</p></td></tr>\n    <tr><td><code>PROPERTY_TYPE</code></td><td>VARCHAR2(256 CHAR)</td><td><p>Type of property to which the query is associated to.</p><p><strong>Note:</strong> This only applies to queries on <code>visit</code> dates and the default is <code>visit</code>. For other queries, this value is <code>null</code>.</p></td></tr>\n    <tr><td><code>QUERY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the query type.</td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>IS_AUTO_QUERY</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates whether this is an automated query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>DATA_ELEMENT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp of a given item's start date.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "PROPERTY_NAME",
                                                "PROPERTY_TYPE",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DATA_ELEMENT_VERSION_START"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Range Check",
                                                    "Edit Check",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "27",
                                                    "N",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "PROPERTY_NAME",
                                                "PROPERTY_TYPE",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DATA_ELEMENT_VERSION_START"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>EHR_ENABLED</code>, <code>EHR_LINK_STATUS</code>, <code>WITHDRAWAL_DATE</code>, and <code>STUDY_COMPLETION_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "SCREENING_NUMBER",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "FAX",
                                            "EMAIL",
                                            "PHONE",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_PHONE",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "EHR_ENABLED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_LINK_STATUS",
                                            "WITHDRAWAL_DATE",
                                            "STUDY_COMPLETION_DATE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STUDY_COMPLETION_DATE</code></td><td>DATE</td><td>Date in which the subject completed the study.</td></tr>\n    <tr><td><code>WITHDRAWAL_DATE</code></td><td>DATE</td><td>Date in which the subject got withdrawn from the study.</td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>EHR_LINK_STATUS</code></td><td>CHAR(1)</td><td>Displays <code>Yes</code> or <code>No</code>, indicating if a subject is currently linked for Electronic Health Record (EHR) data import. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "N",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>HAS_QUERY</code>, <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Indicates if the item has an associated query. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the current status of the subject in the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>CURRENT_STUDY_ROLE_ID</code>, <code>CURRENT_STUDY_ROLE_WID</code>, and <code>CURRENT_STUDY_ROLE_NAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, SCREENINGVISIT is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v7.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>, <code>COUNT_OF_KITS</code>, and <code>IS_NON_SERIALIZED_KIT</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "SCREENING_NUMBER",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates if the kit is non serialized: <code>Y</code> (<code>Yes</code>) the kit is non-serialized. <code>N</code> (<code>No</code>) the kit is serialized.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "WEEK2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "1",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v7.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v7.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"V8.0",
                "description":"<p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>REASON_FOR_REVISION</code>, <code>VERSION_TITLE</code>, <code>IS_APPROVED</code>, <code>EARLIEST_VISIT_TO_COMPLETE</code>, <code>VISIT_ORDER</code>, <code>FORM_ORDER</code>, <code>ITEM_ORDER</code>, <code>ITEM_GROUP_ORDER</code>, <code>DATA_CLASSIFICATION</code>, <code>DATA_TYPE</code>, and <code>APPLY_CHANGE_VERSION</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_26",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "IS_APPROVED",
                                            "REASON_FOR_REVISION",
                                            "VERSION_TITLE",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "VISIT_ORDER",
                                            "EARLIEST_VISIT_TO_COMPLETE",
                                            "FORM_ORDER",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "ALERT_OUTSIDE_VISIT_WINDOW",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_ORDER",
                                            "ITEM_GROUP_ORDER",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "DATA_CLASSIFICATION",
                                            "DATA_TYPE",
                                            "APPLY_CHANGE_VERSION",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_MAPPING",
                                            "OCC_ENABLED",
                                            "REQ_SCREENING",
                                            "REQ_RANDOMIZE",
                                            "REQ_DISPENSE",
                                            "SAFETY_INTEGRATION_ENABLED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>VERSION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the title of the study version.</p><p>If a value has not been specified for this element, its value displays as <code>NULL</code>.</p></td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>IS_APPROVED</code></td><td>CHAR(1)</td><td><p>This element aides in reviewing Archived study versions that may have been in the <code>Active</code> container in the past. It is applicable to all study versions, <code>and is labeled as</code>:</p><ul><li><code>N</code> for any Study Version that was never moved to <code>Active</code> mode.</li><li><code>Y</code> for study versions moved from Test to <code>Active</code>. Also applicable when those versions are subsequently moved to archive.</li></ul></td></tr>\n    <tr><td><code>REASON_FOR_REVISION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the user provided reason for revising the study version. This reason is provided when moving a study version from Test to <code>Active</code> container. If a value has not been specified for this element, its value displays as <code>NULL</code>. Possible values include <code>INITIAL</code>, <code>PROTOCOL_AMENDMENT</code>, <code>REVISION</code>, or <code>VERSION</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n    <tr><td><code>REQ_SCREENING</code></td><td>CHAR(1)</td><td>Indicates if the question is required for screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_RANDOMIZE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for randomization. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_DISPENSE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for dispensation. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>OCC_ENABLED</code></td><td>CHAR(1)</td><td><p>Indicates if a study is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a study or if a study was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SAFETY_INTEGRATION_ENABLED</code></td><td>CHAR(1)</td><td>Indicates if the Clinical One Cloud Service to Safety integration is enabled for the study. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td><p>An integer indicating a visit's ordinal position (order) within the visit schedule for the selected study version. These values may change across versions; for example, a visit that is in position 3 in version <code>1.0.0.1</code> may shift to position 4 in a later version if a new visit is inserted at position 3.</p><p><strong>Note:</strong> Ordinal values are study design attributes only and do not reflect a subject's progress through a study or carry clinical significance.</p><p>About draft study versions: <code>VISIT_ORDER</code> values won't appear in the dataset for a draft study version until you either move the draft to the test container or choose Send to Analytics from the draft container menu.</p><p>About visits: The dataset output displays scheduled (non-branch and branch) visits and unscheduled visits in the following manner.</p><ul><li>Scheduled non-branch visits (for example, a screening visit) are listed first, followed by scheduled branch visits, and finally unscheduled visits when the <code>VISIT_ORDER</code> is sorted in ascending order.</li><li>Scheduled branch visits are assigned an ordinal value that reflects their position in a branch. When sorted in ascending order, visits from earlier tiers appear before those in later ones.</li></ul><p><strong>Note:</strong> A tier, the highest level in visit branch design, is used to organize parallel branches, also called arms or cohorts. Each branch consists of a group of visits.</p><p>For instance, a study includes two tiers (Tier1 and Tier2); each consists of two branches (BranchA and BranchB), and each branch contains a set of visits (Day1 and Day15). When sorted in ascending order, they appear as follows in the output.</p><ul><li>Tier1.BranchA.Day1</li><li>Tier1.BranchA.Day15</li><li>Tier1.BranchB.Day1</li><li>Tier1.BranchB.Day15</li><li>Tier2.BranchA.Day1</li><li>Tier2.BranchA.Day15</li><li>Tier2.BranchB.Day1</li><li>Tier2.BranchB.Day15</li></ul><ul><li>Unscheduled visits, which include Withdrawal, Screen Fail, Rescreen, and Study Completion visits, are assigned an ordinal value based on the sequence defined on the Unscheduled Visit or Event sidebar and appear after scheduled branch visits when <code>VISIT_ORDER</code> is sorted in ascending order.</li></ul></td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>EARLIEST_VISIT_TO_COMPLETE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>When creating a study completion visit, you can specify an earlier visit that must be completed in order to enable the option for marking the subject as Complete. The reference name of that specified scheduled visit is provided in this field.</p><p>This data element is added for each event. However, it is only specified when the record is for a Subject Completion event, while all other records display as a <code>NULL</code> value.</p></td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>ALERT_OUTSIDE_VISIT_WINDOW</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates if there is any rule set to alert if visit date is out of window. Values can be:</p><ul><li><code>Off</code></li><li><code>Warning</code></li><li><code>Query</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_ORDER</code></td><td>NUMBER</td><td><p>An integer indicating a form's ordinal position (order) within a visit for the selected study version. These values may change across versions; for example, a form that is in position 3 in version 1.0.0.1 may shift to position 4 in a later version if a new form is inserted at position 3.</p><p><strong>Note:</strong> Ordinal values are positive integers that indicate the sequence of forms in a visit as defined by the study design. They do not indicate if a form was started or completed and do not carry any clinical significance.</p><p>About Advanced Study Versioning (ASV): Duplicate <code>FORM_ORDER</code> values appear in the output when a new form is added using Advanced Study Versioning (ASV) and the dataset is generated for a previous study version. For example, study version 1.0.0.1 includes three forms, and study version 1.0.0.2 introduces a new form (Vitals). The output appears as follows when the dataset is generated for version 1.0.0.1.</p><p>However, if the dataset is generated for version 1.0.0.2, no duplicate values appear and the order is sequentially correct.</p></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>DATA_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the data format of the collected data.</p><p><strong>Note:</strong> Data type refers to how collected data is stored, which is different from the question type that defines how the question is presented to the site user. Possible values include <code>VARCHAR</code>, <code>NUMBER</code>, or <code>DATE</code>.</p></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>ITEM_GROUP_ORDER</code></td><td>NUMBER</td><td><p>Indicates the order of items on two-section forms and in question group type questions.</p><p>For example, a study's design includes a question group labeled Scan <code>1</code> with two questions: Scan Date and Upload Scan. In the design the group is treated as a single question, so in the output, the <code>ITEM_GROUP</code> and <code>ITEM_ORDER</code> are the same for each question in the group, and <code>ITEM_GROUP_ORDER</code> reflects each question's position within the group.</p><p>For any other form or question types, <code>ITEM_GROUP_ORDER</code> is <code>NULL</code>.</p></td></tr>\n    <tr><td><code>ITEM_ORDER</code></td><td>NUMBER</td><td><p>A numeric value indicating the ordinal position (order) of a question on a form for the selected study version.</p><ul><li><strong>Version-specific</strong>: <code>ITEM_ORDER</code> reflects the order as defined in that specific study version. Values may change across study versions. For example, a question that is in position 3 in version <code>1.0.0.1</code> may shift to position 4 in a later version if a new question is inserted at position 3.</li><li><strong>Not always an integer</strong>: In some study versions, <code>ITEM_ORDER</code> may appear as a decimal value (for example, <code>2.001</code> or <code>4.001</code>). This can occur when new items are inserted into an existing form in a particular study version (for example, items inserted after an existing question and associated with ASV). In these cases, the decimal value indicates the position of the inserted item relative to the prior item without renumbering all subsequent items in that version.</li><li><strong>Latest version may be re-sequenced</strong>: When viewing a later or the latest study version, the same form may show a fully re-sequenced order using consecutive integers (for example, <code>1, 2, 3, 4, 5, 6</code>).</li></ul><p>In a later/latest study version, the order may be displayed as consecutive integers (for example): <code>1, 2, 3, 4, 5, 6</code></p><p><strong>Note:</strong> Ordinal values indicate the sequence of questions on forms as defined by the study design for the selected study version. They do not indicate whether a question was answered and do not carry any clinical significance.</p><p>About Age items on forms: When an Age item is added to a form, the system also adds a Date of Birth field and displays them together, making it appear as a single question in the study design. In the study design dataset, however, Age (a calculated item) and Date of Birth are recorded as two distinct items, each on its own row with a unique ordinal value.</p></td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DATA_CLASSIFICATION</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Indicates how the data is categorized according to its sensitivity and intended use. Applicable only to hidden items.</p><p>This data element populates with a comma separated list of all the selected data classification groups of a hidden item. Possible values for this element include:</p><ul><li><code>Adjudication data</code></li><li><code>Blinded data</code></li><li><code>PII data</code></li><li><code>Public data</code></li><li><code>Sponsor data</code></li></ul></td></tr>\n    <tr><td><code>EHR_MAPPING</code></td><td>VARCHAR2(32767 CHAR)</td><td>Displays the OCC data dictionary mapping value for a question mapped for Electronic Health Record (EHR) data import.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>APPLY_CHANGE_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the version in which changes to the form item apply.</p><p>This data element refers to the lowest study version in which the change is applied. This means the change is included in all study versions between the <code>APPLY_CHANGE_VERSION</code> and the current study version.</p></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "IS_APPROVED",
                                                "REASON_FOR_REVISION",
                                                "VERSION_TITLE",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "VISIT_ORDER",
                                                "EARLIEST_VISIT_TO_COMPLETE",
                                                "FORM_ORDER",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_ORDER",
                                                "ITEM_GROUP_ORDER",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "DATA_CLASSIFICATION",
                                                "DATA_TYPE",
                                                "APPLY_CHANGE_VERSION",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "",
                                                    "Study_01",
                                                    "N",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "1",
                                                    "Sponsor Data",
                                                    "7",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "ALERT",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "1",
                                                    "TARGETED SDV",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "NUMBER",
                                                    "",
                                                    "3",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}",
                                                    "N",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "VERSION"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "IS_APPROVED",
                                                "REASON_FOR_REVISION",
                                                "VERSION_TITLE",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "VISIT_ORDER",
                                                "EARLIEST_VISIT_TO_COMPLETE",
                                                "FORM_ORDER",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_ORDER",
                                                "ITEM_GROUP_ORDER",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "DATA_CLASSIFICATION",
                                                "DATA_TYPE",
                                                "APPLY_CHANGE_VERSION",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'SDVSelectionStatus' based on is the data captured in the item is targeted (Obligatory) not targeted (Optional) or not configured for SDV (Irrelevant) at the item level transactions. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v8.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attribute 'SDVSelectionStatus' based on is the data captured in the item is targeted (Obligatory) not targeted (Optional) or not configured for SDV (Irrelevant) at the item level transactions. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v8.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract meta data in the CDISC ODM-XML format. This version introduces a new clinical one extension attributes 'MandatoryScreening' if an item is required for Screening, 'MandatoryRandomize' if an item is required for Randomization, 'MandatoryDispense' if an item is required for Dispensation and 'SafetyIntegrationEnabled' if study is enabled for Safety Integration.",
                "operationId":"getMetadata_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2024-01-01T00:00:00Z"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV1"
                                },
                                "examples":{
                                    "StudyMetadataResponse":{
                                        "description":"StudyMetadataResponse",
                                        "value":"<?xmlversion=\"1.0\"?><ODMxmlns=\"http://www.cdisc.org/ns/odm/v1.3\"xmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"xmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\"Description=\"STUDY01\"FileType=\"Transactional\"FileOID=\"oracle/STUDY01/3E3376C945AC4481B71885A0B9D552B8\"CreationDateTime=\"2025-10-31T06:36:59.384Z\"ODMVersion=\"1.3.2\"Originator=\"system\"SourceSystem=\"Oracle Life Sciences Clinical One\"SourceSystemVersion=\"MetaData API v8.0\"co:studyMode=\"test\"co:includeCOExtensions=\"true\"co:fromTimestamp=\"2024-01-01T00:00:00Z\"co:studyVersion=\"1.0.0.3\"co:studyVersionSummary=\"false\"co:hasMore=\"false\"co:totalResults=\"1\"co:count=\"1\"co:limit=\"1\"co:offset=\"0\"><StudyOID=\"STUDY01\"co:SafetyIntegrationEnabled=\"false\"><GlobalVariables><StudyName>STUDY01</StudyName><StudyDescription>STUDY01</StudyDescription><ProtocolName>STUDY01</ProtocolName></GlobalVariables><BasicDefinitions><MeasurementUnitOID=\"mg\"Name=\"mg\"><Symbol><TranslatedText>mg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Years\"Name=\"Years\"><Symbol><TranslatedText>Years</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"mmHg\"Name=\"mmHg\"><Symbol><TranslatedText>mmHg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"cm\"Name=\"cm\"><Symbol><TranslatedText>cm</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kilogram\"Name=\"Kilogram\"><Symbol><TranslatedText>Kilogram</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"kg\"Name=\"kg\"><Symbol><TranslatedText>kg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kg\"Name=\"Kg\"><Symbol><TranslatedText>Kg</TranslatedText></Symbol></MeasurementUnit></BasicDefinitions><MetaDataVersionOID=\"STUDY01v1.0.0.3\"Name=\"STUDY01\"co:StudyWid=\"25\"co:GUID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:VersionStart=\"2025-10-29T14:37:54.638Z\"><Protocol><StudyEventRefStudyEventOID=\"AE_DBB3A65B0A97454DAFEAEDDAB37395A1\"OrderNumber=\"1\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"OrderNumber=\"2\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"OrderNumber=\"3\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week1_3279AFB1AA3C44CFB6D6C419AAAC8A84\"OrderNumber=\"4\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week2_57CCABE13C174836A48BCEDD46247AB8\"OrderNumber=\"5\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week3_449CBE4790CF4F66AB58619C86CA405B\"OrderNumber=\"6\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyCompletion_A165C73526474F698CBC2F8D018FDBB0\"OrderNumber=\"7\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyWithdrawal_AE61AFF53DB4438BA0D83A82278F7128\"OrderNumber=\"8\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"UnscheduleVisit1_4D7113375FD74C37BDACC4B5D5D83002\"OrderNumber=\"9\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week4_8A40FBC9DF6E4D9295F7CB10DB30DCB7\"OrderNumber=\"10\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week5_E2F63997717A427881FC32C8E2B25139\"OrderNumber=\"11\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit1_35882BCA293243E78EF8ACFB0195D3D3\"OrderNumber=\"12\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit2_4C4B0355050845FEBAE1DDC0A4FB7104\"OrderNumber=\"13\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit1_664DA4DAEA3A44DABACA22CC40BB9875\"OrderNumber=\"14\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"OrderNumber=\"15\"Mandatory=\"Yes\"></StudyEventRef></Protocol><StudyEventDefOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"Name=\"CBVISIT2\"Repeating=\"No\"Type=\"Scheduled\"Category=\"ScheduleAbleVisit\"co:StudyEventWid=\"248\"co:GUID=\"AD5ACD1ED5E346129C6FABE4FA2E7DBE\"co:VersionStart=\"2025-10-29T14:37:55.423Z\"co:DelayDays=\"4\"co:DelayHours=\"0\"co:DelayWindowBeforeDays=\"2\"co:DelayWindowBeforeHours=\"0\"co:DelayWindowAfterDays=\"2\"co:DelayWindowAfterHours=\"0\"><FormRefFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"OrderNumber=\"1\"Mandatory=\"Yes\"></FormRef><FormRefFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"OrderNumber=\"2\"Mandatory=\"Yes\"></FormRef></StudyEventDef><FormDefOID=\"DECISION_FORM_FOR_BRANCH_026521949ED24C69B0A82084832A3262\"Name=\"DecisionFrom For Branch\"Repeating=\"No\"><ItemGroupRefOrderNumber=\"1\"Mandatory=\"No\"ItemGroupOID=\"IG_DATE_TIME_6ED56EC23ADD4841B8AC22ECB6205774\"></ItemGroupRef><ItemGroupRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemGroupOID=\"IG_ENABLE_DYNAMIC_VISIT_18936986318C4B00AAF89CDA492E6876\"></ItemGroupRef></FormDef><ItemGroupDefOID=\"IG_LAB_FORM_XRAY_E98F15D6F16F425A8F0EC3B92C8B718F\"Name=\"Lab Form - XRAY\"Repeating=\"Yes\"><ItemRefOrderNumber=\"1\"Mandatory=\"No\"ItemOID=\"LB_TEST_0267AEECE55441088516DA2C0E1B2EDC\"></ItemRef><ItemRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemOID=\"LB_RESULT_DE498EE22C884D55A50D285580AB674D\"></ItemRef><ItemRefOrderNumber=\"3\"Mandatory=\"No\"ItemOID=\"LB_UNIT_00C6D2BF3F8B4178AAB25EBD3304E39E\"></ItemRef><ItemRefOrderNumber=\"4\"Mandatory=\"No\"ItemOID=\"LB_LOW_RANGE_C8B8EEFE75F543299542C222ED94C28F\"></ItemRef><ItemRefOrderNumber=\"5\"Mandatory=\"No\"ItemOID=\"LB_HIGH_RANGE_5CE74A4A9E97435B933B6C28645342AA\"></ItemRef><ItemRefOrderNumber=\"6\"Mandatory=\"No\"ItemOID=\"NORMAL_TEXT_RESULT_746B6577A50C4D0A9DB53E1CD6B60551\"></ItemRef></ItemGroupDef><ItemDefOID=\"ENABLE_DYNAMIC_VISIT_74D371375BF1410A9D056EA0485DFF8C\"Name=\"ENABLE_DYNAMIC_VISIT\"DataType=\"string\"co:ItemWid=\"890\"co:GUID=\"74D371375BF1410A9D056EA0485DFF8C\"co:ItemVersionStart=\"2025-10-29T14:37:54.872Z\"co:Precision=\"1\"co:AllowFutureDate=\"No\"><Question><TranslatedText>EnableDynamicVisit?</TranslatedText></Question><CodeListRefCodeListOID=\"ENABLE_DYNAMIC_VISIT_ENABLE_DYNAMIC_VISIT_20CA635B53BC48099D2C5CDF3DBFD60C\"></CodeListRef></ItemDef><CodeListOID=\"FlagType\"Name=\"FlagType\"DataType=\"text\"><CodeListItemCodedValue=\"Association\"co:SelectionOID=\"FlagType.Association\"><Decode><TranslatedText>Association</TranslatedText></Decode></CodeListItem></CodeList></MetaDataVersion></Study></ODM>"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/queries":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get queries raised for study"
                ],
                "summary":"V8.0",
                "description":"<p>Retrieves the study-permissioned Queries dataset for a single study and mode.</p><p>The dataset exposes query lifecycle history raised against clinical data, including query state and comments, rule context, study, site, subject, visit, form, and item context, together with audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns query-history rows for the selected study and mode, not only currently open queries.</p><p>This version additionally includes the following data points: <code>EHR_IMPORTED</code> and <code>EHR_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">StudyQueryDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>QUERY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getStudyQueryDataset",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "QueryDataSetQuery":{
                                    "description":"QueryDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "QUERY_ID",
                                            "QUERY_WID",
                                            "STATE_ID",
                                            "STATE",
                                            "QUERY_COMMENT",
                                            "RULE_ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "DISCREPANCY_ID",
                                            "HAS_QUERY",
                                            "IS_CURRENT",
                                            "PROPERTY_NAME",
                                            "PROPERTY_TYPE",
                                            "ASSIGNED_ROLES",
                                            "QUERYAGE",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "FORM_REFNAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "FORM_SECTION_ID",
                                            "FORM_STATUS",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "IS_AUTO_QUERY",
                                            "QUERY_TYPE",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "DATA_ELEMENT_VERSION_START",
                                            "EHR_IMPORTED",
                                            "EHR_ENABLED"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"QUERY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#query-context\">Query context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager. Possible values include <code>1.3.0.8</code> or <code>5.3.0.16</code>.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager. Possible values include <code>America/New_York</code> or <code>Asia/Kolkata</code>.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit scheduling, status, and execution attributes associated with the queried record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>NOT_STARTED</code>: the visit has not been started.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur. Possible values include <code>0</code>, <code>1</code>, or <code>7</code>.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design, repeat, and status attributes associated with the queried data element.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only receive this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Item-level values, validation output, derived representations, and item metadata associated with the query.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type. Possible values include <code>TEXT</code>, <code>DATETIME</code>, <code>NUMERIC</code>, <code>CHOICE</code>, <code>LABEL</code>, or <code>FILE_UPLOAD</code>.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul> Possible values include <code>Text</code>, <code>DateTime</code>, <code>Number</code>, <code>Measurement</code>, <code>Calculation</code>, <code>Choice</code>, <code>label</code>, or <code>FileUpload</code>.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Populated and used by Oracle Clinical One Platform integrations.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(16000)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(16000)</td><td><p>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(16000)</td><td><p>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(16000)</td><td><p>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design.</p><p>Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces).</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (0-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (0-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"query-context\">Query context</h4>\n<p>Query lifecycle fields that describe the discrepancy, its state, ownership, and query-specific classification.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>PROPERTY_NAME</code></td><td>VARCHAR2(256 CHAR)</td><td><p>Name of the property to which the query is associated to.</p><p><strong>Note:</strong> This only applies to queries on visit dates and the default is <code>visitStartDate</code>. For other queries, this value is <code>null</code>.</p></td></tr>\n    <tr><td><code>PROPERTY_TYPE</code></td><td>VARCHAR2(256 CHAR)</td><td><p>Type of property to which the query is associated to.</p><p><strong>Note:</strong> This only applies to queries on <code>visit</code> dates and the default is <code>visit</code>. For other queries, this value is <code>null</code>.</p></td></tr>\n    <tr><td><code>QUERY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the query type.</td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a query's status:</p><ul><li><code>Opened</code></li><li><code>Answered</code></li><li><code>Closed</code></li><li><code>Candidate</code> query</li></ul></td></tr>\n    <tr><td><code>QUERYAGE</code></td><td>NUMBER</td><td><p>Indicates the number of days passed since a query was first opened.</p><ul><li><strong>Current (Active) Record</strong>: Indicates how many days have passed since the query was first opened until today while it remains open. This means query age should be <code>0</code> when the query gets an opened status and increment the longer it remains open.</li><li>For candidate and deleted queries, query age should be always <code>0</code>.</li><li>For candidate queries created on one date and opened on a different date, query age should be <code>0</code> at the time it gets an opened status and increment the longer it remains open.</li><li>For answered queries, reopened queries, and reopened queries with subsequent answers, as long as the status is still opened, query age should indicate how many days have passed since it was first opened until the current system's date.</li><li><strong>Closed Record</strong>: Indicates how long the query was open, from the first opened date to the date it was closed.</li><li><strong>Audit (Version-Ended) Record</strong>: Indicates the duration that each version of a query was active, measured from when it was opened to when that particular version ended.</li></ul></td></tr>\n    <tr><td><code>QUERY_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates a comment associated with a query, as entered by the user who last modified the query.</td></tr>\n    <tr><td><code>ASSIGNED_ROLES</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates the roles that are assigned to receive a query.</td></tr>\n    <tr><td><code>IS_AUTO_QUERY</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates whether this is an automated query.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit trail metadata that explains when the row version became effective, who changed it, and whether it is current.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>EHR_IMPORTED</code></td><td>CHAR(1)</td><td><p>Indicates if a question was populated via an Electronic Health Record (EHR) data import.</p><p>If EHR data import is disabled after the data is imported, <code>EHR_IMPORTED</code> continues to show Yes. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(20 CHAR)</td><td>Comment for record change.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>QUERY_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the query.</td></tr>\n    <tr><td><code>QUERY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the query.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent record.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the parent record. A sentinel value of <code>-1</code> can appear when no parent record applies.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root record.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Indicates the numeric identifier of the root record. A sentinel value of <code>-1</code> can appear when no root record applies.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the number of times the event has been repeated for the subject.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>Indicates the transaction start date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Indicates the transaction end date associated with the queried subject form item record.</td></tr>\n    <tr><td><code>STATE_ID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the query state.</td></tr>\n    <tr><td><code>RULE_ID</code></td><td>RAW(32 BYTE)</td><td>GUID of the rule.</td></tr>\n    <tr><td><code>DISCREPANCY_ID</code></td><td>NUMBER(38)</td><td>Indicates the discrepancy identifier associated with the query.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject form item record associated with the queried data element.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the variable.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the originator.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the property.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time when the referenced property version became effective.</td></tr>\n    <tr><td><code>DATA_ELEMENT_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp of a given item's start date.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reserved for future use.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the normalized unit.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally as the underlying query dataset row is versioned.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "QueryDataSetReport":{
                                        "description":"QueryDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "PROPERTY_NAME",
                                                "PROPERTY_TYPE",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DATA_ELEMENT_VERSION_START",
                                                "EHR_IMPORTED",
                                                "EHR_ENABLED"
                                            ],
                                            "data":[
                                                [
                                                    "3A06FA4026504D819D33D6061B0AF6AB",
                                                    "1",
                                                    "0",
                                                    "Candidate",
                                                    "please provide more details ",
                                                    "CE5F2D7A9B4C4D1E8F2A6C3B7D8E9A10",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "4F9D07D644904CEAB2F2DEFA02E8921C",
                                                    "2",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "0",
                                                    "0",
                                                    "CF149710CBE24A6BB9266E52B5F5BA0F",
                                                    "618",
                                                    "Subject Initials",
                                                    "2025-10-30T17:02:09.726Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "CREATED",
                                                    "1",
                                                    "2",
                                                    "Auto query created",
                                                    "Auto-created",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-30T17:04:02.544Z",
                                                    "1001",
                                                    "N",
                                                    "Y",
                                                    "Range Check",
                                                    "Edit Check",
                                                    "Site CRA;Data Manager",
                                                    "0",
                                                    "6529F9EBEB914CED8DAED37B7C3DBCFA",
                                                    "41",
                                                    "FORM_02",
                                                    "6",
                                                    "2025-10-30T17:00:00.000Z",
                                                    "2025-10-30T17:02:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "ABC",
                                                    null,
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "2025-10-30T17:02:09.000Z",
                                                    "10",
                                                    "30",
                                                    "2025",
                                                    "17",
                                                    "02",
                                                    "09",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "ScreeningForm",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "ScreeningForm",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "ABC",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "FBDBB9C9A70C470E8E90B812460F00F8",
                                                    "2025-12-11T21:45:21.430Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "Subject_Initials",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "New",
                                                    "DATAHUB_AUT_Site2_Screen02",
                                                    "DATAHUB_AUT_Site2_Active02",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "COMPLETED",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "INPROGRESS",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Started",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "candidate",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "27",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N  "
                                                ]
                                            ]
                                        }
                                    },
                                    "QueryDataSetEmptyReport":{
                                        "description":"QueryDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "QUERY_ID",
                                                "QUERY_WID",
                                                "STATE_ID",
                                                "STATE",
                                                "QUERY_COMMENT",
                                                "RULE_ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "DISCREPANCY_ID",
                                                "HAS_QUERY",
                                                "IS_CURRENT",
                                                "PROPERTY_NAME",
                                                "PROPERTY_TYPE",
                                                "ASSIGNED_ROLES",
                                                "QUERYAGE",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "FORM_REFNAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "FORM_SECTION_ID",
                                                "FORM_STATUS",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "IS_AUTO_QUERY",
                                                "QUERY_TYPE",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "DATA_ELEMENT_VERSION_START",
                                                "EHR_IMPORTED",
                                                "EHR_ENABLED"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-queries-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-queries-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"V8.0",
                "description":"<p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>WITHDRAWAL_REASON</code>, <code>WITHDRAWAL_COMMENT</code>, <code>SCREEN_FAILURE_DATE</code>, <code>SCREEN_FAILURE_COMMENT</code>, and <code>RESCREEN_INSTANCE_NUM</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectDataset_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "SCREENING_NUMBER",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "FAX",
                                            "EMAIL",
                                            "PHONE",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_PHONE",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "EHR_ENABLED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_LINK_STATUS",
                                            "WITHDRAWAL_DATE",
                                            "STUDY_COMPLETION_DATE",
                                            "WITHDRAWAL_REASON",
                                            "WITHDRAWAL_COMMENT",
                                            "REASON",
                                            "COMMENT",
                                            "SCREEN_FAILURE_DATE",
                                            "SCREEN_FAILURE_COMMENT",
                                            "SCREENING_FAILURE",
                                            "RESCREEN_INSTANCE_NUM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>RESCREEN_INSTANCE_NUM</code></td><td>NUMBER</td><td>Instance number of the re-screening event for the subject. If this is the second time a subject is re-screened, the instance number would be 2.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STUDY_COMPLETION_DATE</code></td><td>DATE</td><td>Date in which the subject completed the study.</td></tr>\n    <tr><td><code>WITHDRAWAL_DATE</code></td><td>DATE</td><td>Date in which the subject got withdrawn from the study.</td></tr>\n    <tr><td><code>SCREEN_FAILURE_DATE</code></td><td>DATE</td><td>Date in which the subject failed screening.</td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREEN_FAILURE_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment added by the site user for a subject's screen failure event.</td></tr>\n    <tr><td><code>WITHDRAWAL_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Reason provided for a subject's withdrawal from study.</td></tr>\n    <tr><td><code>WITHDRAWAL_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment added by the site user for the subject's withdrawal event.</td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>EHR_LINK_STATUS</code></td><td>CHAR(1)</td><td>Displays <code>Yes</code> or <code>No</code>, indicating if a subject is currently linked for Electronic Health Record (EHR) data import. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE",
                                                "WITHDRAWAL_REASON",
                                                "WITHDRAWAL_COMMENT",
                                                "REASON",
                                                "COMMENT",
                                                "SCREEN_FAILURE_DATE",
                                                "SCREEN_FAILURE_COMMENT",
                                                "SCREENING_FAILURE",
                                                "RESCREEN_INSTANCE_NUM"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "N",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "",
                                                    "N",
                                                    "0"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE",
                                                "WITHDRAWAL_REASON",
                                                "WITHDRAWAL_COMMENT",
                                                "REASON",
                                                "COMMENT",
                                                "SCREEN_FAILURE_DATE",
                                                "SCREEN_FAILURE_COMMENT",
                                                "SCREENING_FAILURE",
                                                "RESCREEN_INSTANCE_NUM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Indicates if the item has an associated query. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the current status of the subject in the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_12",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCHEDULED_FROM_EVENT_REFNAME</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveBlindedSubjectDataSetQuery_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, SCREENINGVISIT is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v8.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>ORDER_TYPE</code> and <code>FORCED_RAND</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "SCREENING_NUMBER",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "ORDER_TYPE",
                                            "FORCED_RAND",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>FORCED_RAND</code></td><td>CHAR(1)</td><td><p>Indicates whether the subject underwent forced randomization. This helps track how many times forced randomization has been used over the course of the study. This scenario can occur due to a lack of kits for at least one treatment arm in the study at the time of randomization. For this data element, the following values can be displayed:</p><ul><li><code>Y</code>: Indicates that a subject underwent forced randomization.</li><li><code>N</code>: Indicates that a subject was randomized normally.</li><li><code>NULL</code>: Indicates that a subject has not yet been randomized.</li></ul></td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>ORDER_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates how a shipment was initiated: <code>INITIAL</code>; <code>MANUAL</code>; <code>RESUPPLY</code></td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates if the kit is non serialized: <code>Y</code> (<code>Yes</code>) the kit is non-serialized. <code>N</code> (<code>No</code>) the kit is serialized.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "WEEK2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "1",
                                                    "N",
                                                    "Outbound",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v8.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v8.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/dataCollection":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get study design dataset"
                ],
                "summary":"V9.0",
                "description":"<p>Retrieves the study-permissioned Study Design dataset for a single study and mode.</p><p>The dataset exposes versioned study design configuration, including branches, visits, scheduled-from relationships, forms, item groups, items, value and codelist settings, display and validation properties, and design audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows for design elements at branch, event, form, and item granularity for the study versions available in the selected mode.</p><p>This version additionally includes the following data points: <code>SDV_VISIT_START</code>, <code>CODELIST_LINK_TYPE</code>, and <code>CODELIST_LANG</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">DataCollectionDesignDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>STUDY_VERSION</code>, <code>BRANCH_ID</code>, <code>EVENT_ID</code>, <code>FORM_ID</code>, <code>ITEM_ID</code>, and <code>SCHEDULED_FROM_EVENT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveQueryDataSet_27",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "DataCollectionDataSetQuery":{
                                    "description":"DataCollectionDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "STUDY_VERSION",
                                            "STUDY_DESIGN_STATUS",
                                            "IS_APPROVED",
                                            "REASON_FOR_REVISION",
                                            "VERSION_TITLE",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "VISIT_ORDER",
                                            "EARLIEST_VISIT_TO_COMPLETE",
                                            "FORM_ORDER",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "ALERT_OUTSIDE_VISIT_WINDOW",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_HOUR_SEQ_ORDER",
                                            "VISIT_CREATION_ORDER",
                                            "BRANCH_WID",
                                            "BRANCH_TITLE",
                                            "BRANCH_REFNAME",
                                            "BRANCH_ID",
                                            "IS_CYCLE_BRANCH",
                                            "CYCLE_COUNT",
                                            "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                            "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                            "BRANCH_ARM",
                                            "BRANCH_FORM",
                                            "BRANCH_QUESTION",
                                            "BRANCH_ANSWER",
                                            "BRANCH_VISIT",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_TYPE",
                                            "FORM_IS_REPEATING",
                                            "ALLOW_ADDITIONAL_ROWS",
                                            "SOURCE_DATAVIEW_WID",
                                            "SOURCE_DATAVIEW_NAME",
                                            "SOURCE_STUDY_WID",
                                            "SOURCE_STUDY_NAME",
                                            "SOURCE_STUDY_VERSION",
                                            "SOURCE_VERSION_START",
                                            "RULE_COPY_STATUS",
                                            "ALLOW_MULTIPLE_INSTANCES",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_ORDER",
                                            "ITEM_GROUP_ORDER",
                                            "ITEM_NAME",
                                            "MEASURE_UNIT",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "FORMITEM_IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "REFERENCE_CODE",
                                            "ITEM_GROUP_ID",
                                            "ITEM_GROUP",
                                            "GROUP_TYPE",
                                            "HIDDEN",
                                            "VALIDATION_RULES",
                                            "RULE_ERROR",
                                            "ACTION_RULES",
                                            "CODE_QUESTION",
                                            "SDV",
                                            "FORM_IS_ROLLOVER",
                                            "FORMAT",
                                            "ITEM_DATE_PARTIAL_REQUIRED",
                                            "ITEM_VALUES",
                                            "CODELIST_VALUES",
                                            "ALLOW_FUTURE_DATE",
                                            "DATA_CLASSIFICATION",
                                            "DATA_TYPE",
                                            "APPLY_CHANGE_VERSION",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "DH_TIMESTAMP",
                                            "MODIFIED_BY",
                                            "MODIFIED_BY_ID",
                                            "MODIFIED_BY_WID",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_MAPPING",
                                            "OCC_ENABLED",
                                            "REQ_SCREENING",
                                            "REQ_RANDOMIZE",
                                            "REQ_DISPENSE",
                                            "SAFETY_INTEGRATION_ENABLED",
                                            "SDV_VISIT_START",
                                            "CODELIST_LINK_TYPE",
                                            "CODELIST_LANG"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"STUDY_VERSION",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"BRANCH_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SCHEDULED_FROM_EVENT_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#branch-context\">Branch context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>VERSION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the title of the study version.</p><p>If a value has not been specified for this element, its value displays as <code>NULL</code>.</p></td></tr>\n    <tr><td><code>STUDY_DESIGN_STATUS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the study design version status associated with the dataset row. Possible values include <code>DRAFT</code>, <code>TESTING</code>, <code>APPROVED</code>, <code>ARCHIVED</code>, or <code>OLDDRAFT</code>.</td></tr>\n    <tr><td><code>IS_APPROVED</code></td><td>CHAR(1)</td><td><p>This element aides in reviewing Archived study versions that may have been in the <code>Active</code> container in the past. It is applicable to all study versions, <code>and is labeled as</code>:</p><ul><li><code>N</code> for any Study Version that was never moved to <code>Active</code> mode.</li><li><code>Y</code> for study versions moved from Test to <code>Active</code>. Also applicable when those versions are subsequently moved to archive.</li></ul></td></tr>\n    <tr><td><code>REASON_FOR_REVISION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the user provided reason for revising the study version. This reason is provided when moving a study version from Test to <code>Active</code> container. If a value has not been specified for this element, its value displays as <code>NULL</code>. Possible values include <code>INITIAL</code>, <code>PROTOCOL_AMENDMENT</code>, <code>REVISION</code>, or <code>VERSION</code>.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n    <tr><td><code>REQ_SCREENING</code></td><td>CHAR(1)</td><td>Indicates if the question is required for screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_RANDOMIZE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for randomization. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REQ_DISPENSE</code></td><td>CHAR(1)</td><td>Indicates if the question is required for dispensation. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>OCC_ENABLED</code></td><td>CHAR(1)</td><td><p>Indicates if a study is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a study or if a study was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SAFETY_INTEGRATION_ENABLED</code></td><td>CHAR(1)</td><td>Indicates if the Clinical One Cloud Service to Safety integration is enabled for the study. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"branch-context\">Branch context</h4>\n<p>Branching and assignment rules that determine subject flow through the study design.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BRANCH_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch title or name.</td></tr>\n    <tr><td><code>BRANCH_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the branch reference name used by the system.</td></tr>\n    <tr><td><code>BRANCH_VISIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies the visit containing the selected form and question that is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_FORM</code></td><td>VARCHAR2(64 CHAR)</td><td>Specifies which form contains the question used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_QUESTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ANSWER</code></td><td>VARCHAR2(4000 CHAR)</td><td>Specifies which exact answer to the selected question is used to assign subjects to the current branch, in case subjects are assigned to the branch by form question.</td></tr>\n    <tr><td><code>BRANCH_ARM</code></td><td>VARCHAR2(32767 CHAR)</td><td>Specifies which treatment arm(s) correspond to the current branch, in case subjects are assigned to the branch by treatment arm.</td></tr>\n    <tr><td><code>IS_CYCLE_BRANCH</code></td><td>CHAR(1)</td><td>States whether the branch is cycled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CYCLE_COUNT</code></td><td>NUMBER</td><td>Specifies the number of cycles in case the branch is cycled.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_FORM_QUESTION</code></td><td>CHAR(1)</td><td>Indicates if subjects get assigned to branch by a form question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ASSIGN_SUBJECT_USING_TREATMENT_ARM</code></td><td>CHAR(1)</td><td>Indicates if subjects are assigned to the branch by Treatment arm. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(32)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td><p>An integer indicating a visit's ordinal position (order) within the visit schedule for the selected study version. These values may change across versions; for example, a visit that is in position 3 in version <code>1.0.0.1</code> may shift to position 4 in a later version if a new visit is inserted at position 3.</p><p><strong>Note:</strong> Ordinal values are study design attributes only and do not reflect a subject's progress through a study or carry clinical significance.</p><p>About draft study versions: <code>VISIT_ORDER</code> values won't appear in the dataset for a draft study version until you either move the draft to the test container or choose Send to Analytics from the draft container menu.</p><p>About visits: The dataset output displays scheduled (non-branch and branch) visits and unscheduled visits in the following manner.</p><ul><li>Scheduled non-branch visits (for example, a screening visit) are listed first, followed by scheduled branch visits, and finally unscheduled visits when the <code>VISIT_ORDER</code> is sorted in ascending order.</li><li>Scheduled branch visits are assigned an ordinal value that reflects their position in a branch. When sorted in ascending order, visits from earlier tiers appear before those in later ones.</li></ul><p><strong>Note:</strong> A tier, the highest level in visit branch design, is used to organize parallel branches, also called arms or cohorts. Each branch consists of a group of visits.</p><p>For instance, a study includes two tiers (Tier1 and Tier2); each consists of two branches (BranchA and BranchB), and each branch contains a set of visits (Day1 and Day15). When sorted in ascending order, they appear as follows in the output.</p><ul><li>Tier1.BranchA.Day1</li><li>Tier1.BranchA.Day15</li><li>Tier1.BranchB.Day1</li><li>Tier1.BranchB.Day15</li><li>Tier2.BranchA.Day1</li><li>Tier2.BranchA.Day15</li><li>Tier2.BranchB.Day1</li><li>Tier2.BranchB.Day15</li></ul><ul><li>Unscheduled visits, which include Withdrawal, Screen Fail, Rescreen, and Study Completion visits, are assigned an ordinal value based on the sequence defined on the Unscheduled Visit or Event sidebar and appear after scheduled branch visits when <code>VISIT_ORDER</code> is sorted in ascending order.</li></ul></td></tr>\n    <tr><td><code>VISIT_CREATION_ORDER</code></td><td>NUMBER</td><td>Indicates the order number the event was created in relation to when the study started.</td></tr>\n    <tr><td><code>VISIT_HOUR_SEQ_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>EARLIEST_VISIT_TO_COMPLETE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>When creating a study completion visit, you can specify an earlier visit that must be completed in order to enable the option for marking the subject as Complete. The reference name of that specified scheduled visit is provided in this field.</p><p>This data element is added for each event. However, it is only specified when the record is for a Subject Completion event, while all other records display as a <code>NULL</code> value.</p></td></tr>\n    <tr><td><code>SDV_VISIT_START</code></td><td>VARCHAR2(12)</td><td><p>This data element captures SDV settings for visit dates with the following possible values:</p><ul><li><code>NULL</code></li><li><code>ALL SUBJECTS</code></li><li><code>TARGETED SDV</code></li></ul> Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>ALERT_OUTSIDE_VISIT_WINDOW</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates if there is any rule set to alert if visit date is out of window. Values can be:</p><ul><li><code>Off</code></li><li><code>Warning</code></li><li><code>Query</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_TYPE</code></td><td>VARCHAR2(14)</td><td><p>Indicates the type of form:</p><ul><li><code>One-section form</code></li><li><code>Two-section form</code></li><li><code>Lab form</code></li></ul></td></tr>\n    <tr><td><code>FORM_ORDER</code></td><td>NUMBER</td><td><p>An integer indicating a form's ordinal position (order) within a visit for the selected study version. These values may change across versions; for example, a form that is in position 3 in version 1.0.0.1 may shift to position 4 in a later version if a new form is inserted at position 3.</p><p><strong>Note:</strong> Ordinal values are positive integers that indicate the sequence of forms in a visit as defined by the study design. They do not indicate if a form was started or completed and do not carry any clinical significance.</p><p>About Advanced Study Versioning (ASV): Duplicate <code>FORM_ORDER</code> values appear in the output when a new form is added using Advanced Study Versioning (ASV) and the dataset is generated for a previous study version. For example, study version 1.0.0.1 includes three forms, and study version 1.0.0.2 introduces a new form (Vitals). The output appears as follows when the dataset is generated for version 1.0.0.1.</p><p>However, if the dataset is generated for version 1.0.0.2, no duplicate values appear and the order is sequentially correct.</p></td></tr>\n    <tr><td><code>FORM_IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates whether the form is repeating. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_MULTIPLE_INSTANCES</code></td><td>NUMBER</td><td>Indicates whether multiple instances of the same form can be added within a visit. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ALLOW_ADDITIONAL_ROWS</code></td><td>CHAR(1)</td><td>Indicates if this is a repeating form or table that allows additional rows to be added. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FORM_IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form is rollover. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SOURCE_STUDY_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the name of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>If it is a copied form, indicates the study version of the study it was copied from.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>If it is a copied form, indicates the original form it was copied from.</td></tr>\n    <tr><td><code>SOURCE_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>If it is a copied form, indicates the date and time of when the copied data was entered.</td></tr>\n    <tr><td><code>RULE_COPY_STATUS</code></td><td>NUMBER</td><td>If it is a copied form, indicates the status of the source form rules copy. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>DATA_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the data format of the collected data.</p><p><strong>Note:</strong> Data type refers to how collected data is stored, which is different from the question type that defines how the question is presented to the site user. Possible values include <code>VARCHAR</code>, <code>NUMBER</code>, or <code>DATE</code>.</p></td></tr>\n    <tr><td><code>FORMAT</code></td><td>VARCHAR2(40 CHAR)</td><td>Specifies the answer format. For example an specific date format, or the number of decimals after the point.</td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>ITEM_GROUP</code></td><td>VARCHAR2(64 CHAR)</td><td>If this is a group question, indicates the group question title.</td></tr>\n    <tr><td><code>ITEM_GROUP_ORDER</code></td><td>NUMBER</td><td><p>Indicates the order of items on two-section forms and in question group type questions.</p><p>For example, a study's design includes a question group labeled Scan <code>1</code> with two questions: Scan Date and Upload Scan. In the design the group is treated as a single question, so in the output, the <code>ITEM_GROUP</code> and <code>ITEM_ORDER</code> are the same for each question in the group, and <code>ITEM_GROUP_ORDER</code> reflects each question's position within the group.</p><p>For any other form or question types, <code>ITEM_GROUP_ORDER</code> is <code>NULL</code>.</p></td></tr>\n    <tr><td><code>ITEM_ORDER</code></td><td>NUMBER</td><td><p>A numeric value indicating the ordinal position (order) of a question on a form for the selected study version.</p><ul><li><strong>Version-specific</strong>: <code>ITEM_ORDER</code> reflects the order as defined in that specific study version. Values may change across study versions. For example, a question that is in position 3 in version <code>1.0.0.1</code> may shift to position 4 in a later version if a new question is inserted at position 3.</li><li><strong>Not always an integer</strong>: In some study versions, <code>ITEM_ORDER</code> may appear as a decimal value (for example, <code>2.001</code> or <code>4.001</code>). This can occur when new items are inserted into an existing form in a particular study version (for example, items inserted after an existing question and associated with ASV). In these cases, the decimal value indicates the position of the inserted item relative to the prior item without renumbering all subsequent items in that version.</li><li><strong>Latest version may be re-sequenced</strong>: When viewing a later or the latest study version, the same form may show a fully re-sequenced order using consecutive integers (for example, <code>1, 2, 3, 4, 5, 6</code>).</li></ul><p>In a later/latest study version, the order may be displayed as consecutive integers (for example): <code>1, 2, 3, 4, 5, 6</code></p><p><strong>Note:</strong> Ordinal values indicate the sequence of questions on forms as defined by the study design for the selected study version. They do not indicate whether a question was answered and do not carry any clinical significance.</p><p>About Age items on forms: When an Age item is added to a form, the system also adds a Date of Birth field and displays them together, making it appear as a single question in the study design. In the study design dataset, however, Age (a calculated item) and Date of Birth are recorded as two distinct items, each on its own row with a unique ordinal value.</p></td></tr>\n    <tr><td><code>GROUP_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates if this is a group question. Possible values include <code>QuestionGroup</code>, <code>section</code>, or <code>table</code>.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>CODE_QUESTION</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>If the question has a Coding Question property, lists the following information:</p><ul><li>Dictionary</li><li>Coding Item Type</li><li>Tag for Central Coding</li></ul></td></tr>\n    <tr><td><code>ITEM_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>The raw value of the form question value (can be an array in questions with decodes).</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p><p>For more details see Form item output mapping in data extracts.</p></td></tr>\n    <tr><td><code>CODELIST_VALUES</code></td><td>VARCHAR2(32767)</td><td><p>Lists the codelist values added as answers to the current question.</p><p><strong>Note:</strong> This value displays as <code>NULL</code> for dynamic codelists, because the form does not contain dynamic codelist values. Only the type (DYNAMIC) of the codelist is visible.</p></td></tr>\n    <tr><td><code>CODELIST_LINK_TYPE</code></td><td>VARCHAR2(20)</td><td><p>Indicates whether choice questions are <code>DYNAMIC</code> or <code>STATIC</code>.</p><p>This value displays as <code>NULL</code> for non-choice questions.</p></td></tr>\n    <tr><td><code>CODELIST_LANG</code></td><td>VARCHAR2(5)</td><td>Indicates the selected language (English, Chinese, Japanese) for the code list values. Possible values include <code>en</code>, <code>zh</code>, or <code>ja</code>.</td></tr>\n    <tr><td><code>FORMITEM_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>READONLY</code></td><td>CHAR(1)</td><td>Indicates that the question is marked as read-only by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ALLOW_FUTURE_DATE</code></td><td>NUMBER(1)</td><td><p>For Date/Time questions.</p><p>Indicates if the user is allowed to enter a future date. Possible values include <code>0</code> or <code>1</code>.</p></td></tr>\n    <tr><td><code>ITEM_DATE_PARTIAL_REQUIRED</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the partial date format allowed when partial date entry is enabled for the question.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>CHAR(1)</td><td>Indicates if a question is hidden, as marked by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DATA_CLASSIFICATION</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Indicates how the data is categorized according to its sensitivity and intended use. Applicable only to hidden items.</p><p>This data element populates with a comma separated list of all the selected data classification groups of a hidden item. Possible values for this element include:</p><ul><li><code>Adjudication data</code></li><li><code>Blinded data</code></li><li><code>PII data</code></li><li><code>Public data</code></li><li><code>Sponsor data</code></li></ul></td></tr>\n    <tr><td><code>EHR_MAPPING</code></td><td>VARCHAR2(32767 CHAR)</td><td>Displays the OCC data dictionary mapping value for a question mapped for Electronic Health Record (EHR) data import.</td></tr>\n    <tr><td><code>VALIDATION_RULES</code></td><td>VARCHAR2(32767)</td><td><p>Specifies the question's validation rule if any. Validation rules types available depend on the type of question:</p><ul><li>Text questions:<ul><li>Doesn't contain</li></ul></li><li>Date/Time and Date of birth questions:<ul><li>After</li><li>On or After</li><li>Before</li><li>On or Before</li><li>On</li><li>Not On</li><li>Not Between</li><li>Range</li></ul></li><li>Number and Age questions:<ul><li>Greater Than</li><li>Greater Than or Equal To</li><li>Less Than</li><li>Less Than or Equal To</li><li>Is</li><li>Not Equal To</li><li>Not Between</li><li>Range</li></ul></li><li>Drop-down and checkboxes questions:<ul><li>Select at Least</li><li>Select at Most</li><li>Select Exactly</li><li>Answer Must Be</li></ul></li><li>Radio Buttons questions:<ul><li>Answer Must Be</li></ul></li></ul></td></tr>\n    <tr><td><code>RULE_ERROR</code></td><td>VARCHAR2(32767)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>ACTION_RULES</code></td><td>VARCHAR2(32767 CHAR)</td><td><p>Details the action rule of a question which can be of the types:</p><ul><li><code>Show Question</code></li><li><code>Show Form</code></li><li><code>Show Visit</code></li><li><code>Link &amp; Show Form</code></li></ul></td></tr>\n    <tr><td><code>APPLY_CHANGE_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the version in which changes to the form item apply.</p><p>This data element refers to the lowest study version in which the change is applied. This means the change is included in all study versions between the <code>APPLY_CHANGE_VERSION</code> and the current study version.</p></td></tr>\n    <tr><td><code>SDV</code></td><td>VARCHAR2(12)</td><td>Specifies if the question has any SDV parameter and if it is of the type SDV for All Subjects or Critical Variables (Targeted SDV). Possible values include <code>ALL SUBJECTS</code>, <code>TARGETED SDV</code>, or <code>NOT DEFINED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>MODIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who last modified the study design record.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event from which the visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the item.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>MODIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who modified the study design record.</td></tr>\n    <tr><td><code>MODIFIED_BY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the user who modified the study.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>BRANCH_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the branch identifier associated with the row.</td></tr>\n    <tr><td><code>BRANCH_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the visit branch.</td></tr>\n    <tr><td><code>SOURCE_DATAVIEW_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source form data view in a reference copy rule.</td></tr>\n    <tr><td><code>SOURCE_STUDY_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the source study in a reference copy rule.</td></tr>\n    <tr><td><code>ITEM_GROUP_ID</code></td><td>NUMBER</td><td>Indicates the item group ID associated with the question.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "DataCollectionDataSetReport":{
                                        "description":"DataCollectionDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "IS_APPROVED",
                                                "REASON_FOR_REVISION",
                                                "VERSION_TITLE",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "VISIT_ORDER",
                                                "EARLIEST_VISIT_TO_COMPLETE",
                                                "FORM_ORDER",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_ORDER",
                                                "ITEM_GROUP_ORDER",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "DATA_CLASSIFICATION",
                                                "DATA_TYPE",
                                                "APPLY_CHANGE_VERSION",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED",
                                                "SDV_VISIT_START",
                                                "CODELIST_LINK_TYPE",
                                                "CODELIST_LANG"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "1.0.0.1",
                                                    "APPROVED",
                                                    "",
                                                    "Study_01",
                                                    "N",
                                                    "57CCABE13C174836A48BCEDD46247AB8",
                                                    "107",
                                                    "Week2",
                                                    "WEEK2",
                                                    "Week2",
                                                    "Y",
                                                    "ScheduleAbleVisit",
                                                    "ONSITE",
                                                    "1",
                                                    "Sponsor Data",
                                                    "7",
                                                    "Y",
                                                    "Week1",
                                                    "3279AFB1AA3C44CFB6D6C419AAAC8A84",
                                                    "WEEK1",
                                                    "202",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "ALERT",
                                                    "21",
                                                    "0",
                                                    "864",
                                                    "5",
                                                    "301",
                                                    "Treatment Arm A",
                                                    "ARM_A",
                                                    "A1B2C3D4E5F6478AB9C0D1E2F3A4B5C6",
                                                    "N",
                                                    "0",
                                                    "Y",
                                                    "N",
                                                    "Arm A",
                                                    "ELIGIBILITY_FORM",
                                                    "Eligible for Arm A?",
                                                    "Yes",
                                                    "Screening",
                                                    "3ADB1375C6714B8C97CA14AFA175D739",
                                                    "73",
                                                    "FORM TO COLLECT MEASUREMENT VITAL SIGNS",
                                                    "VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT",
                                                    "1 SECTION FORM",
                                                    "N",
                                                    "N",
                                                    "-1",
                                                    "N/A",
                                                    "-1",
                                                    "N/A",
                                                    "1.0",
                                                    "2025-01-01T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "8F70423FE2204ED5A3B0B00F363C3306",
                                                    "346",
                                                    "1",
                                                    "TARGETED SDV",
                                                    "Weight",
                                                    "Kilogram",
                                                    "Measurement",
                                                    "Enter weight in kg",
                                                    "Y",
                                                    "N",
                                                    "NUMBER_02",
                                                    "Weight",
                                                    "NUMBER_02",
                                                    "-1",
                                                    "VITALS",
                                                    "FORM",
                                                    "N",
                                                    "value>=0 and value<=300",
                                                    "Weight must be between 0 and 300 kg",
                                                    "OnChange:RecalculateBMI",
                                                    "N/A",
                                                    "REQUIRED",
                                                    "N",
                                                    "1",
                                                    "",
                                                    "",
                                                    "0",
                                                    "2025-10-29T13:03:20.263Z",
                                                    "NUMBER",
                                                    "",
                                                    "3",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "2025-10-29T13:09:36.312Z",
                                                    "testuser1",
                                                    "33D0D74837F6454B836AAB5BA2574D28",
                                                    "9",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "{}",
                                                    "N",
                                                    "Y",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "VERSION",
                                                    "STATIC",
                                                    "en",
                                                    "en"
                                                ]
                                            ]
                                        }
                                    },
                                    "DataCollectionDataSetEmptyReport":{
                                        "description":"DataCollectionDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "STUDY_VERSION",
                                                "STUDY_DESIGN_STATUS",
                                                "IS_APPROVED",
                                                "REASON_FOR_REVISION",
                                                "VERSION_TITLE",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "VISIT_ORDER",
                                                "EARLIEST_VISIT_TO_COMPLETE",
                                                "FORM_ORDER",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "ALERT_OUTSIDE_VISIT_WINDOW",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_HOUR_SEQ_ORDER",
                                                "VISIT_CREATION_ORDER",
                                                "BRANCH_WID",
                                                "BRANCH_TITLE",
                                                "BRANCH_REFNAME",
                                                "BRANCH_ID",
                                                "IS_CYCLE_BRANCH",
                                                "CYCLE_COUNT",
                                                "ASSIGN_SUBJECT_USING_TREATMENT_ARM",
                                                "ASSIGN_SUBJECT_USING_FORM_QUESTION",
                                                "BRANCH_ARM",
                                                "BRANCH_FORM",
                                                "BRANCH_QUESTION",
                                                "BRANCH_ANSWER",
                                                "BRANCH_VISIT",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_TYPE",
                                                "FORM_IS_REPEATING",
                                                "ALLOW_ADDITIONAL_ROWS",
                                                "SOURCE_DATAVIEW_WID",
                                                "SOURCE_DATAVIEW_NAME",
                                                "SOURCE_STUDY_WID",
                                                "SOURCE_STUDY_NAME",
                                                "SOURCE_STUDY_VERSION",
                                                "SOURCE_VERSION_START",
                                                "RULE_COPY_STATUS",
                                                "ALLOW_MULTIPLE_INSTANCES",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_ORDER",
                                                "ITEM_GROUP_ORDER",
                                                "ITEM_NAME",
                                                "MEASURE_UNIT",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "FORMITEM_IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "REFERENCE_CODE",
                                                "ITEM_GROUP_ID",
                                                "ITEM_GROUP",
                                                "GROUP_TYPE",
                                                "HIDDEN",
                                                "VALIDATION_RULES",
                                                "RULE_ERROR",
                                                "ACTION_RULES",
                                                "CODE_QUESTION",
                                                "SDV",
                                                "FORM_IS_ROLLOVER",
                                                "FORMAT",
                                                "ITEM_DATE_PARTIAL_REQUIRED",
                                                "ITEM_VALUES",
                                                "CODELIST_VALUES",
                                                "ALLOW_FUTURE_DATE",
                                                "DATA_CLASSIFICATION",
                                                "DATA_TYPE",
                                                "APPLY_CHANGE_VERSION",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "DH_TIMESTAMP",
                                                "MODIFIED_BY",
                                                "MODIFIED_BY_ID",
                                                "MODIFIED_BY_WID",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_MAPPING",
                                                "OCC_ENABLED",
                                                "REQ_SCREENING",
                                                "REQ_RANDOMIZE",
                                                "REQ_DISPENSE",
                                                "SAFETY_INTEGRATION_ENABLED",
                                                "SDV_VISIT_START",
                                                "CODELIST_LINK_TYPE",
                                                "CODELIST_LANG"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-dataCollection-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-datacollection-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/studies/{studyId}/{mode}/odm/clinicalData/blinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data without hidden data"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract blinded clinical data (excluding hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attributes 'WithdrawalDate' at the subject level if Date of Withdrawal is entered, 'CompletionDate' at the subject level if Date of Completion is entered, 'EHRLinkStatus' at the subject level if the subject is linked to EHR and 'EHRImported' if the data is captured from EHR at the item level transactions. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataBlinded_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-studies-{studyId}-{mode}-odm-clinicalData-blinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-studies-studyid-mode-odm-clinicaldata-blinded-get"
            }
        },
        "/ec-datahub-svc/rest/v9.0/studies/{studyId}/{mode}/odm/clinicalData/unblinded":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for clinical data with hidden data"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p>This API is used to extract unblinded clinical data (including hidden data) in the CDISC ODM-XML format. This extract includes subject, visit, item level, and query transactions. Additionally this version adds new clinical one extension attributes 'WithdrawalDate' at the subject level if Date of Withdrawal is entered, 'CompletionDate' at the subject level if Date of Completion is entered, 'EHRLinkStatus' at the subject level if the subject is linked to EHR and 'EHRImported' if the data is captured from EHR at the item level transactions. Note: If offset and limit parameters are used for pagination, the transactions will be grouped per subject.",
                "operationId":"getClinicalDataUnblinded_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"It accepts 'Snapshot' or 'Transactional' to indicate whether to include in the ODM Extract current data only (Snapshot) or incremental data changes with audit information (Transactional). <br>The default value is Transactional.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract after this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"toTimestamp",
                        "in":"query",
                        "description":"It includes data in the ODM Extract up until this timestamp. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format. FromTimestamp and ToTimestamp parameters are based on the dh_timestamp and not on the Clinical One version start timestamp. dh_timestamp is the time when the transaction/value was loaded into Data Hub warehouse. The dh_timestamp value is used to ensure that all values from the database are displayed in the extract.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"excludeHiddenData",
                        "in":"query",
                        "description":"Indicates whether to exclude or include hidden data from the ODM Extract. The API will only return what the user is authorized to see in either case. This value is used to limit the data returned if the requester has access to all data. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which subject you want to start retrieving clinical data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of subjects, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve subjects in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/ClinicalDataODMExtV1"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            },
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-studies-{studyId}-{mode}-odm-clinicalData-unblinded-get",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-studies-studyid-mode-odm-clinicaldata-unblinded-get"
            }
        },
        "/ec-datahub-svc/rest/v9.0/studies/{studyId}/{mode}/odm/metadata":{
            "get":{
                "tags":[
                    "Data Hub/ODM/ODM extract for meta data"
                ],
                "summary":"V9.0",
                "description":"This API is used to extract meta data in the CDISC ODM-XML format. This version introduces new Clinical One extension attribute 'DataClassification': Specifies the data classifications applied to hidden items and logic change for the attribute 'OrderNumber' of StudyEventRef to maintain the sequence as defined in the Clinical One.",
                "operationId":"getMetadata_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeCOExtensions",
                        "in":"query",
                        "description":"If the value is true, the data extract will include both the CDISC standard elements and Clinical One extension elements in the extract. If the value is false, the extracted data will only consist of the CDISC standard elements. It accepts true or false, or y or n. The default value is true.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"studyVersionSummary",
                        "in":"query",
                        "description":"If the value is true, only summary data is displayed for the study version in the ODM extract. If the value is false, both summary data and complete design data is displayed for the study version in the ODM Extract. It accepts true or false, or y or n. The default value is false.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fromTimestamp",
                        "in":"query",
                        "description":"Extract study versions that were created after this timestamp only in the ODM Extract. It accepts yyyy-MM-dd'T'HH:mm:ss.SSS'Z' date format.",
                        "schema":{
                            "type":"string",
                            "format":"date-time"
                        },
                        "example":"2024-01-01T00:00:00Z"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"The version of the study to extract data from in the ODM Extract.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number that specifies which study version you want to start retrieving meta data from. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"The number of study versions, beginning with the offset, that you want to retrieve. Offset must be provided to use this parameter. For example, if you want to retrieve study versions in multiple batches of 10, you can start with an offset of 0 and limit of 10, then repeat calls to this endpoint and increase the offset value by 10 each time.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyODMExtV9"
                                },
                                "examples":{
                                    "StudyMetadataResponse":{
                                        "description":"StudyMetadataResponse",
                                        "value":"<?xmlversion=\"1.0\"?><ODMxmlns=\"http://www.cdisc.org/ns/odm/v1.3\"xmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"xmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\"Description=\"STUDY01\"FileType=\"Transactional\"FileOID=\"oracle/STUDY01/3E3376C945AC4481B71885A0B9D552B8\"CreationDateTime=\"2025-10-31T06:36:59.384Z\"ODMVersion=\"1.3.2\"Originator=\"system\"SourceSystem=\"Oracle Life Sciences Clinical One\"SourceSystemVersion=\"MetaData API v8.0\"co:studyMode=\"test\"co:includeCOExtensions=\"true\"co:fromTimestamp=\"2024-01-01T00:00:00Z\"co:studyVersion=\"1.0.0.3\"co:studyVersionSummary=\"false\"co:hasMore=\"false\"co:totalResults=\"1\"co:count=\"1\"co:limit=\"1\"co:offset=\"0\"><StudyOID=\"STUDY01\"co:SafetyIntegrationEnabled=\"false\"><GlobalVariables><StudyName>STUDY01</StudyName><StudyDescription>STUDY01</StudyDescription><ProtocolName>STUDY01</ProtocolName></GlobalVariables><BasicDefinitions><MeasurementUnitOID=\"mg\"Name=\"mg\"><Symbol><TranslatedText>mg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Years\"Name=\"Years\"><Symbol><TranslatedText>Years</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"mmHg\"Name=\"mmHg\"><Symbol><TranslatedText>mmHg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"cm\"Name=\"cm\"><Symbol><TranslatedText>cm</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kilogram\"Name=\"Kilogram\"><Symbol><TranslatedText>Kilogram</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"kg\"Name=\"kg\"><Symbol><TranslatedText>kg</TranslatedText></Symbol></MeasurementUnit><MeasurementUnitOID=\"Kg\"Name=\"Kg\"><Symbol><TranslatedText>Kg</TranslatedText></Symbol></MeasurementUnit></BasicDefinitions><MetaDataVersionOID=\"STUDY01v1.0.0.3\"Name=\"STUDY01\"co:StudyWid=\"25\"co:GUID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:VersionStart=\"2025-10-29T14:37:54.638Z\"><Protocol><StudyEventRefStudyEventOID=\"AE_DBB3A65B0A97454DAFEAEDDAB37395A1\"OrderNumber=\"1\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"OrderNumber=\"2\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"OrderNumber=\"3\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week1_3279AFB1AA3C44CFB6D6C419AAAC8A84\"OrderNumber=\"4\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week2_57CCABE13C174836A48BCEDD46247AB8\"OrderNumber=\"5\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week3_449CBE4790CF4F66AB58619C86CA405B\"OrderNumber=\"6\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyCompletion_A165C73526474F698CBC2F8D018FDBB0\"OrderNumber=\"7\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"StudyWithdrawal_AE61AFF53DB4438BA0D83A82278F7128\"OrderNumber=\"8\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"UnscheduleVisit1_4D7113375FD74C37BDACC4B5D5D83002\"OrderNumber=\"9\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week4_8A40FBC9DF6E4D9295F7CB10DB30DCB7\"OrderNumber=\"10\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"Week5_E2F63997717A427881FC32C8E2B25139\"OrderNumber=\"11\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit1_35882BCA293243E78EF8ACFB0195D3D3\"OrderNumber=\"12\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"NCBVisit2_4C4B0355050845FEBAE1DDC0A4FB7104\"OrderNumber=\"13\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit1_664DA4DAEA3A44DABACA22CC40BB9875\"OrderNumber=\"14\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"OrderNumber=\"15\"Mandatory=\"Yes\"></StudyEventRef></Protocol><StudyEventDefOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"Name=\"CBVISIT2\"Repeating=\"No\"Type=\"Scheduled\"Category=\"ScheduleAbleVisit\"co:StudyEventWid=\"248\"co:GUID=\"AD5ACD1ED5E346129C6FABE4FA2E7DBE\"co:VersionStart=\"2025-10-29T14:37:55.423Z\"co:DelayDays=\"4\"co:DelayHours=\"0\"co:DelayWindowBeforeDays=\"2\"co:DelayWindowBeforeHours=\"0\"co:DelayWindowAfterDays=\"2\"co:DelayWindowAfterHours=\"0\"><FormRefFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"OrderNumber=\"1\"Mandatory=\"Yes\"></FormRef><FormRefFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"OrderNumber=\"2\"Mandatory=\"Yes\"></FormRef></StudyEventDef><FormDefOID=\"DECISION_FORM_FOR_BRANCH_026521949ED24C69B0A82084832A3262\"Name=\"DecisionFrom For Branch\"Repeating=\"No\"><ItemGroupRefOrderNumber=\"1\"Mandatory=\"No\"ItemGroupOID=\"IG_DATE_TIME_6ED56EC23ADD4841B8AC22ECB6205774\"></ItemGroupRef><ItemGroupRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemGroupOID=\"IG_ENABLE_DYNAMIC_VISIT_18936986318C4B00AAF89CDA492E6876\"></ItemGroupRef></FormDef><ItemGroupDefOID=\"IG_LAB_FORM_XRAY_E98F15D6F16F425A8F0EC3B92C8B718F\"Name=\"Lab Form - XRAY\"Repeating=\"Yes\"><ItemRefOrderNumber=\"1\"Mandatory=\"No\"ItemOID=\"LB_TEST_0267AEECE55441088516DA2C0E1B2EDC\"></ItemRef><ItemRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemOID=\"LB_RESULT_DE498EE22C884D55A50D285580AB674D\"></ItemRef><ItemRefOrderNumber=\"3\"Mandatory=\"No\"ItemOID=\"LB_UNIT_00C6D2BF3F8B4178AAB25EBD3304E39E\"></ItemRef><ItemRefOrderNumber=\"4\"Mandatory=\"No\"ItemOID=\"LB_LOW_RANGE_C8B8EEFE75F543299542C222ED94C28F\"></ItemRef><ItemRefOrderNumber=\"5\"Mandatory=\"No\"ItemOID=\"LB_HIGH_RANGE_5CE74A4A9E97435B933B6C28645342AA\"></ItemRef><ItemRefOrderNumber=\"6\"Mandatory=\"No\"ItemOID=\"NORMAL_TEXT_RESULT_746B6577A50C4D0A9DB53E1CD6B60551\"></ItemRef></ItemGroupDef><ItemDefOID=\"ENABLE_DYNAMIC_VISIT_74D371375BF1410A9D056EA0485DFF8C\"Name=\"ENABLE_DYNAMIC_VISIT\"DataType=\"string\"co:ItemWid=\"890\"co:GUID=\"74D371375BF1410A9D056EA0485DFF8C\"co:ItemVersionStart=\"2025-10-29T14:37:54.872Z\"co:Precision=\"1\"co:AllowFutureDate=\"No\"co:DataClassification=\"Sponsor Data\"><Question><TranslatedText>EnableDynamicVisit?</TranslatedText></Question><CodeListRefCodeListOID=\"ENABLE_DYNAMIC_VISIT_ENABLE_DYNAMIC_VISIT_20CA635B53BC48099D2C5CDF3DBFD60C\"></CodeListRef></ItemDef><CodeListOID=\"FlagType\"Name=\"FlagType\"DataType=\"text\"><CodeListItemCodedValue=\"Association\"co:SelectionOID=\"FlagType.Association\"><Decode><TranslatedText>Association</TranslatedText></Decode></CodeListItem></CodeList></MetaDataVersion></Study></ODM>"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Missing / invalid data'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "ErrorResponseExample":{
                                        "description":"ErrorResponseExample",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_START_TIME",
                                                "errorMessage":"Invalid fromTimestamp in the request url"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v9.0-studies-{studyId}-{mode}-odm-metadata-get",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-studies-studyid-mode-odm-metadata-get"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/blindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get blinded visit details"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Blinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes blinded subject visit history, including site, subject, visit scheduling and status, transfer context, form completion counts, and audit columns, without exposing unblinded treatment assignment details.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>EHR_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">BlindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBERS</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getBlindedSubjectDataset_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "BlindedSubjectEventDataSetQuery":{
                                    "description":"BlindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "RAND_NUMBER",
                                            "KIT_NUMBERS",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"KIT_NUMBERS",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country reference data associated with the site's primary country for the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>The number currently assigned to the subject in the system as identifier.</td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Oracle Clinical One Platform.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Oracle Clinical One Platform user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul></td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the event type as specified by the study designer when they created the event. Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own refname. For example, SCREENINGVISIT is displayed for the Screening Visit, as it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li><li><code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><ul><li><code>N</code> (<code>No</code>) indicates that a standard visit has been started.</li><li><code>Y</code> (<code>Yes</code>) indicates that a standard (expected) visit has not been started.</li></ul><p>Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit and randomization attributes associated with the blinded subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBERS</code></td><td>VARCHAR2(32767 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>VARCHAR2(40)</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Derived counts summarizing related form activity for the subject visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment recorded for the visit row change. It can come from reason-for-change entry or from system processing.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail number that increments when the underlying visit row is updated.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "BlindedSubjectEventDataSetReport":{
                                        "description":"BlindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                                [
                                                    "F99CCCACADCB4FF087D12EE943689BCA",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.2",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Tester2",
                                                    "United States",
                                                    "1",
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T13:31:11.372Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Visit completed",
                                                    "Auto-update on form submission",
                                                    "Y",
                                                    "2025-10-29T13:33:22.326Z",
                                                    "1",
                                                    "1",
                                                    "Screening_Initiated",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "10004567",
                                                    "KIT-000123",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "BlindedSubjectEventDataSetEmptyReport":{
                                        "description":"BlindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "RAND_NUMBER",
                                                "KIT_NUMBERS",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-blindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-subjects-blindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"V9.0",
                "description":"<p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>ENROLLMENT_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectDataset_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "ENROLLMENT_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "SCREENING_NUMBER",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "FAX",
                                            "EMAIL",
                                            "PHONE",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SHIPPING_PHONE",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "EHR_ENABLED",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "EHR_LINK_STATUS",
                                            "WITHDRAWAL_DATE",
                                            "STUDY_COMPLETION_DATE",
                                            "WITHDRAWAL_REASON",
                                            "WITHDRAWAL_COMMENT",
                                            "REASON",
                                            "COMMENT",
                                            "SCREEN_FAILURE_DATE",
                                            "SCREEN_FAILURE_COMMENT",
                                            "SCREENING_FAILURE",
                                            "RESCREEN_INSTANCE_NUM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td><p>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import.</p><p><code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>RESCREEN_INSTANCE_NUM</code></td><td>NUMBER</td><td>Instance number of the re-screening event for the subject. If this is the second time a subject is re-screened, the instance number would be 2.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_DATE</code></td><td>DATE</td><td>Indicates the date on which the subject was enrolled in the study.</td></tr>\n    <tr><td><code>STUDY_COMPLETION_DATE</code></td><td>DATE</td><td>Date in which the subject completed the study.</td></tr>\n    <tr><td><code>WITHDRAWAL_DATE</code></td><td>DATE</td><td>Date in which the subject got withdrawn from the study.</td></tr>\n    <tr><td><code>SCREEN_FAILURE_DATE</code></td><td>DATE</td><td>Date in which the subject failed screening.</td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREEN_FAILURE_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment added by the site user for a subject's screen failure event.</td></tr>\n    <tr><td><code>WITHDRAWAL_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Reason provided for a subject's withdrawal from study.</td></tr>\n    <tr><td><code>WITHDRAWAL_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment added by the site user for the subject's withdrawal event.</td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>EHR_LINK_STATUS</code></td><td>CHAR(1)</td><td>Displays <code>Yes</code> or <code>No</code>, indicating if a subject is currently linked for Electronic Health Record (EHR) data import. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "ENROLLMENT_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE",
                                                "WITHDRAWAL_REASON",
                                                "WITHDRAWAL_COMMENT",
                                                "REASON",
                                                "COMMENT",
                                                "SCREEN_FAILURE_DATE",
                                                "SCREEN_FAILURE_COMMENT",
                                                "SCREENING_FAILURE",
                                                "RESCREEN_INSTANCE_NUM"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "2025-10-22T09:30:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "343",
                                                    "test@abc.com",
                                                    "1234567891",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "N",
                                                    "D6F3EDE882AE4422AE3D8687E1CC9E14",
                                                    "20",
                                                    "Study Designer (template)",
                                                    "N",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "",
                                                    "N",
                                                    "0"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "ENROLLMENT_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "SCREENING_NUMBER",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "FAX",
                                                "EMAIL",
                                                "PHONE",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SHIPPING_PHONE",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "EHR_ENABLED",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "EHR_LINK_STATUS",
                                                "WITHDRAWAL_DATE",
                                                "STUDY_COMPLETION_DATE",
                                                "WITHDRAWAL_REASON",
                                                "WITHDRAWAL_COMMENT",
                                                "REASON",
                                                "COMMENT",
                                                "SCREEN_FAILURE_DATE",
                                                "SCREEN_FAILURE_COMMENT",
                                                "SCREENING_FAILURE",
                                                "RESCREEN_INSTANCE_NUM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/formItems":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject form items data details"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Form Items dataset for a single study and mode.</p><p>The dataset exposes subject form-item transaction history, including captured values, typed/normalized value variants, validation state, item metadata, form and visit context, subject context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns item-level history rows as subject data is created, modified, removed, or otherwise updated over time.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormItemsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, <code>OUTER_REPEAT</code>, and <code>ITEM_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormItemsDataset_12",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormItemsDataSetQuery":{
                                    "description":"SubjectFormItemsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "DH_SUBJECT_FORMITEMS_ID",
                                            "SUBJECT_EVENTINST_FORMITEM_WID",
                                            "TRANSACTION_START",
                                            "TRANSACTION_END",
                                            "VALIDATION_STATUS",
                                            "VALIDATION_FAILURE",
                                            "VARIABLE_ID",
                                            "ORIGINATOR_ID",
                                            "VENDOR_CODE",
                                            "VALUE",
                                            "MEASURE_UNIT",
                                            "NORMALIZED_VALUE",
                                            "NORMALIZED_UNIT_ID",
                                            "NUM_VALUE",
                                            "FLOAT_VALUE",
                                            "UTC_DATETIME_VALUE",
                                            "MONTH_VALUE",
                                            "DAY_VALUE",
                                            "YEAR_VALUE",
                                            "HOUR_VALUE",
                                            "MINUTE_VALUE",
                                            "SECOND_VALUE",
                                            "PARENT_ID",
                                            "PARENT_WID",
                                            "PARENT_NAME",
                                            "ROOT_ID",
                                            "ROOT_WID",
                                            "ROOT_NAME",
                                            "DATA_FLAG",
                                            "ITEM_D",
                                            "ITEM_R",
                                            "ITEM_F",
                                            "ITEM_TYPE",
                                            "PROPERTY_ID",
                                            "PROPERTY_VERSION_START",
                                            "QUESTION_TYPE",
                                            "QUESTION_HINT",
                                            "IS_REQUIRED",
                                            "READONLY",
                                            "SAS_VARIABLE",
                                            "SAS_LABEL",
                                            "IS_ROLLOVER",
                                            "IS_REPEATING",
                                            "REFERENCE_CODE",
                                            "HIDDEN",
                                            "ITEM_ID",
                                            "ITEM_WID",
                                            "ITEM_NAME",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_STATUS",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "INVESTIGATOR",
                                            "LAB_ID",
                                            "LAB_NAME",
                                            "HAS_QUERY",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_ITEM"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"ITEM_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#form-item-value-context\">Form item value context</a> | <a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#item-context\">Item context</a> | <a href=\"#required-context\">Required context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"form-item-value-context\">Form item value context</h4>\n<p>Collected form-item values and normalized representations associated with the subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VALUE</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value of the form question value (can be an array in questions with decodes). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>NORMALIZED_VALUE</code></td><td>VARCHAR2(100 CHAR)</td><td>Currently not populated.</td></tr>\n    <tr><td><code>NUM_VALUE</code></td><td>NUMBER</td><td>If the question type is a calculation, measurement, or number, this field is populated with that number.</td></tr>\n    <tr><td><code>FLOAT_VALUE</code></td><td>NUMBER</td><td>Item value without decimal places, if precision is provided in the study design.</td></tr>\n    <tr><td><code>UTC_DATETIME_VALUE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time in UTC for a Date/Time type of question.</td></tr>\n    <tr><td><code>ITEM_D</code></td><td>VARCHAR2(4000 CHAR)</td><td>Decoded raw value, with additional considerations according to data type. If the question has a code value, it is populated in this field. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_R</code></td><td>VARCHAR2(4000 CHAR)</td><td>The raw value: alphanumeric value as entered in Clinical One Cloud Service with no conversions. This includes data entry flags. For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>ITEM_F</code></td><td>VARCHAR2(4000 CHAR)</td><td>The formatted value: value as entered in Clinical One Cloud Service converted to the question data type as per form design. Values from text questions are formatted to remove all non-printable characters (such as tabs, carriage returns, newline characters, and leading or trailing white spaces). For more details see Form item output mapping in data extracts.</td></tr>\n    <tr><td><code>YEAR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the year value (i.e. 2021).</td></tr>\n    <tr><td><code>MONTH_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the numeric month value (1-12).</td></tr>\n    <tr><td><code>DAY_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the day value (1-31).</td></tr>\n    <tr><td><code>HOUR_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the hour value (<code>0</code>-23).</td></tr>\n    <tr><td><code>MINUTE_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the minute value (<code>0</code>-59).</td></tr>\n    <tr><td><code>SECOND_VALUE</code></td><td>NUMBER</td><td>If the question type is Date/Time, this field is populated with the second value (0-59).</td></tr>\n    <tr><td><code>VALIDATION_STATUS</code></td><td>VARCHAR2(25 CHAR)</td><td>Indicates if a form item passed validation. For example, if the question was entered correctly and a rule was not broken.</td></tr>\n    <tr><td><code>VALIDATION_FAILURE</code></td><td>VARCHAR2(4000 CHAR)</td><td>Reason for failure if validation status is failed or the rule validation failed.</td></tr>\n    <tr><td><code>DATA_FLAG</code></td><td>RAW(16 BYTE)</td><td>Data-entry flag that supplements the raw item value (for example NA, ND, or UNK).</td></tr>\n    <tr><td><code>VENDOR_CODE</code></td><td>VARCHAR2(100 CHAR)</td><td>Vendor-supplied code associated with the data element, when provided.</td></tr>\n    <tr><td><code>TRANSACTION_START</code></td><td>DATE</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n    <tr><td><code>TRANSACTION_END</code></td><td>DATE</td><td>Date/time at which the transaction completed processing.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORMITEM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form item record.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-specific site address fields exposed separately for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name.</p><p>Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(400)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of visit:</p><ul><li><code>Screening</code></li><li><code>Randomization</code></li><li><code>Dispensation</code></li><li><code>Non-Dispensation</code></li><li><code>Optional</code></li><li><code>Withdrawal</code></li><li><code>Study Completion</code></li></ul> Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(4)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>CHAR(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"item-context\">Item context</h4>\n<p>Question-level configuration and collected item attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ITEM_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the title of the question, as entered by a study designer.</td></tr>\n    <tr><td><code>ITEM_TYPE</code></td><td>VARCHAR2(255 CHAR)</td><td>The form item's question type.</td></tr>\n    <tr><td><code>QUESTION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates the type of question as defined by a study designer. For example:</p><ul><li><code>Text</code></li><li><code>Number</code></li><li><code>Age</code></li><li><code>Date/time</code></li><li><code>Drop-down</code></li><li><code>Radio buttons</code></li><li><code>Checkboxes</code></li></ul></td></tr>\n    <tr><td><code>QUESTION_HINT</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates information that a study designer provided as a hint to help answer a question.</td></tr>\n    <tr><td><code>MEASURE_UNIT</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the measure of unit specified by a study designer for a Number type of question.</td></tr>\n    <tr><td><code>SAS_VARIABLE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the SAS Variable of a form defined by a study designer.</td></tr>\n    <tr><td><code>SAS_LABEL</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the SAS Label of a form defined by a study designer. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>REFERENCE_CODE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a question's reference code.</td></tr>\n    <tr><td><code>LAB_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the associated lab name, when the item is part of a lab form.</td></tr>\n    <tr><td><code>READONLY</code></td><td>NUMBER(1)</td><td>Indicates that the question is marked as read-only by a study designer.</td></tr>\n    <tr><td><code>HIDDEN</code></td><td>NUMBER(1)</td><td>Indicates if a question is hidden, as marked by a study designer.</td></tr>\n    <tr><td><code>HAS_QUERY</code></td><td>CHAR(1)</td><td>Indicates if there is a query raised against a question, irrespective of the status. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a question is frozen by a data manager or CRA.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the question's verification status.</p><p>Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul><p><strong>Note:</strong> <code>VERIFY_REQUIRED</code> and <code>NOT_APPLICABLE</code> are not currently supported statuses in Oracle Clinical One Analytics. Possible values include <code>Y</code> or <code>N</code>.</p></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the item.</td></tr>\n    <tr><td><code>IS_MISSING_ITEM</code></td><td>CHAR(1)</td><td>Flags rows that describe a missing question or item value.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"required-context\">Required context</h4>\n<p>Question-level and visit-level requiredness indicators associated with the expected item and visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(4)</td><td>Indicates if a visit is required. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>NUMBER</td><td>Indicates if the question is required. Required questions must be answered in order to save the form that contains it. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Comment entered for changing the value.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>PARENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the numeric representation of the item value.</td></tr>\n    <tr><td><code>PARENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the parent record.</td></tr>\n    <tr><td><code>ROOT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the root-level grouping containing this item.</td></tr>\n    <tr><td><code>ROOT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the root record.</td></tr>\n    <tr><td><code>ITEM_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the question type as specified by the study designer.</td></tr>\n    <tr><td><code>ITEM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the item.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the current status of the subject in the study.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>PARENT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the parent data element or section.</td></tr>\n    <tr><td><code>ROOT_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Display name of the root-level grouping for this data point.</td></tr>\n    <tr><td><code>PROPERTY_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the row position of the item.</td></tr>\n    <tr><td><code>PROPERTY_VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Timestamp that marks when the property version became valid.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>DH_SUBJECT_FORMITEMS_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the number of times the form has been repeated.</td></tr>\n    <tr><td><code>VARIABLE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the validation status of the item value.</td></tr>\n    <tr><td><code>ORIGINATOR_ID</code></td><td>RAW(16 BYTE)</td><td>UUID of the system or user that initiated the transaction.</td></tr>\n    <tr><td><code>NORMALIZED_UNIT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the item value collected for the subject.</td></tr>\n    <tr><td><code>LAB_ID</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the associated lab ID, when the item is part of a lab form.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormItemsDataSetReport":{
                                        "description":"SubjectFormItemsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "9F7B4E2D1C0A4781B2C3D4E5F6071829",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "339F9E014F5140048D66DA85143CDF2C",
                                                    "176",
                                                    "2025-10-29T14:59:00.000Z",
                                                    "2025-10-29T15:00:00.000Z",
                                                    "SUCCESS",
                                                    "None",
                                                    "7C2FA1D0E3B44803B6C5A4F29E8D7C61",
                                                    "1A2B3C4D5E6F708192A3B4C5D6E7F809",
                                                    "ABC",
                                                    "ABC",
                                                    "Kilogram",
                                                    "8E6F5D4C3B2A1900FEEDCBA987654321",
                                                    "5C6D7E8F4091A2B3C4D5E6F708193A4B",
                                                    "0",
                                                    "1.5555",
                                                    "10",
                                                    "29",
                                                    "2025",
                                                    "15",
                                                    "0",
                                                    "0",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "3A4B5C6D7E8F4091A2B3C4D5E6F70819",
                                                    "45",
                                                    "-1",
                                                    "4B5C6D7E8F4091A2B3C4D5E6F708193A",
                                                    "46",
                                                    "5F6E7D8C9B0A4E31A2B3C4D5E6F71829",
                                                    "DE9626CE70F77849E053D79B4C6409C0",
                                                    "ABC",
                                                    "TEXT",
                                                    "TEXT",
                                                    "2F1E3D4C5B6A79808796A5B4C3D2E1F9",
                                                    "447DF571D4ED49DFA779A04941C4B191",
                                                    "2026-01-25T20:02:00.614Z",
                                                    "Enter subject initials",
                                                    "1",
                                                    "0",
                                                    "0",
                                                    "Subject Initials",
                                                    "N",
                                                    "N",
                                                    "SUBJECT_INITIALS",
                                                    "0",
                                                    "0",
                                                    "1305395A4A9E48239BFBD00542E1664B",
                                                    "23",
                                                    "2025-10-29T15:03:37.389Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "0000000000000000000000000000000A",
                                                    "32",
                                                    "1",
                                                    "8",
                                                    "8",
                                                    "Captured during screening",
                                                    "Y",
                                                    "2025-10-29T15:11:33.098Z",
                                                    "2026-04-29T11:37:07.588Z",
                                                    "14",
                                                    "EE39008E187C4F10817CEF4C27EB1BCA",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "D63FC00C7C5A4A1CA1A65B5638AEFA9D",
                                                    "10",
                                                    "SCREENINGFORM",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-09-24T00:00:00.000Z",
                                                    "2025-09-29T00:00:00.000Z",
                                                    "2025-09-26T00:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "137",
                                                    "0",
                                                    "66",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "1234567891",
                                                    "343",
                                                    "560068",
                                                    "test@abc.com",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "N",
                                                    "1.0.0.3",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "Tester2",
                                                    "N",
                                                    "LAB01",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "7E8E9AD3EB4544CA91B6BC9E20777FBD",
                                                    "N",
                                                    "N",
                                                    "Manual Entry"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormItemsDataSetEmptyReport":{
                                        "description":"SubjectFormItemsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "DH_SUBJECT_FORMITEMS_ID",
                                                "SUBJECT_EVENTINST_FORMITEM_WID",
                                                "TRANSACTION_START",
                                                "TRANSACTION_END",
                                                "VALIDATION_STATUS",
                                                "VALIDATION_FAILURE",
                                                "VARIABLE_ID",
                                                "ORIGINATOR_ID",
                                                "VENDOR_CODE",
                                                "VALUE",
                                                "MEASURE_UNIT",
                                                "NORMALIZED_VALUE",
                                                "NORMALIZED_UNIT_ID",
                                                "NUM_VALUE",
                                                "FLOAT_VALUE",
                                                "UTC_DATETIME_VALUE",
                                                "MONTH_VALUE",
                                                "DAY_VALUE",
                                                "YEAR_VALUE",
                                                "HOUR_VALUE",
                                                "MINUTE_VALUE",
                                                "SECOND_VALUE",
                                                "PARENT_ID",
                                                "PARENT_WID",
                                                "PARENT_NAME",
                                                "ROOT_ID",
                                                "ROOT_WID",
                                                "ROOT_NAME",
                                                "DATA_FLAG",
                                                "ITEM_D",
                                                "ITEM_R",
                                                "ITEM_F",
                                                "ITEM_TYPE",
                                                "PROPERTY_ID",
                                                "PROPERTY_VERSION_START",
                                                "QUESTION_TYPE",
                                                "QUESTION_HINT",
                                                "IS_REQUIRED",
                                                "READONLY",
                                                "SAS_VARIABLE",
                                                "SAS_LABEL",
                                                "IS_ROLLOVER",
                                                "IS_REPEATING",
                                                "REFERENCE_CODE",
                                                "HIDDEN",
                                                "ITEM_ID",
                                                "ITEM_WID",
                                                "ITEM_NAME",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_STATUS",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "INVESTIGATOR",
                                                "LAB_ID",
                                                "LAB_NAME",
                                                "HAS_QUERY",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_ITEM"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-formItems-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-subjects-formitems-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/forms":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject forms data details"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject Forms dataset for a single study and mode.</p><p>The dataset exposes versioned subject form status history, including form repetition and rollover settings, entered-versus-total item counts, visit context, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-form rows for form instances captured across visits in the selected study and mode.</p><p>This version additionally includes the following data points: <code>EHR_ENABLED</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectFormDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, <code>FORM_ID</code>, <code>INNER_REPEAT</code>, and <code>OUTER_REPEAT</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getSubjectFormsDataset_13",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectFormsDataSetQuery":{
                                    "description":"SubjectFormsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_INSTANCE_NUM",
                                            "SUBJECT_EVENTINST_FORM_WID",
                                            "FORM_ID",
                                            "FORM_WID",
                                            "FORM_NAME",
                                            "FORM_REFNAME",
                                            "FORM_SECTION_ID",
                                            "REPEAT_SEQUENCE_NUMBER",
                                            "REPEAT_FORM_NUMBER",
                                            "OUTER_REPEAT",
                                            "INNER_REPEAT",
                                            "FORM_STATUS",
                                            "IS_REPEATING",
                                            "IS_ROLLOVER",
                                            "TOTAL_ITEMS",
                                            "ENTERED_ITEMS",
                                            "COUNTRY_WID",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "IS_CURRENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "DH_TIMESTAMP",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "EHR_ENABLED",
                                            "SUBJECT_EVENT_INST_ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "SUBJECT_STATE",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_ORDER",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ASSOCIATED_EVENT_ID",
                                            "ASSOCIATED_EVENT_WID",
                                            "ASSOCIATED_EVENT_NAME",
                                            "ASSOCIATED_EVENT_INSTANCE_NUM",
                                            "ASSOCIATED_FORM_ID",
                                            "ASSOCIATED_FORM_WID",
                                            "ASSOCIATED_FORM_NAME",
                                            "ASSOCIATED_FORM_REFNAME",
                                            "ASSOCIATED_FORM_TYPE",
                                            "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                            "ASSOCIATED_STUDY_VERSION",
                                            "ASSOCIATED_FORM_SECTION_ID",
                                            "ASSOCIATED_REPEAT_FORM_NUM",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SCREENING_NUMBER",
                                            "IS_MISSING_FORM",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"FORM_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INNER_REPEAT",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"OUTER_REPEAT",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#form-context\">Form context</a> | <a href=\"#form-association-context\">Form association context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>EHR_ENABLED</code></td><td>CHAR(3)</td><td>Indicates if a site is currently enabled for Electronic Health Record (EHR) data import. <code>No</code> is displayed if EHR has never been enabled for a site or if a site was disabled for EHR. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events:</p><ul><li><code>Visit_Complete</code></li><li><code>Visit_Date_Changed</code></li><li><code>VisitDateCleared</code></li><li><code>VisitDateEntered</code></li><li><code>Visit_Not_Started</code></li><li><code>Visit_Skip_Undone</code></li><li><code>Visit_Skipped</code></li><li><code>Visit_Started</code></li><li><code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change.</li></ul> Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening Randomization Dispensation Non-Dispensation Optional Withdrawal Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(128)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-context\">Form context</h4>\n<p>Form-level design or collected-form attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the form, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A form's reference name.</td></tr>\n    <tr><td><code>FORM_STATUS</code></td><td>VARCHAR2(100)</td><td><p>The status of the given form. Can have one of the following values:</p><ul><li><code>COMPLETED</code>: all required items are completed with no open queries.</li><li><code>COMPLETED_WITH_ERROR</code>: all required items are complete but the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>IN_PROGRESS</code>: the form was never completed and has one or more required items not completed.</li><li><code>IN_PROGRESS_WITH_ERROR</code>: the form was never completed and has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>INCOMPLETE</code>: the form was completed at some point but now it has one or more required items not completed.</li><li><code>INCOMPLETE_WITH_ERROR</code>: the form was completed at some point but now it has one or more required items not completed and the form has validation errors. Validation errors can happen when a Designer rule condition is not met.</li><li><code>SCHEDULED</code>: the form is new and has no data entered for it.</li><li><code>DELETED</code>: All questions in a form have been cleared and the form is considered deleted.</li><li><code>BLANK</code>: indicates <code>null</code> or not applicable.</li><li><code>OPTIONAL</code>: the form does not have any required or completed items.</li><li><code>NEW</code>: none of the items of the form have been completed yet. A form can only received this status if it is triggered by a question with a show form rule or if it is added as part of Advanced Study Versioning (ASV).</li></ul></td></tr>\n    <tr><td><code>REPEAT_FORM_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the form instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: indicates the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>REPEAT_SEQUENCE_NUMBER</code></td><td>NUMBER</td><td><p>Refers to the row instance number of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: indicates the repeating form number.</li></ul></td></tr>\n    <tr><td><code>INNER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Section Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique numeric identifier of the row in the repeating section.</li><li><code>Lab forms</code>: unique numeric identifier of the row in the repeating section that captures lab tests and results.</li><li><code>Repeating forms</code>: this value will be null.</li></ul></td></tr>\n    <tr><td><code>OUTER_REPEAT</code></td><td>NUMBER</td><td><p>Refers to the Form Repeat values of all applicable form types with repeating data:</p><ul><li><code>Two section forms</code>: unique identifier of the non-repeating section of the form, the form instance number.</li><li><code>Lab forms</code>: defaulted to a value of 1.</li><li><code>Repeating forms</code>: unique numeric identifier of the repeating form.</li></ul></td></tr>\n    <tr><td><code>IS_REPEATING</code></td><td>CHAR(1)</td><td>Indicates if it is a repeating form. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_ROLLOVER</code></td><td>VARCHAR2(1)</td><td>Indicates whether the form contains a rollover type of question. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a form is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the form's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the form.</td></tr>\n    <tr><td><code>IS_MISSING_FORM</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that a form has been started. <code>Y</code> (<code>Yes</code>) indicates that a form has not been started or all questions on that form were cleared/deleted. Dynamic and unscheduled forms only appear when the form has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"form-association-context\">Form association context</h4>\n<p>Linkage fields that connect the current form record to its associated form or visit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>ASSOCIATED_FORM_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the reference code of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_TYPE</code></td><td>NUMBER</td><td>Indicates the form type of the associated form. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>The name of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td><p>The unique identifier for an associated event.</p><p><strong>Note:</strong> If the visit is not UnScheduleAbleVisit, this field will not be populated with any value.</p></td></tr>\n    <tr><td><code>ASSOCIATED_STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_FORM_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated repeating form number.</td></tr>\n    <tr><td><code>ASSOCIATED_REPEAT_SEQUENCE_NUM</code></td><td>NUMBER</td><td>When association is with a repeating form, indicates the associated sequence number.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_ITEMS</code></td><td>NUMBER</td><td>Number of total questions in a form.</td></tr>\n    <tr><td><code>ENTERED_ITEMS</code></td><td>NUMBER</td><td>Number of questions answered in a form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject within the study.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit or event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form.</td></tr>\n    <tr><td><code>FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the form.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated event.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the associated form.</td></tr>\n    <tr><td><code>SUBJECT_EVENTINST_FORM_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject form record.</td></tr>\n    <tr><td><code>COUNTRY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the country associated with the site address.</td></tr>\n    <tr><td><code>FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the form section.</td></tr>\n    <tr><td><code>ASSOCIATED_FORM_SECTION_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the associated form section.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectFormsDataSetReport":{
                                        "description":"SubjectFormsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "449C1F544353423BBBBDD20D41DBDE00",
                                                    "7",
                                                    "DATAHUB_AUT_Site2_Active07",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "1",
                                                    "137",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1F2E3D4C5B6A79808796A5B4C3D2E1F0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "COMPLETED",
                                                    "N",
                                                    "N",
                                                    "4",
                                                    "3",
                                                    "2103",
                                                    "United States",
                                                    "Tester2",
                                                    "Y",
                                                    "2025-10-29T15:03:37.782Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "0000000000000000000000000000000A",
                                                    "53",
                                                    "testuser1",
                                                    "2025-10-29T15:11:33.049Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "A5FF9D4196FB4EDA9CB5E7EEAC66E325",
                                                    "19",
                                                    "Screening_Initiated",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "N",
                                                    "SIGNED",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "1",
                                                    "FC21BE51B8424A54907F2F3672E72C29",
                                                    "7",
                                                    "ScreeningForm",
                                                    "FORM_02",
                                                    "1",
                                                    "0",
                                                    "1.0.0.3",
                                                    "0A1B2C3D4E5F60718293A4B5C6D7E8F9",
                                                    "0",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "DATAHUB_AUT_Site2_Screen07",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectFormsDataSetEmptyReport":{
                                        "description":"SubjectFormsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_INSTANCE_NUM",
                                                "SUBJECT_EVENTINST_FORM_WID",
                                                "FORM_ID",
                                                "FORM_WID",
                                                "FORM_NAME",
                                                "FORM_REFNAME",
                                                "FORM_SECTION_ID",
                                                "REPEAT_SEQUENCE_NUMBER",
                                                "REPEAT_FORM_NUMBER",
                                                "OUTER_REPEAT",
                                                "INNER_REPEAT",
                                                "FORM_STATUS",
                                                "IS_REPEATING",
                                                "IS_ROLLOVER",
                                                "TOTAL_ITEMS",
                                                "ENTERED_ITEMS",
                                                "COUNTRY_WID",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "IS_CURRENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "DH_TIMESTAMP",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "EHR_ENABLED",
                                                "SUBJECT_EVENT_INST_ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "SUBJECT_STATE",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_ORDER",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ASSOCIATED_EVENT_ID",
                                                "ASSOCIATED_EVENT_WID",
                                                "ASSOCIATED_EVENT_NAME",
                                                "ASSOCIATED_EVENT_INSTANCE_NUM",
                                                "ASSOCIATED_FORM_ID",
                                                "ASSOCIATED_FORM_WID",
                                                "ASSOCIATED_FORM_NAME",
                                                "ASSOCIATED_FORM_REFNAME",
                                                "ASSOCIATED_FORM_TYPE",
                                                "ASSOCIATED_REPEAT_SEQUENCE_NUM",
                                                "ASSOCIATED_STUDY_VERSION",
                                                "ASSOCIATED_FORM_SECTION_ID",
                                                "ASSOCIATED_REPEAT_FORM_NUM",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SCREENING_NUMBER",
                                                "IS_MISSING_FORM",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-forms-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-subjects-forms-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/subjects/unblindedVisits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded visit details"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Unblinded Subject Event dataset for a single study and mode.</p><p>The dataset exposes unblinded subject visit history, including visit scheduling and status, study/site/subject context, treatment and randomization details, dispensation details, form completion counts, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns versioned subject-visit rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>SCREENING_NUMBER</code> and <code>COUNT_OF_KITS</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedSubjectEventDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code>, <code>SUBJECT_ID</code>, <code>EVENT_ID</code>, <code>EVENT_INSTANCE_NUM</code>, and <code>KIT_NUMBER</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"getUnblindedSubjectDataset_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedSubjectEventDataSetQuery":{
                                    "description":"UnblindedSubjectEventDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_EVENT_INST_WID",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "EVENT_INSTANCE_NUM",
                                            "INVESTIGATOR",
                                            "COUNTRY_NAME",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "VISIT_ORDER",
                                            "IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_ID",
                                            "SCHEDULED_FROM_EVENT_WID",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_NAME",
                                            "RAND_NUMBER",
                                            "RANDOMIZATION_DATE",
                                            "RND_STATUS_ID",
                                            "RND_STATUS",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "INSTANCE_NUMBER",
                                            "INVENTORY_ID",
                                            "KIT_NUMBER",
                                            "KIT_TYPE_SRC_ID",
                                            "INVENTORY_STATUS_ID",
                                            "INVENTORY_STATUS",
                                            "DISPENSATION_DATE",
                                            "MHEALTH_DEVICE_ID",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "KIT_DESCRIPTION",
                                            "QUANTITY",
                                            "FORM_TOTAL_COUNT",
                                            "FORM_COMPLETED_COUNT",
                                            "SUBJECT_STATE",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "THERAPEUTIC_AREA",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "TITRATION",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "UNBLIND_DATE",
                                            "UNBLIND_REASON",
                                            "UNBLIND_COMMENT",
                                            "SCREENING_NUMBER",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "IS_MISSING_VISIT",
                                            "COUNT_OF_KITS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"SUBJECT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"EVENT_INSTANCE_NUM",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#kit-context\">Kit context</a> | <a href=\"#aggregation-context\">Aggregation context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(100 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>UNBLIND_DATE</code></td><td>TIMESTAMP(6)</td><td><p>Indicates the date and time when the first code break was performed and the subject's treatment arm was unblinded. This value is a timestamp.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break date.</p></td></tr>\n    <tr><td><code>UNBLIND_REASON</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Reason provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break reason.</p></td></tr>\n    <tr><td><code>UNBLIND_COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td><p>Comment provided by the user when the first code break was performed and the subject's treatment arm was unblinded.</p><p><strong>Note:</strong> Even if subject undergoes multiple code breaks, this filed displays only the first code break comment.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>EVENT_INSTANCE_NUM</code></td><td>NUMBER</td><td>Indicates the unscheduled visit instance number as designed by the study designer.</td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>IS_REQUIRED</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>VARCHAR2(1 CHAR)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a visit is frozen by a data manager or CRA. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the visit's verification status. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified. <code>NOT_APPLICABLE</code></li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>IS_MISSING_VISIT</code></td><td>CHAR(1)</td><td><code>N</code> (<code>No</code>) indicates that the visit is not considered missing. <code>Y</code> (<code>Yes</code>) indicates that the visit is considered missing. Dynamic, branching, and unscheduled visits only appear when the visit has been started, and data entry has occurred.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kit-context\">Kit context</h4>\n<p>Kit-design, inventory, randomization, dispensation, and treatment details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>TREATMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>This data element is obsolete, use <code>TREATMENT_ARM_TITLE</code> instead. Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>INVENTORY_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-context\">Aggregation context</h4>\n<p>Pre-aggregated counts and summary measures returned with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>FORM_TOTAL_COUNT</code></td><td>NUMBER</td><td>Count of all forms created as part of the study design.</td></tr>\n    <tr><td><code>FORM_COMPLETED_COUNT</code></td><td>NUMBER</td><td>Count of completed forms. Repeating instances are only counted once, meaning that repeating rows are not counted as an additional completed form.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the previously scheduled event.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the parent visit from which the associated visit was scheduled.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID that represents the treatment arm.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier that represents the treatment arm.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates whether a subject has been randomized in the study.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Unblinded Subject Event dataset record.</td></tr>\n    <tr><td><code>SUBJECT_EVENT_INST_WID</code></td><td>NUMBER</td><td>A number that represents the unique identifier of the subject event instance.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>KIT_TYPE_SRC_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates the kit number associated with the dispensed inventory item.</td></tr>\n    <tr><td><code>INVENTORY_STATUS_ID</code></td><td>NUMBER</td><td>Numeric identifier that maps to the kit inventory status.</td></tr>\n    <tr><td><code>MHEALTH_DEVICE_ID</code></td><td>RAW(16 BYTE)</td><td>Indicates a kit's status in the study's inventory.</td></tr>\n    <tr><td><code>RND_STATUS_ID</code></td><td>NUMBER</td><td>Indicates the treatment associated with the subject randomization.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedSubjectEventDataSetReport":{
                                        "description":"UnblindedSubjectEventDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS"
                                            ],
                                            "data":[
                                                [
                                                    "7550C1E7E3CA4B8CAD09ACD1F1E7F580",
                                                    "37",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "SCREENING",
                                                    "Visit_Complete",
                                                    "1",
                                                    "Tester2",
                                                    "United States",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "2025-10-28T09:00:00.000Z",
                                                    "0",
                                                    "1",
                                                    "Y",
                                                    "FD227430BECA4DECA5EA8B0E4DBE18CA",
                                                    "16",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "2025-10-29T17:27:52.908Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "5",
                                                    "5",
                                                    "Auto-update on completion",
                                                    "System updated visit after form submit",
                                                    "Y",
                                                    "2025-10-29T17:32:36.385Z",
                                                    "A3E4B2D1C0F94A4E9D3B7C6A8F1E2D34",
                                                    "101",
                                                    "Arm A",
                                                    "10007890",
                                                    "2025-10-29T17:00:00.000Z",
                                                    "1",
                                                    "Randomized",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "9C8B7A6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "KIT-000457",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "10",
                                                    "Dispensed",
                                                    "2025-10-29T17:15:00.000Z",
                                                    "7F6E5D4C3B2A19008F7E6D5C4B3A2910",
                                                    "1",
                                                    "BC1234567890",
                                                    "Yes",
                                                    "70 kg",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "N",
                                                    "Syringe kit 5 mL",
                                                    "1",
                                                    "1",
                                                    "1",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Observational",
                                                    "Vaccines",
                                                    "ScreeningForm",
                                                    "SCREENINGFORM",
                                                    "SCR",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "N",
                                                    "VERIFY_REQUIRED",
                                                    "N",
                                                    "0",
                                                    "Treatment Arm A",
                                                    "Arm A dosing schedule",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "Not Applicable",
                                                    "",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N",
                                                    "1"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedSubjectEventDataSetEmptyReport":{
                                        "description":"UnblindedSubjectEventDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_EVENT_INST_WID",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "EVENT_INSTANCE_NUM",
                                                "INVESTIGATOR",
                                                "COUNTRY_NAME",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "VISIT_ORDER",
                                                "IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_ID",
                                                "SCHEDULED_FROM_EVENT_WID",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_NAME",
                                                "RAND_NUMBER",
                                                "RANDOMIZATION_DATE",
                                                "RND_STATUS_ID",
                                                "RND_STATUS",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "INSTANCE_NUMBER",
                                                "INVENTORY_ID",
                                                "KIT_NUMBER",
                                                "KIT_TYPE_SRC_ID",
                                                "INVENTORY_STATUS_ID",
                                                "INVENTORY_STATUS",
                                                "DISPENSATION_DATE",
                                                "MHEALTH_DEVICE_ID",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "KIT_DESCRIPTION",
                                                "QUANTITY",
                                                "FORM_TOTAL_COUNT",
                                                "FORM_COMPLETED_COUNT",
                                                "SUBJECT_STATE",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "THERAPEUTIC_AREA",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "TITRATION",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "UNBLIND_DATE",
                                                "UNBLIND_REASON",
                                                "UNBLIND_COMMENT",
                                                "SCREENING_NUMBER",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "IS_MISSING_VISIT",
                                                "COUNT_OF_KITS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-unblindedVisits-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-subjects-unblindedvisits-post"
            }
        },
        "/ec-datahub-svc/rest/v9.0/tenant/{tenantId}/studies/{studyId}/{mode}/unblindedKits":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get unblinded kits for study"
                ],
                "summary":"V9.0",
                "description":"<p>Retrieves the study-permissioned Unblinded Kits dataset for a single study and mode.</p><p>The dataset exposes unblinded kit inventory and dispensation history, including study, site, subject, randomization, treatment arm and dosing details, shipment/lot information, inventory status transitions, verification/confirmation metadata, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns rows at inventory level for unblinded kits associated with the study and mode.</p><p>This version additionally includes the following data points: <code>COMPOUNDING_KITS</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">UnblindedKitsDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>INVENTORY_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveUnblidedKitsDataSetQuery_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":100
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32",
                            "example":0
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "UnblindedKitsDataSetQuery":{
                                    "description":"UnblindedKitsDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "THERAPEUTIC_AREA",
                                            "STUDY_PHASE",
                                            "BLINDING_TYPE",
                                            "COUNTRY_NAME",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "INVESTIGATOR",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STATUS",
                                            "SITE_STUDY_VERSION",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "SITE_ID_NAME",
                                            "SITE_TYPE",
                                            "SUBJECT_ID",
                                            "SUBJECT_WID",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "SUBJECT_STATE",
                                            "SCREENING_NUMBER",
                                            "RANDOMIZATION_TITLE",
                                            "RANDOMIZATION_DESCRIPTION",
                                            "RANDOMIZATION_TYPE",
                                            "COHORT_ID",
                                            "COHORT_WID",
                                            "COHORT_NAME",
                                            "RERANDOMIZATION",
                                            "TREATMENT_ID",
                                            "TREATMENT_WID",
                                            "TREATMENT_ARM_TITLE",
                                            "TREATMENT_ARM_DESCRIPTION",
                                            "TREATMENT_ARM_ID",
                                            "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                            "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                            "RAND_NUMBER",
                                            "RND_STATUS",
                                            "RANDOMIZATION_DATE",
                                            "MANFACTURING_LOT_TITLE",
                                            "BLINDED_LOT_TITLE",
                                            "MANFACTURING_LOT_SHORT_NAME",
                                            "BLINDED_LOT_SHORT_NAME",
                                            "MANFACTURING_LOT_EXPIRATION_DATE",
                                            "BLINDED_LOT_EXPIRATION_DATE",
                                            "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                            "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                            "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                            "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                            "SHIPMENT_ID",
                                            "SHIPMENT_WID",
                                            "SHIPMENT_NAME",
                                            "SHIPMENT_STATUS",
                                            "SHIPMENT_CREATED_DATE",
                                            "SHIPMENT_DATE",
                                            "TRACKING_NUMBER",
                                            "VISIT_IS_REQUIRED",
                                            "IS_SCHEDULED_VISIT",
                                            "SCHEDULED_FROM_EVENT_NAME",
                                            "SCHEDULED_FROM_EVENT_REFNAME",
                                            "VISIT_STATUS",
                                            "VISIT_START_DATE",
                                            "VISIT_TYPE",
                                            "EVENT_TYPE",
                                            "PROJECTED_VISIT_START_DATE",
                                            "PROJECTED_VISIT_END_DATE",
                                            "PROJECTED_VISIT_DATE",
                                            "DELAY_DAYS",
                                            "DELAY_HOURS",
                                            "VISIT_WINDOW_BEFORE_DAYS",
                                            "VISIT_WINDOW_BEFORE_HOURS",
                                            "VISIT_WINDOW_AFTER_DAYS",
                                            "VISIT_WINDOW_AFTER_HOURS",
                                            "EVENT_ID",
                                            "EVENT_WID",
                                            "EVENT_TITLE",
                                            "EVENT_REFNAME",
                                            "EVENT_ID_NAME",
                                            "VISIT_ORDER",
                                            "KIT_TYPE",
                                            "DEVICE_TYPE",
                                            "DEVICE_CONNECTION",
                                            "CALCULATING_DOSES",
                                            "DISTRIBUTION_SETTINGS",
                                            "KIT_DESIGN_ID",
                                            "KIT_DESIGN_WID",
                                            "KIT_TYPE_ID",
                                            "TRIAL_SUPPLY_TYPE",
                                            "MINIMUM_KITS_TO_SHIP",
                                            "UNITS_PER_KIT",
                                            "SINGLE_UNIT_DOSE_VALUE",
                                            "SINGLE_UNIT_DOSE_UNITS",
                                            "CRA_VERIFIED",
                                            "BALANCE_UNITS",
                                            "TITRATION",
                                            "INVENTORY_ID",
                                            "INVENTORY_WID",
                                            "SEQUENCE_NUMBER",
                                            "KIT_DESCRIPTION",
                                            "KIT_STATUS",
                                            "DISPENSATION_DATE",
                                            "DOSAGE",
                                            "BAR_CODE",
                                            "DISPENSATION_CONFIRMED",
                                            "MEASUREMENT",
                                            "FREQUENCY",
                                            "RETURNED_UNITS",
                                            "MISSING_UNITS",
                                            "CONSERVED",
                                            "QUANTITY",
                                            "INSTANCE_NUMBER",
                                            "CALCULATED_DOSE_ID",
                                            "CALCULATED_DOSE_WID",
                                            "CALCULATED_DOSE_TITLE",
                                            "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                            "VISIT_WHERE_FORM_IS_COLLECTED",
                                            "DOSE_PRECISION",
                                            "DOSE_ROUND_UP",
                                            "DOSE_FREQUENCY",
                                            "DOSE_LEFT_OVER_UNITS",
                                            "KIT_MEASUREMENT",
                                            "SUBJECT_MEASUREMENT",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "OBJECT_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "IS_CURRENT",
                                            "VERIFIED_BY_ID",
                                            "VERIFIED_BY_WID",
                                            "VERIFIED_BY",
                                            "VERIFIED_DATE",
                                            "CONFIRMED_BY_ID",
                                            "CONFIRMED_BY_WID",
                                            "CONFIRMED_BY",
                                            "CONFIRMED_DATE",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "DH_TIMESTAMP",
                                            "BLOCK_NUMBER",
                                            "KIT_NUMBER",
                                            "MATERIAL_ID",
                                            "ITEM_NUMBER",
                                            "COUNT_OF_KITS",
                                            "IS_NON_SERIALIZED_KIT",
                                            "ORDER_TYPE",
                                            "FORCED_RAND",
                                            "CURRENT_STUDY_ROLE_ID",
                                            "CURRENT_STUDY_ROLE_WID",
                                            "CURRENT_STUDY_ROLE_NAME",
                                            "COMPOUNDING_KITS"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            },
                                            {
                                                "columnName":"INVENTORY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#randomization-context\">Randomization context</a> | <a href=\"#lot-context\">Lot context</a> | <a href=\"#shipment-context\">Shipment context</a> | <a href=\"#kits-context\">Kits context</a> | <a href=\"#calculated-dose-context\">Calculated dose context</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the type of organization. Possible values include <code>Hospital</code>, <code>Teaching Hospital</code>, <code>Medical Clinic</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>SCREENING_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>Always displays the original screening number, assigned to the subject at screening.</td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>SUBJECT_STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Visit metadata, scheduling rules, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>The event's title, defined by the user when an event is created.</td></tr>\n    <tr><td><code>EVENT_ID_NAME</code></td><td>VARCHAR2(16 CHAR)</td><td>The event's id as in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>The event's reference name. Displays a capitalized version of the (user entered) <code>EVENT_TITLE</code> with blank spaces removed. Oracle Clinical One Analytics generates this value, which is not displayed in the Clinical One Cloud Service user interface.</p><p><strong>Note:</strong> This value does not change if the associated <code>EVENT_TITLE</code> is updated in a subsequent Study Version.</p></td></tr>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td>Displays the type of event that impacts a visit's status. Upon selecting this data element, only events that occurred in your study are displayed. For example, you may see some of the following events: Visit_Complete; Visit_Date_Changed; VisitDateCleared; VisitDateEntered; Visit_Not_Started; Visit_Skip_Undone; Visit_Skipped; Visit_Started; <code>Visit_Inserted</code>: this option refers to new visits inserted into the study's schedule as an Advanced Study Versioning change. Possible values include <code>Visit Started</code>, <code>Visit Completed</code>, <code>Visit Not Done</code>, or <code>Visit Missed</code>.</td></tr>\n    <tr><td><code>VISIT_TYPE</code></td><td>VARCHAR2(100 CHAR)</td><td>Displays the type of visit: Screening; Randomization; Dispensation; Non-Dispensation; Optional; Withdrawal; Study Completion Possible values include <code>ScreeningVisit</code>, <code>ScheduleAbleVisit</code>, <code>SubjectWithdrawalVisit</code>, <code>SubjectCompletionVisit</code>, <code>UnScheduleAbleVisit</code>, <code>Event</code>, <code>AdverseEvent</code>, <code>ScreenFailureVisit</code>, or <code>ReScreeningEvent</code>.</td></tr>\n    <tr><td><code>VISIT_STATUS</code></td><td>VARCHAR2(32 CHAR)</td><td><p>Indicates a visit's status in the system. Can have one of the following values:</p><ul><li><code>NEW</code>: the visit was dynamically triggered and has no data.</li><li><code>SCHEDULED</code>: the visit is scheduled for the subject but has no data. Note: Future visits are included with the status of <code>SCHEDULED</code>. Dynamic and cycle visits will not be included until an event happens that causes their creation on the subject's schedule.</li><li><code>INPROGRESS</code>: the visit was never completed and has one or more required items with no saved data.</li><li><code>INCOMPLETE</code>: the visit was completed at some point but now has one or more required items that are not completed.</li><li><code>INCOMPLETE_ERR</code>: the visit was completed at some point but now has one or more required items that are not completed and open queries.</li><li><code>COMPLETE</code>: all required items within the visit are completed and there are no open queries.</li><li><code>COMPLETE_ERR</code>: all required items within the visit are completed but there are open queries.</li><li><code>SKIPPED</code>: the visit was part of the visit schedule for the subject but was skipped by a site user.</li><li><code>UNDO_SKIP</code>: the visit was skipped at some point but the skip action was undone.</li></ul></td></tr>\n    <tr><td><code>VISIT_ORDER</code></td><td>NUMBER</td><td>The order in which subject visits occur, as configured in the study design.</td></tr>\n    <tr><td><code>VISIT_IS_REQUIRED</code></td><td>CHAR(1)</td><td>Indicates if a visit is required. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>IS_SCHEDULED_VISIT</code></td><td>CHAR(1)</td><td>Indicates if the visit is scheduled. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_TITLE</code> (visit title) of the Scheduled From visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with the visit's own title. For example, Screening Visit is displayed for the Screening Visit, if it is the first visit in the schedule.</p></td></tr>\n    <tr><td><code>SCHEDULED_FROM_EVENT_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Displays the <code>EVENT_REFNAME</code> of the Scheduled From Visit as defined in the Visit Schedule.</p><p><strong>Note:</strong> If a visit is not scheduled or it is the first visit in the schedule, then this element is populated with that visit's own refname..</p></td></tr>\n    <tr><td><code>VISIT_START_DATE</code></td><td>DATE</td><td>Date stamp of a visit's start date.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_START_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should start in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_END_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should end in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>PROJECTED_VISIT_DATE</code></td><td>TIMESTAMP(6)</td><td>Date when the next scheduled visit should take place in the study, based on the configured visit schedule.</td></tr>\n    <tr><td><code>DELAY_DAYS</code></td><td>NUMBER</td><td>The number of days between the prior scheduled visit.</td></tr>\n    <tr><td><code>DELAY_HOURS</code></td><td>NUMBER</td><td>The number of hours between the prior scheduled visit (in addition to the <code>DELAY_DAYS</code> field).</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_DAYS</code></td><td>NUMBER</td><td>Indicates how many days before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_BEFORE_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours before the scheduled date and time the visit can occur, as entered by a study designer.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_DAYS</code></td><td>NUMBER</td><td>Indicates how many days after the scheduled date and time the visit can occur.</td></tr>\n    <tr><td><code>VISIT_WINDOW_AFTER_HOURS</code></td><td>NUMBER</td><td>Indicates how many hours after the scheduled date and time the visit can occur.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"randomization-context\">Randomization context</h4>\n<p>Randomization, cohort, treatment-arm, and allocation settings associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>RANDOMIZATION_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of a randomization strategy, as specified by a study designer in Clinical One Cloud Service.</td></tr>\n    <tr><td><code>RANDOMIZATION_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the description a study designer provides in the Description field, on the Create Randomization dialog. Creating a randomization is done in Study Design mode.</td></tr>\n    <tr><td><code>RANDOMIZATION_TYPE</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the type of randomization, as specified by a study designer when creating a randomization: <code>Blinded</code>: if blinded users should never see any of the titles of the treatment arms used in the randomization design. <code>Unblinded</code>: if users should be aware of the titles of the treatment arms used in the randomization design.</td></tr>\n    <tr><td><code>COHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the name of the cohort as defined by the study designer when creating a randomization design.</td></tr>\n    <tr><td><code>TREATMENT_ARM_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the treatment arm from the protocol, as specified by the study designer in Clinical One Cloud Service. Displays the title for every treatment arm created in the study.</td></tr>\n    <tr><td><code>TREATMENT_ARM_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates the additional details provided by a study designer in the Description field, when they created the treatment arm in Study Design mode.</td></tr>\n    <tr><td><code>TREATMENT_ARM_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the short name that helps a user identify a treatment arm, such as A or <code>Active 1</code>, as specified by the study designer when they created the treatment arm.</td></tr>\n    <tr><td><code>RAND_NUMBER</code></td><td>NUMBER</td><td><p>Indicates the randomization number assigned to each randomized subject in a study.</p><p><strong>Note:</strong> If the Blind Randomization Number option in your study's settings is set to Yes, data for this field displays as Blinded.</p><p>For more information, see Specify study, enrollment, and visits settings.</p></td></tr>\n    <tr><td><code>RND_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates the randomization status for the subject's randomization number. Can have one of the following values:</p><ul><li><code>Assigned</code>: the subject has a randomization number assigned.</li><li><code>Randomized in error</code>: the subject was randomized in error.</li></ul></td></tr>\n    <tr><td><code>RANDOMIZATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which a subject has been randomized in the study.</td></tr>\n    <tr><td><code>RERANDOMIZATION</code></td><td>NUMBER</td><td>Indicates whether the study designer chose to use the current randomization design for a second or later randomization event in the study. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>FORCED_RAND</code></td><td>CHAR(1)</td><td><p>Indicates whether the subject underwent forced randomization. This helps track how many times forced randomization has been used over the course of the study. This scenario can occur due to a lack of kits for at least one treatment arm in the study at the time of randomization. For this data element, the following values can be displayed:</p><ul><li><code>Y</code>: Indicates that a subject underwent forced randomization.</li><li><code>N</code>: Indicates that a subject was randomized normally.</li><li><code>NULL</code>: Indicates that a subject has not yet been randomized.</li></ul></td></tr>\n    <tr><td><code>RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that subjects can only be assigned to specific treatment arms during randomization if the associated kit types are available. This would result in forced randomization to a specific treatment arm if the kits for a different treatment arm are not in stock.</li><li><code>0</code>: Indicates that a study designer chose not to restrict the randomization to available kit types. When randomization is not restricted, a subject can be randomized to a given treatment arm regardless of site inventory and may result in dispensation failure when there are no available kit types to dispense.</li></ul></td></tr>\n    <tr><td><code>ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS</code></td><td>NUMBER</td><td><p>Indicates the option that a study designer chose (<code>1</code> or <code>0</code>) when configuring this setting.</p><ul><li><code>1</code>: Indicates that, when a randomization number is skipped due to forced randomization, the skipped randomization number may be subsequently assigned to a subject who enrolls after.</li><li><code>0</code>: Indicates that skipped randomization numbers are never assigned to subjects.</li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"lot-context\">Lot context</h4>\n<p>Lot identifiers, expiration controls, and supply-state attributes associated with the row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>BLINDED_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a blinded lot, as specified by a clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative blinded lot label, as specified by the clinical supply manager when they created the blinded lot. A blinded lot short name can be used when multiple depots use the same lot and have different naming conventions. One depot can use the title of a blinded lot, whereas another depot can use the short name.</td></tr>\n    <tr><td><code>BLINDED_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the entire blinded lot, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>BLINDED_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique name of a manufacturing lot title, as specified by a clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_SHORT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates an alternative manufacturing lot label, as specified by the clinical supply manager when they created the manufacturing lot. A manufacturing lot short name can be used when your organization's labeling conventions differ from the lot name supplied by the depot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_EXPIRATION_DATE</code></td><td>DATE</td><td>Indicates the expiration date for the kits in the manufacturing lot, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_COUNT_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when the kit is no longer counted in a site's inventory, as specified by the clinical supply manager when they created the blinded lot.</td></tr>\n    <tr><td><code>MANFACTURING_LOT_DO_NOT_SHIP_DAYS</code></td><td>NUMBER</td><td>Indicates the number of days before the expiration date when a kit can no longer be shipped from a depot to a site, as specified by the clinical supply manager when they created the manufacturing lot.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"shipment-context\">Shipment context</h4>\n<p>Shipment lifecycle, receipt, and tracking details associated with kit distribution.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SHIPMENT_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's full name.</td></tr>\n    <tr><td><code>ORDER_TYPE</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates how a shipment was initiated: <code>INITIAL</code>; <code>MANUAL</code>; <code>RESUPPLY</code></td></tr>\n    <tr><td><code>SHIPMENT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the status of a shipment, as updated by the system or by a user in the study: Pending; In Transit; Received; Cancelled; Lost; Confirmed; Invalid; Pending Destruction; Received for Destruction; Destroyed Possible values include <code>PENDING</code>, <code>IN TRANSIT</code>, <code>RECEIVED</code>, <code>CANCELLED</code>, <code>LOST</code>, <code>CONFIRMED</code>, <code>INVALID</code>, <code>PENDING DESTRUCTION</code>, <code>RECEIVED FOR DESTRUCTION</code>, or <code>DESTROYED</code>.</td></tr>\n    <tr><td><code>TRACKING_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates a shipment's tracking number, as specified by the depot user.</td></tr>\n    <tr><td><code>SHIPMENT_CREATED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date a shipment was created, whether it is a: <code>Manual shipment</code>: this is a shipment that is created by either a depot or sponsor user. The date during which the shipment was created in displayed in Coordinated Universal Time (UTC). <code>Automatic shipment</code>: this is a shipment that is automatically created and sent based on the study's resupply strategy (as designed by the clinical supply manager) or based on a study's integration with a clinical depot facility (as designed by your Oracle point of contact). The date during which the shipment was created in displayed in Coordinated Universal Time (UTC).</td></tr>\n    <tr><td><code>SHIPMENT_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a shipment's ship date, either automatically specified by an integration with the clinical depot facility or manually specified by someone from either the sponsor or depot.</td></tr>\n    <tr><td><code>COMPOUNDING_KITS</code></td><td>VARCHAR2(1)</td><td>Indicates whether a shipment contains compounding kits: <code>Y</code>: the shipment does contain compounding kits. <code>N</code>: the shipment does not contain compounding kits.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"kits-context\">Kits context</h4>\n<p>Inventory, dispensing, dosing, and verification fields associated with the kit or subject record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>KIT_NUMBER</code></td><td>VARCHAR2(1024 CHAR)</td><td>Indicates a kit's number, as assigned in the system.</td></tr>\n    <tr><td><code>ITEM_NUMBER</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Numeric value used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>BAR_CODE</code></td><td>VARCHAR2(1000 CHAR)</td><td>If included in a study, this indicates a kit's bar code as generated by the system.</td></tr>\n    <tr><td><code>MATERIAL_ID</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Alphanumeric identifier of the material of a given kit, used as a reference element for batch processing.</p><p><strong>Note:</strong> This field is part of the SAP system and populated via integration. This field does not display in Clinical One Cloud Service.</p></td></tr>\n    <tr><td><code>SEQUENCE_NUMBER</code></td><td>NUMBER</td><td>Indicates a kit's sequence number, as specified by a clinical supply manager when setting up whether kits should be dispensed by sequence.</td></tr>\n    <tr><td><code>BLOCK_NUMBER</code></td><td>VARCHAR2(512 CHAR)</td><td>Indicates the block number of randomization assigned to a site, country or region, for fixed randomization designs.</td></tr>\n    <tr><td><code>KIT_DESCRIPTION</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a kit's description, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>KIT_TYPE</code></td><td>VARCHAR2(1020)</td><td><p>A kit's type, as specified by the study designer when they created the kit. The following values can be displayed:</p><ul><li><code>Investigation Product</code></li><li><code>Device</code></li><li><code>Kit Type Titration</code></li></ul></td></tr>\n    <tr><td><code>KIT_TYPE_ID</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the unique identifier for a kit type.</td></tr>\n    <tr><td><code>KIT_STATUS</code></td><td>VARCHAR2(64 CHAR)</td><td><p>Indicates a kit's status in the study's inventory.</p><p>For more information on what a kit's status may be, see What statuses can kits have?</p></td></tr>\n    <tr><td><code>INSTANCE_NUMBER</code></td><td>NUMBER</td><td>Indicates the repeat instance number of the visit.</td></tr>\n    <tr><td><code>DOSAGE</code></td><td>NUMBER</td><td>Indicates the dosage for the dispensed kit, when the kit contains calculated doses.</td></tr>\n    <tr><td><code>FREQUENCY</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the dosing frequency as defined by a study designer.</td></tr>\n    <tr><td><code>MEASUREMENT</code></td><td>VARCHAR2(1000 CHAR)</td><td>Indicates the total numeric value for the product in a kit with calculated doses, as defined by a study designer.</td></tr>\n    <tr><td><code>TRIAL_SUPPLY_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates the supply type of the kit, as specified by the study designer. The following values can be displayed: <code>Blister Pack</code>; <code>Bottle</code>; <code>Device</code>; <code>Syringe</code>; <code>Topical Ointment</code>; <code>Vial</code>; <code>Inhaler</code>; <code>Infusion</code>; <code>Box</code>; <code>Other</code></td></tr>\n    <tr><td><code>TITRATION</code></td><td>NUMBER</td><td>Indicates if a kit type is part of a kit type titration. Values can be <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>MINIMUM_KITS_TO_SHIP</code></td><td>NUMBER</td><td>Indicates the minim number of kits to include in each shipment to meet packaging requirements, as specified by the study designer when they created the kit type.</td></tr>\n    <tr><td><code>QUANTITY</code></td><td>NUMBER</td><td>Indicates a kit's quantity, as specified by the study designer.</td></tr>\n    <tr><td><code>UNITS_PER_KIT</code></td><td>NUMBER</td><td><p>Indicates the number of units in the kit, such as the number of pills in a bottle, as specified by the study designer.</p><p>For more information on this value, see Define the kits for investigational products.</p></td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_VALUE</code></td><td>NUMBER(20,2)</td><td>Indicates the value of a single unit in the kit. For example, if the kit is a blister pack, it would indicate how many milligrams of product are contained in 1 capsule.</td></tr>\n    <tr><td><code>SINGLE_UNIT_DOSE_UNITS</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates how one unit in the kit is measured. For example: g, mg, ml, etc.</td></tr>\n    <tr><td><code>BALANCE_UNITS</code></td><td>NUMBER</td><td>Indicates the total units of a kit minus the missing and returned units.</td></tr>\n    <tr><td><code>RETURNED_UNITS</code></td><td>NUMBER</td><td>Number of units remaining in the kit as indicated by the site user or Clinical Research Associate (CRA)</td></tr>\n    <tr><td><code>MISSING_UNITS</code></td><td>NUMBER</td><td>Number of lost or damaged units in the kit as indicated by the site user.</td></tr>\n    <tr><td><code>COUNT_OF_KITS</code></td><td>NUMBER</td><td>The total count of kits.</td></tr>\n    <tr><td><code>CALCULATING_DOSES</code></td><td>NUMBER</td><td>Indicates whether the study designer specified that the kit type should have calculated doses defined based on subjects' answers to one or more questions. The following values can be displayed: <code>1</code> or <code>0</code>.</td></tr>\n    <tr><td><code>IS_NON_SERIALIZED_KIT</code></td><td>CHAR(1)</td><td>Indicates if the kit is non serialized: <code>Y</code> (<code>Yes</code>) the kit is non-serialized. <code>N</code> (<code>No</code>) the kit is serialized.</td></tr>\n    <tr><td><code>CONSERVED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates whether a kit was conserved by a site user. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DEVICE_TYPE</code></td><td>VARCHAR2(255)</td><td>Indicates the type of device, as specified by the study designer when they created the device kit type. The following values can be displayed: <code>Activity Watch</code>; <code>Blood Pressure Monitor</code>; <code>Glucose Monitor</code>; <code>Weight Scale</code>; <code>ECG Reader</code>; <code>Spirometer</code>; <code>Mobile App</code>; <code>Smart Pill Bottle</code>; <code>Pulse Oximeter</code>; <code>Wearable Patch</code>; <code>Other</code></td></tr>\n    <tr><td><code>DEVICE_CONNECTION</code></td><td>VARCHAR2(255)</td><td><p>Indicates the type of device connection, as specified by the study designer when they created the device kit type. The following values can be displayed:</p><ul><li><code>No Connection</code></li><li><code>Device to Cloud</code></li><li><code>Cloud to Cloud</code></li></ul></td></tr>\n    <tr><td><code>DISTRIBUTION_SETTINGS</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the type of distribution a kit has, as specified by the study designer. The following values can be displayed:</p><ul><li><code>Blinded</code>: If blinded users should never see the kit type description.</li><li><code>Unblinded</code>: If users should always be aware of the kit type description.</li><li><code>Unblinded Pharmacist</code>: If blinded users should never see these kits at all and only pharmacists or unblinded site users can dispense these kit types.</li></ul></td></tr>\n    <tr><td><code>CRA_VERIFIED</code></td><td>NUMBER</td><td>Indicates whether a question, a form, or a visit has been verified by a Clinical Research Associate (CRA).</td></tr>\n    <tr><td><code>DISPENSATION_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates a kit's dispensation date, as entered by a site user when they dispensed the kit to a subject.</td></tr>\n    <tr><td><code>DISPENSATION_CONFIRMED</code></td><td>NUMBER</td><td>Indicates whether a kit's dispensation was confirmed by a site user. Possible values include <code>0</code> or <code>1</code>.</td></tr>\n    <tr><td><code>CONFIRMED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date at which a specified kit's dispensation was confirmed.</td></tr>\n    <tr><td><code>CONFIRMED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the email address of the user who confirmed the dispensation of a specified kit.</td></tr>\n    <tr><td><code>VERIFIED_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date when inventory was verified. Date is displayed in UTC.</td></tr>\n    <tr><td><code>VERIFIED_BY</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates the user who verified inventory data.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"calculated-dose-context\">Calculated dose context</h4>\n<p>Calculated-dose configuration and measured values associated with dose determination for the dispensed kit.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>CALCULATED_DOSE_TITLE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the title of the kit type containing calculated doses, as specified by the study designer.</td></tr>\n    <tr><td><code>FORM_QUESTION_FOR_CALCULATED_DOSE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the question that is selected by the study designer to be used in calculating the appropriate dose.</td></tr>\n    <tr><td><code>VISIT_WHERE_FORM_IS_COLLECTED</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the visit in which the question that is used to calculate the appropriate dose is asked, as specified by the study designer.</td></tr>\n    <tr><td><code>SUBJECT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the value that, along with the answer for the subject and the value of a single unit, determines the dose, as specified by the study designer.</td></tr>\n    <tr><td><code>KIT_MEASUREMENT</code></td><td>NUMBER(20,2)</td><td>Indicates the total numeric value for the product in the kit, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_FREQUENCY</code></td><td>VARCHAR2(21 CHAR)</td><td>Indicates how many doses the subject must consume, as specified by the study designer.</td></tr>\n    <tr><td><code>DOSE_PRECISION</code></td><td>NUMBER</td><td>Indicates the number of places after the decimal point that each dose should be calculated in, as specified by the study designer. For example, if the precision for each dose is 0.0001, this value displays the number 4.</td></tr>\n    <tr><td><code>DOSE_ROUND_UP</code></td><td>NUMBER</td><td>Indicates how the rounding is performed to reach the dose precision, as specified by the study designer. This field displays a whole number indicating the minimal decimal value to round-up and reach dose precision. For example, if the precision for each dose is <code>0</code>.0001 and the round up is <code>0</code>.00006 (as entered in the Clinical One Cloud Service): For the dose precision, the number 4 is displayed, this value represents the number of places after the decimal point. For the dose round up, the number 6 is displayed.</td></tr>\n    <tr><td><code>DOSE_LEFT_OVER_UNITS</code></td><td>NUMBER</td><td>Indicates whether leftover units from a previous dose can be used in a next dose, during the study conduct period, as specified by the study designer.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_NAME</code></td><td>VARCHAR2(100 CHAR)</td><td>Current study role name of the user who updated the dataset row. If the user's study role changes later, this field shows the user's current study role.</td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment captured when \"Other\" is chosen as the change reason; rule-executed values also populate this field.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>VARCHAR2(1 CHAR)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>SUBJECT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>TREATMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the treatment assigned to the subject.</td></tr>\n    <tr><td><code>TREATMENT_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the treatment.</td></tr>\n    <tr><td><code>EVENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the visit event.</td></tr>\n    <tr><td><code>EVENT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the event.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the calculated dose configuration.</td></tr>\n    <tr><td><code>CALCULATED_DOSE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the calculated dose configuration.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>VERIFIED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who verified the kit.</td></tr>\n    <tr><td><code>VERIFIED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the verifying user.</td></tr>\n    <tr><td><code>CONFIRMED_BY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user who confirmed the kit dispensation.</td></tr>\n    <tr><td><code>CONFIRMED_BY_WID</code></td><td>NUMBER</td><td>Numeric identifier of the confirming user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_ID</code></td><td>RAW(16 BYTE)</td><td>The ID associated with the study role assigned to the user who updated the given record. If the user study role changes, this field will show the current study role ID of the given user.</td></tr>\n    <tr><td><code>CURRENT_STUDY_ROLE_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the role of the user who updated the given record. If the user study role changes, this field will show the current study role of the given user.</td></tr>\n    <tr><td><code>COHORT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the cohort assigned to the subject.</td></tr>\n    <tr><td><code>COHORT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the cohort.</td></tr>\n    <tr><td><code>SHIPMENT_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the shipment.</td></tr>\n    <tr><td><code>SHIPMENT_WID</code></td><td>NUMBER</td><td>Numeric identifier of the shipment.</td></tr>\n    <tr><td><code>KIT_DESIGN_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the kit design.</td></tr>\n    <tr><td><code>KIT_DESIGN_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the kit design.</td></tr>\n    <tr><td><code>INVENTORY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the inventory record.</td></tr>\n    <tr><td><code>INVENTORY_WID</code></td><td>NUMBER(10)</td><td>Numeric identifier of the inventory record.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "UnblindedKitsDataSetReport":{
                                        "description":"UnblindedKitsDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "COMPOUNDING_KITS"
                                            ],
                                            "data":[
                                                [
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "Vaccines",
                                                    "IV",
                                                    "Observational",
                                                    "US",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "Tester2",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "US",
                                                    "Kansas",
                                                    "560068",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "Active",
                                                    "1.0.0.3",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Site",
                                                    "FE1B887ADDDD4E6588075E5F8D4F0F1B",
                                                    "13",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "DATAHUB_AUT_Site2_Screen13",
                                                    "Complete",
                                                    "DATAHUB_AUT_Site2_Active13",
                                                    "BasicRand_01",
                                                    "BasicRand_01_Description",
                                                    "Blinded",
                                                    "5F7C3E2A9B1D4F1E8A7C6B5A4D3E2F10",
                                                    "301",
                                                    "Default Cohort",
                                                    "1",
                                                    "C6BC3AF48A8F44EA9AEE157709CB5D39",
                                                    "19",
                                                    "Treatment_Arm_2",
                                                    "Treatment_Arm_2_description",
                                                    "TREATMENT_ARM_2_SHORTNAME",
                                                    "0",
                                                    "0",
                                                    "1",
                                                    "Assigned",
                                                    "2025-10-29T17:31:09.030Z",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "MLOT1",
                                                    "BLT1",
                                                    "2030-12-31T00:00:00.000Z",
                                                    "2026-12-31T00:00:00.000Z",
                                                    "10",
                                                    "0",
                                                    "10",
                                                    "0",
                                                    "9A8B7C6D5E4F4A1B8C7D6E5F4A3B2C1D",
                                                    "1001",
                                                    "SHIP-0002",
                                                    "RECEIVED",
                                                    "2025-10-28T08:00:00.000Z",
                                                    "2025-10-28T10:00:00.000Z",
                                                    "TRK123999",
                                                    "1",
                                                    "Y",
                                                    "Week2",
                                                    "WEEK2",
                                                    "COMPLETE",
                                                    "2025-10-29T00:00:00.000Z",
                                                    "DISPENSATION",
                                                    "Visit_Complete",
                                                    "2025-11-24T00:00:00.000Z",
                                                    "2025-11-28T00:00:00.000Z",
                                                    "2025-11-26T00:00:00.000Z",
                                                    "28",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "2",
                                                    "0",
                                                    "449CBE4790CF4F66AB58619C86CA405B",
                                                    "206",
                                                    "Week3",
                                                    "WEEK3",
                                                    "Week3",
                                                    "1536",
                                                    "Device",
                                                    "ActivityWatch",
                                                    "DevicetoCloud",
                                                    "0",
                                                    "UNBLINDED",
                                                    "D26E345F8CBD44B6A22C666F11D1F04D",
                                                    "27",
                                                    "Device",
                                                    "DEVICE",
                                                    "1",
                                                    "1",
                                                    "0",
                                                    "N/A",
                                                    "0",
                                                    "0",
                                                    "0",
                                                    "424CA68C1E523E82E063BDD14C646211",
                                                    "255",
                                                    "50254",
                                                    "mHC2CDevice",
                                                    "Dispensed",
                                                    "2025-10-29T17:31:19.625Z",
                                                    "0",
                                                    "AW-50254",
                                                    "0",
                                                    "N/A",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "false",
                                                    "1",
                                                    "1",
                                                    "7E6D5C4B3A29100FEE12DDCCBBAA9988",
                                                    "0",
                                                    "Dose by Weight",
                                                    "Weight (kg)",
                                                    "Week1",
                                                    "2",
                                                    "0",
                                                    "Once Daily",
                                                    "0",
                                                    "0",
                                                    "70",
                                                    "2025-10-29T17:31:19.861Z",
                                                    "3099-12-31T00:00:00.000Z",
                                                    "MODIFIED",
                                                    "4",
                                                    "Data correction",
                                                    "Updated during data sync",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "Y",
                                                    "11223344556677889900AABBCCDDEEFF",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:15:00.000Z",
                                                    "A1B2C3D4E5F60718293A4B5C6D7E8F90",
                                                    "88",
                                                    "Site Pharmacist",
                                                    "2025-10-29T12:20:00.000Z",
                                                    "2",
                                                    "2025-10-29T17:32:35.284Z",
                                                    "BLK-0001",
                                                    "50262",
                                                    "MAT-001",
                                                    "ITEM-001",
                                                    "1",
                                                    "N",
                                                    "Outbound",
                                                    "N",
                                                    "CD1D3E9BB0C045EC8E55B2FE2E7242C0",
                                                    "14",
                                                    "Site User (template)",
                                                    "N"
                                                ]
                                            ]
                                        }
                                    },
                                    "UnblindedKitsDataSetEmptyReport":{
                                        "description":"UnblindedKitsDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "THERAPEUTIC_AREA",
                                                "STUDY_PHASE",
                                                "BLINDING_TYPE",
                                                "COUNTRY_NAME",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "INVESTIGATOR",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STATUS",
                                                "SITE_STUDY_VERSION",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "SITE_ID_NAME",
                                                "SITE_TYPE",
                                                "SUBJECT_ID",
                                                "SUBJECT_WID",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "SUBJECT_STATE",
                                                "SCREENING_NUMBER",
                                                "RANDOMIZATION_TITLE",
                                                "RANDOMIZATION_DESCRIPTION",
                                                "RANDOMIZATION_TYPE",
                                                "COHORT_ID",
                                                "COHORT_WID",
                                                "COHORT_NAME",
                                                "RERANDOMIZATION",
                                                "TREATMENT_ID",
                                                "TREATMENT_WID",
                                                "TREATMENT_ARM_TITLE",
                                                "TREATMENT_ARM_DESCRIPTION",
                                                "TREATMENT_ARM_ID",
                                                "RESTRICT_RANDOMIZATION_TO_AVAILABLE_KIT_TYPES",
                                                "ASSIGNED_SKIPPED_RANDOMIZATION_NUMBERS",
                                                "RAND_NUMBER",
                                                "RND_STATUS",
                                                "RANDOMIZATION_DATE",
                                                "MANFACTURING_LOT_TITLE",
                                                "BLINDED_LOT_TITLE",
                                                "MANFACTURING_LOT_SHORT_NAME",
                                                "BLINDED_LOT_SHORT_NAME",
                                                "MANFACTURING_LOT_EXPIRATION_DATE",
                                                "BLINDED_LOT_EXPIRATION_DATE",
                                                "MANFACTURING_LOT_DO_NOT_SHIP_DAYS",
                                                "BLINDED_LOT_DO_NOT_SHIP_DAYS",
                                                "MANFACTURING_LOT_DO_NOT_COUNT_DAYS",
                                                "BLINDED_LOT_DO_NOT_COUNT_DAYS",
                                                "SHIPMENT_ID",
                                                "SHIPMENT_WID",
                                                "SHIPMENT_NAME",
                                                "SHIPMENT_STATUS",
                                                "SHIPMENT_CREATED_DATE",
                                                "SHIPMENT_DATE",
                                                "TRACKING_NUMBER",
                                                "VISIT_IS_REQUIRED",
                                                "IS_SCHEDULED_VISIT",
                                                "SCHEDULED_FROM_EVENT_NAME",
                                                "SCHEDULED_FROM_EVENT_REFNAME",
                                                "VISIT_STATUS",
                                                "VISIT_START_DATE",
                                                "VISIT_TYPE",
                                                "EVENT_TYPE",
                                                "PROJECTED_VISIT_START_DATE",
                                                "PROJECTED_VISIT_END_DATE",
                                                "PROJECTED_VISIT_DATE",
                                                "DELAY_DAYS",
                                                "DELAY_HOURS",
                                                "VISIT_WINDOW_BEFORE_DAYS",
                                                "VISIT_WINDOW_BEFORE_HOURS",
                                                "VISIT_WINDOW_AFTER_DAYS",
                                                "VISIT_WINDOW_AFTER_HOURS",
                                                "EVENT_ID",
                                                "EVENT_WID",
                                                "EVENT_TITLE",
                                                "EVENT_REFNAME",
                                                "EVENT_ID_NAME",
                                                "VISIT_ORDER",
                                                "KIT_TYPE",
                                                "DEVICE_TYPE",
                                                "DEVICE_CONNECTION",
                                                "CALCULATING_DOSES",
                                                "DISTRIBUTION_SETTINGS",
                                                "KIT_DESIGN_ID",
                                                "KIT_DESIGN_WID",
                                                "KIT_TYPE_ID",
                                                "TRIAL_SUPPLY_TYPE",
                                                "MINIMUM_KITS_TO_SHIP",
                                                "UNITS_PER_KIT",
                                                "SINGLE_UNIT_DOSE_VALUE",
                                                "SINGLE_UNIT_DOSE_UNITS",
                                                "CRA_VERIFIED",
                                                "BALANCE_UNITS",
                                                "TITRATION",
                                                "INVENTORY_ID",
                                                "INVENTORY_WID",
                                                "SEQUENCE_NUMBER",
                                                "KIT_DESCRIPTION",
                                                "KIT_STATUS",
                                                "DISPENSATION_DATE",
                                                "DOSAGE",
                                                "BAR_CODE",
                                                "DISPENSATION_CONFIRMED",
                                                "MEASUREMENT",
                                                "FREQUENCY",
                                                "RETURNED_UNITS",
                                                "MISSING_UNITS",
                                                "CONSERVED",
                                                "QUANTITY",
                                                "INSTANCE_NUMBER",
                                                "CALCULATED_DOSE_ID",
                                                "CALCULATED_DOSE_WID",
                                                "CALCULATED_DOSE_TITLE",
                                                "FORM_QUESTION_FOR_CALCULATED_DOSE",
                                                "VISIT_WHERE_FORM_IS_COLLECTED",
                                                "DOSE_PRECISION",
                                                "DOSE_ROUND_UP",
                                                "DOSE_FREQUENCY",
                                                "DOSE_LEFT_OVER_UNITS",
                                                "KIT_MEASUREMENT",
                                                "SUBJECT_MEASUREMENT",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "OBJECT_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "IS_CURRENT",
                                                "VERIFIED_BY_ID",
                                                "VERIFIED_BY_WID",
                                                "VERIFIED_BY",
                                                "VERIFIED_DATE",
                                                "CONFIRMED_BY_ID",
                                                "CONFIRMED_BY_WID",
                                                "CONFIRMED_BY",
                                                "CONFIRMED_DATE",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "DH_TIMESTAMP",
                                                "BLOCK_NUMBER",
                                                "KIT_NUMBER",
                                                "MATERIAL_ID",
                                                "ITEM_NUMBER",
                                                "COUNT_OF_KITS",
                                                "IS_NON_SERIALIZED_KIT",
                                                "ORDER_TYPE",
                                                "FORCED_RAND",
                                                "CURRENT_STUDY_ROLE_ID",
                                                "CURRENT_STUDY_ROLE_WID",
                                                "CURRENT_STUDY_ROLE_NAME",
                                                "COMPOUNDING_KITS"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-datahub-svc-rest-v9.0-tenant-{tenantId}-studies-{studyId}-{mode}-unblindedKits-post",
                "x-filename-id":"ec-datahub-svc-rest-v9.0-tenant-tenantid-studies-studyid-mode-unblindedkits-post"
            }
        },
        "/ec-datahub-svc/rest/v3.1/tenant/{tenantId}/studies/{studyId}/{mode}/subjects":{
            "post":{
                "tags":[
                    "Data Hub/Datasets/Get subject data details"
                ],
                "summary":"[Deprecated]: V3.1",
                "description":"<p><strong>Deprecated</strong>: Use latest version instead.</p><p>Retrieves the study-permissioned Subject dataset for a single study and mode.</p><p>The dataset exposes versioned subject profile and status history, including identifiers and numbering, site assignment and transfer context, screening and enrollment outcomes, consent and demographic fields, and audit columns.</p><p>Supports select, filter, sort, limit, and offset query patterns.</p><p>The dataset returns subject-level history rows for subjects associated with the study and mode.</p><p>This version additionally includes the following data points: <code>PREVIOUS_SUBJECT_NUMBER</code>, <code>FREEZE</code>, <code>VERIFIED</code>, <code>SIGNED</code>, and <code>EXTERNAL_SOURCE_STATUS_DATE</code>.</p><p><strong>Required permission</strong>: <a href=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/analytics-information/permissions-access-analytics-datasets.html\">SubjectDatasetPost</a>.</p><p><strong>Recommended order columns</strong>: The backend query always orders results by <code>DH_TIMESTAMP</code> and <code>VERSION_START</code> in ascending order first. If <code>orderColumns</code> is empty, only these two columns are used. If <code>orderColumns</code> is provided, the specified columns are appended after <code>DH_TIMESTAMP</code> and <code>VERSION_START</code>. For stable, deterministic pagination, use <code>STUDY_ID</code> and <code>SUBJECT_ID</code> in the <code>orderColumns</code> field of the request payload.</p>",
                "operationId":"retrieveSubjectDataSetQuery_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"<p>Execution <code>mode</code> for the study.</p>\n<p>Allowed values: <code>test<code>, <code>active<code>, <code>training<code>.</p>\n<p>Example: <code>test</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"active",
                            "enum":[
                                "test",
                                "active",
                                "training"
                            ]
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"<p>Unique study identifier supplied in the <code>studyId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the study.</p>\n<p>Example: <code>0C7CBA3F70034C47947E2FAB086BFBF5</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                        }
                    },
                    {
                        "name":"tenantId",
                        "in":"path",
                        "description":"<p>Unique tenant identifier supplied in the <code>tenantId</code> path parameter.</p>\n<p>Use the uppercase hexadecimal UUID value for the tenant.</p>\n<p>Example: <code>EC942244BB30163BE053BEC44C64CF34</code>.</p>\n",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid",
                            "example":"EC942244BB30163BE053BEC44C64CF34"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"<p>Page size for the result set.</p>\n<ul>\n  <li><code>0</code> disables pagination and returns the maximum result set allowed by the dataset endpoint.</li>\n  <li>Positive values enable pagination.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"<p>Zero-based row offset.</p>\n<ul>\n  <li>Counts rows, not pages.</li>\n  <li>To fetch the next page, repeat the same request body and set <code>offset = previous offset + previous count</code>.</li>\n  <li>When <code>limit = 0</code>, this value is ignored and the response echoes <code>offset = 0</code>.</li>\n  <li>When <code>limit &gt; 0</code>, an offset beyond the available rows returns HTTP 200 with an empty page.</li>\n  <li>Negative values return HTTP 400.</li>\n</ul>\n",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DataHubQueryDto"
                            },
                            "examples":{
                                "SubjectDataSetQuery":{
                                    "description":"SubjectDataSetQuery",
                                    "value":{
                                        "selectColumns":[
                                            "ID",
                                            "SUBJECT_WID",
                                            "DESCRIPTION",
                                            "SUBJECT_NUMBER",
                                            "PREVIOUS_SUBJECT_NUMBER",
                                            "STUDY_ID",
                                            "STUDY_WID",
                                            "SITE_ID",
                                            "SITE_WID",
                                            "SITE_NAME",
                                            "DOB",
                                            "SCREENING_DATE",
                                            "STATE",
                                            "STATE_DATE",
                                            "SCREENING_FAILURE",
                                            "ENROLLMENT_FAILURE",
                                            "ENROLLMENT_OVERRIDE",
                                            "INFORMED_CONSENT_DATE",
                                            "GENDER",
                                            "SUBJECT_TRANSFER_ID",
                                            "STUDY_VERSION",
                                            "CODE_BREAK",
                                            "EVENT_TYPE",
                                            "SITE_SERIAL_NUMBER",
                                            "STUDY_SERIAL_NUMBER",
                                            "COUNTRY_NAME",
                                            "INVESTIGATOR",
                                            "VERSION_START",
                                            "VERSION_END",
                                            "OPERATION_TYPE",
                                            "USER_ID",
                                            "USER_WID",
                                            "USER_NAME",
                                            "OBJECT_VERSION_NUMBER",
                                            "SOFTWARE_VERSION_NUMBER",
                                            "REASON",
                                            "COMMENT",
                                            "IS_CURRENT",
                                            "DH_TIMESTAMP",
                                            "TOTAL_VISITS",
                                            "TOTAL_FORMS",
                                            "COMPLETED_VISITS",
                                            "TOTAL_FORMS_COMPLETED_VISITS",
                                            "COMPLETED_FORMS",
                                            "FREEZE",
                                            "VERIFIED",
                                            "SIGNED",
                                            "EXTERNAL_SOURCE_STATUS_DATE",
                                            "STUDY_ID_NAME",
                                            "STUDY_TITLE",
                                            "STUDY_REFNAME",
                                            "STUDY_PHASE",
                                            "THERAPEUTIC_AREA",
                                            "BLINDING_TYPE",
                                            "FROM_SITE_ID",
                                            "FROM_SITE_WID",
                                            "FROM_SITE_NAME",
                                            "OLD_SUBJECT_NUMBER",
                                            "SITE_ID_NAME",
                                            "SITE_STATUS",
                                            "ADDRESS_STREET_1",
                                            "ADDRESS_STREET_2",
                                            "ADDRESS_CITY",
                                            "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                            "ADDRESS_POSTALCODE",
                                            "ADDRESS_COUNTRY",
                                            "PHONE",
                                            "FAX",
                                            "EMAIL",
                                            "SHIPPING_ADDRESS_1",
                                            "SHIPPING_ADDRESS_2",
                                            "SHIPPING_CITY",
                                            "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                            "SHIPPING_ZIP",
                                            "SHIPPING_COUNTRY",
                                            "SHIPPING_PHONE",
                                            "SHIPPING_FAX",
                                            "SHIPPING_EMAIL",
                                            "SITE_STUDY_VERSION",
                                            "DRUG_DESTRUCTION_CAPABLE",
                                            "PI_PREFIX",
                                            "ADD_SUBJECTS",
                                            "SCREEN_SUBJECTS",
                                            "RANDOMIZE_SUBJECTS",
                                            "DISPENSE_TO_SUBJECTS",
                                            "DEA_NUMBER",
                                            "EXPIRATION",
                                            "TIMEZONE",
                                            "SHIPPING_ATTENTION",
                                            "SDV_GROUP_NAME",
                                            "INITIAL_SUBJECTS_COUNT",
                                            "INITIAL_SUBJECTS_SDV_TYPE",
                                            "REMAINING_SUBJECTS_PERCENTAGE",
                                            "REMAINING_SUBJECTS_SDV_TYPE"
                                        ],
                                        "whereColumns":[
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":">=",
                                                "value":[
                                                    "2026-04-08T00:00:00.000Z"
                                                ]
                                            },
                                            {
                                                "columnName":"DH_TIMESTAMP",
                                                "operator":"<=",
                                                "value":[
                                                    "2026-04-09T00:00:00.000Z"
                                                ]
                                            }
                                        ],
                                        "orderColumns":[
                                            {
                                                "columnName":"STUDY_ID",
                                                "sortOrder":"ASC"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"<p><strong>Response behavior</strong></p>\n<ul>\n  <li>The response is tabular. <code>columns</code> defines the selected output order, and each row in <code>data</code> follows that same order.</li>\n  <li>Every value in <code>data</code> is returned as a JSON string or <code>null</code>, including logical numbers and date/time values.</li>\n  <li><code>hasMore = \"true\"</code> means more matching rows exist after the current page.</li>\n  <li>If filters match no rows, or <code>offset</code> is beyond the last row, the API returns HTTP 200 with <code>data = []</code>, <code>count = 0</code>, and <code>hasMore = \"false\"</code>.</li>\n</ul>\n\n<p id=\"sections-top\"><strong>Section index</strong></p>\n<p><a href=\"#study-context\">Study context</a> | <a href=\"#site-context\">Site context</a> | <a href=\"#country-context\">Country context</a> | <a href=\"#subject-context\">Subject context</a> | <a href=\"#event-context\">Event context</a> | <a href=\"#aggregation-metrics\">Aggregation metrics</a> | <a href=\"#audit-context\">Audit context</a> | <a href=\"#reference-and-system-identifiers\">Reference and system identifiers</a></p>\n\n<h4 id=\"study-context\">Study context</h4>\n<p>Study-level identifiers, version metadata, and protocol attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_TITLE</code></td><td>VARCHAR2(4000 CHAR)</td><td><p>The <code>STUDY_TITLE</code> data element reflects the title of a protocol as defined by the study manager each time a new study version is created and renamed in the Study Mode section. For example, if the original study version is named <code>P01_A23</code> in <code>Active</code> mode, that name appears as the <code>STUDY_TITLE</code>. If the study manager later creates a new version of the study and renames it to <code>P01_A23_Production2</code>, this new name will be displayed as the <code>STUDY_TITLE</code> for that version when used in <code>Active</code> mode.</p><p>When you include multiple study versions in your dataset, and each has a different title, the <code>STUDY_TITLE</code> element will reflect the specific title assigned to each version. For example, your dataset might include study versions <code>1.0.2</code>, <code>1.0.3</code>, and <code>1.0.4</code>. If the study manager renamed each version, you would see those unique titles in the dataset:</p><ul><li><code>P_01_A23</code> (for study version <code>1.0.2</code>)</li><li><code>P01_A23_Production2</code> (for study version <code>1.0.3</code>)</li><li><code>P01_A23_Production3</code> (for study version <code>1.0.4</code>)</li></ul></td></tr>\n    <tr><td><code>STUDY_ID_NAME</code></td><td>VARCHAR2(64 CHAR)</td><td>A study ID as specified by the study manager when they created the study, such as a protocol acronym and protocol number.</td></tr>\n    <tr><td><code>STUDY_REFNAME</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the study's reference name used by the system. This value is composed by the <code>STUDY_ID_NAME</code> converted to uppercase with blank spaces removed. Once created, this value never changes, even if <code>STUDY_ID_NAME</code> is changed.</td></tr>\n    <tr><td><code>STUDY_VERSION</code></td><td>VARCHAR2(32 CHAR)</td><td>Indicates the study version number of the referencing data in a custom report.</td></tr>\n    <tr><td><code>STUDY_SERIAL_NUMBER</code></td><td>NUMBER</td><td><p>For internal use only.</p><p>Internal Clinical One study identifier.</p></td></tr>\n    <tr><td><code>STUDY_PHASE</code></td><td>VARCHAR2(64 CHAR)</td><td>A study's phase as indicated by the study manager when they created the study. Possible values include <code>I</code>, <code>I/II</code>, <code>II</code>, <code>II/III</code>, <code>III</code>, <code>IV</code>, or <code>Other</code>.</td></tr>\n    <tr><td><code>BLINDING_TYPE</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates whether the study is an open-label type of study or a blinded study, as specified by the study manager when they created the study. Possible values include <code>OpenLabel</code>, <code>Blinded</code>, <code>OpenLabelBlinded</code>, or <code>Observational</code>.</td></tr>\n    <tr><td><code>THERAPEUTIC_AREA</code></td><td>VARCHAR2(64 CHAR)</td><td>Indicates the therapeutic area as specified by the study manager when they created the study. Possible values include <code>CardiologyVascularDiseases</code>, <code>DentalOralHealth</code>, <code>Dermatology</code>, <code>Endocrinology</code>, <code>FamilyMedicine</code>, <code>Gastroenterology</code>, <code>GeneticDisease</code>, <code>HealthyVolunteers</code>, <code>Hematology</code>, <code>Hepatology</code>, <code>Immunology</code>, <code>InfectionsInfectiousDisease</code>, <code>Musculoskeletal</code>, <code>Nephrology</code>, <code>Neurology</code>, <code>NutritionWeightLoss</code>, <code>ObstetricsGynecology</code>, <code>Oncology</code>, <code>Ophthalmology</code>, <code>Otolaryngology</code>, <code>PediatricsNeonatology</code>, <code>PlasticSurgery</code>, <code>PharmacologyToxicology</code>, <code>Podiatry</code>, <code>PsychiatryPsychology</code>, <code>PulmonaryRespiratoryDiseases</code>, <code>Rheumatology</code>, <code>Sleep</code>, <code>Trauma</code>, <code>Urology</code>, or <code>Vaccines</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"site-context\">Site context</h4>\n<p>Site profile, operational settings, and site-maintained contact details associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>Indicates the site's name as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_ID_NAME</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the site ID as entered by a site manager when they created or last modified a site.</td></tr>\n    <tr><td><code>SITE_STATUS</code></td><td>VARCHAR2(50 CHAR)</td><td>Indicates the status of a site whether it is <code>New</code>, <code>Active</code>, or <code>Retired</code>.</td></tr>\n    <tr><td><code>SITE_STUDY_VERSION</code></td><td>VARCHAR2(2048 CHAR)</td><td>The study version assigned to the site, as configured by a site manager.</td></tr>\n    <tr><td><code>SITE_SERIAL_NUMBER</code></td><td>NUMBER</td><td>The serial number of the site</td></tr>\n    <tr><td><code>FROM_SITE_NAME</code></td><td>VARCHAR2(500 CHAR)</td><td>If a subject is transferred, this field is populated with the site the subject was transferred from</td></tr>\n    <tr><td><code>INVESTIGATOR</code></td><td>VARCHAR2(2048 CHAR)</td><td>A Principal Investigator's Full Name as listed when the site manager created the site.</td></tr>\n    <tr><td><code>PI_PREFIX</code></td><td>VARCHAR2(2048 CHAR)</td><td>The principal investigator's prefix at the site. Possible values include <code>1st Lt</code>, <code>Adm</code>, <code>Atty</code>, <code>Brother</code>, <code>Capt</code>, <code>Chief</code>, <code>Cmdr</code>, <code>Col</code>, <code>Dean</code>, <code>Dr</code>, <code>Elder</code>, <code>Father</code>, <code>Gen</code>, <code>Gov</code>, <code>Hon</code>, <code>Lt Col</code>, <code>Maj</code>, <code>MSgt</code>, <code>Mr</code>, <code>Mrs</code>, <code>Ms</code>, <code>Prince</code>, <code>Prof</code>, <code>Rabbi</code>, <code>Rev</code>, or <code>Sister</code>.</td></tr>\n    <tr><td><code>DEA_NUMBER</code></td><td>VARCHAR2(2048 CHAR)</td><td>The DEA registration number.</td></tr>\n    <tr><td><code>EXPIRATION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the expiration date of the DEA Registration Number as defined by a site manager.</td></tr>\n    <tr><td><code>ADD_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from adding subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SCREEN_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from screening subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>RANDOMIZE_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from randomizing subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DISPENSE_TO_SUBJECTS</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that enables or prevents site users from dispensing kits, devices or performing dose changes for subjects at one or multiple sites. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>DRUG_DESTRUCTION_CAPABLE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Flag that defines if the kit type is destructible at the site. Possible values include <code>true</code> or <code>false</code>.</td></tr>\n    <tr><td><code>SDV_GROUP_NAME</code></td><td>VARCHAR2(255)</td><td>Name of the SDV Strategy, as entered by the study manager.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_COUNT</code></td><td>VARCHAR2(2048)</td><td>Number of initial subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>INITIAL_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_PERCENTAGE</code></td><td>VARCHAR2(2048)</td><td>Number of remaining subjects included in the SDV strategy.</td></tr>\n    <tr><td><code>REMAINING_SUBJECTS_SDV_TYPE</code></td><td>VARCHAR2(2048)</td><td>Type of Source Data Verification: <code>All Questions</code> or <code>Critical Questions</code>. Possible values include <code>All Questions</code> or <code>Critical Questions Only</code>.</td></tr>\n    <tr><td><code>ADDRESS_STREET_1</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's first address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STREET_2</code></td><td>VARCHAR2(150 CHAR)</td><td>A site's second address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's city as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>A site's state, province, or county as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>ADDRESS_POSTALCODE</code></td><td>VARCHAR2(20 CHAR)</td><td>The Zip Postal Code associated with a site's address.</td></tr>\n    <tr><td><code>ADDRESS_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>A site's country as entered by the site manager when they created or last modified the site. The field display the country ISO code.</td></tr>\n    <tr><td><code>PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact phone number as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>The contact fax number as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address of the site as entered by the site administrator when they created or last modified the site.</td></tr>\n    <tr><td><code>TIMEZONE</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the time zone the site is currently placed on as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ATTENTION</code></td><td>VARCHAR2(2048 CHAR)</td><td>Indicates the name of the person who will receive shipments at the site, as specified by a site manager.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_1</code></td><td>VARCHAR2(150 CHAR)</td><td>The first line of a site's shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ADDRESS_2</code></td><td>VARCHAR2(150 CHAR)</td><td>The second line of a site's second shipping address as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_CITY</code></td><td>VARCHAR2(100 CHAR)</td><td>City associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_STATE_OR_PROV_OR_CNTY</code></td><td>VARCHAR2(100 CHAR)</td><td>State, province, or county associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_ZIP</code></td><td>VARCHAR2(20 CHAR)</td><td>Zip Postal Code associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_COUNTRY</code></td><td>VARCHAR2(4000 CHAR)</td><td>Country associated with the shipping address, as entered by the site manager when they created or last modified the site.</td></tr>\n    <tr><td><code>SHIPPING_PHONE</code></td><td>VARCHAR2(500 CHAR)</td><td>Phone number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_FAX</code></td><td>VARCHAR2(500 CHAR)</td><td>Fax number associated with the shipping address.</td></tr>\n    <tr><td><code>SHIPPING_EMAIL</code></td><td>VARCHAR2(500 CHAR)</td><td>Email address associated with the shipping address.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"country-context\">Country context</h4>\n<p>Country-level fields exposed separately in Oracle Analytics for geographic reporting.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>COUNTRY_NAME</code></td><td>VARCHAR2(4000 CHAR)</td><td>Indicates a country's two-digit ISO code.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"subject-context\">Subject context</h4>\n<p>Subject identity, status, enrollment, and transfer attributes associated with the record.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td><p>The number currently assigned to the subject in the system as identifier.</p><p><strong>Note:</strong> <code>NULL</code> is displayed if a subject was removed using the Undo Add Subject feature.</p></td></tr>\n    <tr><td><code>PREVIOUS_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>When a subject number change is applied, this field holds the number that was assigned to the subject before the change.</td></tr>\n    <tr><td><code>OLD_SUBJECT_NUMBER</code></td><td>VARCHAR2(500 CHAR)</td><td>A subject's previously assigned number in the system for a transferred subject.</td></tr>\n    <tr><td><code>DOB</code></td><td>DATE</td><td><p>Indicates the date of birth.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>GENDER</code></td><td>VARCHAR2(10 CHAR)</td><td><p>The selected gender a subject identifies as.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>STATE</code></td><td>VARCHAR2(100 CHAR)</td><td><p>A subject's state in Clinical One Cloud Service.</p><p><strong>Note:</strong> When a subject is <code>Screened</code>, the dataset returns <code>Screening_Initiated</code> until the next visit is complete and the subject becomes <code>Active</code>. When a subject is <code>Screen Failed</code>, the dataset returns <code>Auto_Screen_Failed</code>. Possible values include <code>New</code>, <code>Screening_Initiated</code>, <code>Screen_Failed</code>, <code>Auto_Screen_Failed</code>, <code>Enrolled</code>, <code>Active</code>, <code>Subject Visit</code>, <code>Subject_Transferred</code>, <code>Withdrawn</code>, or <code>Complete</code>.</p></td></tr>\n    <tr><td><code>STATE_DATE</code></td><td>DATE</td><td>The date the subject entered a state.</td></tr>\n    <tr><td><code>SCREENING_DATE</code></td><td>DATE</td><td>Date of the subject's initial screening visit.</td></tr>\n    <tr><td><code>INFORMED_CONSENT_DATE</code></td><td>DATE</td><td><p>The date on which the informed consent was signed by the subject.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>SCREENING_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td>Indicates whether a subject failed the screening. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n    <tr><td><code>ENROLLMENT_FAILURE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates whether a subject could not be enrolled in the study.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>ENROLLMENT_OVERRIDE</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Indicates a subject's enrollment override.</p><p>Currently, this is a placeholder column that does not contain any data. This column is planned for a future release.</p></td></tr>\n    <tr><td><code>EXTERNAL_SOURCE_STATUS_DATE</code></td><td>TIMESTAMP(6)</td><td>Indicates the date on which the subject status was updated by an external source.</td></tr>\n    <tr><td><code>CODE_BREAK</code></td><td>VARCHAR2(2 CHAR)</td><td>Indicates whether a subject went through a Code Break event. Possible values include <code>Y</code> or <code>N</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"event-context\">Event context</h4>\n<p>Event metadata, visit scheduling, and visit-status attributes associated with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>EVENT_TYPE</code></td><td>VARCHAR2(100)</td><td><p>Displays the type of event that impacts a subject's status. Only events that occurred in the study are displayed. Possible subject event values include:</p><ul><li><code>New</code></li><li><code>Screened</code></li><li><code>Randomized</code></li><li><code>Withdrawn</code></li><li><code>Undo_Withdrawn</code></li><li><code>Transferred</code></li><li><code>Screen_Failed</code></li><li><code>Screen_Fail_Update</code></li><li><code>Code_Break</code></li><li><code>Complete</code></li><li><code>Undo_Complete</code></li><li><code>Undo_ScrFailed</code></li><li><code>Enrolled</code></li><li><code>Undo_Add_Subject</code></li><li><code>SubjectNumberChanged</code></li><li><code>SubjectNumberReplaced</code></li><li><code>SubjectPatientLinkCreated</code></li><li><code>SubjectPatientLinkRemoved</code></li><li><code>CompletionUpdate</code></li><li><code>WithdrawalUpdate</code></li><li><code>Undo_Enrolled</code></li><li><code>ScreenUpdate</code></li><li><code>EnrollUpdate</code></li></ul></td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"aggregation-metrics\">Aggregation metrics</h4>\n<p>Derived counts and rollup indicators calculated from the underlying study data.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>TOTAL_VISITS</code></td><td>NUMBER</td><td>The total number of visits in a study version. This count does not include unscheduled visits.</td></tr>\n    <tr><td><code>COMPLETED_VISITS</code></td><td>NUMBER</td><td>Count of completed visits for a subject. When there are incomplete visits, the count is recalculated. This data element does not include unscheduled visits.</td></tr>\n    <tr><td><code>TOTAL_FORMS</code></td><td>NUMBER</td><td><p>The total number of forms across visits in the study version.</p><ul><li>A repeating form instance is counted as one form.</li><li>Forms assigned to an unscheduled visit are not included in this count.</li></ul></td></tr>\n    <tr><td><code>COMPLETED_FORMS</code></td><td>NUMBER</td><td>Count of completed forms for a subject, irrespective of visit status and form status. Each instance of a repeating form is counted as one form.</td></tr>\n    <tr><td><code>TOTAL_FORMS_COMPLETED_VISITS</code></td><td>NUMBER</td><td>The total number of completed forms associated with visits.</td></tr>\n    <tr><td><code>FREEZE</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if the subject's data is frozen by a data manager or CRA. Possible values include <code>FROZEN</code> or <code>UNFROZEN</code>.</td></tr>\n    <tr><td><code>VERIFIED</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Indicates the aggregate verification status for the subject's data. Data element can be populated with the following values:</p><ul><li><code>VERIFIED</code>: A question, form, or visit is verified.</li><li><code>UNVERIFIED</code>: A question, form, or visit was once verified, then updated making it unverified.</li><li><code>VERIFY_REQUIRED</code>: A question, form, or visit requires verification and is not yet verified.</li></ul></td></tr>\n    <tr><td><code>SIGNED</code></td><td>VARCHAR2(16 CHAR)</td><td>Indicates if a valid casebook signature is applied to the subject. Possible values include <code>SIGNED</code> or <code>UNSIGNED</code>.</td></tr>\n</tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"audit-context\">Audit context</h4>\n<p>Audit-trail metadata describing row versioning, acting users, and reason-for-change details.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>VERSION_START</code></td><td>TIMESTAMP(6)</td><td>Audit trail timestamp when this version of the dataset row became effective. Together with <code>VERSION_END</code>, it defines the validity window for the row version.</td></tr>\n    <tr><td><code>VERSION_END</code></td><td>TIMESTAMP(6)</td><td>Indicates the date and time of when data was changed, if the data is not current.</td></tr>\n    <tr><td><code>OPERATION_TYPE</code></td><td>VARCHAR2(16 CHAR)</td><td><p>Audit trail field that indicates how the dataset row version was produced.</p><ul><li><code>CREATED</code>: the row was initially created.</li><li><code>MODIFIED</code>: an existing row was updated.</li><li><code>REMOVED</code>: the row was removed from the active record set.</li></ul></td></tr>\n    <tr><td><code>USER_NAME</code></td><td>VARCHAR2(255 CHAR)</td><td><p>Audit trail field that represents the user who performed the action.</p><p>The value for this column may represent a user's actual username or a user's email address, depending on how the user login was defined in Oracle Life Sciences IAMS.</p></td></tr>\n    <tr><td><code>OBJECT_VERSION_NUMBER</code></td><td>NUMBER</td><td>Audit trail field that represents the version number of the data.</td></tr>\n    <tr><td><code>REASON</code></td><td>VARCHAR2(255 CHAR)</td><td>Audit trail reason recorded for the dataset row change. Populated when a reason for change is provided for the row update.</td></tr>\n    <tr><td><code>COMMENT</code></td><td>VARCHAR2(2048 CHAR)</td><td>Required comment in a reason for change if Other is selected. Populated as Rule Execution for calculated values.</td></tr>\n    <tr><td><code>IS_CURRENT</code></td><td>CHAR(1)</td><td>Audit trail flag that indicates whether the dataset row version is the current version (<code>Y</code>) or a historical version (<code>N</code>).</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n\n<h4 id=\"reference-and-system-identifiers\">Reference and system identifiers</h4>\n<p>System identifiers, numeric reference keys, and technical linkage fields carried with the dataset row.</p>\n<table border=\"1\" cellspacing=\"0\" cellpadding=\"6\">\n  <thead>\n    <tr>\n      <th>Column Name</th>\n      <th>Data Type</th>\n      <th>Description</th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr><td><code>STUDY_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the study.</td></tr>\n    <tr><td><code>STUDY_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the study.</td></tr>\n    <tr><td><code>SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site.</td></tr>\n    <tr><td><code>SITE_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of a site.</td></tr>\n    <tr><td><code>USER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the user.</td></tr>\n    <tr><td><code>USER_WID</code></td><td>NUMBER(10)</td><td>Indicates a user's numeric identifier.</td></tr>\n    <tr><td><code>FROM_SITE_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the site from which the subject was transferred.</td></tr>\n    <tr><td><code>FROM_SITE_WID</code></td><td>NUMBER(10)</td><td>Indicates the site numeric identifier from which the subject was transferred.</td></tr>\n    <tr><td><code>ID</code></td><td>RAW(16 BYTE)</td><td>Row-level GUID that uniquely identifies this Subject dataset record.</td></tr>\n    <tr><td><code>SUBJECT_WID</code></td><td>NUMBER(10)</td><td>A number that represents the unique identifier of the subject.</td></tr>\n    <tr><td><code>SUBJECT_TRANSFER_ID</code></td><td>RAW(16 BYTE)</td><td>GUID of the subject transfer record.</td></tr>\n    <tr><td><code>DESCRIPTION</code></td><td>VARCHAR2(500 CHAR)</td><td>This is a placeholder column that does not contain any data.</td></tr>\n    <tr><td><code>DH_TIMESTAMP</code></td><td>TIMESTAMP(6)</td><td>A timestamp that indicates when the data became available in the dataset.</td></tr>\n    <tr><td><code>SOFTWARE_VERSION_NUMBER</code></td><td>NUMBER</td><td>A number that increases incrementally every time a data point is modified.</td></tr>\n  </tbody>\n</table>\n\n<p><strong>Parent topic:</strong> <a href=\"#sections-top\">Section index</a></p>\n<br>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubReportDto"
                                },
                                "examples":{
                                    "SubjectDataSetReport":{
                                        "description":"SubjectDataSetReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":1,
                                            "limit":1,
                                            "offset":0,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                                [
                                                    "C6A18791060849BBBAE1F7A16A62B389",
                                                    "1",
                                                    "Auto-created subject for Site2",
                                                    "DATAHUB_AUT_Site2_Active01",
                                                    "DATAHUB_AUT_Site2_Screen01",
                                                    "0C7CBA3F70034C47947E2FAB086BFBF5",
                                                    "25",
                                                    "3042285B08804CFF98F8F96B3626C843",
                                                    "455",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "1988-07-12T00:00:00.000Z",
                                                    "2025-10-20T09:15:00.000Z",
                                                    "New",
                                                    "2025-10-29T13:06:18.000Z",
                                                    "N",
                                                    "None",
                                                    "None",
                                                    "2025-10-20T09:20:00.000Z",
                                                    "Female",
                                                    "6A1D5B3E2C0B4D8E9F1A2C3B4D5E6F70",
                                                    "1.0.0.2",
                                                    "N",
                                                    "New",
                                                    "1",
                                                    "25",
                                                    "United States",
                                                    "Tester2",
                                                    "2025-10-29T13:06:18.477Z",
                                                    "2025-10-29T13:31:11.301Z",
                                                    "CREATED",
                                                    "33D0D74837F6454B836AAB5BA2574D30",
                                                    "46",
                                                    "testuser1",
                                                    "1",
                                                    "7",
                                                    "Initial subject creation",
                                                    "Created via data hub load",
                                                    "N",
                                                    "2025-10-29T13:33:21.638Z",
                                                    "11",
                                                    "27",
                                                    "1",
                                                    "1",
                                                    "6",
                                                    "N",
                                                    "N",
                                                    "N",
                                                    "2025-10-29T13:00:00.000Z",
                                                    "Study01",
                                                    "Study01",
                                                    "STUDY01",
                                                    "IV",
                                                    "Vaccines",
                                                    "Observational",
                                                    "5B2F3C4D6E7F4890A1B2C3D4E5F60718",
                                                    "452",
                                                    "DATAHUB_AUT_Site1",
                                                    "DATAHUB_AUT_Site1_Active05",
                                                    "DATAHUB_AUT_Site2_Active",
                                                    "Active",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "456abc",
                                                    "Suite 12",
                                                    "Boston",
                                                    "Kansas",
                                                    "560068",
                                                    "US",
                                                    "1234567891",
                                                    "343",
                                                    "test@abc.com",
                                                    "1.0.0.3",
                                                    "false",
                                                    "Dr.",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "true",
                                                    "AB1234567",
                                                    "2027-12-31",
                                                    "Asia/Kolkata",
                                                    "Receiving Dept",
                                                    "100% SDV",
                                                    "10",
                                                    "Targeted",
                                                    "50",
                                                    "Reduced"
                                                ]
                                            ]
                                        }
                                    },
                                    "SubjectDataSetEmptyReport":{
                                        "description":"SubjectDataSetEmptyReport",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":1,
                                            "count":0,
                                            "limit":1,
                                            "offset":1,
                                            "columns":[
                                                "ID",
                                                "SUBJECT_WID",
                                                "DESCRIPTION",
                                                "SUBJECT_NUMBER",
                                                "PREVIOUS_SUBJECT_NUMBER",
                                                "STUDY_ID",
                                                "STUDY_WID",
                                                "SITE_ID",
                                                "SITE_WID",
                                                "SITE_NAME",
                                                "DOB",
                                                "SCREENING_DATE",
                                                "STATE",
                                                "STATE_DATE",
                                                "SCREENING_FAILURE",
                                                "ENROLLMENT_FAILURE",
                                                "ENROLLMENT_OVERRIDE",
                                                "INFORMED_CONSENT_DATE",
                                                "GENDER",
                                                "SUBJECT_TRANSFER_ID",
                                                "STUDY_VERSION",
                                                "CODE_BREAK",
                                                "EVENT_TYPE",
                                                "SITE_SERIAL_NUMBER",
                                                "STUDY_SERIAL_NUMBER",
                                                "COUNTRY_NAME",
                                                "INVESTIGATOR",
                                                "VERSION_START",
                                                "VERSION_END",
                                                "OPERATION_TYPE",
                                                "USER_ID",
                                                "USER_WID",
                                                "USER_NAME",
                                                "OBJECT_VERSION_NUMBER",
                                                "SOFTWARE_VERSION_NUMBER",
                                                "REASON",
                                                "COMMENT",
                                                "IS_CURRENT",
                                                "DH_TIMESTAMP",
                                                "TOTAL_VISITS",
                                                "TOTAL_FORMS",
                                                "COMPLETED_VISITS",
                                                "TOTAL_FORMS_COMPLETED_VISITS",
                                                "COMPLETED_FORMS",
                                                "FREEZE",
                                                "VERIFIED",
                                                "SIGNED",
                                                "EXTERNAL_SOURCE_STATUS_DATE",
                                                "STUDY_ID_NAME",
                                                "STUDY_TITLE",
                                                "STUDY_REFNAME",
                                                "STUDY_PHASE",
                                                "THERAPEUTIC_AREA",
                                                "BLINDING_TYPE",
                                                "FROM_SITE_ID",
                                                "FROM_SITE_WID",
                                                "FROM_SITE_NAME",
                                                "OLD_SUBJECT_NUMBER",
                                                "SITE_ID_NAME",
                                                "SITE_STATUS",
                                                "ADDRESS_STREET_1",
                                                "ADDRESS_STREET_2",
                                                "ADDRESS_CITY",
                                                "ADDRESS_STATE_OR_PROV_OR_CNTY",
                                                "ADDRESS_POSTALCODE",
                                                "ADDRESS_COUNTRY",
                                                "PHONE",
                                                "FAX",
                                                "EMAIL",
                                                "SHIPPING_ADDRESS_1",
                                                "SHIPPING_ADDRESS_2",
                                                "SHIPPING_CITY",
                                                "SHIPPING_STATE_OR_PROV_OR_CNTY",
                                                "SHIPPING_ZIP",
                                                "SHIPPING_COUNTRY",
                                                "SHIPPING_PHONE",
                                                "SHIPPING_FAX",
                                                "SHIPPING_EMAIL",
                                                "SITE_STUDY_VERSION",
                                                "DRUG_DESTRUCTION_CAPABLE",
                                                "PI_PREFIX",
                                                "ADD_SUBJECTS",
                                                "SCREEN_SUBJECTS",
                                                "RANDOMIZE_SUBJECTS",
                                                "DISPENSE_TO_SUBJECTS",
                                                "DEA_NUMBER",
                                                "EXPIRATION",
                                                "TIMEZONE",
                                                "SHIPPING_ATTENTION",
                                                "SDV_GROUP_NAME",
                                                "INITIAL_SUBJECTS_COUNT",
                                                "INITIAL_SUBJECTS_SDV_TYPE",
                                                "REMAINING_SUBJECTS_PERCENTAGE",
                                                "REMAINING_SUBJECTS_SDV_TYPE"
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"<p>Returned when the request is invalid.</p>\n<ul>\n  <li>Causes include invalid <code>tenantId</code> or <code>studyId</code>, negative <code>limit</code> or <code>offset</code>, empty <code>selectColumns</code>, invalid dataset columns, invalid <code>whereColumns</code> operator/value combinations, duplicate <code>orderColumns</code>, invalid <code>sortOrder</code>, and malformed typed filter values.</li>\n  <li>Error payload format: <code>{\"status\":\"failed\",\"result\":null,\"errorData\":{\"errorCode\":\"...\",\"errorMessage\":\"...\",\"details\":{...}},\"version\":1}</code>.</li>\n</ul>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DataHubResponse"
                                },
                                "examples":{
                                    "InvalidSelectColumn":{
                                        "description":"InvalidSelectColumn",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid column name specified in the select columns: STUDY_ID1"
                                            },
                                            "version":1
                                        }
                                    },
                                    "NegativePagination":{
                                        "description":"NegativePagination",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"limit and offset cannot be negetive"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidWhereOperator":{
                                        "description":"InvalidWhereOperator",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Invalid operator in where clause: CONTAINS for the column: STUDY_ID"
                                            },
                                            "version":1
                                        }
                                    },
                                    "InvalidIsOperatorValue":{
                                        "description":"InvalidIsOperatorValue",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VALIDATION_ERROR",
                                                "errorMessage":"Only NULL is allowed with IS / IS NOT operator"
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "401":{
                        "description":"<p>Returned when the request cannot be authenticated.</p>\n<p>The response body is empty.</p>\n"
                    },
                    "403":{
                        "description":"<p>Returned when the request is authenticated but the caller is not authorized to access the requested resource.</p>\n<p>The response body contains a plain-text authorization message.</p>\n<p><strong>Possible response bodies</strong>:</p>\n<ul>\n  <li><code>Either the resource does not exist, or the user cannot access the resource.</code></li>\n  <li><code>The entity is in maintenance mode, or the user cannot access the resource.</code></li>\n</ul>\n",
                        "content":{
                            "text/plain":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":"Either the resource does not exist, or the user cannot access the resource.\n"
                                    },
                                    "ForbiddenMaintenance":{
                                        "description":"ForbiddenMaintenance",
                                        "value":"The entity is in maintenance mode, or the user cannot access the resource.\n"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"<p>Returned when an unexpected server-side error occurs while processing the request.</p>\n<p>The response body contains the platform error payload with the error code and description.</p>\n",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Status"
                                },
                                "examples":{
                                    "InternalServerError":{
                                        "description":"InternalServerError",
                                        "value":{
                                            "description":"An internal error has occurred, please check the log for details.",
                                            "code":"Internal Server Error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-datahub-svc-rest-v3.1-tenant-{tenantId}-studies-{studyId}-{mode}-subjects-post",
                "x-filename-id":"ec-datahub-svc-rest-v3.1-tenant-tenantid-studies-studyid-mode-subjects-post"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/{bucketName}/{objectName}":{
            "put":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Upload a file to the system",
                "description":"Uploads a file in the context of bucket name. <br><b>Right:</b> <i>FileUploadFilePost</i>.",
                "operationId":"createObject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"overwrite",
                        "in":"query",
                        "description":"Set to true if any existing file part has to be overwritten with the same name.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"Reserved for future usage. Type of file indicating whether the file is a Site, Depot or Countries CSV.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"serviceName",
                        "in":"query",
                        "description":"Reserved for future usage. Name of the service which uses the uploaded file.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"notificationRequired",
                        "in":"query",
                        "description":"Reserved for future usage. Indicates whether notification needs to be sent to user or not. Allowed value is either true or false.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"bucketName",
                        "in":"path",
                        "description":"Bucket Name. Tenant or study or user defined user name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be uploaded.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Content to be uploaded, in binary form.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "type":"object"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-{bucketName}-{objectName}-put",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-bucketname-objectname-put"
            },
            "delete":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Delete a file successfully uploaded before",
                "description":"Deletes a file uploaded in the context of a bucket and object name. <br><b>Right:</b> <i>FileUploadFileDelete</i>.",
                "operationId":"deleteObject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"bucketName",
                        "in":"path",
                        "description":"Tenant, study or user-defined name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Success"
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-{bucketName}-{objectName}-delete",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-bucketname-objectname-delete"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/{bucketName}/{objectName}/parts/{partNumber}":{
            "put":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Upload a part of a file",
                "description":"Uploads file parts, which are chunks from a large file. The bucket and file name must be same across all file parts. <br><b>Right:</b> <i>FileUploadFilePost</i>. ",
                "operationId":"uploadFilePart",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"overwrite",
                        "in":"query",
                        "description":"When it is set to true, it will overwrite the existing part file if exists.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"bucketName",
                        "in":"path",
                        "description":"Bucket Name. Tenant or study or user defined user name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be merged or deleted.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"partNumber",
                        "in":"path",
                        "description":"File part number.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Content of the file part, in binary form.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "type":"object"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-{bucketName}-{objectName}-parts-{partNumber}-put",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-bucketname-objectname-parts-partnumber-put"
            },
            "delete":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Delete a file part",
                "description":"Deletes a file part in the context of a bucket name. <br><b>Right:</b> <i>FileUploadFileDelete</i>.",
                "operationId":"deleteFilePart",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"bucketName",
                        "in":"path",
                        "description":"Bucket Name. Tenant or study or user defined user name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"partNumber",
                        "in":"path",
                        "description":"File part number.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-{bucketName}-{objectName}-parts-{partNumber}-delete",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-bucketname-objectname-parts-partnumber-delete"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/file/{objectName}":{
            "get":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Download an uploaded file",
                "description":"Downloads a file from a bucket. You can only download files uploaded into the system. <br><b>Right:</b> <i>FileUploadFileDownload</i>.",
                "operationId":"downloadObject",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"study",
                        "in":"query",
                        "description":"Tenant, study or user-defined name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Tenant or name of the file to be downloaded.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/octet-stream":{
                                "schema":{
                                    "type":"string"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-file-{objectName}-get",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-file-objectname-get"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/config":{
            "get":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Get the admin configurations for file upload service",
                "description":"Retrieves the admin configurations for file upload service in JSON format. <br><b>Right:</b> <i>FileUploadAdminConfig</i>.",
                "operationId":"getAdminConfig",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"study",
                        "in":"query",
                        "description":"Tenant, study or user-defined name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ConfigurationModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-config-get",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-config-get"
            },
            "put":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Update configuration in the system",
                "description":"Updates the configuration in the system. <br><b>Right:</b> <i>FileUploadAdminConfig</i>.",
                "operationId":"updateConfiguration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ConfigurationModel"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-config-put",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-config-put"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/list":{
            "get":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Get a list of uploaded files",
                "description":"Retrieves list of uploaded files where number of files retrieved is less than limit specified. <br><b>Right:</b> <i>FileUploadFileGet</i>.",
                "operationId":"getAllObjectsByUser",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of files which needs to be retrieved. Allowed status are SUCCESS, INPROGRESS, FAILED, ALL. Default is SUCCESS.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"study",
                        "in":"query",
                        "description":"Tenant, study or user-defined name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"noOfDays",
                        "in":"query",
                        "description":"Specifies how many days old files should be retrieved from the current server time zone.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Specifies the number of records to be retrieved per page. If limit is not specified, 50 records will be shown, if they exist.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"byUser",
                        "in":"query",
                        "description":"Set to true to filter response based on current user. If no filter is provided, a list files of all user will be returned.",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"nextPageStartId",
                        "in":"query",
                        "description":"Next page start index to retrieve files list.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectListModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-list-get",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-list-get"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/file/metadata/{objectName}":{
            "get":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Get metadata of an uploaded file",
                "description":"Retrieves the metadata of an uploaded file. <br><b>Right:</b> <i>FileUploadFileGet</i>.",
                "operationId":"getFileObjectMetaData",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"study",
                        "in":"query",
                        "description":"Parent file name which can be a study name or any user-defined name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be retrieved.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-file-metadata-{objectName}-get",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-file-metadata-objectname-get"
            }
        },
        "/ec-fileupload-svc/rest/v3.0/storage/{bucketName}/{objectName}/parts":{
            "post":{
                "tags":[
                    "File Upload/v3.0"
                ],
                "summary":"Merge or delete file parts",
                "description":"Merges or deletes existing file parts which are already uploaded in the context of the bucket name. <br><b>Right:</b> <i>FileUploadFilePost</i>.",
                "operationId":"manageFileParts",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"The ID of the study.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of the study from which you are uploading the file. Allowed values are active, test and training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"overwrite",
                        "in":"query",
                        "description":"When it is set to true, it will overwrite the existing merged file with the same name, if any.",
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"bucketName",
                        "in":"path",
                        "description":"Bucket Name. Tenant or study or user defined user name.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"objectName",
                        "in":"path",
                        "description":"Name of the file to be deleted.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"action",
                        "in":"query",
                        "description":"Action to be performed on the file. Accepts MERGE_PARTS and DELETE_PARTS. MERGE_PARTS merges existing parts for the file. DELETE_PARTS removes all parts for the file from the system.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ObjectModel"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error."
                    },
                    "401":{
                        "description":"Unauthorized user."
                    }
                },
                "x-internal-id":"ec-fileupload-svc-rest-v3.0-storage-{bucketName}-{objectName}-parts-post",
                "x-filename-id":"ec-fileupload-svc-rest-v3.0-storage-bucketname-objectname-parts-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lots/blinded-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lots"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves list of blinded lots by study ID. Rights: LotManagementGet.",
                "operationId":"getAllBlindedLots",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/BlindedLotsV2"
                                    }
                                },
                                "examples":{
                                    "Get All Blinded Lots Response":{
                                        "description":"Get All Blinded Lots Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "blindedLotNumber":"Blot1001",
                                                "shortName":"Blot1001",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "doNotShip":50,
                                                "doNotCount":10,
                                                "manufacturingLotIds":[
                                                    "392DA9F053E94B9B9339AC7D0FA0D1DB",
                                                    "0B8D7E696B6A4F3D8E544C5D2B7B8A91"
                                                ],
                                                "settingsByCountry":[
                                                    {
                                                        "countryIso":"US",
                                                        "doNotShip":50,
                                                        "doNotCount":10
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Blinded Lots Forbidden Response":{
                                        "description":"Get All Blinded Lots Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"getAllBlindedLots",
                                                    "reason":"The caller does not have permission to view blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Blinded Lots Server Error Response":{
                                        "description":"Get All Blinded Lots Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving blinded lots.",
                                                "details":{
                                                    "operation":"getAllBlindedLots",
                                                    "reason":"The blinded lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-blinded-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-blinded-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create blinded lot"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a blinded lot by study ID. Rights: LotManagementPost.",
                "operationId":"createBlindedLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindedLotRequest"
                            },
                            "examples":{
                                "Create Blinded Lot Request":{
                                    "description":"Create Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB",
                                            "0B8D7E696B6A4F3D8E544C5D2B7B8A91"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotId"
                                },
                                "examples":{
                                    "Create Blinded Lot Response":{
                                        "description":"Create Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Blinded lot number or lot short name already exists. OR Expiration date is not valid. OR Invalid lot. OR Lot belongs to a blinded lot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Bad Request Response":{
                                        "description":"Create Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot request is invalid.",
                                                "details":{
                                                    "field":"manufacturingLotIds",
                                                    "reason":"At least one valid manufacturing lot identifier must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Forbidden Response":{
                                        "description":"Create Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"createBlindedLot",
                                                    "reason":"The caller does not have permission to create blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Server Error Response":{
                                        "description":"Create Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while creating the blinded lot.",
                                                "details":{
                                                    "operation":"createBlindedLot",
                                                    "reason":"The blinded lot could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-blinded-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-blinded-lots-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lots/blinded-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lot by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves blinded lot by a blinded lot's ID. Rights: LotManagementGet.",
                "operationId":"getBlindedLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsV2"
                                },
                                "examples":{
                                    "Get Blinded Lot Response":{
                                        "description":"Get Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "blindedLotNumber":"Blot1001",
                                            "shortName":"Blot1001",
                                            "expirationDate":"2026-12-31T00:00:00Z",
                                            "doNotShip":50,
                                            "doNotCount":10,
                                            "manufacturingLotIds":[
                                                "392DA9F053E94B9B9339AC7D0FA0D1DB",
                                                "0B8D7E696B6A4F3D8E544C5D2B7B8A91"
                                            ],
                                            "settingsByCountry":[
                                                {
                                                    "countryIso":"US",
                                                    "doNotShip":50,
                                                    "doNotCount":10
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Not Found Response":{
                                        "description":"Get Blinded Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied blinded lot identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User doesn't have access to the requested data.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Forbidden Response":{
                                        "description":"Get Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"getBlindedLot",
                                                    "reason":"The caller does not have permission to view the blinded lot."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Server Error Response":{
                                        "description":"Get Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving the blinded lot.",
                                                "details":{
                                                    "operation":"getBlindedLot",
                                                    "reason":"The blinded lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-blinded-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-blinded-lots-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update blinded lot"
                ],
                "summary":"v1.0",
                "description":"Updates a blinded lot by study ID and blinded lot ID. Rights: LotManagementPost.",
                "operationId":"updateBlindedLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindedLotRequest"
                            },
                            "examples":{
                                "Update Blinded Lot Request":{
                                    "description":"Update Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB",
                                            "0B8D7E696B6A4F3D8E544C5D2B7B8A91"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotId"
                                },
                                "examples":{
                                    "Update Blinded Lot Response":{
                                        "description":"Update Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Blinded lot number or lot short name already exists. OR Expiration date is not valid. OR Invalid lot. OR Lot belongs to a blinded lot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Bad Request Response":{
                                        "description":"Update Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot update request is invalid.",
                                                "details":{
                                                    "field":"shortName",
                                                    "reason":"The blinded lot short name must be unique."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Forbidden Response":{
                                        "description":"Update Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"updateBlindedLot",
                                                    "reason":"The caller does not have permission to update blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Server Error Response":{
                                        "description":"Update Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while updating the blinded lot.",
                                                "details":{
                                                    "operation":"updateBlindedLot",
                                                    "reason":"The blinded lot could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-blinded-lots-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-blinded-lots-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Delete blinded lot"
                ],
                "summary":"v1.0",
                "description":"Removes blinded lot by study ID and blinded lot ID. Rights: LotManagementDelete.",
                "operationId":"deleteBlindedLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotId"
                                },
                                "examples":{
                                    "Delete Blinded Lot Response":{
                                        "description":"Delete Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Blinded Lot Forbidden Response":{
                                        "description":"Delete Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"deleteBlindedLot",
                                                    "reason":"The caller does not have permission to delete blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Blinded Lot Not Found Response":{
                                        "description":"Delete Blinded Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied blinded lot identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Blinded Lot Server Error Response":{
                                        "description":"Delete Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while deleting the blinded lot.",
                                                "details":{
                                                    "operation":"deleteBlindedLot",
                                                    "reason":"The blinded lot could not be deleted."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-blinded-lots-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-blinded-lots-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/blindinggroups":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get all blinding groups"
                ],
                "summary":"v1.0",
                "description":"Retrieves all blinding groups in a study. Required sponsor roles are: clinical supply manager and site manager.Please refer to getPackageTypes API for packageTypeId. A study cannot have both DEFAULT and RANDOM blinding group strategies. Based upon the single kit setting (RANDOM, DEFAULT, ALL) at a study level, the UI should restrict drop down values (SEND_KIT_TYPE/RANDOM_KIT). RANDOM_KIT should be hidden if the single kit setting at a study level is DEFAULT. Similarly, SEND_KIT_TYPE should be hidden if the single kit setting is RANDOMor ALL. getStudy API has been modified to return more parameters like singleKitSettingId and useBlindingGroups. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"getBlindingGroups",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindingGroupResponse"
                                },
                                "examples":{
                                    "Get Blinding Groups Response":{
                                        "description":"Get Blinding Groups Response",
                                        "value":{
                                            "blindingGroups":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "title":"Blinding Group Lotion",
                                                    "description":"Some description.",
                                                    "kitTypes":[
                                                        {
                                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                                            "kitTypeName":"Kit A",
                                                            "description":"Non dosing kit",
                                                            "packageTypeId":5
                                                        }
                                                    ],
                                                    "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinding Groups Server Error Response":{
                                        "description":"Get Blinding Groups Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving blinding groups.",
                                                "details":{
                                                    "operation":"getBlindingGroups",
                                                    "reason":"The blinding group lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinding Groups Not Found Response":{
                                        "description":"Get Blinding Groups Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"No blinding groups were found for the study.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study does not contain blinding groups."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-blindinggroups-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-blindinggroups-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Create blinding group"
                ],
                "summary":"v1.0",
                "description":"Creates blinding group. <br>Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsPost</i>The field groupDifferentPackageTypes is optional. Grouping different package types will be allowed if groupDifferentPackageTypes flag is set to Yes. Otherwise, this API operations throws an error saying that there are multiple package types in such cases.",
                "operationId":"createBlindingGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Blinding group parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindingGroupRequest"
                            },
                            "examples":{
                                "Create Blinding Group Request":{
                                    "description":"Create Blinding Group Request",
                                    "value":{
                                        "title":"Blinded Group Lotion",
                                        "description":"Blinded Group Lotion",
                                        "kitTypes":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeName":"Kit A",
                                                "description":"Non dosing kit",
                                                "packageTypeId":5
                                            }
                                        ],
                                        "groupDifferentPackageTypes":"Yes",
                                        "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "201":{
                        "description":"Successful operation"
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinding Group Server Error Response":{
                                        "description":"Create Blinding Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while creating the blinding group.",
                                                "details":{
                                                    "operation":"createBlindingGroup",
                                                    "reason":"The blinding group could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinding Group Not Found Response":{
                                        "description":"Create Blinding Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"A requested kit type or default blinding kit was not found.",
                                                "details":{
                                                    "field":"defaultBlindingKit",
                                                    "reason":"The supplied default blinding kit identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation message OR The following required parameters are missing OR Blinding Group already exist OR Invalid kit type OR Kit type ID already belongs to another blinding group OR Kit Types belong to different package types OR At least 2 kit types needed for grouping OR The following parameter values are invalid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinding Group Bad Request Response":{
                                        "description":"Create Blinding Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinding group request is invalid.",
                                                "details":{
                                                    "field":"kitTypes",
                                                    "reason":"At least one valid kit type must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-blindinggroups-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-blindinggroups-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/blindinggroups/{blindingGroupId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get blinding group by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves blinding group in a study by blinding group ID. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"getBlindingGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"blindingGroupId",
                        "in":"path",
                        "description":"ID of blinding group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindingGroup"
                                },
                                "examples":{
                                    "Get Blinding Group Response":{
                                        "description":"Get Blinding Group Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "title":"Blinding Group Lotion",
                                            "description":"Some description.",
                                            "kitTypes":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":5
                                                }
                                            ],
                                            "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinding Group Server Error Response":{
                                        "description":"Get Blinding Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving the blinding group.",
                                                "details":{
                                                    "operation":"getBlindingGroup",
                                                    "reason":"The blinding group lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study. OR Blinding Group not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinding Group Not Found Response":{
                                        "description":"Get Blinding Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinding group was not found.",
                                                "details":{
                                                    "field":"blindingGroupId",
                                                    "reason":"The supplied blinding group identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-blindinggroups-{blindingGroupId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-blindinggroups-blindinggroupid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Update blinding group"
                ],
                "summary":"v1.0",
                "description":"Updates blinding group. If the study has a DEFAULT single kit setting, <i>defaultBlindingKit</i> field is mandatory. <br><i>groupDifferentPackageTypes</i> is an optional field. It will be defaulted to NO if it's not provided in the Request body. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>",
                "operationId":"updateBlindingGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"blindingGroupId",
                        "in":"path",
                        "description":"ID of blinding group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Blinding group parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindingGroupRequest"
                            },
                            "examples":{
                                "Update Blinding Group Request":{
                                    "description":"Update Blinding Group Request",
                                    "value":{
                                        "title":"Blinded Group Lotion",
                                        "description":"Blinded Group Lotion",
                                        "kitTypes":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeName":"Kit A",
                                                "description":"Non dosing kit",
                                                "packageTypeId":5
                                            }
                                        ],
                                        "groupDifferentPackageTypes":"Yes",
                                        "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation"
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinding Group Server Error Response":{
                                        "description":"Update Blinding Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while updating the blinding group.",
                                                "details":{
                                                    "operation":"updateBlindingGroup",
                                                    "reason":"The blinding group could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found OR Blinding Group not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinding Group Not Found Response":{
                                        "description":"Update Blinding Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinding group was not found.",
                                                "details":{
                                                    "field":"blindingGroupId",
                                                    "reason":"The supplied blinding group identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error OR The following required parameters are missing OR Kit Types belong to different package types OR Kit type ID already belongs to another blinding group OR At least 2 kit types needed for grouping.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinding Group Bad Request Response":{
                                        "description":"Update Blinding Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinding group update request is invalid.",
                                                "details":{
                                                    "field":"title",
                                                    "reason":"The blinding group title exceeds the maximum length."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-blindinggroups-{blindingGroupId}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-blindinggroups-blindinggroupid-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Delete blinding group by ID"
                ],
                "summary":"v1.0",
                "description":"Removes blinding group from a study by blinding group ID. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"deleteBlindingGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"blindingGroupId",
                        "in":"path",
                        "description":"ID of blinding group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation"
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Blinding Group Server Error Response":{
                                        "description":"Delete Blinding Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while deleting the blinding group.",
                                                "details":{
                                                    "operation":"deleteBlindingGroup",
                                                    "reason":"The blinding group delete request failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study. OR Blinding group not found",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Blinding Group Invalid Study Response":{
                                        "description":"Delete Blinding Group Invalid Study Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The study was not found.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study identifier does not exist."
                                                }
                                            }
                                        }
                                    },
                                    "Delete Blinding Group Not Found Response":{
                                        "description":"Delete Blinding Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinding group was not found.",
                                                "details":{
                                                    "field":"blindingGroupId",
                                                    "reason":"The supplied blinding group identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-blindinggroups-{blindingGroupId}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-blindinggroups-blindinggroupid-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kittypes/noblindinggroup":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get kit types which do not belong to any blinding group"
                ],
                "summary":"v1.0",
                "description":"Retrieves kit types which do not belong to any blinding group.<br>Rights: <i>SupplySettingRightsGet</i>. <br>Required sponsor roles are: clinical supply manager and site manager.",
                "operationId":"getKitTypesNotInBlindingGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitType"
                                    }
                                },
                                "examples":{
                                    "Get Kit Types Not In Blinding Group Response":{
                                        "description":"Get Kit Types Not In Blinding Group Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "versionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                                "versionEnd":"23-NOV-2018 08.43.01.700136000 AM",
                                                "countsPerPackage":5,
                                                "description":"Non-Dosing",
                                                "doNotDispense":1,
                                                "dosage":1,
                                                "minShippingUnits":10,
                                                "packageTypeId":10,
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                                "isDefault":true,
                                                "kitTypeName":"Kit A",
                                                "storageNeedId":1,
                                                "srcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "srcVersionStart":"23-NOV-2018 08.43.01.700136000 AM"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types Not In Blinding Group Server Error Response":{
                                        "description":"Get Kit Types Not In Blinding Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving kit types not assigned to a blinding group.",
                                                "details":{
                                                    "operation":"getKitTypesNotInBlindingGroup",
                                                    "reason":"The kit type lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types Not In Blinding Group Not Found Response":{
                                        "description":"Get Kit Types Not In Blinding Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"No kit types were found for the study.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study does not contain eligible kit types."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kittypes-noblindinggroup-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kittypes-noblindinggroup-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/cohortenrollments/{cohortid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Get cohort enrollments by study, mode and cohort ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves cohort enrollments by study, mode and cohort ID. Rights: SubjectSettingRightsGet.",
                "operationId":"getCohortEnrollments",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"cohortid",
                        "in":"path",
                        "description":"ID of the cohort.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CohortEnrollments"
                                },
                                "examples":{
                                    "Get Cohort Enrollments Response":{
                                        "description":"Get Cohort Enrollments Response",
                                        "value":{
                                            "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                            "randomizationLimit":5,
                                            "notificationLimit":5,
                                            "randomizedSubjects":5,
                                            "enabled":true,
                                            "enrollmentLimitReached":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Cohort Enrollments Server Error Response":{
                                        "description":"Get Cohort Enrollments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"COHORT-500",
                                                "errorMessage":"Unexpected error while retrieving cohort enrollments."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-cohortenrollments-{cohortid}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-cohortenrollments-cohortid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/settings/cohortlimits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Get cohort limits by study and mode"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves cohort limits by study and mode. Rights: SubjectSettingRightsGet.",
                "operationId":"getCohortLimits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimit"
                                    }
                                },
                                "examples":{
                                    "Get Cohort Limits Response":{
                                        "description":"Get Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Cohort Limits Server Error Response":{
                                        "description":"Get Cohort Limits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"COHORT-500",
                                                "errorMessage":"Unexpected error while retrieving cohort limits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-settings-cohortlimits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-settings-cohortlimits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Save cohort limits by study and mode"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Saves cohort limits by study and mode. Rights: SubjectSettingRightsPost.",
                "operationId":"setCohortLimits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"fromMode",
                        "in":"query",
                        "description":"From mode.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Cohort limits.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CohortLimitList"
                            },
                            "examples":{
                                "Set Cohort Limits Request":{
                                    "description":"Set Cohort Limits Request",
                                    "value":{
                                        "cohortLimits":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimit"
                                    }
                                },
                                "examples":{
                                    "Set Cohort Limits Response":{
                                        "description":"Set Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Set Cohort Limits Server Error Response":{
                                        "description":"Set Cohort Limits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"COHORT-500",
                                                "errorMessage":"Unexpected error while saving cohort limits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-settings-cohortlimits-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-settings-cohortlimits-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/recon/shipments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction from a given site to depot"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of resupply orders where each order contains an order ID and an order status. In the request body, kitRange should have the following format: KIT_NUMBER:min:max. Rights: OrsInventoryPost and either SourceDataVerification or OrsUnblinded.",
                "operationId":"createShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReconShipmentRequest"
                            },
                            "examples":{
                                "Create Recon Shipment Request":{
                                    "description":"Create Recon Shipment Request",
                                    "value":{
                                        "kits":[
                                            "E39FF55A445543A38D513325664F0B2D"
                                        ],
                                        "kitsFilter":{
                                            "kitRange":"KIT_NUMBER:10:100",
                                            "searchString":"Some search string",
                                            "inventoryStatusIds":[
                                                5
                                            ],
                                            "subjectId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Create Recon Shipment Response":{
                                        "description":"Create Recon Shipment Response",
                                        "value":[
                                            {
                                                "orderId":"B1B8327AFAA6412287106192AB5984EF",
                                                "status":"DESTROYED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Site ID not found in site service.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Recon Shipment Not Found Response":{
                                        "description":"Create Recon Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-404",
                                            "errorMessage":"Site or kits were not found for the reconciliation shipment request.",
                                            "details":{
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "missingKitId":"E39FF55A445543A38D513325664F0B2D"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Kit reconciliation required was not set.', 'You cannot update the status of this kit because the kit was sent to a depot', 'You cannot update the status of this kit because it is at a site that you do not have access to. Work with your CRA or a clinical supply manager to update the kit.', 'Reconciliation shipment is not allowed as site has drug destruction capability.', 'Reconciliation shipment cannot be created as none of the depots has drug destruction capability.', 'Update kits cannot have both the kit identifiers list and the kits filter set.', 'Update kits must have either the kit identifiers list or the kits filter set.', 'Invalid inventory status transition.', 'Invalid kit at site.', 'Invalid kit range filter.', 'subjectId is required.', 'Invalid subject.', 'Update kits no rows were found to update.', 'Update kits retrieved size exceeds maximum rows for update limit of.', 'Update kits retrieve error, the following kit identifiers were not found.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Recon Shipment Bad Request Response":{
                                        "description":"Create Recon Shipment Bad Request Response",
                                        "value":{
                                            "errorCode":"ORS-076",
                                            "errorMessage":"Invalid kit range filter.",
                                            "details":{
                                                "field":"kitsFilter.kitRange",
                                                "issue":"Use KIT_NUMBER:start:end with start less than or equal to end."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Recon Shipment Server Error Response":{
                                        "description":"Create Recon Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while creating the reconciliation shipment.",
                                            "details":{
                                                "operation":"createShipment",
                                                "issue":"Unable to persist reconciliation shipment."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-recon-shipments-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-recon-shipments-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/dbheaders/uploadkits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory database headers"
                ],
                "summary":"v1.0",
                "description":"Retrieves inventory headers from the database.",
                "operationId":"getInventoryDBHeaders",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "enum":[
                                            "KIT_TYPE",
                                            "KIT_NUMBER",
                                            "SEQUENCE_NUMBER",
                                            "BAR_CODE",
                                            "BLOCK_NUMBER"
                                        ]
                                    }
                                },
                                "examples":{
                                    "Inventory DB Headers":{
                                        "description":"Inventory DB Headers",
                                        "value":{
                                            "dbHeaders":[
                                                "Kit Number",
                                                "Kit Type",
                                                "Lot Number"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory DB Headers Server Error Response":{
                                        "description":"Get Inventory DB Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving inventory database headers.",
                                                "details":{
                                                    "operation":"getInventoryDBHeaders",
                                                    "reason":"The inventory database headers could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dbheaders-uploadkits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dbheaders-uploadkits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/dbheaders/uploadrndlist":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get randomization list database headers"
                ],
                "summary":"v1.0",
                "description":"Retrieves randomization list headers from the database.",
                "operationId":"getRndListDBHeaders",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "enum":[
                                            "RND_NUM",
                                            "BLOCK",
                                            "TREATMENT",
                                            "STRATUM",
                                            "COHORT",
                                            "PROB_FCTR",
                                            "SEQUENCE_NUMBER"
                                        ]
                                    }
                                },
                                "examples":{
                                    "Randomization List DB Headers":{
                                        "description":"Randomization List DB Headers",
                                        "value":{
                                            "dbHeaders":[
                                                "Randomization Number",
                                                "Treatment",
                                                "Block",
                                                "Stratum",
                                                "Cohort"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List DB Headers Server Error Response":{
                                        "description":"Get Randomization List DB Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization list database headers.",
                                                "details":{
                                                    "operation":"getRndListDBHeaders",
                                                    "reason":"The randomization list database headers could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dbheaders-uploadrndlist-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dbheaders-uploadrndlist-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/dndexception":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Dispensation Logic APIs/Get all DND Exceptions"
                ],
                "summary":"v1.0",
                "description":"Retrieves all details of the DND Exceptions. Rights: DispensationExceptionGet.",
                "operationId":"getDNDExceptions",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DNDExceptionsResponse"
                                },
                                "examples":{
                                    "Get DND Exceptions Response":{
                                        "description":"Get DND Exceptions Response",
                                        "value":{
                                            "dndExceptions":[
                                                {
                                                    "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitTypeSrcId":[
                                                        "6AF54DB79B764662B685D68C52AB0B84"
                                                    ],
                                                    "allCountries":false,
                                                    "countries":[
                                                        "US"
                                                    ],
                                                    "visitDND":[
                                                        {
                                                            "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "dnd":2
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exceptions Server Error Response":{
                                        "description":"Get DND Exceptions Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-500",
                                                "errorMessage":"Unexpected error while retrieving DND exceptions.",
                                                "details":{
                                                    "operation":"getDNDExceptions"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exceptions Not Found Response":{
                                        "description":"Get DND Exceptions Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-404",
                                                "errorMessage":"The study or requested version was not found.",
                                                "details":{
                                                    "studyId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation logic (dynamic DND) request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exceptions Bad Request Response":{
                                        "description":"Get DND Exceptions Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-400",
                                                "errorMessage":"The DND exception retrieval request is invalid.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The study context is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dndexception-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dndexception-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Dispensation Logic APIs/Create DND Exception"
                ],
                "summary":"v1.0",
                "description":"Creates a DND Exception. Rights needed: DispensationExceptionPost.",
                "operationId":"create",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Creates a DND Exception. Rights needed: DispensationExceptionPost.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DNDExceptionRequestV1"
                            },
                            "examples":{
                                "Create DND Exception Request":{
                                    "description":"Create DND Exception Request",
                                    "value":{
                                        "kitTypeSrcId":[
                                            "6AF54DB79B764662B685D68C52AB0B84"
                                        ],
                                        "allCountries":false,
                                        "countries":[
                                            "US"
                                        ],
                                        "visitDND":[
                                            {
                                                "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "dnd":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create DND Exception Response":{
                                        "description":"Create DND Exception Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create DND Exception Server Error Response":{
                                        "description":"Create DND Exception Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-500",
                                                "errorMessage":"Unexpected error while creating the DND exception.",
                                                "details":{
                                                    "operation":"createDNDException"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create DND Exception Not Found Response":{
                                        "description":"Create DND Exception Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-404",
                                                "errorMessage":"The study or requested version was not found.",
                                                "details":{
                                                    "studyId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation logic (dynamic DND) request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create DND Exception Bad Request Response":{
                                        "description":"Create DND Exception Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-400",
                                                "errorMessage":"The DND exception request is invalid.",
                                                "details":{
                                                    "field":"visitDND",
                                                    "reason":"At least one visit DND rule must be provided."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dndexception-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dndexception-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/dndexception/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Dispensation Logic APIs/Get DND Exception details by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves DND Exception details by DND Exception ID. Rights: OrsInventoryGet.",
                "operationId":"getDNDExceptionsById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"DND Exception ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DNDExceptionListResponse"
                                },
                                "examples":{
                                    "Get DND Exception By Id Response":{
                                        "description":"Get DND Exception By Id Response",
                                        "value":{
                                            "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitTypeSrcId":[
                                                "6AF54DB79B764662B685D68C52AB0B84"
                                            ],
                                            "allCountries":true,
                                            "countries":[
                                            ],
                                            "siteIds":[
                                            ],
                                            "visitDND":[
                                                {
                                                    "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "dnd":3
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exception By Id Server Error Response":{
                                        "description":"Get DND Exception By Id Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-500",
                                                "errorMessage":"Unexpected error while retrieving the DND exception.",
                                                "details":{
                                                    "operation":"getDNDExceptionsById"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exception By Id Not Found Response":{
                                        "description":"Get DND Exception By Id Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-404",
                                                "errorMessage":"The DND exception was not found.",
                                                "details":{
                                                    "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation logic (dynamic DND) request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get DND Exception By Id Bad Request Response":{
                                        "description":"Get DND Exception By Id Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-400",
                                                "errorMessage":"The DND exception identifier is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The DND exception identifier must be a valid UUID."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dndexception-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dndexception-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Dispensation Logic APIs/Update DND Exception"
                ],
                "summary":"v1.0",
                "description":"Updates a DND Exception. Rights needed: DispensationExceptionPost.",
                "operationId":"update",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"DND Exception ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Updates a DND Exception. Rights needed: DispensationExceptionPost.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DNDExceptionRequestV1"
                            },
                            "examples":{
                                "Update DND Exception Request":{
                                    "description":"Update DND Exception Request",
                                    "value":{
                                        "kitTypeSrcId":[
                                            "6AF54DB79B764662B685D68C52AB0B84"
                                        ],
                                        "allCountries":true,
                                        "visitDND":[
                                            {
                                                "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "dnd":3
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update DND Exception Response":{
                                        "description":"Update DND Exception Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update DND Exception Server Error Response":{
                                        "description":"Update DND Exception Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-500",
                                                "errorMessage":"Unexpected error while updating the DND exception.",
                                                "details":{
                                                    "operation":"updateDNDException"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update DND Exception Not Found Response":{
                                        "description":"Update DND Exception Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-404",
                                                "errorMessage":"The study or DND exception was not found.",
                                                "details":{
                                                    "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation logic (dynamic DND) request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update DND Exception Bad Request Response":{
                                        "description":"Update DND Exception Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-400",
                                                "errorMessage":"The DND exception update request is invalid.",
                                                "details":{
                                                    "field":"visitDND",
                                                    "reason":"The DND value is not valid for the specified visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dndexception-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dndexception-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Dispensation Logic APIs/Delete DND Exception"
                ],
                "summary":"v1.0",
                "description":"Deletes a DND Exception. Rights needed: DispensationExceptionPost.",
                "operationId":"delete",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"DND Exception ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Delete DND Exception Response":{
                                        "description":"Delete DND Exception Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete DND Exception Server Error Response":{
                                        "description":"Delete DND Exception Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-500",
                                                "errorMessage":"Unexpected error while deleting the DND exception.",
                                                "details":{
                                                    "operation":"deleteDNDException"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete DND Exception Not Found Response":{
                                        "description":"Delete DND Exception Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-404",
                                                "errorMessage":"The DND exception was not found.",
                                                "details":{
                                                    "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation logic (dynamic DND) request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete DND Exception Bad Request Response":{
                                        "description":"Delete DND Exception Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DND-400",
                                                "errorMessage":"The DND exception delete request is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The DND exception identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-dndexception-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-dndexception-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of resupply orders where each order contains an order ID and an order status. In the request body, kitRange should have the following format: KIT_NUMBER:min:max. Rights: OrsInventoryPost and either SourceDataVerification or OrsUnblinded.",
                "operationId":"createDepotReconShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Manual depot-to-depot supply request parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualDepotSupplyRequest"
                            },
                            "examples":{
                                "Create Depot Recon Shipment Request":{
                                    "description":"Create Depot Recon Shipment Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "kits":[
                                            {
                                                "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                                                "quantity":"2"
                                            }
                                        ],
                                        "shippedFrom":"B1B8327AFAA6412287106192AB5984EF",
                                        "shippedTo":"ABC8327AFAA6412287106192AB5984EF"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Depot Recon Shipment Response":{
                                        "description":"Create Depot Recon Shipment Response",
                                        "value":{
                                            "status":"success",
                                            "result":null,
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Site ID not found in site service.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Depot Recon Shipment Not Found Response":{
                                        "description":"Create Depot Recon Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"DEPOT-RECON-404",
                                            "errorMessage":"The depot or requested kits were not found.",
                                            "details":{
                                                "shippedFrom":"B1B8327AFAA6412287106192AB5984EF",
                                                "missingKitTypeId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Kit reconciliation required was not set.','You can't update the status of this kit because the kit was sent to a depot.','You can't update the status of this kit because it's at a site that you don't have access to. Work with your clinical research associate or a clinical supply manager to update the kit.','Reconciliation shipment is not allowed as site has drug destruction capability.','Reconciliation shipment cannot be created as none of the depots have drug destruction capability.','Update kits cannot have both the kit identifiers list and the kits filter set.','Update kits must have either the kit identifiers list or the kits filter set.','Invalid inventory status transition.','Invalid kit at site.', 'Invalid kit range filter.', 'Subject ID is required.','Invalid subject.', 'Update kits no rows were found to update.','Update kits retrieved size exceeds maximum rows for update limit of.','Update kits retrieve error, the following kit identifiers were not found.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Depot Recon Shipment Bad Request Response":{
                                        "description":"Create Depot Recon Shipment Bad Request Response",
                                        "value":{
                                            "errorCode":"DEPOT-RECON-400",
                                            "errorMessage":"The depot reconciliation shipment request is invalid.",
                                            "details":{
                                                "field":"kits[0].quantity",
                                                "issue":"Quantity must be greater than zero."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Depot Recon Shipment Server Error Response":{
                                        "description":"Create Depot Recon Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"DEPOT-RECON-500",
                                            "errorMessage":"Unexpected error while creating the depot reconciliation shipment.",
                                            "details":{
                                                "operation":"createDepotReconShipment",
                                                "issue":"Unable to create depot reconciliation shipment."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/doseholdsettings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Get all dose hold settings details"
                ],
                "summary":"v1.0",
                "description":"Retrieves all dose hold settings details. Rights required:SupplySettingRightsGet.",
                "operationId":"getDoseHolds",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ListResponse"
                                },
                                "examples":{
                                    "Dose Hold Settings List":{
                                        "description":"Dose Hold Settings List",
                                        "value":{
                                            "Resources":[
                                                {
                                                    "doseHoldID":"F0E1D2C3B4A5968778695A4B3C2D1E0F",
                                                    "reason":"Initial configuration",
                                                    "comment":"Dose hold enabled for titration visits",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userID":"D313327EF13845169A8ADADDA435431E",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                    "startingVisitSrcId":"0A1B2C3D4E5F678890AABBCCDDEEFF11",
                                                    "instanceNumber":5,
                                                    "enabled":true,
                                                    "maxDoseHolds":10,
                                                    "frequencyUnlimited":true,
                                                    "frequencyLimitInSequence":2,
                                                    "frequencyLimitInDays":14
                                                }
                                            ],
                                            "schemas":[
                                                "urn:nextgen:schemas:resource:1.0::ListResponse"
                                            ],
                                            "totalResults":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Hold Settings Bad Request Response":{
                                        "description":"Dose Hold Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose hold settings request is invalid.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The study identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-doseholdsettings-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-doseholdsettings-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Create dose hold settings for the given dose hold"
                ],
                "summary":"v1.0",
                "description":"Adds dose hold setting for a given dose hold. Rights required:SupplySettingRightsPost.",
                "operationId":"createDoseHoldSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DoseHoldSettingsRequestV1"
                            },
                            "examples":{
                                "Create Dose Hold Settings Request":{
                                    "description":"Create Dose Hold Settings Request",
                                    "value":{
                                        "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                        "startingVisitSrcId":"0A1B2C3D4E5F678890AABBCCDDEEFF11",
                                        "enabled":true,
                                        "frequencyUnlimited":true,
                                        "instanceNumber":5,
                                        "maxDoseHolds":10,
                                        "frequencyLimitInSequence":2,
                                        "frequencyLimitInDays":14
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldResponse"
                                },
                                "examples":{
                                    "Create Dose Hold Settings Response":{
                                        "description":"Create Dose Hold Settings Response",
                                        "value":{
                                            "doseHoldId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Dose Hold Settings Bad Request Response":{
                                        "description":"Create Dose Hold Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose hold settings payload is invalid.",
                                                "details":{
                                                    "field":"maxDoseHolds",
                                                    "reason":"The maximum number of dose holds must be greater than zero."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-doseholdsettings-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-doseholdsettings-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/doseholdsettings/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Get dose hold setting details of given dose hold by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves dose hold setting details of given dose hold identified by ID. Rights required:SupplySettingRightsGet.",
                "operationId":"getDoseHoldById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Dose Hold ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldSettingsResponseTO"
                                },
                                "examples":{
                                    "Dose Hold Settings Id":{
                                        "description":"Dose Hold Settings Id",
                                        "value":{
                                            "doseHoldID":"F0E1D2C3B4A5968778695A4B3C2D1E0F",
                                            "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "startingVisitSrcId":"0A1B2C3D4E5F678890AABBCCDDEEFF11",
                                            "instanceNumber":5,
                                            "enabled":true,
                                            "maxDoseHolds":10,
                                            "frequencyUnlimited":true,
                                            "frequencyLimitInSequence":2,
                                            "frequencyLimitInDays":14,
                                            "reason":"Initial configuration",
                                            "comment":"Dose hold enabled for titration visits"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Hold Settings By Id Bad Request Response":{
                                        "description":"Dose Hold Settings By Id Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose hold identifier is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied identifier does not match the expected format."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-doseholdsettings-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-doseholdsettings-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Update dose hold settings of a given dose hold by ID"
                ],
                "summary":"v1.0",
                "description":"Updates dose hold settings of a given dose hold identified by ID. Rights required: SupplySettingRightsPost.",
                "operationId":"updateDoseHoldSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Dose Hold ID.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DoseHoldSettingsRequestV1"
                            },
                            "examples":{
                                "Update Dose Hold Settings Request":{
                                    "description":"Update Dose Hold Settings Request",
                                    "value":{
                                        "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                        "startingVisitSrcId":"0A1B2C3D4E5F678890AABBCCDDEEFF11",
                                        "enabled":true,
                                        "frequencyUnlimited":false,
                                        "instanceNumber":3,
                                        "maxDoseHolds":5,
                                        "frequencyLimitInSequence":1,
                                        "frequencyLimitInDays":7
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldResponse"
                                },
                                "examples":{
                                    "Update Dose Hold Settings Response":{
                                        "description":"Update Dose Hold Settings Response",
                                        "value":{
                                            "doseHoldId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Dose Hold Settings Bad Request Response":{
                                        "description":"Update Dose Hold Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose hold settings update payload is invalid.",
                                                "details":{
                                                    "field":"frequencyLimitInDays",
                                                    "reason":"The frequency limit in days must be zero or greater."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-doseholdsettings-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-doseholdsettings-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Delete dose hold settings of a given dose hold by ID"
                ],
                "summary":"v1.0",
                "description":"Deletes dose hold setting details of a given dose hold identified by ID. Rights required: SupplySettingRightsPost.",
                "operationId":"deleteDoseHoldById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Dose Hold ID to delete.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Deleted Dose Hold Id":{
                                        "description":"Deleted Dose Hold Id",
                                        "value":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Dose Hold Bad Request Response":{
                                        "description":"Delete Dose Hold Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose hold record could not be deleted.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-doseholdsettings-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-doseholdsettings-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/events/codebreak/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Code Break event"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves details about a Code Break event in the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreakEvent",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Codebreak Event Payload":{
                                        "description":"Codebreak Event Payload",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Code Break Event Not Found Response":{
                                        "description":"Get Code Break Event Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-404",
                                                "errorMessage":"The requested code break event was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type. Or No data found for the event.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Code Break Event Bad Request Response":{
                                        "description":"Get Code Break Event Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-400",
                                                "errorMessage":"The event identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Code Break Event Server Error Response":{
                                        "description":"Get Code Break Event Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-500",
                                                "errorMessage":"Unexpected error while retrieving the code break event."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-events-codebreak-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-events-codebreak-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/events":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get list of events in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of events in a study based on start date and end date. Rights: OrsSubjectVisitGet. If no events are specified, all the events in action types are returned. If event types are specified, but none of them are valid, an empty list is returned.",
                "operationId":"getEvents",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"events",
                        "in":"query",
                        "description":"List of events.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"New"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-01-01T00:00:00Z"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-01-31T23:59:59Z"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/EventsDTO"
                                },
                                "examples":{
                                    "Events Response":{
                                        "description":"Events Response",
                                        "value":{
                                            "events":[
                                                {
                                                    "eventType":"New",
                                                    "ids":[
                                                        "B1B8327AFAA6412287106192AB5984EF"
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Events Server Error Response":{
                                        "description":"Get Events Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-500",
                                                "errorMessage":"Unexpected error while retrieving events."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-events-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-events-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/events/kitreplacement/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Kit Replacement event"
                ],
                "summary":"v1.0",
                "description":"Retrieves details on kit replacement events for a subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getKitReplacementEvent",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Kit Replacement Event Payload":{
                                        "description":"Kit Replacement Event Payload",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Replacement Event Not Found Response":{
                                        "description":"Get Kit Replacement Event Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-404",
                                                "errorMessage":"The requested kit replacement event was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type OR no data found for the event",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Replacement Event Bad Request Response":{
                                        "description":"Get Kit Replacement Event Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-400",
                                                "errorMessage":"The event identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Replacement Event Server Error Response":{
                                        "description":"Get Kit Replacement Event Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-500",
                                                "errorMessage":"Unexpected error while retrieving the kit replacement event."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-events-kitreplacement-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-events-kitreplacement-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/events/resume_dosehold_dispensation/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Resume dose hold dispensation event"
                ],
                "summary":"v1.0",
                "description":"Retrieves details on resume dose hold dispensation events for a subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getResumeDoseHoldDispensationEvent",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Resume Dose Hold Dispensation Payload":{
                                        "description":"Resume Dose Hold Dispensation Payload",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Dose Hold Dispensation Event Not Found Response":{
                                        "description":"Get Resume Dose Hold Dispensation Event Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-404",
                                                "errorMessage":"The requested resume dose hold dispensation event was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type OR no data found for the event",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Dose Hold Dispensation Event Bad Request Response":{
                                        "description":"Get Resume Dose Hold Dispensation Event Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-400",
                                                "errorMessage":"The event identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Dose Hold Dispensation Event Server Error Response":{
                                        "description":"Get Resume Dose Hold Dispensation Event Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-500",
                                                "errorMessage":"Unexpected error while retrieving the resume dose hold dispensation event."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-events-resume_dosehold_dispensation-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-events-resume_dosehold_dispensation-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/events/resume_partial_dispensation/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Resume Partial Dispensation event"
                ],
                "summary":"v1.0",
                "description":"Retrieves details on resume partial dispensation events for a subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getResumePartialDispensationEvent",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Resume Partial Dispensation Payload":{
                                        "description":"Resume Partial Dispensation Payload",
                                        "value":{
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Partial Dispensation Event Not Found Response":{
                                        "description":"Get Resume Partial Dispensation Event Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-404",
                                                "errorMessage":"The requested resume partial dispensation event was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type OR no data found for the event",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Partial Dispensation Event Bad Request Response":{
                                        "description":"Get Resume Partial Dispensation Event Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-400",
                                                "errorMessage":"The event identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resume Partial Dispensation Event Server Error Response":{
                                        "description":"Get Resume Partial Dispensation Event Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"EVENT-500",
                                                "errorMessage":"Unexpected error while retrieving the resume partial dispensation event."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-events-resume_partial_dispensation-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-events-resume_partial_dispensation-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/fileupload/rndlists/{rndListId}":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create randomization list from uploaded file"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Creates a randomization list from an uploaded file. Rights: DesignerRandListUpload. This API operation stores file data against the specified randomization list. File ID is a unique identifier for the uploaded file received from File Upload Services.",
                "operationId":"uploadRndList",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF00"
                    },
                    {
                        "name":"rndListId",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"fileId",
                        "in":"query",
                        "description":"ID of the file.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"8C5C1C4D0E1F2A3B4C5D6E7F8091A2B3"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "examples":{
                                    "Upload Randomization List Success (No Content)":{
                                        "description":"Upload succeeds with no response body."
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Randomization List Server Error Response":{
                                        "description":"Upload Randomization List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while uploading the randomization list file.",
                                                "details":{
                                                    "operation":"uploadRndList",
                                                    "reason":"The randomization list file could not be attached to the list."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-fileupload-rndlists-{rndListId}-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-fileupload-rndlists-rndlistid-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/import/{studyId}/{version}":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Study Import APIs/Get unique values for treatments, stratums or cohorts from a CSV file"
                ],
                "summary":"v1.0",
                "description":"Retrieves unique values for treatment arms, stratums and/or cohorts from a CSV file. Rights: OrsImportDesignPost.",
                "operationId":"doImport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-21T06:30:00Z"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "examples":{
                                    "Import study design":{
                                        "description":"Import study design"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server error":{
                                        "description":"Server error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"IMPORT-500",
                                                "errorMessage":"Unexpected error while importing the study design.",
                                                "details":{
                                                    "studyId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                    "version":"2026-02-21T06:30:00Z"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-import-{studyId}-{version}-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-import-studyid-version-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/depots/{depotId}/inventory/kits/{inventoryId}/historyById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get Kit History by depot ID and kit ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves kit history by depot ID. Rights: BlindedDepotUser.",
                "operationId":"getDepotKitHistoryById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Depot Kit Status History Response":{
                                        "description":"Get Depot Kit Status History Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"Available",
                                            "reason":"Status updated during reconciliation",
                                            "returnedUnits":10,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kit Status History Server Error Response":{
                                        "description":"Get Depot Kit Status History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving depot kit history."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kit Status History Not Found Response":{
                                        "description":"Get Depot Kit Status History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The depot kit history was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kit Status History Bad Request Response":{
                                        "description":"Get Depot Kit Status History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The depot inventory identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-depots-{depotId}-inventory-kits-{inventoryId}-historyById-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-depots-depotid-inventory-kits-inventoryid-historybyid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/depots/{depotId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kits from depot inventory by depot ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of inventories based on the filters passed in the request. Rights: ORSBlindedDepotGet, returns list of inventories at the depot for the passed filters.",
                "operationId":"getDepotKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchByKitNumber",
                        "in":"query",
                        "description":"Kit Number search string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-0001"
                    },
                    {
                        "name":"searchBySeqNumber",
                        "in":"query",
                        "description":"Sequence number search string.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"sequenceNumberMin",
                        "in":"query",
                        "description":"Minimum sequence number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"sequenceNumberMax",
                        "in":"query",
                        "description":"Maximum sequence number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":100
                    },
                    {
                        "name":"kitNumberMin",
                        "in":"query",
                        "description":"Minimum kit number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":10001
                    },
                    {
                        "name":"kitNumberMax",
                        "in":"query",
                        "description":"Maximum kit number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":10100
                    },
                    {
                        "name":"blindedLotId",
                        "in":"query",
                        "description":"Blinded lot ID for search",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentNumber",
                        "in":"query",
                        "description":"Shipment number for search",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-0001"
                    },
                    {
                        "name":"quarantineId",
                        "in":"query",
                        "description":"Quarantine ID for search",
                        "schema":{
                            "type":"string"
                        },
                        "example":"Q-0001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":0
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":100
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":5
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DepotKitDetailsResponseV1"
                                },
                                "examples":{
                                    "Get Depot Kits Response":{
                                        "description":"Get Depot Kits Response",
                                        "value":{
                                            "distinctInventoryStatusIds":[
                                                5,
                                                10
                                            ],
                                            "blindedLotsExistsInStudy":true,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumberUTF":"10001",
                                                    "sequenceNumber":1,
                                                    "blockNumber":"BLK-001",
                                                    "inventoryStatusId":5,
                                                    "inventoryStatus":"Available",
                                                    "unitsPerKit":30,
                                                    "kitDescription":"Bottle of tablets",
                                                    "distributionSetting":"BLINDED",
                                                    "barCode":"BAR-10001",
                                                    "blindedLotExpirationDate":"2026-12-31T00:00:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kits Server Error Response":{
                                        "description":"Get Depot Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving depot kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid depot ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kits Not Found Response":{
                                        "description":"Get Depot Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The depot was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Depot Kits Bad Request Response":{
                                        "description":"Get Depot Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The depot kit filters are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-depots-{depotId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-depots-depotid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes from depot inventory by depot ID"
                ],
                "summary":"v1.0",
                "description":"Updates kit attributes from depot inventory by depot ID, based on the filters passed in the request. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitAttributes",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateDepotKitsRequestV1"
                            },
                            "examples":{
                                "Update Depot Kits Request":{
                                    "description":"Update Depot Kits Request",
                                    "value":{
                                        "kitsFilter":{
                                            "searchByKitNumber":"KIT-0001",
                                            "searchBySeqNumber":1,
                                            "sequenceNumberMin":1,
                                            "sequenceNumberMax":100,
                                            "kitNumberMin":10001,
                                            "kitNumberMax":10100,
                                            "blindedLotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "shipmentNumber":"SHIP-0001",
                                            "quarantineId":"0000000000001",
                                            "inventoryStatusIds":[
                                                5,
                                                10
                                            ]
                                        },
                                        "kits":[
                                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "reason":"Kit damaged during shipment",
                                        "inventoryStatusId":10
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateDepotKitsResponse"
                                },
                                "examples":{
                                    "Update Depot Kit Attributes Response":{
                                        "description":"Update Depot Kit Attributes Response",
                                        "value":{
                                            "tempExcursionNumber":"0000000000001",
                                            "transactionId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Depot Kit Attributes Not Found Response":{
                                        "description":"Update Depot Kit Attributes Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The depot kit record was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Depot Kit Attributes Bad Request Response":{
                                        "description":"Update Depot Kit Attributes Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The depot kit update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Depot Kit Attributes Server Error Response":{
                                        "description":"Update Depot Kit Attributes Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating depot kit attributes."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-depots-{depotId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-depots-depotid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{sourceId}/export":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Export kit details for the inventory"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Exports kit details for the inventory source as a CSV file. Rights: DesignerKitListGet.",
                "operationId":"export",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sourceId",
                        "in":"path",
                        "description":"Source ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INV-SRC-0001"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "examples":{
                                    "Export Inventory Kits Success (No Content)":{
                                        "description":"Export is streamed as a file download; response has no body."
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"No matching inventory source is available",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Inventory Kits Not Found Response":{
                                        "description":"Export Inventory Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The inventory source was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Inventory Kits Server Error Response":{
                                        "description":"Export Inventory Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while exporting inventory kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{sourceId}-export-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-sourceid-export-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{kitId}/confirmDispensation":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update a kit's dispensation confirmation"
                ],
                "summary":"v1.0",
                "description":"Updates a kit's dispensation confirmation. Rights: OrsInventoryPost.",
                "operationId":"confirmDispensation",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Confirm Dispensation Response":{
                                        "description":"Confirm Dispensation Response",
                                        "value":{
                                            "id":"1bc29b36-f5d6-4b1b-95f4-bdbbcea481be"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Confirm Dispensation Not Found Response":{
                                        "description":"Confirm Dispensation Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Dispensation confirmed already for this kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Confirm Dispensation Bad Request Response":{
                                        "description":"Confirm Dispensation Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Confirm Dispensation Server Error Response":{
                                        "description":"Confirm Dispensation Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{kitId}-confirmDispensation-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-kitid-confirmdispensation-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kitlists/{listId}/disable":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Disable kit list with inventories"
                ],
                "summary":"v1.0",
                "description":"Disables kit list. Rights: BarCodePost.",
                "operationId":"disableKitlist",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"listId",
                        "in":"path",
                        "description":"Kit list ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disable Kit List Response":{
                                        "description":"Disable Kit List Response",
                                        "value":{
                                            "status":"SUCCESS",
                                            "result":null,
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Kit list not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disable Kit List Not Found Response":{
                                        "description":"Disable Kit List Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit list",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disable Kit List Bad Request Response":{
                                        "description":"Disable Kit List Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disable Kit List Server Error Response":{
                                        "description":"Disable Kit List Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kitlists-{listId}-disable-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kitlists-listid-disable-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/generate":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Generate kits"
                ],
                "summary":"v1.0",
                "description":"Generates kits. Rights: DesignerKitListPost.",
                "operationId":"generateKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/GenerateKitsRequest"
                            },
                            "examples":{
                                "Generate Kits Request":{
                                    "description":"Generate Kits Request",
                                    "value":{
                                        "title":"Comparative Cream - Batch B",
                                        "description":"Initial kit generation for the study",
                                        "kitTypes":[
                                            {
                                                "id":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                                "quantity":10
                                            }
                                        ],
                                        "kitNumberStart":1001,
                                        "sequenceNumberStart":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateKitsResponse"
                                },
                                "examples":{
                                    "Generate Kits Response":{
                                        "description":"Generate Kits Response",
                                        "value":{
                                            "inventorySourceId":"B1B8327AFAA6412287106192AB5984EF",
                                            "noOfKitsGenerated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Kits Not Found Response":{
                                        "description":"Generate Kits Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"The title has already been used OR Invalid kit type OR The maximum number of rows requested shall not exceed 500000 OR Some numbers in this list are used in another kit list. Adjust the first kit or sequence number so that the values don't overlap with existing numbers. OR 1 or more sequence numbers already exist OR 1 or more kit numbers already exist OR The CSV might contain duplicate kit number(s) or sequence number(s)",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Kits Bad Request Response":{
                                        "description":"Generate Kits Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Kits Server Error Response":{
                                        "description":"Generate Kits Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-generate-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-generate-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses/allowed/{fromInventoryStatusId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get allowed inventory statuses"
                ],
                "summary":"v1.0",
                "description":"Retrieves allowed inventory statuses. Rights: OrsInventoryGet.",
                "operationId":"getAllowedInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"fromInventoryStatusId",
                        "in":"path",
                        "description":"ID of the initial inventory status in status transition.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Response":{
                                        "description":"Get Allowed Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":2,
                                                "inventoryStatus":"Damaged"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Server Error Response":{
                                        "description":"Get Allowed Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-allowed-{fromInventoryStatusId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-allowed-frominventorystatusid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses/cancelledshipment":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get cancelled inventory statuses"
                ],
                "summary":"v1.0",
                "description":"Retrieves an inventory's cancelled status. Rights: OrsInventoryGet.",
                "operationId":"getCancelledInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Cancelled Inventory Statuses Response":{
                                        "description":"Get Cancelled Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":8,
                                                "inventoryStatus":"In Transit"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Cancelled Inventory Statuses Server Error Response":{
                                        "description":"Get Cancelled Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-cancelledshipment-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-cancelledshipment-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses/destruction":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get destruction inventory statuses"
                ],
                "summary":"v1.0",
                "description":"Retrieves destruction-related statuses from the inventory. Rights: OrsInventoryGet.",
                "operationId":"getDestructionInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Destruction Inventory Statuses Response":{
                                        "description":"Get Destruction Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":11,
                                                "inventoryStatus":"Pending Destruction"
                                            },
                                            {
                                                "inventoryStatusId":20,
                                                "inventoryStatus":"Received for Destruction"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Destruction Inventory Statuses Server Error Response":{
                                        "description":"Get Destruction Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-destruction-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-destruction-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/{inventoryId}/dispensation":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get dispensation details by inventory ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves dispensation details like subject source ID, visit source ID and instance number for a given inventory ID. Rights: OrsInventoryGet.",
                "operationId":"getInventoryDispensation",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryDispensationResponseV1"
                                },
                                "examples":{
                                    "Get Inventory Dispensation Response":{
                                        "description":"Get Inventory Dispensation Response",
                                        "value":{
                                            "subjectSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                            "visitSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "instanceNumber":1,
                                            "kitNumber":1001
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Dispensation Server Error Response":{
                                        "description":"Get Inventory Dispensation Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Dispensation Not Found Response":{
                                        "description":"Get Inventory Dispensation Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-{inventoryId}-dispensation-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-inventoryid-dispensation-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory statuses"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves statuses from an inventory. Rights: OrsInventoryGet.",
                "operationId":"getInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Inventory Statuses Response":{
                                        "description":"Get Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":8,
                                                "inventoryStatus":"In Transit"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Statuses Server Error Response":{
                                        "description":"Get Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{kitId}/barcode":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get a kit's barcode by kit ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a kit's barcode. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitBarcode",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitBarcodeTO"
                                },
                                "examples":{
                                    "Get Kit Barcode Response":{
                                        "description":"Get Kit Barcode Response",
                                        "value":{
                                            "barcode":"61234"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Barcode Not Found Response":{
                                        "description":"Get Kit Barcode Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Barcode Bad Request Response":{
                                        "description":"Get Kit Barcode Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Barcode Server Error Response":{
                                        "description":"Get Kit Barcode Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{kitId}-barcode-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-kitid-barcode-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update a kit's barcode"
                ],
                "summary":"v1.0",
                "description":"Updates a kit's barcode by kit ID. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitBarcode",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "requestBody":{
                    "description":"Kit label group parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitBarcodeTO"
                            },
                            "examples":{
                                "Update Kit Barcode Request":{
                                    "description":"Update Kit Barcode Request",
                                    "value":{
                                        "barcode":"61234"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitBarcodeTO"
                                },
                                "examples":{
                                    "Update Kit Barcode Response":{
                                        "description":"Update Kit Barcode Response",
                                        "value":{
                                            "barcode":"61234"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Barcode Not Found Response":{
                                        "description":"Update Kit Barcode Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Barcode Bad Request Response":{
                                        "description":"Update Kit Barcode Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Barcode Server Error Response":{
                                        "description":"Update Kit Barcode Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{kitId}-barcode-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-kitid-barcode-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kitDetails":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit details by kit number"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves kit details by kit number. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitByKitNumber",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitInfoResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Response":{
                                        "description":"Get Kit By Kit Number Response",
                                        "value":{
                                            "kitDetails":{
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "locationId":"SITE-001",
                                                "manufacturingLotId":"LOT-001",
                                                "labelGroupId":"LABEL-001",
                                                "inventoryStatus":"Available"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Not Found Response":{
                                        "description":"Get Kit By Kit Number Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Bad Request Response":{
                                        "description":"Get Kit By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid kit number.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Server Error Response":{
                                        "description":"Get Kit By Kit Number Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kitDetails-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kitdetails-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{kitNumber}/lastStatus":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get a kit's last status by kit number"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a kit's last status by kit number. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitLastStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status Response":{
                                        "description":"Get Kit Last Status Response",
                                        "value":{
                                            "inventoryStatusId":1,
                                            "inventoryStatus":"Available"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status Not Found Response":{
                                        "description":"Get Kit Last Status Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status Bad Request Response":{
                                        "description":"Get Kit Last Status Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid kit number.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status Server Error Response":{
                                        "description":"Get Kit Last Status Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{kitNumber}-lastStatus-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-kitnumber-laststatus-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{inventoryId}/lastStatusById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get a kit's last status"
                ],
                "summary":"v1.0",
                "description":"Retrieves a kit's last status by inventory ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitLastStatusById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By ID Response":{
                                        "description":"Get Kit Last Status By ID Response",
                                        "value":{
                                            "inventoryStatusId":1,
                                            "inventoryStatus":"Available"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By ID Not Found Response":{
                                        "description":"Get Kit Last Status By ID Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By ID Bad Request Response":{
                                        "description":"Get Kit Last Status By ID Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By ID Server Error Response":{
                                        "description":"Get Kit Last Status By ID Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{inventoryId}-lastStatusById-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-inventoryid-laststatusbyid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kitlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit list details"
                ],
                "summary":"v1.0",
                "description":"Retrieves generated/uploaded kit lists details in a study. Rights: OrsInventoryGet.",
                "operationId":"getKitListsDetails",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitListDetailsTOV1"
                                    }
                                },
                                "examples":{
                                    "Get Kit Lists Details Response":{
                                        "description":"Get Kit Lists Details Response",
                                        "value":[
                                            {
                                                "id":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                                "name":"KitList-01",
                                                "description":"Initial kit list upload",
                                                "statusId":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Lists Details Server Error Response":{
                                        "description":"Get Kit Lists Details Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kitlists-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kitlists-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Kit list details for each kit"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Kit list details of each kit. Rights: OrsInventoryGet.",
                "operationId":"getKitsAudit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"inventorySourceId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsAuditRequestV1"
                            },
                            "examples":{
                                "Kits Audit Request":{
                                    "description":"Kits Audit Request",
                                    "value":{
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsAuditResponseV1"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Inventory Source ID not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Not Found Response":{
                                        "description":"Kits Audit Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Bad Request Response":{
                                        "description":"Kits Audit Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Server Error Response":{
                                        "description":"Kits Audit Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-audit-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kit-types/{kitTypeId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves kit summary by kit type ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitsByKitTypeId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string"
                        },
                        "example":100
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered. Default value is 'SEQUENCE_NUMBER'.",
                        "schema":{
                            "type":"string",
                            "default":"SEQUENCE_NUMBER"
                        },
                        "example":"SEQUENCE_NUMBER"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDetailsResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Response":{
                                        "description":"Get Kits By Kit Type ID Response",
                                        "value":{
                                            "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitTypeName":"KitType-01",
                                            "minSequenceNumber":1,
                                            "maxSequenceNumber":10,
                                            "minKitNumber":1001,
                                            "maxKitNumber":1010,
                                            "kits":[
                                                {
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":1001,
                                                    "sequenceNumber":1,
                                                    "inventoryStatusId":1,
                                                    "locationId":"SITE-001",
                                                    "inventoryStatus":"Available"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version or Kit type not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Not Found Response":{
                                        "description":"Get Kits By Kit Type ID Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filtersOR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Bad Request Response":{
                                        "description":"Get Kits By Kit Type ID Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Server Error Response":{
                                        "description":"Get Kits By Kit Type ID Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kit-types-{kitTypeId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kit-types-kittypeid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/suggested-max-numbers":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get max kit number"
                ],
                "summary":"v1.0",
                "description":"Retrieves the maximum number of kits. Rights: DesignerKitListGet.",
                "operationId":"getMaxNumbers",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsMaxResponse"
                                },
                                "examples":{
                                    "Get Suggested Max Numbers Response":{
                                        "description":"Get Suggested Max Numbers Response",
                                        "value":{
                                            "suggestedKitNumber":1101,
                                            "suggestedSequenceNumber":101
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Suggested Max Numbers Not Found Response":{
                                        "description":"Get Suggested Max Numbers Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Suggested Max Numbers Server Error Response":{
                                        "description":"Get Suggested Max Numbers Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-suggested-max-numbers-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-suggested-max-numbers-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/packagetypes":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get types of packages"
                ],
                "summary":"v1.0",
                "description":"Retrieves package type by study ID. Rights: OrsInventoryGet.",
                "operationId":"getPackageTypes",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/PackageType"
                                    }
                                },
                                "examples":{
                                    "Get Package Types Response":{
                                        "description":"Get Package Types Response",
                                        "value":[
                                            {
                                                "packageTypeId":1,
                                                "packageType":"BOTTLE"
                                            },
                                            {
                                                "packageTypeId":2,
                                                "packageType":"VIAL"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Package Types Server Error Response":{
                                        "description":"Get Package Types Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-packagetypes-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-packagetypes-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kit-types/location/{locationId}/pendingdestructioncount":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get pending Destruction count by location ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves pending destruction counts and kit type source ID available at location. Rights: OrsInventoryGet.",
                "operationId":"getPendingDestructionCount",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"locationId",
                        "in":"path",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PendingDestructionKitCountResponseV1"
                                },
                                "examples":{
                                    "Get Pending Destruction Count Response":{
                                        "description":"Get Pending Destruction Count Response",
                                        "value":{
                                            "kitTypes":[
                                                {
                                                    "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "count":12
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Pending Destruction Count Server Error Response":{
                                        "description":"Get Pending Destruction Count Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Pending Destruction Count Not Found Response":{
                                        "description":"Get Pending Destruction Count Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kit-types-location-{locationId}-pendingdestructioncount-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kit-types-location-locationid-pendingdestructioncount-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/qualified-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get list of filtered kits"
                ],
                "summary":"v1.0",
                "description":"Retrieves list of kits which had qualified recent updates based on criteria defined by Oracle Clinical One Integration Hub. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getQualifiedKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Start date/time for retrieving qualified kit updates",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01T00:00:00.000Z"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"End date/time for retrieving qualified kit updates",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-29T23:59:59.999Z"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDetailsExtTO"
                                    }
                                },
                                "examples":{
                                    "Get Qualified Kits Response":{
                                        "description":"Get Qualified Kits Response",
                                        "value":[
                                            {
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available",
                                                "blockNumber":"BLK-01",
                                                "kitNumberUTF":"KIT-1001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Qualified Kits Not Found Response":{
                                        "description":"Get Qualified Kits Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid date range",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Qualified Kits Bad Request Response":{
                                        "description":"Get Qualified Kits Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid date range.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Qualified Kits Server Error Response":{
                                        "description":"Get Qualified Kits Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-qualified-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-qualified-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses/receivedshipment":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get received inventory statuses"
                ],
                "summary":"v1.0",
                "description":"Retrieves received inventory status. Rights: OrsInventoryGet.",
                "operationId":"getReceivedInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Received Inventory Statuses Response":{
                                        "description":"Get Received Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":20,
                                                "inventoryStatus":"Received for Destruction"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Received Inventory Statuses Server Error Response":{
                                        "description":"Get Received Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-receivedshipment-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-receivedshipment-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/singlekitsettings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get single kit settings"
                ],
                "summary":"v1.0",
                "description":"Retrieves single kit settings by study ID. Rights: OrsInventoryGet.",
                "operationId":"getSingleKitSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SingleKitSetting"
                                    }
                                },
                                "examples":{
                                    "Get Single Kit Settings Response":{
                                        "description":"Get Single Kit Settings Response",
                                        "value":[
                                            {
                                                "singleKitSettingId":1,
                                                "singleKitSetting":"DISPENSE_SINGLE_KIT"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Single Kit Settings Server Error Response":{
                                        "description":"Get Single Kit Settings Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-singlekitsettings-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-singlekitsettings-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{kitNumber}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by KitNumberUTF"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a site's kit history. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getSiteKitHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Site Kit History Response":{
                                        "description":"Get Site Kit History Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available",
                                                "reason":"Initial receipt",
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "userName":"jane.doe",
                                                "modifiedDate":"2026-02-21T08:43:01Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Not Found Response":{
                                        "description":"Get Site Kit History Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Server Error Response":{
                                        "description":"Get Site Kit History Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{kitNumber}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-kitnumber-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/{inventoryId}/historyById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a kit's history by ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getSiteKitHistoryById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit History By ID Response":{
                                        "description":"Get Kit History By ID Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available",
                                                "reason":"Kit received",
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "userName":"jane.doe",
                                                "modifiedDate":"2026-02-21T08:43:01Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By ID Not Found Response":{
                                        "description":"Get Kit History By ID Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By ID Server Error Response":{
                                        "description":"Get Kit History By ID Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-{inventoryId}-historyById-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-inventoryid-historybyid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventorystatuses/site":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get a site inventory's status"
                ],
                "summary":"v1.0",
                "description":"Retrieves a site inventory status by study ID. Rights: OrsInventoryGet.",
                "operationId":"getSiteUserInventoryStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Site User Inventory Statuses Response":{
                                        "description":"Get Site User Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":11,
                                                "inventoryStatus":"Pending Destruction"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site User Inventory Statuses Not Found Response":{
                                        "description":"Get Site User Inventory Statuses Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site User Inventory Statuses Server Error Response":{
                                        "description":"Get Site User Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventorystatuses-site-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventorystatuses-site-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get sites"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves sites by study ID. Rights: OrsInventoryGet. DEPRECATED - use /ec-site-svc/rest/v2.0/studies/{studyId}/{mode}/sdfs/sdf/{sdfType}",
                "operationId":"getSites",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SDFModel"
                                    }
                                },
                                "examples":{
                                    "Get Sites Response":{
                                        "description":"Get Sites Response",
                                        "value":[
                                            {
                                                "sdf":{
                                                    "id":"B1B8327A-FAA6-4122-8710-6192AB5984EF",
                                                    "name":"Site 101",
                                                    "status":"ACTIVE",
                                                    "sdfType":"Site",
                                                    "studyOrgId":"SITE-101"
                                                },
                                                "sdfPropertyList":[
                                                    {
                                                        "propertyName":"PIN",
                                                        "propertyValue":"101"
                                                    }
                                                ],
                                                "sdfAddresses":[
                                                    {
                                                        "addressType":"PRIMARY",
                                                        "addressStreet1":"123 Main Street",
                                                        "addressCity":"Austin",
                                                        "addressStateOrProvOrCounty":"Texas",
                                                        "addressPostalcode":"78701",
                                                        "addressCountry":"USA",
                                                        "phone":"+1-512-555-0101",
                                                        "email":"site101@example.com"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Sites Not Found Response":{
                                        "description":"Get Sites Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No sites found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Sites Server Error Response":{
                                        "description":"Get Sites Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get study settings"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the study settings for a given study and mode. Rights: OrsInventoryGet.",
                "operationId":"getSupplySettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "studyIdentifier":"B1B8327AFAA6412287106192AB5984EF",
                                            "studyVersionStart":"2026-02-21T08:43:01Z",
                                            "initialShipments":{
                                                "whenToSend":"AT_SITE_ACTIVATION",
                                                "visitNumber":5
                                            },
                                            "resupplyType":[
                                                {
                                                    "resupplyName":"Primary",
                                                    "resupplyType":"MINMAX"
                                                }
                                            ],
                                            "inventory":{
                                                "daysToRun":{
                                                    "sunday":false,
                                                    "monday":true,
                                                    "tuesday":true,
                                                    "wednesday":true,
                                                    "thursday":true,
                                                    "friday":true,
                                                    "saturday":false
                                                },
                                                "timeToRun":{
                                                    "timeHour":2,
                                                    "timeMinute":30,
                                                    "timePeriod":"AM",
                                                    "timeZone":"UTC"
                                                }
                                            },
                                            "kitOrdering":{
                                                "allowed":"Y",
                                                "blindingGroupsRequired":"Y",
                                                "kitsToPreventUnblinding":"2",
                                                "kitType":"BOTTLE"
                                            },
                                            "labelGroups":"LG-01",
                                            "shippingGroups":"SG-01",
                                            "consignment":{
                                                "enableTemperatureExecursion":"N",
                                                "notReceivedDaysToWaitBeforeSiteNotified":5,
                                                "siteCanRequestManual":"Y"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Server Error Response":{
                                        "description":"Get Supply Settings Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-settings-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/barcode":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update a barcode"
                ],
                "summary":"v1.0",
                "description":"Updates a kit's barcode. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateBarcodes",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be updated with barcodes.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/KitNumberBarcodeTOV1"
                                }
                            },
                            "examples":{
                                "Update Barcodes Request":{
                                    "description":"Update Barcodes Request",
                                    "value":[
                                        {
                                            "kitNumber":1001,
                                            "barcode":"61234"
                                        },
                                        {
                                            "kitNumber":1002,
                                            "barcode":"61235"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryUpdatedTO"
                                },
                                "examples":{
                                    "Update Barcodes Response":{
                                        "description":"Update Barcodes Response",
                                        "value":{
                                            "inventoryUpdated":5
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Barcodes Not Found Response":{
                                        "description":"Update Barcodes Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Barcodes Bad Request Response":{
                                        "description":"Update Barcodes Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Barcodes Server Error Response":{
                                        "description":"Update Barcodes Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-barcode-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-barcode-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Updates kit attributes. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitAttributes_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitAttributesRequestV1"
                            },
                            "examples":{
                                "Update Kit Attributes Request":{
                                    "description":"Update Kit Attributes Request",
                                    "value":{
                                        "reason":"Inventory update",
                                        "inventoryStatusId":1,
                                        "labelGroupId":"LABEL-001",
                                        "location":"SITE-001",
                                        "manufacturingLotId":"LOT-001",
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateKitsResponseV1"
                                },
                                "examples":{
                                    "Update Kit Attributes Response":{
                                        "description":"Update Kit Attributes Response",
                                        "value":{
                                            "noOfRowsUpdated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Not Found Response":{
                                        "description":"Update Kit Attributes Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Bad Request Response":{
                                        "description":"Update Kit Attributes Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Server Error Response":{
                                        "description":"Update Kit Attributes Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/label-group":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit label group"
                ],
                "summary":"v1.0",
                "description":"Updates kit label group. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitLabelGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit label group parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitLabelGroupRequest"
                            },
                            "examples":{
                                "Update Kit Label Group Request":{
                                    "description":"Update Kit Label Group Request",
                                    "value":{
                                        "reason":"Assign kits to label group",
                                        "labelGroupId":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                        "kits":[
                                            "9b83bfb4-8c5a-41c5-9775-e4d8d22d8b26"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kit Label Group Response":{
                                        "description":"Update Kit Label Group Response",
                                        "value":{
                                            "id":"1bc29b36-f5d6-4b1b-95f4-bdbbcea481be"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Label Group Not Found Response":{
                                        "description":"Update Kit Label Group Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid label group ID OR Invalid location OR Specify at least one filter OR Either kits or kitFilters is required. OR Invalid kit OR Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Label Group Bad Request Response":{
                                        "description":"Update Kit Label Group Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Label Group Server Error Response":{
                                        "description":"Update Kit Label Group Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-label-group-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-label-group-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/location":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit location"
                ],
                "summary":"v1.0",
                "description":"Updates kit location. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitLocation",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit location parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitLocationRequest"
                            },
                            "examples":{
                                "Update Kit Location Request":{
                                    "description":"Update Kit Location Request",
                                    "value":{
                                        "reason":"Transfer kits to site",
                                        "location":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                        "kits":[
                                            "9b83bfb4-8c5a-41c5-9775-e4d8d22d8b26"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kit Location Response":{
                                        "description":"Update Kit Location Response",
                                        "value":{
                                            "id":"1bc29b36-f5d6-4b1b-95f4-bdbbcea481be"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Location Not Found Response":{
                                        "description":"Update Kit Location Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid location OR Specify at least one filter OR Either kits or kitFilters is required. OR Invalid kit OR Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Location Bad Request Response":{
                                        "description":"Update Kit Location Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Location Server Error Response":{
                                        "description":"Update Kit Location Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-location-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-location-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/manufacturing-lot":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit manufacturing lot"
                ],
                "summary":"v1.0",
                "description":"Updates the kit's manufacturing lot. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"updateKitManufacturingLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitAttributesRequestV1"
                            },
                            "examples":{
                                "Update Kit Manufacturing Lot Request":{
                                    "description":"Update Kit Manufacturing Lot Request",
                                    "value":{
                                        "reason":"Move kits to the current manufacturing lot",
                                        "manufacturingLotId":"LOT-001",
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kit Manufacturing Lot Response":{
                                        "description":"Update Kit Manufacturing Lot Response",
                                        "value":{
                                            "id":"1bc29b36-f5d6-4b1b-95f4-bdbbcea481be"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Kit type not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Manufacturing Lot Not Found Response":{
                                        "description":"Update Kit Manufacturing Lot Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location OR You can update up to 5,000 kits at one time. Please update the kits in smaller groups OR No kits to update OR All kits should have same inventory status OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Manufacturing Lot Bad Request Response":{
                                        "description":"Update Kit Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Manufacturing Lot Server Error Response":{
                                        "description":"Update Kit Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-manufacturing-lot-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-manufacturing-lot-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/inventory/kits/status":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status"
                ],
                "summary":"v1.0",
                "description":"Updates kit status. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Kit status parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitStatusRequestV1"
                            },
                            "examples":{
                                "Update Kits Status Request":{
                                    "description":"Update Kits Status Request",
                                    "value":{
                                        "reason":"Damaged during transit",
                                        "inventoryStatusId":2,
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kits Status Response":{
                                        "description":"Update Kits Status Response",
                                        "value":{
                                            "id":"1bc29b36-f5d6-4b1b-95f4-bdbbcea481be"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Status Not Found Response":{
                                        "description":"Update Kits Status Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit OR Specify at least one filter OR Either kits or kitFilters is required OR Invalid Inventory Status OR All kits should have same inventory status OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Status Bad Request Response":{
                                        "description":"Update Kits Status Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Status Server Error Response":{
                                        "description":"Update Kits Status Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-inventory-kits-status-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-inventory-kits-status-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitNumber}/lastStatus":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the latest status of a kit at a site. Rights: OrsInventoryGet and either OrsUnblinded or OrsBlinded.",
                "operationId":"getKitLastStatus_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":10001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Kit Number Response":{
                                        "description":"Get Kit Last Status By Kit Number Response",
                                        "value":{
                                            "inventoryStatusId":10,
                                            "inventoryStatus":"Dispensed"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Kit Number Server Error Response":{
                                        "description":"Get Kit Last Status By Kit Number Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving the kit status."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Kit Number Not Found Response":{
                                        "description":"Get Kit Last Status By Kit Number Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Kit Number Bad Request Response":{
                                        "description":"Get Kit Last Status By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit number is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitNumber}-lastStatus-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-kitnumber-laststatus-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{inventoryId}/lastStatusById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the latest status of a kit at a site. Rights: OrsInventoryGet and either OrsUnblinded or OrsBlinded.",
                "operationId":"getKitLastStatusById_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Inventory ID Response":{
                                        "description":"Get Kit Last Status By Inventory ID Response",
                                        "value":{
                                            "inventoryStatusId":10,
                                            "inventoryStatus":"Dispensed"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Inventory ID Server Error Response":{
                                        "description":"Get Kit Last Status By Inventory ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving the site kit status."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Inventory ID Not Found Response":{
                                        "description":"Get Kit Last Status By Inventory ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site inventory record was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status By Inventory ID Bad Request Response":{
                                        "description":"Get Kit Last Status By Inventory ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site inventory identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{inventoryId}-lastStatusById-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-inventoryid-laststatusbyid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitNumber}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by kit number for a site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a kit's history at a site by kit number. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKitHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":10001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Kit History By Kit Number Response":{
                                        "description":"Get Kit History By Kit Number Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"Available",
                                            "reason":"Status updated during reconciliation",
                                            "returnedUnits":10,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Kit Number Server Error Response":{
                                        "description":"Get Kit History By Kit Number Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kit history."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Kit Number Not Found Response":{
                                        "description":"Get Kit History By Kit Number Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kit history was found for the provided kit number."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Kit Number Bad Request Response":{
                                        "description":"Get Kit History By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit number is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitNumber}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-kitnumber-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{inventoryId}/historyById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history for a site by kitNumberUTF"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a kit's history at a site by inventory ID. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKitHistoryById_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Kit History By Inventory ID Response":{
                                        "description":"Get Kit History By Inventory ID Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"Available",
                                            "reason":"Status updated during reconciliation",
                                            "returnedUnits":10,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Inventory ID Server Error Response":{
                                        "description":"Get Kit History By Inventory ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kit history."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Inventory ID Not Found Response":{
                                        "description":"Get Kit History By Inventory ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kit history was found for the provided inventory identifier."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit History By Inventory ID Bad Request Response":{
                                        "description":"Get Kit History By Inventory ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site inventory identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{inventoryId}-historyById-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-inventoryid-historybyid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves kits for a site based on search criteria like range and status. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        }
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "minKitNumber":10001,
                                            "maxKitNumber":10100,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Server Error Response":{
                                        "description":"Get Site Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status by kit ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Updates a kit's status at a site by kit ID. Rights: OrsInventoryPost and OrsBlinded.",
                "operationId":"updateKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kit status update details",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitStatusRequest"
                            },
                            "examples":{
                                "Update Site Kit Status Request":{
                                    "description":"Update Site Kit Status Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "subjectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Kit damaged by subject"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Site Kit Status Response":{
                                        "description":"Update Site Kit Status Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kit Status Server Error Response":{
                                        "description":"Update Site Kit Status Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating the site kit status."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}/verify":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Set kit verification status"
                ],
                "summary":"v1.0",
                "description":"Sets a kit's verification status. Rights: OrsInventoryPost and either OrsUnblinded or SourceDataVerification.",
                "operationId":"verifyKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kit verification status.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserVerifyKitRequest"
                            },
                            "examples":{
                                "Verify Kit Request":{
                                    "description":"Verify Kit Request",
                                    "value":{
                                        "verified":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Verify Kit Response":{
                                        "description":"Verify Kit Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Verify Kit Server Error Response":{
                                        "description":"Verify Kit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while verifying the site kit."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Verify Kit Not Found Response":{
                                        "description":"Verify Kit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Verify Kit Bad Request Response":{
                                        "description":"Verify Kit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The kit verification request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-verify-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-verify-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/upload/file/{fileId}":{
            "delete":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Delete kit list file"
                ],
                "summary":"v1.0",
                "description":"Removes kit list files. Rights: DesignerKitListUpload.",
                "operationId":"deleteRndListFile",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"fileId",
                        "in":"path",
                        "description":"ID of the file.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Delete Uploaded Inventory File Response":{
                                        "description":"Delete Uploaded Inventory File Response",
                                        "value":"B1B8327AFAA6412287106192AB5984EF"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID <BR/> Invalid file identifier",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Uploaded Inventory File Not Found Response":{
                                        "description":"Delete Uploaded Inventory File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The uploaded inventory file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded inventory file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit list file ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Uploaded Inventory File Bad Request Response":{
                                        "description":"Delete Uploaded Inventory File Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The uploaded inventory file cannot be deleted.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"The associated kit list already has inventories and cannot be removed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Uploaded Inventory File Server Error Response":{
                                        "description":"Delete Uploaded Inventory File Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while deleting the uploaded inventory file.",
                                                "details":{
                                                    "operation":"deleteUploadedInventoryFile",
                                                    "reason":"The inventory file could not be removed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-upload-file-{fileId}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-upload-file-fileid-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/upload/{fileId}/fileheaders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Parse file headers"
                ],
                "summary":"v1.0",
                "description":"Parses file headers. Rights: DesignerKitListUpload.",
                "operationId":"processFileHeaders",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"containsHeadersRow",
                        "in":"query",
                        "description":"Specify whether the headers row is included. Default value is 'y'.",
                        "schema":{
                            "type":"string",
                            "default":"y"
                        },
                        "example":"y"
                    },
                    {
                        "name":"fileId",
                        "in":"path",
                        "description":"ID of the file.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UploadCSVHeaderResponse"
                                },
                                "examples":{
                                    "Process File Headers Response":{
                                        "description":"Process File Headers Response",
                                        "value":{
                                            "headers":[
                                                "Kit Number",
                                                "Kit Type",
                                                "Lot Number"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID <BR/> Invalid file identifier",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process File Headers Not Found Response":{
                                        "description":"Process File Headers Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The uploaded inventory file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded inventory file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid CSV file format or data",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process File Headers Bad Request Response":{
                                        "description":"Process File Headers Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The file header row could not be parsed.",
                                                "details":{
                                                    "field":"containsHeadersRow",
                                                    "reason":"Use y or n and ensure the uploaded file has a readable header row."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process File Headers Server Error Response":{
                                        "description":"Process File Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while reading inventory file headers.",
                                                "details":{
                                                    "operation":"processFileHeaders",
                                                    "reason":"The inventory file headers could not be read."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-upload-{fileId}-fileheaders-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-upload-fileid-fileheaders-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/upload/kittypesfromfile":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Upload kit types data"
                ],
                "summary":"v1.0",
                "description":"Uploads kit types data. Rights: DesignerKitListUpload.",
                "operationId":"processKitTypesFromFile",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/InventoryUploadRequest"
                            },
                            "examples":{
                                "Process Kit Types From File Request":{
                                    "description":"Process Kit Types From File Request",
                                    "value":{
                                        "fileId":"B1B8327AFAA6412287106192AB5984EF",
                                        "containsHeadersRow":"y",
                                        "headerMappings":[
                                            {
                                                "fileHeader":"Kit Type",
                                                "dbHeader":"KIT_TYPE"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InvUploadKitTypeResponse"
                                },
                                "examples":{
                                    "Process Kit Types From File Response":{
                                        "description":"Process Kit Types From File Response",
                                        "value":{
                                            "kitTypes":[
                                                "KITTYPE-A",
                                                "KITTYPE-B"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID <BR/> Invalid file identifier",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process Kit Types From File Not Found Response":{
                                        "description":"Process Kit Types From File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The uploaded inventory file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded inventory file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid CSV file format, data, or header mappings",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process Kit Types From File Invalid Header Mappings Response":{
                                        "description":"Process Kit Types From File Invalid Header Mappings Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"Header mappings are invalid for the uploaded inventory file.",
                                                "details":{
                                                    "field":"headerMappings",
                                                    "reason":"Provide a unique mapping for the Kit Type column that exists in the uploaded file."
                                                }
                                            }
                                        }
                                    },
                                    "Process Kit Types From File Invalid CSV Content Response":{
                                        "description":"Process Kit Types From File Invalid CSV Content Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The inventory file content is invalid.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"The file contains empty rows, empty cells, or unsupported characters."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Process Kit Types From File Server Error Response":{
                                        "description":"Process Kit Types From File Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while processing kit types from the inventory file.",
                                                "details":{
                                                    "operation":"processKitTypesFromFile",
                                                    "reason":"The inventory file could not be analyzed for kit type values."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-upload-kittypesfromfile-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-upload-kittypesfromfile-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/upload/uploadfile":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Upload kit list file"
                ],
                "summary":"v1.0",
                "description":"Uploads kit list file. Rights: DesignerKitListUpload.",
                "operationId":"uploadFile",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FileUploadRequest"
                            },
                            "examples":{
                                "Upload Inventory CSV File Request":{
                                    "description":"Upload Inventory CSV File Request",
                                    "value":{
                                        "name":"Inventory CSV Upload",
                                        "description":"Initial inventory upload for site kits",
                                        "mode":"test",
                                        "fileName":"inventory_upload.csv"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FileUploadResponse"
                                },
                                "examples":{
                                    "Upload Inventory CSV File Response":{
                                        "description":"Upload Inventory CSV File Response",
                                        "value":{
                                            "fileId":"7074779C195A4BF2B5EB0CEFB34BD47F"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID <BR/> Invalid file identifier",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory CSV File Not Found Response":{
                                        "description":"Upload Inventory CSV File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The source file was not found.",
                                                "details":{
                                                    "field":"fileName",
                                                    "reason":"No file in the file service matched the supplied file name."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Duplicate kit list title",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory CSV File Duplicate Title Response":{
                                        "description":"Upload Inventory CSV File Duplicate Title Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The kit list title already exists.",
                                                "details":{
                                                    "field":"name",
                                                    "reason":"Use a unique kit list name for this study."
                                                }
                                            }
                                        }
                                    },
                                    "Upload Inventory CSV File Invalid Metadata Response":{
                                        "description":"Upload Inventory CSV File Invalid Metadata Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The file metadata is invalid for inventory upload.",
                                                "details":{
                                                    "field":"fileName",
                                                    "reason":"Provide a valid uploaded file name and a non-blank kit list name."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory CSV File Server Error Response":{
                                        "description":"Upload Inventory CSV File Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while uploading the inventory file.",
                                                "details":{
                                                    "operation":"uploadInventoryFile",
                                                    "reason":"The inventory source or file record could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-upload-uploadfile-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-upload-uploadfile-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/upload/uploadinventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Upload inventory data as CSV file"
                ],
                "summary":"v1.0",
                "description":"Uploads inventory data as a CSV file. Rights: DesignerKitListUpload.",
                "operationId":"uploadInventoryList",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/InventoryUploadRequest"
                            },
                            "examples":{
                                "Upload Inventory List Request":{
                                    "description":"Upload Inventory List Request",
                                    "value":{
                                        "fileId":"B1B8327AFAA6412287106192AB5984EF",
                                        "containsHeadersRow":"y",
                                        "headerMappings":[
                                            {
                                                "fileHeader":"Kit Number",
                                                "dbHeader":"KIT_NUMBER"
                                            },
                                            {
                                                "fileHeader":"Kit Type",
                                                "dbHeader":"KIT_TYPE"
                                            },
                                            {
                                                "fileHeader":"Sequence Number",
                                                "dbHeader":"SEQUENCE_NUMBER"
                                            }
                                        ],
                                        "kitTypeMappings":[
                                            {
                                                "kitFromFile":"KITTYPE-A",
                                                "kitTypeId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            },
                                            {
                                                "kitFromFile":"KITTYPE-B",
                                                "kitTypeId":"89EE76326E984B548D594D592E5C7FC2"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateKitsResponse"
                                },
                                "examples":{
                                    "Upload Inventory List Response":{
                                        "description":"Upload Inventory List Response",
                                        "value":{
                                            "inventorySourceId":"B1B8327AFAA6412287106192AB5984EF",
                                            "noOfKitsGenerated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID <BR/> Invalid file identifier",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory List Not Found Response":{
                                        "description":"Upload Inventory List Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The uploaded inventory file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded inventory file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid CSV file format or data",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory List Invalid Header Mappings Response":{
                                        "description":"Upload Inventory List Invalid Header Mappings Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"Header mappings are invalid for the uploaded inventory file.",
                                                "details":{
                                                    "field":"headerMappings",
                                                    "reason":"Provide unique mappings for Kit Number, Kit Type, and Sequence Number that match headers in the uploaded file."
                                                }
                                            }
                                        }
                                    },
                                    "Upload Inventory List Invalid Kit Type Mappings Response":{
                                        "description":"Upload Inventory List Invalid Kit Type Mappings Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"Kit type mappings are invalid for the uploaded inventory file.",
                                                "details":{
                                                    "field":"kitTypeMappings",
                                                    "reason":"Each kit type from the file must map to a unique valid study kit type."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Inventory List Error Response":{
                                        "description":"Upload Inventory List Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while uploading inventory data.",
                                                "details":{
                                                    "operation":"uploadInventoryList",
                                                    "reason":"The inventory file could not be processed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-upload-uploadinventory-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-upload-uploadinventory-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit types"
                ],
                "summary":"v1.0",
                "description":"Retrieves kit types by study ID. Rights: OrsInventoryGet.",
                "operationId":"getKitTypes",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitTypesResponse"
                                },
                                "examples":{
                                    "Get Kit Types Response":{
                                        "description":"Get Kit Types Response",
                                        "value":{
                                            "status":"success",
                                            "result":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non-Dosing",
                                                    "packageTypeId":5
                                                }
                                            ],
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types Server Error Response":{
                                        "description":"Get Kit Types Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving kit types.",
                                                "details":{
                                                    "operation":"getKitTypes",
                                                    "reason":"The kit types could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/label-groups":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get label groups"
                ],
                "summary":"v1.0",
                "description":"Retrieves label groups by study ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getAllLabelGroups",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LabelGroup"
                                    }
                                },
                                "examples":{
                                    "Label groups list":{
                                        "description":"Label groups list",
                                        "value":[
                                            {
                                                "id":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "name":"US Labels",
                                                "countries":[
                                                    {
                                                        "id":"B1B8327AFAA6412287106192AB5984EF",
                                                        "name":"United States"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Label Groups Forbidden Response":{
                                        "description":"Get All Label Groups Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view label groups.",
                                                "details":{
                                                    "right":"OrsInventoryGet",
                                                    "reason":"The current user does not have access to unblinded label group data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Label Groups Server Error Response":{
                                        "description":"Get All Label Groups Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-500",
                                                "errorMessage":"Unexpected error while retrieving label groups.",
                                                "details":{
                                                    "operation":"getAllLabelGroups",
                                                    "reason":"The label group lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-label-groups-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-label-groups-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create label groups"
                ],
                "summary":"v1.0",
                "description":"Creates label groups by study ID. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"createLabelGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Label group request param.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabelGroupRequest"
                            },
                            "examples":{
                                "Create label group request":{
                                    "description":"Create label group request",
                                    "value":{
                                        "name":"US Labels",
                                        "countries":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Created label group id":{
                                        "description":"Created label group id",
                                        "value":{
                                            "id":"8ECE2C9D389645B09740DC7926DEFB69"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Label Group Forbidden Response":{
                                        "description":"Create Label Group Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to create label groups.",
                                                "details":{
                                                    "right":"OrsInventoryPost",
                                                    "reason":"The current user does not have create access for unblinded label group data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Label group already exists. OR Country does not exist in the system.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Label Group Bad Request Response":{
                                        "description":"Create Label Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-400",
                                                "errorMessage":"The label group request is invalid.",
                                                "details":{
                                                    "field":"countries",
                                                    "reason":"At least one valid country identifier must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Label Group Server Error Response":{
                                        "description":"Create Label Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-500",
                                                "errorMessage":"Unexpected error while creating the label group.",
                                                "details":{
                                                    "operation":"createLabelGroup",
                                                    "reason":"The label group could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-label-groups-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-label-groups-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/label-groups/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get label groups by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves label groups by label group ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getLabelGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LabelGroupResponse"
                                },
                                "examples":{
                                    "Label group":{
                                        "description":"Label group",
                                        "value":{
                                            "labelGroups":[
                                                {
                                                    "id":"8ECE2C9D389645B09740DC7926DEFB69",
                                                    "name":"US Labels",
                                                    "countries":[
                                                        {
                                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                                            "name":"United States"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Label Group Forbidden Response":{
                                        "description":"Get Label Group Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view the label group.",
                                                "details":{
                                                    "right":"OrsInventoryGet",
                                                    "reason":"The current user does not have access to unblinded label group data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Label group not found for study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Label Group Not Found Response":{
                                        "description":"Get Label Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-404",
                                                "errorMessage":"The label group was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied label group identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Label Group Server Error Response":{
                                        "description":"Get Label Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-500",
                                                "errorMessage":"Unexpected error while retrieving the label group.",
                                                "details":{
                                                    "operation":"getLabelGroup",
                                                    "reason":"The label group lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-label-groups-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-label-groups-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update label groups"
                ],
                "summary":"v1.0",
                "description":"Updates label groups by study ID. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateLabelGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Label group request param.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LabelGroupRequest"
                            },
                            "examples":{
                                "Update label group request":{
                                    "description":"Update label group request",
                                    "value":{
                                        "name":"US Labels - Updated",
                                        "countries":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Updated label group id":{
                                        "description":"Updated label group id",
                                        "value":{
                                            "id":"8ECE2C9D389645B09740DC7926DEFB69"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Label Group Forbidden Response":{
                                        "description":"Update Label Group Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to update label groups.",
                                                "details":{
                                                    "right":"OrsInventoryPost",
                                                    "reason":"The current user does not have update access for unblinded label group data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Label group already exists. OR Country does not exist in the system.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Label Group Bad Request Response":{
                                        "description":"Update Label Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-400",
                                                "errorMessage":"The label group update request is invalid.",
                                                "details":{
                                                    "field":"name",
                                                    "reason":"The label group name must be unique."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Label Group Server Error Response":{
                                        "description":"Update Label Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-500",
                                                "errorMessage":"Unexpected error while updating the label group.",
                                                "details":{
                                                    "operation":"updateLabelGroup",
                                                    "reason":"The label group could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-label-groups-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-label-groups-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Delete label groups"
                ],
                "summary":"v1.0",
                "description":"Removes label groups by label group ID. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"deleteLabelGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Deleted label group id":{
                                        "description":"Deleted label group id",
                                        "value":{
                                            "id":"8ECE2C9D389645B09740DC7926DEFB69"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Label Group Forbidden Response":{
                                        "description":"Delete Label Group Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to delete label groups.",
                                                "details":{
                                                    "right":"OrsInventoryDelete",
                                                    "reason":"The current user does not have delete access for unblinded label group data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Label group cannot be deleted as it has kits.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Label Group Bad Request Response":{
                                        "description":"Delete Label Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-400",
                                                "errorMessage":"The label group delete request is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied label group identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Label Group Server Error Response":{
                                        "description":"Delete Label Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LABEL-500",
                                                "errorMessage":"Unexpected error while deleting the label group.",
                                                "details":{
                                                    "operation":"deleteLabelGroup",
                                                    "reason":"The label group could not be deleted."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-label-groups-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-label-groups-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/locally-sourced-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Get all local source settings"
                ],
                "summary":"v1.0",
                "description":"Retrieves all locally sourced kit settings.",
                "operationId":"getLocallySourcedKitSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ListResponseFactory"
                                },
                                "examples":{
                                    "No local source settings":{
                                        "description":"No local source settings",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"No local source settings were found for the study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LocalSourceSettingsResponse"
                                },
                                "examples":{
                                    "Get Local Source Settings Response":{
                                        "description":"Get Local Source Settings Response",
                                        "value":{
                                            "locallySourcedCountries":[
                                                {
                                                    "localSourceId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Locally sourced kits enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"B1C2D3E4F5064789A0B1C2D3E4F50647",
                                                    "enabled":true
                                                }
                                            ],
                                            "sourcedBySiteCountries":[
                                                {
                                                    "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Sourced-by-site enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"9ABCDEF01234567890123456789ABCDE",
                                                    "enabled":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ListResponseFactory"
                                },
                                "examples":{
                                    "Get Local Source Settings Server Error Response":{
                                        "description":"Get Local Source Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-500",
                                                "errorMessage":"Unexpected error while retrieving local source settings.",
                                                "details":{
                                                    "operation":"getLocallySourcedKitSettings",
                                                    "reason":"The local source settings lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-locally-sourced-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-locally-sourced-kits-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Create local source settings for kit types"
                ],
                "summary":"v1.0",
                "description":"Creates local source settings for kit types.",
                "operationId":"create_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Local Source Settings Request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LocalSourceSettingRequestV1"
                            },
                            "examples":{
                                "Create Local Source Setting Request":{
                                    "description":"Create Local Source Setting Request",
                                    "value":{
                                        "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                        "locallySourcedCountries":[
                                            "B1C2D3E4F5064789A0B1C2D3E4F50647"
                                        ],
                                        "sourcedBySiteCountries":[
                                            "9ABCDEF01234567890123456789ABCDE"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LocalSourceSettingsResponse"
                                },
                                "examples":{
                                    "Create Local Source Setting Response":{
                                        "description":"Create Local Source Setting Response",
                                        "value":{
                                            "locallySourcedCountries":[
                                                {
                                                    "localSourceId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Locally sourced kits enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"B1C2D3E4F5064789A0B1C2D3E4F50647",
                                                    "enabled":true
                                                }
                                            ],
                                            "sourcedBySiteCountries":[
                                                {
                                                    "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Sourced-by-site enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"9ABCDEF01234567890123456789ABCDE",
                                                    "enabled":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Local Source Setting Server Error Response":{
                                        "description":"Create Local Source Setting Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-500",
                                                "errorMessage":"Unexpected error while creating the local source setting.",
                                                "details":{
                                                    "operation":"createLocalSourceSetting",
                                                    "reason":"The local source setting could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Local Source Setting Not Found Response":{
                                        "description":"Create Local Source Setting Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-404",
                                                "errorMessage":"The kit type was not found.",
                                                "details":{
                                                    "field":"kitTypeSrcId",
                                                    "reason":"The supplied kit type identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"LocalSourceSettings Request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Local Source Setting Bad Request Response":{
                                        "description":"Create Local Source Setting Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-400",
                                                "errorMessage":"The local source setting request is invalid.",
                                                "details":{
                                                    "field":"locallySourcedCountries",
                                                    "reason":"At least one country identifier must be provided."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-locally-sourced-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-locally-sourced-kits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/locally-sourced-kits/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves locally sourced kits settings by ID.",
                "operationId":"getLocallySourcedKitSettingsById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Local Source Settings ID parameter",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ListResponseFactory"
                                },
                                "examples":{
                                    "No local source settings for kit type":{
                                        "description":"No local source settings for kit type",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"No local source settings were found for the supplied kit type."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LocalSourceSettingsResponse"
                                },
                                "examples":{
                                    "Get Local Source Settings By Id Response":{
                                        "description":"Get Local Source Settings By Id Response",
                                        "value":{
                                            "locallySourcedCountries":[
                                                {
                                                    "localSourceId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Locally sourced kits enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"B1C2D3E4F5064789A0B1C2D3E4F50647",
                                                    "enabled":true
                                                }
                                            ],
                                            "sourcedBySiteCountries":[
                                                {
                                                    "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"CREATE",
                                                    "objectVersionNumber":1,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Initial enablement.",
                                                    "comment":"Sourced-by-site enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"9ABCDEF01234567890123456789ABCDE",
                                                    "enabled":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ListResponseFactory"
                                },
                                "examples":{
                                    "Get Local Source Settings By Id Server Error Response":{
                                        "description":"Get Local Source Settings By Id Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-500",
                                                "errorMessage":"Unexpected error while retrieving local source settings for the kit type.",
                                                "details":{
                                                    "operation":"getLocallySourcedKitSettingsById",
                                                    "reason":"The local source settings lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-locally-sourced-kits-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-locally-sourced-kits-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Update local source settings by ID"
                ],
                "summary":"v1.0",
                "description":"Updates locally sourced kit settings by ID.",
                "operationId":"updateLocalSourceSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Local Source Settings ID parameter",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Local Source Settings Request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LocalSourceSettingUpdateRequestV1"
                            },
                            "examples":{
                                "Update Local Source Setting Request":{
                                    "description":"Update Local Source Setting Request",
                                    "value":{
                                        "locallySourcedCountries":[
                                            "B1C2D3E4F5064789A0B1C2D3E4F50647"
                                        ],
                                        "sourcedBySiteCountries":[
                                            "9ABCDEF01234567890123456789ABCDE"
                                        ],
                                        "enabled":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LocalSourceSettingsResponse"
                                },
                                "examples":{
                                    "Update Local Source Setting Response":{
                                        "description":"Update Local Source Setting Response",
                                        "value":{
                                            "locallySourcedCountries":[
                                                {
                                                    "localSourceId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"UPDATE",
                                                    "objectVersionNumber":2,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Settings update.",
                                                    "comment":"Locally sourced kits disabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"B1C2D3E4F5064789A0B1C2D3E4F50647",
                                                    "enabled":false
                                                }
                                            ],
                                            "sourcedBySiteCountries":[
                                                {
                                                    "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                                                    "versionStart":"2026-01-10T09:15:00Z",
                                                    "versionEnd":"2026-12-31T23:59:59Z",
                                                    "operationType":"UPDATE",
                                                    "objectVersionNumber":2,
                                                    "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                                    "reason":"Settings update.",
                                                    "comment":"Sourced-by-site remains enabled for the country.",
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                                    "countryId":"9ABCDEF01234567890123456789ABCDE",
                                                    "enabled":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Local Source Setting Server Error Response":{
                                        "description":"Update Local Source Setting Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-500",
                                                "errorMessage":"Unexpected error while updating the local source setting.",
                                                "details":{
                                                    "operation":"updateLocalSourceSetting",
                                                    "reason":"The local source setting could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Local Source Setting Not Found Response":{
                                        "description":"Update Local Source Setting Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-404",
                                                "errorMessage":"The local source setting was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied local source setting identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"LocalSourceSettings Request is not valid",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Local Source Setting Bad Request Response":{
                                        "description":"Update Local Source Setting Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-400",
                                                "errorMessage":"The local source setting update request is invalid.",
                                                "details":{
                                                    "field":"enabled",
                                                    "reason":"The enabled flag must be provided for the update request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-locally-sourced-kits-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-locally-sourced-kits-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Delete local source settings by ID"
                ],
                "summary":"v1.0",
                "description":"Removes locally sourced kit settings by ID.",
                "operationId":"deleteLocalSourceSettingById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Local Source Settings ID parameter",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Deleted local source setting id":{
                                        "description":"Deleted local source setting id",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Local Source Setting Bad Request Response":{
                                        "description":"Delete Local Source Setting Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOCAL-SOURCE-400",
                                                "errorMessage":"The local source setting delete request is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied local source setting identifier is not a valid UUID."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-locally-sourced-kits-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-locally-sourced-kits-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lots/manufacturing-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get all manufacturing lots"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves all manufacturing lots by study ID. Rights: LotManagementGet.",
                "operationId":"getAllManufacturingLots",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManufacturingLotTOV1"
                                    }
                                },
                                "examples":{
                                    "Get Manufacturing Lots Response":{
                                        "description":"Get Manufacturing Lots Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "manufacturingLotNumber":"MLOT-1001",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "blindedLotId":"0A1B2C3D4E5F67890123456789ABCDEF",
                                                "doNotCount":5,
                                                "doNotShip":10,
                                                "lotNumber":"LOT-1001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Forbidden Response":{
                                        "description":"Get Manufacturing Lots Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to view manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Server Error Response":{
                                        "description":"Get Manufacturing Lots Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while retrieving manufacturing lots.",
                                                "details":{
                                                    "operation":"getAllManufacturingLots",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-manufacturing-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-manufacturing-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create manufacturing lot"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a manufacturing lot. Rights: LotManagementPost.",
                "operationId":"createManufacturingLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "description":"Lot request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequestV1"
                            },
                            "examples":{
                                "Create manufacturing lot request":{
                                    "description":"Create manufacturing lot request",
                                    "value":{
                                        "manufacturingLotNumber":"MLOT-1001",
                                        "lotNumber":"LOT-1001",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":10,
                                        "doNotCount":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LotId"
                                },
                                "examples":{
                                    "Created lot id":{
                                        "description":"Created lot id",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Forbidden Response":{
                                        "description":"Create Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to create manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have create access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Bad Request Response":{
                                        "description":"Create Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-400",
                                                "errorMessage":"The manufacturing lot request is invalid.",
                                                "details":{
                                                    "field":"manufacturingLotNumber",
                                                    "reason":"The manufacturing lot number is required."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Server Error Response":{
                                        "description":"Create Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while creating the manufacturing lot.",
                                                "details":{
                                                    "operation":"createManufacturingLot",
                                                    "reason":"The manufacturing lot could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-manufacturing-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-manufacturing-lots-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lots/manufacturing-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves manufacturing lot by lot ID. Rights: LotManagementGet.",
                "operationId":"getManufacturingLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ManufacturingLotTOV1"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Response":{
                                        "description":"Get Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "manufacturingLotNumber":"MLOT-1001",
                                            "expirationDate":"2026-12-31T00:00:00Z",
                                            "blindedLotId":"0A1B2C3D4E5F67890123456789ABCDEF",
                                            "doNotCount":5,
                                            "doNotShip":10,
                                            "lotNumber":"LOT-1001"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Forbidden Response":{
                                        "description":"Get Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to view the manufacturing lot.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Server Error Response":{
                                        "description":"Get Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while retrieving the manufacturing lot.",
                                                "details":{
                                                    "operation":"getManufacturingLot",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-manufacturing-lots-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update manufacturing lot by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Update manufacturing lot by a lot's ID. Rights: LotManagementPost.",
                "operationId":"updateManufacturingLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Lot request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequestV1"
                            },
                            "examples":{
                                "Update manufacturing lot request":{
                                    "description":"Update manufacturing lot request",
                                    "value":{
                                        "manufacturingLotNumber":"MLOT-1001",
                                        "lotNumber":"LOT-1001",
                                        "expirationDate":"2027-06-30",
                                        "doNotShip":15,
                                        "doNotCount":3
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LotId"
                                },
                                "examples":{
                                    "Updated lot id":{
                                        "description":"Updated lot id",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Forbidden Response":{
                                        "description":"Update Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to update manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have update access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Bad Request Response":{
                                        "description":"Update Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-400",
                                                "errorMessage":"The manufacturing lot update request is invalid.",
                                                "details":{
                                                    "field":"expirationDate",
                                                    "reason":"The expiration date must be later than the current study date."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Server Error Response":{
                                        "description":"Update Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while updating the manufacturing lot.",
                                                "details":{
                                                    "operation":"updateManufacturingLot",
                                                    "reason":"The manufacturing lot could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-manufacturing-lots-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Delete manufacturing lot by ID"
                ],
                "summary":"v1.0",
                "description":"Removes a manufacturing lot by a lot's ID. Rights: LotManagementDelete.",
                "operationId":"deleteManufacturingLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LotId"
                                },
                                "examples":{
                                    "Deleted lot id":{
                                        "description":"Deleted lot id",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Manufacturing Lot Forbidden Response":{
                                        "description":"Delete Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to delete manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementDelete",
                                                    "reason":"The current user does not have delete access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Manufacturing Lot Not Found Response":{
                                        "description":"Delete Manufacturing Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-404",
                                                "errorMessage":"The manufacturing lot was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied manufacturing lot identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Either Lot belong to a blinded lot or is in use by one or more inventories",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Manufacturing Lot Bad Request Response":{
                                        "description":"Delete Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-400",
                                                "errorMessage":"The manufacturing lot delete request is invalid.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied manufacturing lot identifier is not a valid UUID."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Manufacturing Lot Server Error Response":{
                                        "description":"Delete Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while deleting the manufacturing lot.",
                                                "details":{
                                                    "operation":"deleteManufacturingLot",
                                                    "reason":"The manufacturing lot could not be deleted."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lots-manufacturing-lots-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lotsWithKits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get lots with kits"
                ],
                "summary":"v1.0",
                "description":"Retrieves lots with kits by study ID. Rights: LotManagementGet.",
                "operationId":"getLotsWithKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "Lots with kits":{
                                        "description":"Lots with kits",
                                        "value":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Lots With Kits Forbidden Response":{
                                        "description":"Get Lots With Kits Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to view lots with kits.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to lots-with-kits data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Lots With Kits Server Error Response":{
                                        "description":"Get Lots With Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while retrieving lots with kits.",
                                                "details":{
                                                    "operation":"getLotsWithKits",
                                                    "reason":"The lots-with-kits lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lotsWithKits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lotswithkits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lotsbykittype/sdfs/{sdfType}/{sdfId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit types by lots"
                ],
                "summary":"v1.0",
                "description":"Retrieves Kit Type by lot for the site. Rights: LotManagementGet.",
                "operationId":"getManufacturingLotBySite",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sdfType",
                        "in":"path",
                        "description":"Type of SDF: sites or depots.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"site"
                    },
                    {
                        "name":"sdfId",
                        "in":"path",
                        "description":"Site ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"A0B1C2D3E4F5064789A0B1C2D3E4F506"
                    },
                    {
                        "name":"srcDepotId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "schema":{
                            "type":"string"
                        },
                        "example":"8C7A6B5D4E3F2109876543210ABCDEF0"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitLotDetailsTO"
                                },
                                "examples":{
                                    "Kit types lots":{
                                        "description":"Kit types lots",
                                        "value":{
                                            "kitTypes":[
                                                {
                                                    "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "lots":[
                                                        {
                                                            "quantity":10,
                                                            "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                                                            "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                                                            "lotName":"LOT-1001"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types By Lots By Site Forbidden Response":{
                                        "description":"Get Kit Types By Lots By Site Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-403",
                                                "errorMessage":"You do not have permission to view kit-type lot details.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to lot details by site."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types By Lots By Site Server Error Response":{
                                        "description":"Get Kit Types By Lots By Site Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"LOT-500",
                                                "errorMessage":"Unexpected error while retrieving kit-type lot details.",
                                                "details":{
                                                    "operation":"getManufacturingLotBySite",
                                                    "reason":"The lot details lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-lotsbykittype-sdfs-{sdfType}-{sdfId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-lotsbykittype-sdfs-sdftype-sdfid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/devices/{inventoryId}":{
            "delete":{
                "tags":[
                    "Randomization and Supplies/Device Management APIs/Deregister an mHealth device"
                ],
                "summary":"v1.0",
                "description":"Deregisters an mHealth device. Rights: DeviceActionsPost.",
                "operationId":"deRegisterMHealthDevice",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0A1B2C3D4E5F67890123456789ABCDEF"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mSubjectId",
                        "in":"query",
                        "description":"ID of the subject in mHealth.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MSUBJECT-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "De-registered":{
                                        "description":"De-registered",
                                        "value":"Device de-registered successfully."
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not found":{
                                        "description":"Not found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DEVICE-404",
                                                "errorMessage":"The study or requested version was not found.",
                                                "details":{
                                                    "studyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject ID OR Device is not dispensed to the subject OR Device is dispensed to different subject OR Invalid device ID OR mHealth device is not registered",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad request":{
                                        "description":"Bad request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DEVICE-400",
                                                "errorMessage":"The deregister mHealth device request is invalid.",
                                                "details":{
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "reason":"The device is not registered for the specified subject."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error OR mHealth settings are not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server error":{
                                        "description":"Server error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DEVICE-500",
                                                "errorMessage":"An unexpected error occurred while deregistering the mHealth device.",
                                                "details":{
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "mSubjectId":"MSUBJECT-001"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-devices-{inventoryId}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-devices-inventoryid-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/devices/{inventoryId}/access-code":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Device Management APIs/Recreate the access ID and one-time password for a bootstrap device"
                ],
                "summary":"v1.0",
                "description":"Recreates the access ID and OTP (one-time password) for a bootstrap device. Required if the password (OTP) has already expired. The device cannot be bootstrapped using expired or invalid credentials. Rights: DeviceActionsPost.",
                "operationId":"refreshDeviceAccessIdPasswd",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"0A1B2C3D4E5F67890123456789ABCDEF"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"mSubjectId",
                        "in":"query",
                        "description":"ID of the subject in mHealth.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"MSUBJECT-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BootStrapCredResponseDto"
                                },
                                "examples":{
                                    "Refresh access code response":{
                                        "description":"Refresh access code response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "accessId":"MHEALTH-ACCESS-002",
                                            "otp":"OTP-654321"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not found":{
                                        "description":"Not found",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject ID OR Device is not dispensed to the subject OR Device is dispensed to a different subject OR Invalid device ID OR mHealth device is not registered OR Device does not have any connection type OR Vendor code is missing for cloud-to-cloud connection type devices OR Device has a no-connection connection type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad request":{
                                        "description":"Bad request",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error OR mHealth settings are not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server error":{
                                        "description":"Server error",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-devices-{inventoryId}-access-code-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-devices-inventoryid-access-code-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/register-device":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Device Management APIs/Register mHealth device"
                ],
                "summary":"v1.0",
                "description":"Registers an mHealth device. Rights: DeviceActionsPost.",
                "operationId":"registerMHealthDevice",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "example":"test"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"0A1B2C3D4E5F67890123456789ABCDEF"
                    }
                ],
                "requestBody":{
                    "description":"Request object containing mHealth device registration details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MHealthRegisterDeviceRequest"
                            },
                            "examples":{
                                "Register mHealth device request":{
                                    "description":"Register mHealth device request",
                                    "value":{
                                        "vendorCode":"VENDOR-XYZ",
                                        "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                        "mSubjectId":"MSUBJECT-001",
                                        "subjectNumber":"SITEA-0001"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BootStrapCredResponseDto"
                                },
                                "examples":{
                                    "Register mHealth device response":{
                                        "description":"Register mHealth device response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "accessId":"MHEALTH-ACCESS-001",
                                            "otp":"OTP-123456"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not found":{
                                        "description":"Not found",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject ID OR Device is not dispensed to the subject OR Device is dispensed to a different subject OR Invalid device ID OR Cloud-to-cloud connection type device is already registered OR Device does not have a connection type OR Vendor code is missing for cloud-to-cloud connection type devices OR Vendor code has been specified for device-to-cloud connection type devices OR Subject number is missing for device-to-cloud connection type devices OR Device has a no-connection connection type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad request":{
                                        "description":"Bad request",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error OR mHealth settings are not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server error":{
                                        "description":"Server error",
                                        "value":{
                                            "status":"error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-register-device-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-register-device-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory/lots/{lotId}":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Add quantity to lot for non-serialized kit types"
                ],
                "summary":"v1.0",
                "description":"Adds quantity for non-serialized kit types to lots.",
                "operationId":"addQuantityToLot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"lotId",
                        "in":"path",
                        "description":"Lot ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Adds quantity to lot request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NSAddQuantityToLotRequestV1"
                            },
                            "examples":{
                                "Add Non-Serialized Kit Quantity To Lot Request":{
                                    "description":"Add Non-Serialized Kit Quantity To Lot Request",
                                    "value":{
                                        "kitTypes":[
                                            {
                                                "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "quantity":10
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryStatus"
                                },
                                "examples":{
                                    "Add Non-Serialized Kit Quantity To Lot Response":{
                                        "description":"Add Non-Serialized Kit Quantity To Lot Response",
                                        "value":{
                                            "inventoryStatusId":1,
                                            "inventoryStatus":"Available"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Add Non-Serialized Kit Quantity To Lot Not Found Response":{
                                        "description":"Add Non-Serialized Kit Quantity To Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The non-serialized lot was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Non-serialized kit type or duplicate kit type in request or Invalid Lot ID.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Add Non-Serialized Kit Quantity To Lot Bad Request Response":{
                                        "description":"Add Non-Serialized Kit Quantity To Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The quantity to add is invalid for the selected lot."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Add Non-Serialized Kit Quantity To Lot Server Error Response":{
                                        "description":"Add Non-Serialized Kit Quantity To Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while adding quantity to the non-serialized lot."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-lots-{lotId}-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-lots-lotid-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventorystatuses/allowed/{fromInventoryStatusId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get allowed inventory status for non-serialized kits"
                ],
                "summary":"v1.0",
                "description":"Retrieves allowed inventory status for non-serialized kits. Rights: OrsInventoryGet.",
                "operationId":"getAllowedInventoryStatuses_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"fromInventoryStatusId",
                        "in":"path",
                        "description":"ID of the initial inventory status in status transition.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Allowed Non-Serialized Inventory Statuses Response":{
                                        "description":"Get Allowed Non-Serialized Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":10,
                                                "inventoryStatus":"Dispensed"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Allowed Non-Serialized Inventory Statuses Server Error Response":{
                                        "description":"Get Allowed Non-Serialized Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving allowed non-serialized inventory statuses."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventorystatuses-allowed-{fromInventoryStatusId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventorystatuses-allowed-frominventorystatusid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory/lots/{lotId}/quantity":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get kit type quantities by lot ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the kit type quantities by lot ID.",
                "operationId":"getKitTypeQuantitiesByLotId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"lotId",
                        "in":"path",
                        "description":"Lot ID",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryStatus"
                                },
                                "examples":{
                                    "Get Kit Type Quantities By Lot Response":{
                                        "description":"Get Kit Type Quantities By Lot Response",
                                        "value":{
                                            "inventoryStatusId":1,
                                            "inventoryStatus":"Available"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Type Quantities By Lot Not Found Response":{
                                        "description":"Get Kit Type Quantities By Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The non-serialized lot was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Type Quantities By Lot Server Error Response":{
                                        "description":"Get Kit Type Quantities By Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving kit type quantities for the non-serialized lot."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-lots-{lotId}-quantity-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-lots-lotid-quantity-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory/audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get audit details for non-serialized kits"
                ],
                "summary":"v1.0",
                "description":"Retrieves audit information of each kit from non-serialized inventory.<br>Rights: <i>OrsInventoryGet</i>.",
                "operationId":"getNSKitsAudit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsAuditRequestV1"
                            },
                            "examples":{
                                "Get Non-Serialized Kits Audit Request":{
                                    "description":"Get Non-Serialized Kits Audit Request",
                                    "value":{
                                        "kits":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/NSKitsAuditResponseV1"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Audit Response":{
                                        "description":"Get Non-Serialized Kits Audit Response",
                                        "value":{
                                            "count":1,
                                            "offset":0,
                                            "limit":25,
                                            "audits":[
                                                {
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "reason":"Inventory adjustment",
                                                    "userName":"jane.doe",
                                                    "modifiedDate":"2026-02-21T08:43:01Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Inventory Source ID not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Audit Not Found Response":{
                                        "description":"Get Non-Serialized Kits Audit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No non-serialized kit audit data was found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Audit Bad Request Response":{
                                        "description":"Get Non-Serialized Kits Audit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The non-serialized audit request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Audit Server Error Response":{
                                        "description":"Get Non-Serialized Kits Audit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving non-serialized kit audit data."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-audit-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory/kit-types/{kitTypeId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get non-serialized kits by kit type ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves non-serialized kits by kit type ID. Filtered by location, label, lotID and Kit Status.",
                "operationId":"getNonSerializedKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"Kit Type ID of a non-serialized kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the non-serialized kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"Lot ID of the non-serialized kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"Label group of the non-serialized kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-GRP-001"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Inventory status of the non-serialized kit.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":25
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Response":{
                                        "description":"Get Non-Serialized Kits Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "offset":0,
                                                "limit":25,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":false,
                                                "kits":[
                                                    {
                                                        "nsInventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "inventoryStatusId":10,
                                                        "locationId":"1873CDF69E9B48B89B2D9E7951057D09",
                                                        "manufacturingLotId":"9BD49A59E47E4383B98802712763FD43",
                                                        "labelGroupId":"9BD49A59E47E4383B98802712763FD43",
                                                        "inventoryStatus":"Dispensed",
                                                        "manufacturingLotNumber":"Mlot1001",
                                                        "labelGroup":"Labelgroup1001",
                                                        "quantity":15,
                                                        "restrictedQuantity":3,
                                                        "versionStart":"2026-02-21T08:43:01Z",
                                                        "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "versionEnd":"3099-12-31T12:00:00Z",
                                                        "operationType":"UPDATE",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"Inventory adjustment",
                                                        "comment":"Units updated after review"
                                                    }
                                                ]
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid Kit Type ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Not Found Response":{
                                        "description":"Get Non-Serialized Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No non-serialized kit inventory was found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Serialized Kits Server Error Response":{
                                        "description":"Get Non-Serialized Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving non-serialized kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-kit-types-{kitTypeId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-kit-types-kittypeid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update multiple non-serialized kits"
                ],
                "summary":"v1.0",
                "description":"Updates inventory status, location or label of multiple non-serialized kits.",
                "operationId":"updateMultipleNonSerializedKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Request to update inventory status ID, label or location of multiple non-serialized kits.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/NsKitFiltersUpdateRequestV1"
                            },
                            "examples":{
                                "Update Multiple Non-Serialized Kits Request":{
                                    "description":"Update Multiple Non-Serialized Kits Request",
                                    "value":{
                                        "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                                        "location":"SITE",
                                        "lotId":"LOT-001",
                                        "labelGroupId":"LABEL-GRP-001",
                                        "fromInventoryStatusId":1,
                                        "toInventoryStatusId":2,
                                        "quantity":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Multiple Non-Serialized Kits Response":{
                                        "description":"Update Multiple Non-Serialized Kits Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "inventoryUpdated":5
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid update request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Update Multiple Non-Serialized Kits Bad Request Response":{
                                        "description":"Update Multiple Non-Serialized Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The non-serialized kit update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Update Multiple Non-Serialized Kits Server Error Response":{
                                        "description":"Update Multiple Non-Serialized Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating non-serialized kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/nsinventory/{nsinventoryId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update non-serialized kits"
                ],
                "summary":"v1.0",
                "description":"Updates inventory status, location or label of a non-serialized kit.",
                "operationId":"updateNonSerializedKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"nsinventoryId",
                        "in":"path",
                        "description":"Inventory ID of non-serialized kits",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"NSINV-000123"
                    }
                ],
                "requestBody":{
                    "description":"Request to update inventory status ID, label or location.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateNSKitAttributesRequestV1"
                            },
                            "examples":{
                                "Update Non-Serialized Kit Attributes Request":{
                                    "description":"Update Non-Serialized Kit Attributes Request",
                                    "value":{
                                        "inventoryStatusId":2,
                                        "location":"SITE",
                                        "lotId":"LOT-001",
                                        "labelGroupId":"LABEL-GRP-001"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Non-Serialized Kit Response":{
                                        "description":"Update Non-Serialized Kit Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "inventoryUpdated":1
                                            },
                                            "errorData":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid inventory ID.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Non-Serialized Kit Not Found Response":{
                                        "description":"Update Non-Serialized Kit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The non-serialized inventory record was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid update request",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Update Non-Serialized Kit Bad Request Response":{
                                        "description":"Update Non-Serialized Kit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The non-serialized kit update payload is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Update Non-Serialized Kit Server Error Response":{
                                        "description":"Update Non-Serialized Kit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating the non-serialized kit."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-nsinventory-{nsinventoryId}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-nsinventory-nsinventoryid-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/kits/existingdata":{
            "post":{
                "tags":[
                    "Randomization and Supplies/NonSubjectForm APIs/Get existing data from non-subject forms for kit IDs"
                ],
                "summary":"v1.0",
                "description":"Retrieves existing data from clinical supplies forms for kit IDs.",
                "operationId":"getKitDetailsNonSubjectForm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/NonSubjectFormRequest"
                            },
                            "examples":{
                                "Get Non-Subject Form Kit Details Request":{
                                    "description":"Get Non-Subject Form Kit Details Request",
                                    "value":{
                                        "kitIds":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "F6B1A4D9C2EE4D7BAF0B70D0B3A2D1C9"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryDetailsResponse"
                                },
                                "examples":{
                                    "Get Non-Subject Form Kit Details Response":{
                                        "description":"Get Non-Subject Form Kit Details Response",
                                        "value":{
                                            "kitDetails":[
                                                {
                                                    "propertyName":"Kit Description",
                                                    "propertyValue":"Bottle of tablets",
                                                    "srcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "srcType":"Inventory",
                                                    "propertyValueTimestamp":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Subject Form Kit Details Not Found Response":{
                                        "description":"Get Non-Subject Form Kit Details Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"KIT-404",
                                                "errorMessage":"No kit details were found for the supplied kit IDs.",
                                                "details":{
                                                    "field":"kitIds",
                                                    "reason":"None of the kit identifiers matched inventory records."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Non-Subject Form Kit Details Server Error Response":{
                                        "description":"Get Non-Subject Form Kit Details Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"KIT-500",
                                                "errorMessage":"Unexpected error while retrieving kit details.",
                                                "details":{
                                                    "operation":"getKitDetailsNonSubjectForm",
                                                    "reason":"The kit details lookup could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-kits-existingdata-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-kits-existingdata-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/partial-dispensation-settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Partial Dispensation/Get all partial dispensation details"
                ],
                "summary":"v1.0",
                "description":"Retrieves all partial dispensation details. Rights required: SupplySettingRightsGet.",
                "operationId":"getPartialDispenationSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Get Partial Dispensation Settings Response":{
                                        "description":"Get Partial Dispensation Settings Response",
                                        "value":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Partial Dispensation ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-partial-dispensation-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-partial-dispensation-settings-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Partial Dispensation/Create partial dispensation settings"
                ],
                "summary":"v1.0",
                "description":"Adds partial dispensation settings. Rights required: SupplySettingRightsPost.",
                "operationId":"createPartialDispensationSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/PartialDispensationSettingsRequestV1"
                            },
                            "examples":{
                                "Create Partial Dispensation Settings Request":{
                                    "description":"Create Partial Dispensation Settings Request",
                                    "value":{
                                        "kitTypeSrcIds":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ],
                                        "startingVisitSrcId":"A313327EF13845169A8ADADDA435431F",
                                        "startingVisitInstanceNumber":1,
                                        "endingVisitSrcId":"D313327EF13845169A8ADADDA435431F",
                                        "endingVisitInstanceNumber":3,
                                        "enabled":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PartialDispensationSettingsResponseV1"
                                },
                                "examples":{
                                    "Create Partial Dispensation Settings Response":{
                                        "description":"Create Partial Dispensation Settings Response",
                                        "value":{
                                            "settingsId":"0FB5A42D9AE843C3A06D78C2D56E43F1",
                                            "enabled":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Partial Dispensation Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid partial dispensation settings request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-partial-dispensation-settings-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-partial-dispensation-settings-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/partial-dispensation-settings/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Partial Dispensation/Get partial dispensation settings of a given partial dispensation by ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves partial dispensation settings details of a given partial dispensation definition identified by ID. Rights required: SupplySettingRightsGet.",
                "operationId":"getPartialDispenationById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Partial Dispensation ID to get.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Get Partial Dispensation Settings By Id Response":{
                                        "description":"Get Partial Dispensation Settings By Id Response",
                                        "value":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Partial Dispensation ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-partial-dispensation-settings-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-partial-dispensation-settings-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Partial Dispensation/Update partial dispensation settings of a given partial dispensation by ID"
                ],
                "summary":"v1.0",
                "description":"Updates partial dispensation settings of a given partial dispensation definition identified by ID. Rights required: SupplySettingRightsPost.",
                "operationId":"updatePartialDispensationSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Partial Dispensation ID to get.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/PartialDispensationUpdateSettingsRequestV1"
                            },
                            "examples":{
                                "Update Partial Dispensation Settings Request":{
                                    "description":"Update Partial Dispensation Settings Request",
                                    "value":{
                                        "kitTypeSrcId":"19598B39542A4473AFF46B4EA901F75C",
                                        "startingVisitSrcId":"19598B39542A4473AFF46B4EA901F75C",
                                        "startingVisitInstanceNumber":1,
                                        "endingVisitSrcId":"29598B39542A4473AFF46B4EA901F75C",
                                        "endingVisitInstanceNumber":10,
                                        "enabled":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PartialDispensationSettingsResponseV1"
                                },
                                "examples":{
                                    "Update Partial Dispensation Settings Response":{
                                        "description":"Update Partial Dispensation Settings Response",
                                        "value":{
                                            "settingsId":"0FB5A42D9AE843C3A06D78C2D56E43F1",
                                            "enabled":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Partial Dispensation Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid update request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-partial-dispensation-settings-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-partial-dispensation-settings-id-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Partial Dispensation/Delete partial dispensation settings of a given partial dispensation definition by ID"
                ],
                "summary":"v1.0",
                "description":"Deletes partial dispensation settings of a given partial dispensation definition identified by ID. Rights required: SupplySettingRightsPost.",
                "operationId":"deletePartialDispenationByIdById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Partial Dispensation ID to delete.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Delete Partial Dispensation Settings Response":{
                                        "description":"Delete Partial Dispensation Settings Response",
                                        "value":"0FB5A42D9AE843C3A06D78C2D56E43F1"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Partial Dispensation Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-partial-dispensation-settings-{id}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-partial-dispensation-settings-id-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/cancel":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Cancel reconciliation shipment"
                ],
                "summary":"v1.0",
                "description":"Cancels a reconciliation shipment. <br>Rights: <i>OrsInventoryPost</i> and <i>OrsBlinded</i> or <i>OrsUnblinded</i>.",
                "operationId":"cancelReconShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Cancel recon shipment parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CancelReconShipmentRequest"
                            },
                            "examples":{
                                "Cancel recon shipment":{
                                    "description":"Cancel recon shipment",
                                    "value":{
                                        "shipmentId":"E39FF55A445543A38D513325664F0B2D",
                                        "shipmentIds":[
                                            "E39FF55A445543A38D513325664F0B2D"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "403":{
                        "description":"User doesn't have access to the site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Cancel Recon Shipment Forbidden Response":{
                                        "description":"Cancel Recon Shipment Forbidden Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-403",
                                            "errorMessage":"User does not have access to cancel the reconciliation shipment.",
                                            "details":{
                                                "shipmentId":"E39FF55A445543A38D513325664F0B2D",
                                                "right":"OrsInventoryPost"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid kit status.', 'Invalid shipment.', 'One or more shipments are not in a valid status.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Cancel Recon Shipment Bad Request Response":{
                                        "description":"Cancel Recon Shipment Bad Request Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-400",
                                            "errorMessage":"The reconciliation shipment cannot be cancelled.",
                                            "details":{
                                                "field":"shipmentId",
                                                "issue":"Shipment is already received."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Cancel Recon Shipment Server Error Response":{
                                        "description":"Cancel Recon Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while cancelling the reconciliation shipment.",
                                            "details":{
                                                "operation":"cancelReconShipment",
                                                "shipmentId":"E39FF55A445543A38D513325664F0B2D"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-cancel-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-cancel-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/{shipmentId}/destroyed":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Received shipment for destruction"
                ],
                "summary":"v1.0",
                "description":"Received shipment for destruction. Rights: OrsInventoryPost and either OrsBlinded or OrsUnblinded.",
                "operationId":"destroyShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Received Shipment for destruction params.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ReconShipmentDestroyedRequest"
                            },
                            "examples":{
                                "Destroy shipment":{
                                    "description":"Destroy shipment",
                                    "value":{
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":"8ECE2C9D389645B09740DC7926DEFB69"
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User doesn't have access to the depot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Destroy Shipment Forbidden Response":{
                                        "description":"Destroy Shipment Forbidden Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-403",
                                            "errorMessage":"User does not have access to destroy the reconciliation shipment.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "right":"DepotReconcilePost"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit OR Invalid order status.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Destroy Shipment Bad Request Response":{
                                        "description":"Destroy Shipment Bad Request Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-400",
                                            "errorMessage":"The reconciliation shipment cannot be destroyed.",
                                            "details":{
                                                "field":"shipmentId",
                                                "issue":"Shipment must be received before it can be destroyed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found OR Invalid shipment.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Destroy Shipment Not Found Response":{
                                        "description":"Destroy Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-404",
                                            "errorMessage":"The reconciliation shipment was not found.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "reason":"No shipment matched the supplied identifier."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Destroy Shipment Server Error Response":{
                                        "description":"Destroy Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while destroying the reconciliation shipment.",
                                            "details":{
                                                "operation":"destroyShipment",
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-{shipmentId}-destroyed-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-shipmentid-destroyed-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/mark-lost":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark reconciliation shipments as lost"
                ],
                "summary":"v1.0",
                "description":"Marks reconciliation shipments as lost. Rights: OrsInventoryPost and either OrsBlinded or OrsUnblinded.",
                "operationId":"markLost",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Shipment IDs to be marked as Lost.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LostShipmentRequest"
                            },
                            "examples":{
                                "Mark lost shipment":{
                                    "description":"Mark lost shipment",
                                    "value":{
                                        "shipmentIds":[
                                            "E39FF55A445543A38D513325664F0B2D"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":[
                                            "8ECE2C9D389645B09740DC7926DEFB69"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User doesn't have access to the site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Mark Lost Shipment Forbidden Response":{
                                        "description":"Mark Lost Shipment Forbidden Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-403",
                                            "errorMessage":"User does not have access to mark the shipment as lost.",
                                            "details":{
                                                "shipmentId":"E39FF55A445543A38D513325664F0B2D",
                                                "right":"OrsInventoryPost"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid shipment type', 'Invalid site ID', 'One or more shipments are invalid', 'Invalid kit status', 'Invalid shipment', 'One or more shipments are invalid'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Mark Lost Shipment Bad Request Response":{
                                        "description":"Mark Lost Shipment Bad Request Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-400",
                                            "errorMessage":"The shipment cannot be marked as lost.",
                                            "details":{
                                                "field":"shipmentIds",
                                                "issue":"Shipment is already destroyed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Site not found', 'Shipment not found'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Mark Lost Shipment Not Found Response":{
                                        "description":"Mark Lost Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-404",
                                            "errorMessage":"The shipment was not found.",
                                            "details":{
                                                "shipmentId":"E39FF55A445543A38D513325664F0B2D",
                                                "reason":"No reconciliation shipment matched the supplied identifier."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Mark Lost Shipment Server Error Response":{
                                        "description":"Mark Lost Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while marking the shipment as lost.",
                                            "details":{
                                                "operation":"markLost",
                                                "shipmentId":"E39FF55A445543A38D513325664F0B2D"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-mark-lost-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-mark-lost-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Update shipment as received for destruction"
                ],
                "summary":"v1.0",
                "description":"Updates shipment as received for destruction. Rights: OrsInventoryPost and either OrsBlinded or OrsUnblinded.",
                "operationId":"shipmentReceived",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Shipment received for destruction params.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReconShipmentReceiveRequest"
                            },
                            "examples":{
                                "Shipment received":{
                                    "description":"Shipment received",
                                    "value":{
                                        "receivedKits":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotReturnedUnits":2
                                            },
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "depotReturnedUnits":0
                                            }
                                        ],
                                        "confirmReceiptPerKit":true,
                                        "partialUpdate":false
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReconShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "id":"8ECE2C9D389645B09740DC7926DEFB69",
                                            "receivedDate":"2026-02-24T00:00:00.000Z",
                                            "missingCount":1,
                                            "receivedCount":3
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User doesn't have access to the depot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Shipment Received Forbidden Response":{
                                        "description":"Shipment Received Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-403",
                                                "errorMessage":"User does not have access to receive this reconciliation shipment.",
                                                "details":{
                                                    "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                    "right":"DepotReconcilePost"
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit OR Invalid order status.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Shipment Received Bad Request Response":{
                                        "description":"Shipment Received Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-400",
                                                "errorMessage":"The shipment receipt request is invalid.",
                                                "details":{
                                                    "field":"receivedKits",
                                                    "issue":"At least one received kit entry is required when confirming per kit."
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found OR Invalid shipment.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Shipment Received Not Found Response":{
                                        "description":"Shipment Received Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-404",
                                                "errorMessage":"The reconciliation shipment was not found.",
                                                "details":{
                                                    "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                    "reason":"The shipment does not exist or is not eligible for receipt."
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Shipment Received Server Error Response":{
                                        "description":"Shipment Received Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-500",
                                                "errorMessage":"Unexpected error while marking the shipment as received.",
                                                "details":{
                                                    "operation":"shipmentReceived",
                                                    "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69"
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/{shipmentId}/received-date":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Update recon shipment received date"
                ],
                "summary":"v1.0",
                "description":"Updates received date for a shipment. Rights: ShipmentReceivedDatePut.",
                "operationId":"updateReceivedDate",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment received date parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedDateRequest"
                            },
                            "examples":{
                                "Update Shipment received Date Request":{
                                    "description":"Update Shipment received Date Request",
                                    "value":{
                                        "receivedDate":"2026-02-24"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Shipment Received Date Response":{
                                        "description":"Update Shipment Received Date Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Shipment Received Date Server Error Response":{
                                        "description":"Update Shipment Received Date Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-500",
                                                "errorMessage":"Unexpected error while updating the shipment received date.",
                                                "details":{
                                                    "operation":"updateReceivedDate",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Shipment Received Date Not Found Response":{
                                        "description":"Update Shipment Received Date Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-404",
                                                "errorMessage":"The reconciliation shipment was not found.",
                                                "details":{
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"No shipment matched the supplied identifier."
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid received date' or 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Shipment Received Date Bad Request Response":{
                                        "description":"Update Shipment Received Date Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RECON-SHIPMENT-400",
                                                "errorMessage":"The shipment received date request is invalid.",
                                                "details":{
                                                    "field":"receivedDate",
                                                    "issue":"Received date cannot be earlier than the ship date."
                                                }
                                            },
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-{shipmentId}-received-date-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-shipmentid-received-date-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/{shipmentId}/ship-date":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Update a shipment's ship date"
                ],
                "summary":"v1.0",
                "description":"Updates a shipment's ship date. Rights: OrsInventoryPost and either OrsBlinded or OrsUnblinded.",
                "operationId":"updateShipDate",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Shipment ship date parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentShipDateRequest"
                            },
                            "examples":{
                                "Update ship date":{
                                    "description":"Update ship date",
                                    "value":{
                                        "shipDate":"2019-06-17"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":"8ECE2C9D389645B09740DC7926DEFB69"
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"'User doesn't have access to the site'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Ship Date Forbidden Response":{
                                        "description":"Update Ship Date Forbidden Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-403",
                                            "errorMessage":"User does not have access to update the ship date.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "right":"OrsInventoryPost"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid ship date. It must be in YYYY-MM-DD format', 'Invalid shipment type', 'Invalid current shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Ship Date Bad Request Response":{
                                        "description":"Update Ship Date Bad Request Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-400",
                                            "errorMessage":"The ship date request is invalid.",
                                            "details":{
                                                "field":"shipDate",
                                                "issue":"Ship date cannot be earlier than the creation date."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Shipment not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Ship Date Not Found Response":{
                                        "description":"Update Ship Date Not Found Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-404",
                                            "errorMessage":"The reconciliation shipment was not found.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "reason":"No shipment matched the supplied identifier."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Ship Date Server Error Response":{
                                        "description":"Update Ship Date Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while updating the shipment ship date.",
                                            "details":{
                                                "operation":"updateShipDate",
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-{shipmentId}-ship-date-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-shipmentid-ship-date-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/recon/shipments/{shipmentId}/tracking":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Tracking/Update a shipment's tracking details"
                ],
                "summary":"v1.0",
                "description":"Updates a shipment's tracking details. Rights: OrsInventoryPost and either OrsBlinded or OrsUnblinded.",
                "operationId":"updateTrackingDetails",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "requestBody":{
                    "description":"Shipment Tracking Details parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentTrackingDetailsRequest"
                            },
                            "examples":{
                                "Update tracking details":{
                                    "description":"Update tracking details",
                                    "value":{
                                        "trackingNumber":"12345",
                                        "trackingNumberUrl":"http://www.site.com"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":"8ECE2C9D389645B09740DC7926DEFB69"
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"User doesn't have access to the site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Tracking Details Forbidden Response":{
                                        "description":"Update Tracking Details Forbidden Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-403",
                                            "errorMessage":"User does not have access to update tracking details.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "right":"OrsInventoryPost"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Tracking Details Bad Request Response":{
                                        "description":"Update Tracking Details Bad Request Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-400",
                                            "errorMessage":"The tracking details request is invalid.",
                                            "details":{
                                                "field":"trackingNumber",
                                                "issue":"Tracking number must not be blank."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Shipment not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Tracking Details Not Found Response":{
                                        "description":"Update Tracking Details Not Found Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-404",
                                            "errorMessage":"The reconciliation shipment was not found.",
                                            "details":{
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                "reason":"Tracking details can only be updated for an existing shipment."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Update Tracking Details Server Error Response":{
                                        "description":"Update Tracking Details Server Error Response",
                                        "value":{
                                            "errorCode":"RECON-SHIPMENT-500",
                                            "errorMessage":"Unexpected error while updating shipment tracking details.",
                                            "details":{
                                                "operation":"updateTrackingDetails",
                                                "shipmentId":"8ECE2C9D389645B09740DC7926DEFB69"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-recon-shipments-{shipmentId}-tracking-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-recon-shipments-shipmentid-tracking-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/dispensations-audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation Audit report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search specifications parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-dispensations-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-dispensations-audit-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/supplysettingsaudit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Supply Settings audit report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Supply Settings report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSupplySettingsReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search specifications parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-supplysettingsaudit-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-supplysettingsaudit-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/kits/blindedchainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Blinded Chain of Custody report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Kit Blinded Chain of Custody report. Rights: UnblindedChainofCustodyReportPost.",
                "operationId":"getBlindedChainOfCustodyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-kits-blindedchainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-kits-blindedchainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/kits/blindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Blinded) report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Kit Inventory (Blinded) report. Rights: BlindedInventoryReportPost.",
                "operationId":"getBlindedInventoryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-kits-blindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-kits-blindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/blindedrandreport":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Blinded Randomization List report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Blinded Randomization List report. Rights: UnblindedRandomizationReportPost.",
                "operationId":"getBlindedRandReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Request":{
                                    "description":"Report Search Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-blindedrandreport-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-blindedrandreport-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Kit Chain of Custody (Unblinded) report. Rights: UnblindedChainofCustodyReportPost.",
                "operationId":"getChainOfCustodyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/cohortenrollments/history":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Cohort Enrollment Audit Trail report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Cohort Enrollment Audit Trail report. Rights: EnrollmentReportPost.",
                "operationId":"getCohortEnrollmentHistoryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-cohortenrollments-history-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-cohortenrollments-history-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/cohortenrollments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Cohort Enrollment report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Cohort Enrollment report. Rights: EnrollmentReportPost.",
                "operationId":"getCohortEnrollmentReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-cohortenrollments-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-cohortenrollments-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/projectedsupplies/countrycounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for countries"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the projected supplies data for countries.",
                "operationId":"getCountryCounts",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-projectedsupplies-countrycounts-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-projectedsupplies-countrycounts-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/dndexceptions":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get DND Exceptions report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the DND Exceptions report. Rights: StudyDesignReportPost.",
                "operationId":"getDNDExceptionsReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-dndexceptions-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-dndexceptions-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/projectedsupplies/depotcounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for depots"
                ],
                "summary":"v1.0",
                "description":"Retrieves the projected supplies data for depots.",
                "operationId":"getDepotCounts",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-projectedsupplies-depotcounts-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-projectedsupplies-depotcounts-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/depotresupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Depot Resupply details for the study"
                ],
                "summary":"v1.0",
                "description":"Depot Resupply details for the study.",
                "operationId":"getDepotResupplyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria. ",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-depotresupply-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-depotresupply-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/doseholdsettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get dose hold settings report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the dose hold settings report.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getEnabledDoseHoldSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-doseholdsettings-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-doseholdsettings-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/locallysourcedkits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get local source settings report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the local source settings report. Rights: StudyDesignReportPost.",
                "operationId":"getEnabledLocalSourceSettings",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-locallysourcedkits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-locallysourcedkits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/inventorysettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Inventory Settings report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Study Inventory Settings report. Rights: StudyDesignReportPost.",
                "operationId":"getInventorySettingsReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-inventorysettings-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-inventorysettings-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/minmaxresupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Retrieves Min/Max resupply strategy details of a study for a report"
                ],
                "summary":"v1.0",
                "description":"Get Min/Max resupply details of a study.",
                "operationId":"getMinMaxResupplyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria. ",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-minmaxresupply-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-minmaxresupply-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/minimization":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get minimization list report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the minimization list report.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getMinimizationListReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-minimization-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-minimization-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/order-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Order Summary report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Order Summary report.",
                "operationId":"getOrderSummarReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-order-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-order-summary-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/partialdispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get partial dispensation settings report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the partial dispensation settings report.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getPartialDispensations",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-partialdispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-partialdispensations-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/predictiveresupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Retrieves predictive resupply details of a study for a report"
                ],
                "summary":"v1.0",
                "description":"Get predictive resupply details of a study.",
                "operationId":"getPredictiveResupplyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria. ",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-predictiveresupply-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-predictiveresupply-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/projectedsupplies/generateAsync":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Projected Supplies Data Extract report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Projected Supplies Data Extract report.",
                "operationId":"getProjectedsuppliesreport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"reportid",
                        "in":"query",
                        "description":"ID of the report.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"File type for data extract.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"csv"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ExtFieldSpecs"
                            },
                            "example":{
                                "fieldSpecsList":[
                                    {
                                        "fieldName":"transDt",
                                        "fieldType":"date",
                                        "fieldValueList":[
                                            "2026-02-21"
                                        ]
                                    }
                                ],
                                "extFieldSpecsList":[
                                    {
                                        "fieldName":"site",
                                        "fieldType":"list",
                                        "fieldValueList":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-projectedsupplies-generateAsync-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-projectedsupplies-generateasync-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/randList":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Randomization List report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Randomization List report. Rights: StudyDesignReportPost.",
                "operationId":"getRandListReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-randList-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-randlist-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/recon":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Reconciliation report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves Kit Reconciliation report. Rights: ReconciliationReport.",
                "operationId":"getReconReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-recon-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-recon-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/projectedsupplies/sitecounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for sites"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the projected supplies data for sites.",
                "operationId":"getSiteCounts",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-projectedsupplies-sitecounts-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-projectedsupplies-sitecounts-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/siteresupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Site Resupply details for the study"
                ],
                "summary":"v1.0",
                "description":"Site Resupply details for the study.",
                "operationId":"getSiteResupplyReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria. ",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-siteresupply-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-siteresupply-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/kitlist":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Design kit list report"
                ],
                "summary":"v1.0",
                "description":"Retrieves Study Design kit list report. Rights: StudyDesignReportPost.",
                "operationId":"getStudyDesignKitListReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-kitlist-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-kitlist-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/supplysettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Design report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Study Design report. Rights: StudyDesignReportPost.",
                "operationId":"getStudyDesignReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-supplysettings-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-supplysettings-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/shipments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get System Usage report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the System Usage report. Rights: SystemUsageReportPost.",
                "operationId":"getSystemUsageReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-shipments-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-shipments-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/blinded-titration-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Titration Summary (Blinded) report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Titration Summary (Blinded) report. Rights: TitrationSummaryReport.",
                "operationId":"getTitrationSummaryBlindedReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-blinded-titration-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-blinded-titration-summary-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/titration-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Titration Summary (Unblinded) report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Titration Summary (Unblinded) report. Rights: UnBlindedTitrationSummaryReport.",
                "operationId":"getTitrationSummaryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-titration-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-titration-summary-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/kits/unblindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Unblinded) report"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves the Kit Inventory (Unblinded) report. Rights: UnblindedInventoryReportPost.",
                "operationId":"getUnblindedInventoryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-kits-unblindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-kits-unblindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/reports/unblinded-visit-schedule":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Visit Schedule report"
                ],
                "summary":"v1.0",
                "description":"Retrieves the Unblinded Visit Schedule report. Rights: UnblindedSubjectVisitReport.",
                "operationId":"getUnblindedVisitScheduleReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "example":{
                                "offset":0,
                                "limit":100,
                                "fieldSpecsList":[
                                ]
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Report Error Response":{
                                        "description":"Report Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"REPORT_ERROR",
                                                "errorMessage":"The report request failed.",
                                                "details":{
                                                    "context":"report",
                                                    "reason":"Review the error code and message for the failed report request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-reports-unblinded-visit-schedule-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-reports-unblinded-visit-schedule-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/depot/resupplies/updateselected":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected depot resupply associations"
                ],
                "summary":"v1.0",
                "description":"Creates or updates selected associations between a resupply and a depot. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are clinical supply manager and depot manager.",
                "operationId":"associateDepotResupply",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Resupply group request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/DepotResupplyRequestV1"
                                }
                            },
                            "examples":{
                                "Associate Depot Resupplies Request":{
                                    "description":"Associate Depot Resupplies Request",
                                    "value":[
                                        {
                                            "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "resupplyId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SiteResupply"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Depot Resupply Not Found Response":{
                                        "description":"Associate Depot Resupply Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"The depot or resupply group was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Depot in the study does not match the Clinical One study configuration', 'Duplicate depot'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Depot Resupply Bad Request Response":{
                                        "description":"Associate Depot Resupply Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The depot resupply association request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Depot Resupply Server Error Response":{
                                        "description":"Associate Depot Resupply Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while associating depot resupplies."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-depot-resupplies-updateselected-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-depot-resupplies-updateselected-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/site/resupplies/updateselected":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected site resupply associations"
                ],
                "summary":"v1.0",
                "description":"Creates or updates selected associations between a resupply and a site. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"associateSiteResupply",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Resupply group request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/SiteResupplyRequestV1"
                                }
                            },
                            "examples":{
                                "Associate Site Resupplies Request":{
                                    "description":"Associate Site Resupplies Request",
                                    "value":[
                                        {
                                            "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                            "resupplyId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SiteResupplyResponse"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Site Resupply Not Found Response":{
                                        "description":"Associate Site Resupply Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"The site or resupply group was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Site in the study does not match the Clinical One study configuration', 'Duplicate site'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Site Resupply Bad Request Response":{
                                        "description":"Associate Site Resupply Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The site resupply association request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Site Resupply Server Error Response":{
                                        "description":"Associate Site Resupply Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while associating site resupplies."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-site-resupplies-updateselected-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-site-resupplies-updateselected-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupplies":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all resupply groups"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves all resupply groups created for a study.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.triggerWeeks and resupplyWeeks fields aren't needed for Min/Max strategies, so they're hidden when fetched.",
                "operationId":"getResupplyGroups",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"resupplyTypeId",
                        "in":"query",
                        "description":"ID of resupply type.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "enum":[
                                null
                            ]
                        },
                        "example":2
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Groups Not Found Response":{
                                        "description":"Get Resupply Groups Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"No resupply groups were found for the study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Groups Server Error Response":{
                                        "description":"Get Resupply Groups Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while retrieving resupply groups."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupplies-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupplies-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Create a resupply group"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a resupply group for a study. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"createResupplyGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Resupply group request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequestV1"
                            },
                            "examples":{
                                "Create Resupply Group Request":{
                                    "description":"Create Resupply Group Request",
                                    "value":{
                                        "resupplyName":"Site Resupply Group A",
                                        "resupplyTypeId":2,
                                        "kitTypes":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "minBuffer":5,
                                                "maxBuffer":50,
                                                "initialShippingUnits":50,
                                                "manualConsignment":50,
                                                "triggerWeeks":3,
                                                "resupplyWeeks":3
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Resupply Group Response":{
                                        "description":"Create Resupply Group Response",
                                        "value":{
                                            "status":"SUCCESS"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid resupply type', 'Duplicate resupply'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid resupply group request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error while creating resupply group."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupplies-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupplies-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupplies/{resupplyId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get a resupply group by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a resupply group by ID.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"getResupplyGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Group Not Found Response":{
                                        "description":"Get Resupply Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"The resupply group was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Group Server Error Response":{
                                        "description":"Get Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while retrieving the resupply group."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupplies-resupplyid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Update a resupply by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Updates a resupply group by ID. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"updateResupplyGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Resupply group request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequestV1"
                            },
                            "examples":{
                                "Update Resupply Group Request":{
                                    "description":"Update Resupply Group Request",
                                    "value":{
                                        "resupplyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "resupplyName":"Site Resupply Group A (Updated)",
                                        "resupplyTypeId":2,
                                        "kitTypes":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "minBuffer":10,
                                                "maxBuffer":60,
                                                "initialShippingUnits":60,
                                                "manualConsignment":60,
                                                "triggerWeeks":4,
                                                "resupplyWeeks":4
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Not Found Response":{
                                        "description":"Update Resupply Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"The resupply group was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Validation error, 'Invalid resupply type', 'Resupply already exists', 'Resupply contains duplicate IDs for kit types', 'Invalid kit type'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Bad Request Response":{
                                        "description":"Update Resupply Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The resupply group update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Server Error Response":{
                                        "description":"Update Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while updating the resupply group."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupplies-resupplyid-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Delete a resupply by ID"
                ],
                "summary":"v1.0",
                "description":"Removes a resupply group by its ID. <br>Rights: <i>SupplySettingRightsPost</i><br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"deleteResupplyGroup",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Resupply Group Not Found Response":{
                                        "description":"Delete Resupply Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"The resupply group was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid resupply type', 'Resupply is in use by one or more sites'",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Resupply Group Bad Request Response":{
                                        "description":"Delete Resupply Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The resupply group delete request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Resupply Group Server Error Response":{
                                        "description":"Delete Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while deleting the resupply group."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupplies-resupplyid-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/depot/resupplies":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all depot resupplies"
                ],
                "summary":"v1.0",
                "description":"Retrieves all depot resupplies. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are clinical supply manager and depot manager.",
                "operationId":"getAllDepotResupplies",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SiteResupply"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Depot Resupplies Not Found Response":{
                                        "description":"Get All Depot Resupplies Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"No depot resupplies were found for the study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'The depot in the study does not match the Clinical One study configuration, 'Duplicate depot'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Depot Resupplies Bad Request Response":{
                                        "description":"Get All Depot Resupplies Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The depot resupplies request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Depot Resupplies Server Error Response":{
                                        "description":"Get All Depot Resupplies Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while retrieving depot resupplies."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-depot-resupplies-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-depot-resupplies-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/site/resupplies":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all site resupplies"
                ],
                "summary":"v1.0",
                "description":"Retrieves all site resupplies. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"getAllSiteResupplies",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SiteResuppliesResponse"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Site Resupplies Not Found Response":{
                                        "description":"Get All Site Resupplies Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-404",
                                                "errorMessage":"No site resupplies were found for the study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'The site in the study does not match the Clinical One study configuration, 'Duplicate site'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Site Resupplies Bad Request Response":{
                                        "description":"Get All Site Resupplies Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-400",
                                                "errorMessage":"The site resupplies request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get All Site Resupplies Server Error Response":{
                                        "description":"Get All Site Resupplies Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-500",
                                                "errorMessage":"Unexpected error while retrieving site resupplies."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-site-resupplies-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-site-resupplies-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupply/initial":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a first shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"initial",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/InitialResupplyRequest"
                            },
                            "examples":{
                                "Create Initial Resupply Request":{
                                    "description":"Create Initial Resupply Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "410":{
                        "description":"Deprecated: This endpoint is no longer available.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Initial Resupply Gone Response":{
                                        "description":"Create Initial Resupply Gone Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-410",
                                                "errorMessage":"This initial resupply endpoint is no longer available. Use the latest version instead.",
                                                "details":{
                                                    "endpoint":"/v1.0/studies/{studyId}/{mode}/resupply/initial",
                                                    "reason":"The v1.0 initial resupply API has been retired."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupply-initial-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupply-initial-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a manual shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manual",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualSupplyRequestV1"
                            },
                            "examples":{
                                "Create Manual Shipment Request":{
                                    "description":"Create Manual Shipment Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "kits":[
                                            {
                                                "kitTypeId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "quantity":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "410":{
                        "description":"Deprecated: This endpoint is no longer available.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manual Shipment Gone Response":{
                                        "description":"Create Manual Shipment Gone Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-410",
                                                "errorMessage":"This manual shipment endpoint is no longer available. Use the latest version instead.",
                                                "details":{
                                                    "endpoint":"/v1.0/studies/{studyId}/{mode}/resupply/manual",
                                                    "reason":"The v1.0 manual resupply API has been retired."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupply/depotmanual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual depot shipment"
                ],
                "summary":"v1.0",
                "description":"Creates a manual depot shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manualDepot",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Manual depot-to-depot supply request parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualDepotSupplyRequest"
                            },
                            "examples":{
                                "Create Depot Manual Shipment Request":{
                                    "description":"Create Depot Manual Shipment Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "kits":[
                                            {
                                                "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                                                "quantity":"2"
                                            }
                                        ],
                                        "shippedFrom":"B1B8327AFAA6412287106192AB5984EF",
                                        "shippedTo":"ABC8327AFAA6412287106192AB5984EF"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Depot Manual Shipment Response":{
                                        "description":"Create Depot Manual Shipment Response",
                                        "value":{
                                            "status":"SUCCESS"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "message":"Depot not found for shippedFrom location."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "message":"Unexpected error while creating depot manual shipment."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupply-depotmanual-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupply-depotmanual-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/resupply/resupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Creates a resupply strategy for a study. Rights: OrsSupplyManagerPost. If the Resupply type is Predictive for any site and Trigger weeks and Resupply weeks aren't defined for any resupplykit type, a configuration exception is thrown. If Min/Max buffers aren't defined, the resupply strategy would use 0for the buffers. No exception is thrown.",
                "operationId":"resupply",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyRequestV1"
                            },
                            "examples":{
                                "Create Resupply Request":{
                                    "description":"Create Resupply Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "410":{
                        "description":"Deprecated: This endpoint is no longer available.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Resupply Gone Response":{
                                        "description":"Create Resupply Gone Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RESUPPLY-410",
                                                "errorMessage":"This resupply endpoint is no longer available. Use the latest version instead.",
                                                "details":{
                                                    "endpoint":"/v1.0/studies/{studyId}/{mode}/resupply/resupply",
                                                    "reason":"The v1.0 resupply API has been retired."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-resupply-resupply-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-resupply-resupply-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupply/initial":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create first shipment in resupply strategy"
                ],
                "summary":"v2.0",
                "description":"Creates a first shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"initial_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Initial resupply request parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/InitialResupplyRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Create Initial Shipment Response":{
                                        "description":"Create Initial Shipment Response",
                                        "value":[
                                            {
                                                "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "message":"Study not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "message":"Unexpected error while creating initial shipment."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupply-initial-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupply-initial-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Creates a manual shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manual_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Manual supply request parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualSupplyRequestV1"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManualResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Create Manual Shipment Response":{
                                        "description":"Create Manual Shipment Response",
                                        "value":[
                                            {
                                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "message":"Study not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "message":"Unexpected error while creating manual shipment."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupply/depotmanual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual depot shipment"
                ],
                "summary":"v2.0",
                "description":"Creates a manual depot shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manualDepot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Manual depot-to-depot supply request parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualDepotSupplyRequest_v2"
                            },
                            "examples":{
                                "Create Depot Manual Shipment Request":{
                                    "description":"Create Depot Manual Shipment Request",
                                    "value":{
                                        "kits":[
                                            {
                                                "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                                                "quantity":"2"
                                            }
                                        ],
                                        "shippedFrom":"B1B8327AFAA6412287106192AB5984EF",
                                        "shippedTo":"ABC8327AFAA6412287106192AB5984EF",
                                        "transactionId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Create Depot Manual Shipment Response":{
                                        "description":"Create Depot Manual Shipment Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "message":"Depot not found for shippedFrom location."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "message":"Unexpected error while creating depot manual shipment."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupply-depotmanual-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupply-depotmanual-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupply/resupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy"
                ],
                "summary":"v2.0",
                "description":"Creates a resupply strategy for a study. Rights: OrsSupplyManagerPost. If the Resupply type is Predictive for any site and Trigger weeks and Resupply weeks aren't defined for any resupplykit type, a configuration exception is thrown. If Min/Max buffers aren't defined, the resupply strategy would use 0for the buffers. No exception is thrown.",
                "operationId":"resupply_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Resupply request parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyRequestV1"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Create Resupply Response":{
                                        "description":"Create Resupply Response",
                                        "value":[
                                            {
                                                "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "message":"Study not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "message":"Unexpected error while creating resupply."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupply-resupply-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupply-resupply-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/rnddesign/{rndDesignId}/treatments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization APIs/Get list of all treatment arms for a randomization"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all treatment arms for a randomization design. Rights: DesignerRandListGet.",
                "operationId":"getTreatments",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"rndDesignId",
                        "in":"path",
                        "description":"ID of the randomization design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Treatment"
                                    }
                                },
                                "examples":{
                                    "Get Treatments Response":{
                                        "description":"Get Treatments Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "versionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                                "versionEnd":"23-NOV-2018 08.43.01.700136000 AM",
                                                "description":"Treatment description",
                                                "externalTreatmentId":"Treatment A",
                                                "shortName":"TxA",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                                "srcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "srcVersionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":5,
                                                "softwareVersionNumber":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "reason":"Some reason",
                                                "comment":"Some comment"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Treatments Server Error Response":{
                                        "description":"Get Treatments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving treatments.",
                                                "details":{
                                                    "operation":"getTreatments",
                                                    "reason":"The treatment lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found. Or randomization design not found",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Treatments Study Not Found Response":{
                                        "description":"Get Treatments Study Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The study was not found.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study identifier does not exist."
                                                }
                                            }
                                        }
                                    },
                                    "Get Treatments Design Not Found Response":{
                                        "description":"Get Treatments Design Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization design was not found.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The supplied randomization design identifier does not exist for the study version."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-rnddesign-{rndDesignId}-treatments-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-rnddesign-rnddesignid-treatments-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlistdesigns/randlists/{listId}/studyversions/{studyVersion}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Associate randomization design to randomization list"
                ],
                "summary":"v1.0",
                "description":"Associates a randomization design to a randomization list. Rights: OrsRandListPost, OrsUnblinded.",
                "operationId":"associateRandDesignToRandList",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"listId",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/RndDesignListRequest"
                            },
                            "examples":{
                                "Associate Design To List Request":{
                                    "description":"Associate Design To List Request",
                                    "value":{
                                        "randDesignSrcIds":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Associate Design To List Response":{
                                        "description":"Associate Design To List Response",
                                        "value":"SUCCESS"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Design To List Server Error Response":{
                                        "description":"Associate Design To List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while associating randomization designs to the list.",
                                                "details":{
                                                    "operation":"associateRandDesignToRandList",
                                                    "reason":"The randomization design association failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or randomization list not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Design To List Not Found Response":{
                                        "description":"Associate Design To List Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list was not found.",
                                                "details":{
                                                    "field":"listId",
                                                    "reason":"The supplied randomization list identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For randomization design not found or randomization list can't be generated as there is no algorithm for the randomization designOr you must associate the randomization design with a visit before you can create a randomization listOr the combination of study version and randomization design is already associated with another randomization listOr treatment arms in the study version aren't the same as the treatment arms in the randomization listOr the type of randomization used to create the list doesn't match the type in the randomization designOr the stratum groups in the study version aren't the same as the stratum groups in the randomization listOr you can't use this randomization list. Cohort groups in the study version aren't the same as the cohort groups in the randomization list",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Associate Design To List Bad Request Response":{
                                        "description":"Associate Design To List Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization design association request is invalid.",
                                                "details":{
                                                    "field":"randDesignSrcIds",
                                                    "reason":"At least one valid randomization design identifier must be provided."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlistdesigns-randlists-{listId}-studyversions-{studyVersion}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlistdesigns-randlists-listid-studyversions-studyversion-put"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Dissociate randomization design from randomization list"
                ],
                "summary":"v1.0",
                "description":"Dissociates a randomization design from a randomization list in the system. Rights:  OrsRandListPost, OrsUnblinded.",
                "operationId":"disassociateRandDesignsFromRandList",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"listId",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Disassociate Design From List Success Response":{
                                        "description":"Request succeeds with no response body."
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disassociate Design From List Server Error Response":{
                                        "description":"Disassociate Design From List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while removing randomization designs from the list.",
                                                "details":{
                                                    "operation":"disassociateRandDesignsFromRandList",
                                                    "reason":"The randomization design disassociation failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or randomization list not found or design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disassociate Design From List Not Found Response":{
                                        "description":"Disassociate Design From List Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list was not found.",
                                                "details":{
                                                    "field":"listId",
                                                    "reason":"The supplied randomization list identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Randomization design is not associated with randomization list for this study version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Disassociate Design From List Bad Request Response":{
                                        "description":"Disassociate Design From List Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization design disassociation request is invalid.",
                                                "details":{
                                                    "field":"studyVersion",
                                                    "reason":"The supplied study version is invalid or missing."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlistdesigns-randlists-{listId}-studyversions-{studyVersion}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlistdesigns-randlists-listid-studyversions-studyversion-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/randlist/generate":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Create randomization list"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Generates a randomization list in the study; Rights: DesignerRandListPost.",
                "operationId":"create_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/GenerateRndListRequest"
                            },
                            "examples":{
                                "Create Randomization List Request":{
                                    "description":"Create Randomization List Request",
                                    "value":{
                                        "title":"UPL_RL191_V1001",
                                        "description":"Randomization list with demographic cohort",
                                        "treatmentRatioMultiplier":5,
                                        "initialRandNumber":1,
                                        "srcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "srcVersionStart":"23-NOV-2018 08.43.01.700136000 AM",
                                        "noOfRows":5,
                                        "blocks":5,
                                        "blocksPerStratum":5,
                                        "blocksPerCohort":5,
                                        "blocksPerStratumPerCohort":5,
                                        "mode":"test"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateResponse"
                                },
                                "examples":{
                                    "Create Randomization List Response":{
                                        "description":"Create Randomization List Response",
                                        "value":{
                                            "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                            "status":"QUEUED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while generating randomization list."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"Randomization design not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For algorithm not defined for the randomization design or randomization design not associated with a visit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"Invalid generate randomization list request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-randlist-generate-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-randlist-generate-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists/file/{fileId}":{
            "delete":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Delete randomization list file"
                ],
                "summary":"v1.0",
                "description":"Removes randomization list file from the system. Rights: DesignerRandListUpload, OrsUnblinded.",
                "operationId":"deleteRndListFile_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"fileId",
                        "in":"path",
                        "description":"ID of the file.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Delete Randomization List File Response":{
                                        "description":"Delete Randomization List File Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Randomization List File Server Error Response":{
                                        "description":"Delete Randomization List File Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while deleting the randomization list file.",
                                                "details":{
                                                    "operation":"deleteRndListFile",
                                                    "reason":"The randomization list file delete request failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or file not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Randomization List File Not Found Response":{
                                        "description":"Delete Randomization List File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"The supplied randomization list file identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For when a randomization list is associated with randomizations",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Delete Randomization List File Bad Request Response":{
                                        "description":"Delete Randomization List File Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization list file delete request is invalid.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"The supplied file identifier is not a valid UUID."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-file-{fileId}-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-file-fileid-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists/{rndlistid}/export":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Export/Export randomization list"
                ],
                "summary":"v1.0",
                "description":"Exports a randomization list. Rights: DesignerRandListGet.",
                "operationId":"export_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RNDLIST-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Export Randomization List Response":{
                                        "description":"Export Randomization List Response",
                                        "value":{
                                            "status":"SUCCESS",
                                            "message":"The randomization list export was created successfully."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Randomization List Server Error Response":{
                                        "description":"Export Randomization List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while exporting the randomization list.",
                                                "details":{
                                                    "operation":"exportRndList",
                                                    "reason":"The randomization list export failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or randomization list not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Randomization List Not Found Response":{
                                        "description":"Export Randomization List Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list was not found.",
                                                "details":{
                                                    "field":"rndlistid",
                                                    "reason":"The supplied randomization list identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-{rndlistid}-export-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-rndlistid-export-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/rndListsByRegion/regions/{regionId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Check randomization design is blocked by region"
                ],
                "summary":"v1.0",
                "description":"Checks whether a randomization design is blocked by region or not. Rights: RegionGet.",
                "operationId":"operationId",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"regionId",
                        "in":"path",
                        "description":"ID  of the region",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RegionRandListTO"
                                    }
                                },
                                "examples":{
                                    "Get Randomization Lists By Region Response":{
                                        "description":"Get Randomization Lists By Region Response",
                                        "value":[
                                            {
                                                "regionId":"B1B8327AFAA6412287106192AB5984EF",
                                                "randListId":"E39FF55A445543A38D513325664F0B2D"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization Lists By Region Server Error Response":{
                                        "description":"Get Randomization Lists By Region Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization lists by region.",
                                                "details":{
                                                    "operation":"getRandListByRegion",
                                                    "reason":"The region-based randomization list lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or randomization list not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization Lists By Region Not Found Response":{
                                        "description":"Get Randomization Lists By Region Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The region was not found.",
                                                "details":{
                                                    "field":"regionId",
                                                    "reason":"The supplied region identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-rndListsByRegion-regions-{regionId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-rndlistsbyregion-regions-regionid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randnumberstatuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Get random number statuses"
                ],
                "summary":"v1.0",
                "description":"Retrieves random number statuses. Rights: OrsRandListGet.",
                "operationId":"getRandNumberStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandNumStatusesResponse"
                                    }
                                },
                                "examples":{
                                    "Get Random Number Statuses Response":{
                                        "description":"Get Random Number Statuses Response",
                                        "value":[
                                            {
                                                "statusId":1,
                                                "statusName":"AVAILABLE"
                                            },
                                            {
                                                "statusId":2,
                                                "statusName":"USED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Random Number Statuses Server Error Response":{
                                        "description":"Get Random Number Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization number statuses.",
                                                "details":{
                                                    "operation":"getRandNumberStatuses",
                                                    "reason":"The randomization number statuses lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randnumberstatuses-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randnumberstatuses-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a randomization list. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlist",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization Lists Response":{
                                        "description":"Get Randomization Lists Response",
                                        "value":{
                                            "randLists":[
                                                {
                                                    "randListId":"E39FF55A445543A38D513325664F0B2D",
                                                    "randListName":"UPL_RL191_V1001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"No randomization lists found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization lists."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists/{rndlistid}/blocks":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Blocks/Get list of randomization blocks"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of randomization blocks. Rights: OrsRandListGet, OrsUnblinded.",
                "operationId":"getRandlistBlocks",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RNDLIST-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListBlockTO"
                                },
                                "examples":{
                                    "Get Randomization List Blocks Response":{
                                        "description":"Get Randomization List Blocks Response",
                                        "value":{
                                            "blocks":[
                                                {
                                                    "blockNumber":1,
                                                    "size":4
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Blocks Server Error Response":{
                                        "description":"Get Randomization List Blocks Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization list blocks.",
                                                "details":{
                                                    "operation":"getRandlistBlocks",
                                                    "reason":"The randomization list blocks lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version or randomization list not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Blocks Not Found Response":{
                                        "description":"Get Randomization List Blocks Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"Randomization list blocks were not found.",
                                                "details":{
                                                    "field":"rndlistid",
                                                    "reason":"The supplied randomization list does not contain any blocks."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-{rndlistid}-blocks-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-rndlistid-blocks-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Blocks/Update randomization list blocks"
                ],
                "summary":"v1.0",
                "description":"Updates randomization list blocks in a study. Rights: OrsRandListPost, OrsUnblinded.",
                "operationId":"updateRandlistBlocks",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/RndListBlocks"
                            },
                            "examples":{
                                "Update Randomization List Blocks Request":{
                                    "description":"Update Randomization List Blocks Request",
                                    "value":{
                                        "blocks":[
                                            {
                                                "block":5,
                                                "blockedBy":"Site1001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Randomization List Blocks Response":{
                                        "description":"Update Randomization List Blocks Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization List Blocks Server Error Response":{
                                        "description":"Update Randomization List Blocks Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while updating randomization list blocks.",
                                                "details":{
                                                    "operation":"updateRandlistBlocks",
                                                    "reason":"The block update failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version or randomization List not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization List Blocks Not Found Response":{
                                        "description":"Update Randomization List Blocks Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list was not found.",
                                                "details":{
                                                    "field":"rndlistid",
                                                    "reason":"The supplied randomization list identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For a dynamic algorithm, you can't assign blocks to a blocked parameter. Or invalid blocked by value.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization List Blocks Bad Request Response":{
                                        "description":"Update Randomization List Blocks Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization list blocks update request is invalid.",
                                                "details":{
                                                    "field":"blocks",
                                                    "reason":"At least one valid randomization block must be provided."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-{rndlistid}-blocks-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-rndlistid-blocks-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists/{rndlistid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a randomization list by ID. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlistById",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RNDLIST-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Randomization List By Id Response":{
                                        "description":"Get Randomization List By Id Response",
                                        "value":{
                                            "randListId":"E39FF55A445543A38D513325664F0B2D",
                                            "randListName":"UPL_RL191_V1001"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"Randomization list not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving the randomization list."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-{rndlistid}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-rndlistid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlistdesigns":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Get randomization design list"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a randomization design list. Rights: OrsRandListGet, OrsUnblinded.",
                "operationId":"getRandomizationListDesigns",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RndListDesignList"
                                    }
                                },
                                "examples":{
                                    "Get Randomization List Designs Response":{
                                        "description":"Get Randomization List Designs Response",
                                        "value":[
                                            {
                                                "randListId":"E39FF55A445543A38D513325664F0B2D",
                                                "randListName":"UPL_RL191_V1001",
                                                "randDesigns":[
                                                    {
                                                        "randDesignId":"8ECE2C9D389645B09740DC7926DEFB69",
                                                        "randDesignName":"Design A"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Designs Server Error Response":{
                                        "description":"Get Randomization List Designs Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization list designs.",
                                                "details":{
                                                    "operation":"getRandomizationListDesigns",
                                                    "reason":"The randomization list designs lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Designs Not Found Response":{
                                        "description":"Get Randomization List Designs Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"No randomization list designs were found.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study does not contain randomization list designs."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlistdesigns-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlistdesigns-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/randlists/{rndlistid}/randnumber/randstatus":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Update randomization status"
                ],
                "summary":"v1.0",
                "description":"Updates randomization status. Rights: OrsRandListPost, OrsUnblinded.",
                "operationId":"updateRandStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/RandNumberStatusTO"
                            },
                            "examples":{
                                "Update Randomization Status Request":{
                                    "description":"Update Randomization Status Request",
                                    "value":{
                                        "randNumberId":"B1B8327AFAA6412287106192AB5984EF",
                                        "randStatusId":5,
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "reason":"Randomization status update request"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Randomization Status Response":{
                                        "description":"Update Randomization Status Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization Status Server Error Response":{
                                        "description":"Update Randomization Status Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while updating the randomization status.",
                                                "details":{
                                                    "operation":"updateRandStatus",
                                                    "reason":"The randomization status update failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or randomization list not found. Or randomization number not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization Status Not Found Response":{
                                        "description":"Update Randomization Status Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The randomization list was not found.",
                                                "details":{
                                                    "field":"rndlistid",
                                                    "reason":"The supplied randomization list identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid rand status or for manually assigning a randomization number to a subject. Or randomization number and subject are associated with different sites.Or Randomization number and subject are associated with different countries. Or no stratum group is associated with the random number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Randomization Status Bad Request Response":{
                                        "description":"Update Randomization Status Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization status update request is invalid.",
                                                "details":{
                                                    "field":"randNumberStatus",
                                                    "reason":"The randomization status must be one of the supported status values."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-randlists-{rndlistid}-randnumber-randstatus-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-randlists-rndlistid-randnumber-randstatus-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/rnddesign/{rndDesignId}/rndlist/upload/{fileId}/fileheaders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization APIs/Get list of headers from a CSV file"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of headers for a randomization list in a CSV file. Rights: DesignerRandListUpload.",
                "operationId":"getCSVHeaders",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"containsHeadersRow",
                        "in":"query",
                        "description":"Specify whether the headers row is included. Default value is 'y'.",
                        "schema":{
                            "type":"string",
                            "default":"y"
                        },
                        "example":"y"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"fileId",
                        "in":"path",
                        "description":"ID of the file.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndDesignId",
                        "in":"path",
                        "description":"ID of the randomization design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UploadCSVHeaderResponse"
                                },
                                "examples":{
                                    "Get CSV Headers Response":{
                                        "description":"Get CSV Headers Response",
                                        "value":{
                                            "headers":[
                                                "SUBJECT_ID",
                                                "STRATUM",
                                                "ARM"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get CSV Headers Server Error Response":{
                                        "description":"Get CSV Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while reading CSV headers.",
                                                "details":{
                                                    "operation":"getHeadersFromFile",
                                                    "reason":"The CSV header extraction failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found. Or randomization design not found. Or design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get CSV Headers Study Or Design Not Found Response":{
                                        "description":"Get CSV Headers Study Or Design Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The study or randomization design was not found.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The supplied randomization design identifier does not exist for the study version."
                                                }
                                            }
                                        }
                                    },
                                    "Get CSV Headers File Not Found Response":{
                                        "description":"Get CSV Headers File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The source file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Randomization list can't be generated/uploaded as there is no algorithm for the randomization designOr you must associate the randomization design with a visit before you can create/upload a randomization list for itOr the file can't be uploaded because it contains invalid content, such as special characters, empty cells, or empty rowsOr empty CSV content",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get CSV Headers Bad Request Response":{
                                        "description":"Get CSV Headers Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The CSV header request is invalid.",
                                                "details":{
                                                    "field":"containsHeadersRow",
                                                    "reason":"Use y or n and ensure the file does not contain empty rows, empty cells, or unsupported characters."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-rnddesign-{rndDesignId}-rndlist-upload-{fileId}-fileheaders-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-rnddesign-rnddesignid-rndlist-upload-fileid-fileheaders-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/rnddesign/{rndDesignId}/rndlist/upload/csvuniquevalues":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization APIs/Get unique values for treatments, strata, or cohorts from a CSV file"
                ],
                "summary":"v1.0",
                "description":"Retrieves unique values for treatment arms, strata, and/or cohorts for a randomization list in a CSV file. Rights: DesignerRandListUpload.",
                "operationId":"getUniqueValues",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndDesignId",
                        "in":"path",
                        "description":"ID of the randomization design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "description":"Randomization list upload parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RndListUploadRequest"
                            },
                            "examples":{
                                "Get Unique Values Request":{
                                    "description":"Get Unique Values Request",
                                    "value":{
                                        "fileId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "containsHeadersRow":"y",
                                        "headerMappings":[
                                            {
                                                "fileHeader":"Treatment",
                                                "dbHeader":"TREATMENT"
                                            },
                                            {
                                                "fileHeader":"Stratum",
                                                "dbHeader":"STRATUM"
                                            },
                                            {
                                                "fileHeader":"Cohort",
                                                "dbHeader":"COHORT"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RndListMappingResponse"
                                },
                                "examples":{
                                    "Get Unique Values Response":{
                                        "description":"Get Unique Values Response",
                                        "value":{
                                            "treatments":[
                                                "TRT-A",
                                                "TRT-B"
                                            ],
                                            "stratums":[
                                                "Male",
                                                "Female"
                                            ],
                                            "cohorts":[
                                                "Cohort-1"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Unique Values Server Error Response":{
                                        "description":"Get Unique Values Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving unique values.",
                                                "details":{
                                                    "operation":"getUniqueDataValues",
                                                    "reason":"The file values could not be analyzed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found. Or randomization design not found. Or design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Unique Values Not Found Response":{
                                        "description":"Get Unique Values Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The study or randomization design was not found.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The supplied randomization design identifier does not exist for the study version."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Randomization list can't be generated/uploaded as there is no algorithm for the randomization designOr you must associate the randomization design with a visit before you can create/upload a randomization list for itOr the file can't be uploaded because it contains invalid content, such as special characters, empty cells, or empty rowsOr empty CSV content",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Unique Values Bad Request Response":{
                                        "description":"Get Unique Values Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The unique values request is invalid.",
                                                "details":{
                                                    "field":"headerMappings",
                                                    "reason":"Header mappings must match the uploaded file and the file must not contain empty rows, empty cells, or unsupported characters."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-rnddesign-{rndDesignId}-rndlist-upload-csvuniquevalues-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-rnddesign-rnddesignid-rndlist-upload-csvuniquevalues-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/rnddesign/{rndDesignId}/rndlist/upload/uploadrndlist":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization APIs/Upload randomization list based on header mappings and treatment, cohort, stratum mappings"
                ],
                "summary":"v1.0",
                "description":"Uploads a randomization list in Oracle Clinical One Platform based on the mapped headers and treatment, cohort, stratum mappings. Rights: DesignerRandListUpload.",
                "operationId":"upload",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"rndDesignId",
                        "in":"path",
                        "description":"ID of the randomization design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "description":"Randomization list upload parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RndListUploadRequest"
                            },
                            "examples":{
                                "Upload Randomization List Request":{
                                    "description":"Upload Randomization List Request",
                                    "value":{
                                        "fileId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "containsHeadersRow":"y",
                                        "headerMappings":[
                                            {
                                                "fileHeader":"Treatment",
                                                "dbHeader":"TREATMENT"
                                            },
                                            {
                                                "fileHeader":"Stratum",
                                                "dbHeader":"STRATUM"
                                            },
                                            {
                                                "fileHeader":"Cohort",
                                                "dbHeader":"COHORT"
                                            }
                                        ],
                                        "treatmentMappings":[
                                            {
                                                "dataFromFile":"TRT-A",
                                                "dataId":"B1B8327AFAA6412287106192AB5984EF"
                                            },
                                            {
                                                "dataFromFile":"TRT-B",
                                                "dataId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ],
                                        "stratumMappings":[
                                            {
                                                "dataFromFile":"Male",
                                                "dataId":"89EE76326E984B548D594D592E5C7FC2"
                                            }
                                        ],
                                        "cohortMappings":[
                                            {
                                                "dataFromFile":"Cohort-1",
                                                "dataId":"D313327EF13845169A8ADADDA435431E"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateResponse"
                                },
                                "examples":{
                                    "Upload Randomization List Response":{
                                        "description":"Upload Randomization List Response",
                                        "value":{
                                            "listId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                            "noOfRowsGenerated":150
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Randomization List Server Error Response":{
                                        "description":"Upload Randomization List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while uploading the randomization list.",
                                                "details":{
                                                    "operation":"upload",
                                                    "reason":"The randomization list upload failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found. Or randomization design not found. Or design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Randomization List Study Or Design Not Found Response":{
                                        "description":"Upload Randomization List Study Or Design Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The study or randomization design was not found.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The supplied randomization design identifier does not exist for the study version."
                                                }
                                            }
                                        }
                                    },
                                    "Upload Randomization List File Not Found Response":{
                                        "description":"Upload Randomization List File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The source file was not found.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"No uploaded file matched the supplied file identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Randomization list can't be generated/uploaded as there is no algorithm for the randomization designOr you must associate the randomization design with a visit before you can create/upload a randomization list for itOr the file can't be uploaded because it contains invalid content, such as special characters, empty cells, or empty rowsOr empty CSV content",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload Randomization List Algorithm Missing Response":{
                                        "description":"Upload Randomization List Algorithm Missing Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization list upload request is invalid.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The randomization design does not have an algorithm configured."
                                                }
                                            }
                                        }
                                    },
                                    "Upload Randomization List Invalid CSV Response":{
                                        "description":"Upload Randomization List Invalid CSV Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization list upload request is invalid.",
                                                "details":{
                                                    "field":"fileId",
                                                    "reason":"The file contains invalid content such as empty rows, empty cells, or unsupported characters."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-rnddesign-{rndDesignId}-rndlist-upload-uploadrndlist-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-rnddesign-rnddesignid-rndlist-upload-uploadrndlist-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{studyVersion}/rnddesign/{rndDesignId}/rndlist/upload/uploadfile":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization APIs/Upload randomization list file from a file service into RTSM"
                ],
                "summary":"v1.0",
                "description":"Uploads randomization list as a CSV file from File Service into ORS. Rights: DesignerRandListUpload.",
                "operationId":"uploadFile_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"rndDesignId",
                        "in":"path",
                        "description":"ID of the randomization design.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Randomization list upload parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FileUploadRequest"
                            },
                            "examples":{
                                "Upload File Request":{
                                    "description":"Upload File Request",
                                    "value":{
                                        "name":"Randomization List 1001",
                                        "description":"Randomization list upload for study version 1.0",
                                        "fileName":"rndlist-1001.csv"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FileUploadResponse"
                                },
                                "examples":{
                                    "Upload File Response":{
                                        "description":"Upload File Response",
                                        "value":{
                                            "fileId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload File Server Error Response":{
                                        "description":"Upload File Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while uploading the randomization list file.",
                                                "details":{
                                                    "operation":"uploadFile",
                                                    "reason":"The randomization list file could not be uploaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found. Or randomization design not found. Or design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload File Study Or Design Not Found Response":{
                                        "description":"Upload File Study Or Design Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The study or randomization design was not found.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The supplied randomization design identifier does not exist for the study version."
                                                }
                                            }
                                        }
                                    },
                                    "Upload File Source File Not Found Response":{
                                        "description":"Upload File Source File Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-404",
                                                "errorMessage":"The source file was not found.",
                                                "details":{
                                                    "field":"fileName",
                                                    "reason":"No uploaded file matched the supplied file name."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Randomization list can't be generated/uploaded as there is no algorithm for the randomization design.Or you must associate the randomization design with a visit before you can create/upload a randomization list for itOr randomization list already exists",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Upload File Bad Request Response":{
                                        "description":"Upload File Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-400",
                                                "errorMessage":"The randomization list file upload request is invalid.",
                                                "details":{
                                                    "field":"rndDesignId",
                                                    "reason":"The randomization design does not have an algorithm configured."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{studyVersion}-rnddesign-{rndDesignId}-rndlist-upload-uploadfile-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversion-rnddesign-rnddesignid-rndlist-upload-uploadfile-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a kit's details by order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-000123"
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"kitNumber"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentKitsResponseV1"
                                },
                                "examples":{
                                    "Get Shipment Kits Response":{
                                        "description":"Get Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "barcode":"KIT-000005"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-kits-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Add kits to a shipment"
                ],
                "summary":"v1.0",
                "description":"Adds kits to an order shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"addKitsToShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be added to the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentAddKitsRequest"
                            },
                            "examples":{
                                "Add Kits To Shipment Request":{
                                    "description":"Add Kits To Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Add Kits Response":{
                                        "description":"Add Kits Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-kits-post"
            },
            "delete":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Delete kits from a shipment"
                ],
                "summary":"v1.0",
                "description":"Removes kits from an order shipment. Rights: OrsInventoryDelete, OrsUnblinded.",
                "operationId":"removeKitsFromShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be removed from the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentRemoveKitsRequest"
                            },
                            "examples":{
                                "Remove Kits From Shipment Request":{
                                    "description":"Remove Kits From Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Remove Kits Response":{
                                        "description":"Remove Kits Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-delete",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-kits-delete"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders/{shipmentNumber}/assignkits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Assign Pooling Shipment kits"
                ],
                "summary":"v1.0",
                "description":"Assign Pooling Shipment kits in a study's inventory. Rights: OrsInventoryPost and DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"assignPoolingShipmentKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentNumber",
                        "in":"path",
                        "description":"Pooling shipment number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-POOL-001"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be assigned.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/PoolingShipmentRequestV1"
                            },
                            "examples":{
                                "Assign Pooling Shipment Kits Request":{
                                    "description":"Assign Pooling Shipment Kits Request",
                                    "value":{
                                        "shipDate":"12-May-2023",
                                        "trackingNumber":"123456",
                                        "deliveryNumber":"88888",
                                        "kits":[
                                            {
                                                "sequenceNumber":5,
                                                "kitNumber":"KIT-000123",
                                                "barcode":"61234",
                                                "blockNumber":"5",
                                                "poolingId":"PooledKitA",
                                                "manufacturingLotNumber":"Lot A",
                                                "itemNumber":"i"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PoolingShipmentResponseV1"
                                },
                                "examples":{
                                    "Assign Pooling Shipment Kits Response":{
                                        "description":"Assign Pooling Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid shipment",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-{shipmentNumber}-assignkits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-shipmentnumber-assignkits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders-nsinventory":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/NS Inventory/Get non-serialized inventory order items"
                ],
                "summary":"v1.0",
                "description":"Retrieves all order items for non-serialized inventory. <br>Rights: <i>OrsInventoryGet</i>, <i>OrsUnblinded</i>.",
                "operationId":"getAllNSOrderItems",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    },
                    {
                        "name":"nsInventoryId",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"orderId",
                        "in":"query",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/NSOrderInventoryResponse"
                                    }
                                },
                                "examples":{
                                    "Get NS Order Items Response":{
                                        "description":"Get NS Order Items Response",
                                        "value":[
                                            {
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":100,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "orderItemId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                        "nsInventoryVersionStart":"2026-02-21T06:30:00Z",
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "transactionId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderVersionStart":"2026-02-21T06:30:00Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Created non-serialized order item.",
                                                        "quantity":5,
                                                        "shipmentNumber":"SHIP-000123",
                                                        "lotNumber":"lot1",
                                                        "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request parameters."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-nsinventory-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-nsinventory-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders-inventory/audit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order items"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves all order items. <br>Rights: <i>OrsInventoryGet</i>, <i>OrsUnblinded</i>.",
                "operationId":"getAllOrderItems",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderItemResponse"
                                    }
                                },
                                "examples":{
                                    "Get Order Items Response":{
                                        "description":"Get Order Items Response",
                                        "value":[
                                            {
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":100,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                        "inventoryVersionStart":"2026-02-21T06:30:00Z",
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "orderVersionStart":"2026-02-21T06:30:00Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Created order item.",
                                                        "orderItemId":"5BB2C53538C841268AB4E4A1E640D0C9"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request parameters."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-inventory-audit-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-inventory-audit-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/allShipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/All shipments"
                ],
                "summary":"v1.0",
                "description":"Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getAllShipments",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-"
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8ECE2C9D389645B09740DC7926DEFB69"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponse"
                                },
                                "examples":{
                                    "Get All Shipments Response":{
                                        "description":"Get All Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-allShipments-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-allshipments-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/eligible-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get eligible kits"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Searches for kits by kit type or shipment details. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getEligibleKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentEligibleKitsResponseV1"
                                },
                                "examples":{
                                    "Get Eligible Kits Response":{
                                        "description":"Get Eligible Kits Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-eligible-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-eligible-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-000123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTOV1"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"SHIP-000123",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-shipmentid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Update shipment details for an order"
                ],
                "summary":"v1.0",
                "description":"Updates shipment details for an order. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"setOrderShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-000123"
                    }
                ],
                "requestBody":{
                    "description":"Order shipment details.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/OrderShipmentDTO"
                            },
                            "examples":{
                                "Set Order Shipment Request":{
                                    "description":"Set Order Shipment Request",
                                    "value":{
                                        "shipDate":"2026-02-24T00:00:00Z",
                                        "trackingNumber":"12345",
                                        "trackingNumberUrl":"http://www.site.com",
                                        "deliveryNumber":"12345",
                                        "updateDeliveryNumber":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Set Order Shipment Response":{
                                        "description":"Set Order Shipment Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "shipmentId":"SHIP-000123",
                                                "shipmentStatus":"SHIPPED"
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-{shipmentId}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-shipmentid-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Searches for orders in a given date range matching a status. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIPPED"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-01-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-01-31"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderInventoryDTOV1"
                                    }
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":[
                                            {
                                                "order":{
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "depotVersionStart":"2026-02-01T00:00:00Z",
                                                    "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                    "orderDate":"2026-02-20T10:15:00Z",
                                                    "orderStatusId":5,
                                                    "studyId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "studyVersionStart":"2026-01-15T00:00:00Z",
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "shipDate":"2026-02-24T00:00:00Z",
                                                    "shipmentId":"SHIP-000123",
                                                    "trackingNumber":"12345",
                                                    "trackingNumberUrl":"http://www.site.com",
                                                    "orderType":"MANUAL",
                                                    "orderTypeId":5,
                                                    "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                },
                                                "inventory":[
                                                    {
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "doNotCount":5,
                                                        "doNotShip":5,
                                                        "expirationDate":"2026-12-31T00:00:00Z",
                                                        "inventoryStatusId":1,
                                                        "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                        "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                        "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                        "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                        "lotVersionStart":"2026-01-15T00:00:00Z",
                                                        "sequenceNumber":5,
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "kitNumber":5,
                                                        "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                        "kitNumberUTF":"24-1",
                                                        "blockNumber":"245",
                                                        "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    }
                                                ],
                                                "version":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request parameters."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves shipment by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentTO"
                                },
                                "examples":{
                                    "Get Shipment Response":{
                                        "description":"Get Shipment Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "shipmentNumber":"SHIP-000123",
                                            "statusId":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipments",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Site ID.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"Unique ID corresponding to each Order status value (1 for PENDING, 2 for IN TRANSIT, 3 for RECEIVED, 4 for CANCELLED, 5 for LOST, 6 for CONFIRMED, 7 for INVALID, 8 for PENDING DESTRUCTION, 9 for RECEIVED FOR DESTRUCTION, 10 for DESTROYED).",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponse"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-000123",
                                                    "statusId":1,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipment-statuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/List available order status values"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves a list of available order status values. Rights: OrsInventoryGet.",
                "operationId":"getStatuses",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderStatus"
                                    }
                                },
                                "examples":{
                                    "Get Shipment Statuses Response":{
                                        "description":"Get Shipment Statuses Response",
                                        "value":[
                                            {
                                                "id":1,
                                                "status":"PENDING"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipment-statuses-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipment-statuses-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/cancel":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Cancel shipments"
                ],
                "summary":"v1.0",
                "description":"Cancels shipments in the system. Rights: OrsSupplyManagerPost, OrsUnblinded.",
                "operationId":"markCancel",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment IDs to be cancelled.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CancelShipmentRequest"
                            },
                            "examples":{
                                "Cancel Shipments Request":{
                                    "description":"Cancel Shipments Request",
                                    "value":{
                                        "shipmentIds":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ],
                                        "toInventoryStatus":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "Cancel Shipments Response":{
                                        "description":"Cancel Shipments Response",
                                        "value":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid shipment type' or 'Invalid inventory status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-cancel-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-cancel-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/mark-lost":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark shipments as lost"
                ],
                "summary":"v1.0",
                "description":"Marks shipments as Lost in the system. Rights: OrsSupplyManagerPost, OrsUnblinded.",
                "operationId":"markLost_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment IDs to be marked as Lost.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LostShipmentRequest"
                            },
                            "examples":{
                                "Mark Shipments Lost Request":{
                                    "description":"Mark Shipments Lost Request",
                                    "value":{
                                        "shipmentIds":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "Mark Shipments Lost Response":{
                                        "description":"Mark Shipments Lost Response",
                                        "value":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID, 'Study still in design phase', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status' or 'Invalid shipment type'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-mark-lost-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-mark-lost-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Marks kits as received in a study's inventory. Rights: OrsInventoryPost and DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"markSiteOrDepotShipmentReceived",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be assigned.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedRequest"
                            },
                            "examples":{
                                "Mark Shipment Received Request":{
                                    "description":"Mark Shipment Received Request",
                                    "value":{
                                        "receivedDate":"2026-02-24",
                                        "updateNSKits":[
                                            {
                                                "inventoryStatusId":2,
                                                "location":"SITE",
                                                "lotId":"LOT-001",
                                                "labelGroupId":"LABEL-GRP-001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Response":{
                                        "description":"Mark Shipment Received Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "status":"RECEIVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/quarantined":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Quarantine/Update shipment and its kits as quarantined"
                ],
                "summary":"v1.0",
                "description":"Updates the shipment and its kits as quarantined. Rights: OrsInventoryPost, DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"quarantineShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Quarantine shipment request body.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentQuarantineRequestV1"
                            },
                            "examples":{
                                "Quarantine Shipment Request":{
                                    "description":"Quarantine Shipment Request",
                                    "value":{
                                        "tempMonitorStatus":"missing"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Quarantine Shipment Response":{
                                        "description":"Quarantine Shipment Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Server Error Response":{
                                        "description":"Quarantine Shipment Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"quarantineShipment",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Not Found Response":{
                                        "description":"Quarantine Shipment Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"No shipment matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Bad Request Response":{
                                        "description":"Quarantine Shipment Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid shipment quarantine request.",
                                                "details":{
                                                    "field":"tempMonitorStatus",
                                                    "issue":"Allowed values are yes, no, or missing."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-quarantined-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-quarantined-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/receive-quarantined":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Quarantine/Update a quarantined shipment and its kits to received"
                ],
                "summary":"v1.0",
                "description":"Updates a quarantine shipment and its kits. Rights: DepotQuarantinePost.",
                "operationId":"quarantinedShipmentToReceived",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be damaged.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QuarantinedToReceivedRequest"
                            },
                            "examples":{
                                "Receive Quarantined Shipment Request":{
                                    "description":"Receive Quarantined Shipment Request",
                                    "value":{
                                        "damagedKits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "updateNSKits":[
                                            {
                                                "lotId":"D313327EF13845169A8ADADDA435431E",
                                                "kitTypeId":"89EE76326E984B548D594D592E5C7FC2",
                                                "inventoryStatusId":2,
                                                "quantity":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QuarantinedToReceivedResponseV1"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Response":{
                                        "description":"Receive Quarantined Shipment Response",
                                        "value":{
                                            "receivedDate":"2026-02-24T00:00:00Z",
                                            "availableCount":98,
                                            "damagedCount":2
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Bad Request Response":{
                                        "description":"Receive Quarantined Shipment Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "field":"damagedKits",
                                                    "issue":"One or more kits do not belong to the quarantined shipment."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Not Found Response":{
                                        "description":"Receive Quarantined Shipment Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "reason":"No shipment matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Server Error Response":{
                                        "description":"Receive Quarantined Shipment Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":1,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"quarantinedShipmentToReceived",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-receive-quarantined-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-receive-quarantined-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/regenerate-order-form":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Forms/Regenerate order form"
                ],
                "summary":"v1.0",
                "description":"Regenerates order form of a shipment by shipment ID. Rights: BlindedKitOrderFormReportPost.",
                "operationId":"regenerateOrderForm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RegenerateOrderFormResponse"
                                    }
                                },
                                "examples":{
                                    "Regenerate Order Form Response":{
                                        "description":"Regenerate Order Form Response",
                                        "value":[
                                            {
                                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "status":"QUEUED"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Invalid shipment ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment status OR Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-regenerate-order-form-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-regenerate-order-form-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/removeKits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Remove kits from a shipment"
                ],
                "summary":"v1.0",
                "description":"Removes kits from an order shipment. Rights: OrsInventoryDelete, OrsUnblinded.",
                "operationId":"removeKitsFromShipmentPost",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be removed from the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentRemoveKitsRequest"
                            },
                            "examples":{
                                "Remove Kits From Shipment Request":{
                                    "description":"Remove Kits From Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Remove Kits Response":{
                                        "description":"Remove Kits Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-removeKits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-removekits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders/{shipmentId}/confirmed":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Confirm order shipment"
                ],
                "summary":"v1.0",
                "description":"Confirms an order shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"setOrderShipmentConfirmed",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-000123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Set Order Shipment Confirmed Response":{
                                        "description":"Set Order Shipment Confirmed Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "shipmentId":"SHIP-000123",
                                                "shipmentStatus":"CONFIRMED"
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-{shipmentId}-confirmed-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-shipmentid-confirmed-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/orders/{shipmentId}/invalid":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Invalidate order shipment"
                ],
                "summary":"v1.0",
                "description":"Invalidates an order shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"setOrderShipmentInvalid",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-000123"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Set Order Shipment Invalid Response":{
                                        "description":"Set Order Shipment Invalid Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "shipmentId":"SHIP-000123",
                                                "shipmentStatus":"INVALID"
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-orders-{shipmentId}-invalid-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-orders-shipmentid-invalid-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/received-date":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Update received date"
                ],
                "summary":"v1.0",
                "description":"Updates received date for a shipment. Rights: ShipmentReceivedDatePut.",
                "operationId":"updateReceivedDate_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment received date parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedDateRequest"
                            },
                            "examples":{
                                "Update Shipment received Date Request":{
                                    "description":"Update Shipment received Date Request",
                                    "value":{
                                        "receivedDate":"2026-02-24"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Received Date Response":{
                                        "description":"Update Received Date Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid received date' or 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid received date."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-received-date-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-received-date-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/ship-date":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Update shipping date"
                ],
                "summary":"v1.0",
                "description":"Updates shipping date for a shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"updateShipDate_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment ship date parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentShipDateRequest"
                            },
                            "examples":{
                                "Update Shipment Ship Date Request":{
                                    "description":"Update Shipment Ship Date Request",
                                    "value":{
                                        "shipDate":"2026-02-24"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Ship Date Response":{
                                        "description":"Update Ship Date Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid shipped date' or 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid ship date."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-ship-date-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-ship-date-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/shipments/{shipmentId}/tracking":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Tracking/Update tracking details for an order shipment"
                ],
                "summary":"v1.0",
                "description":"Updates tracking details for an order shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"updateTrackingDetails_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Shipment Tracking Details parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentTrackingDetailsRequest"
                            },
                            "examples":{
                                "Update Tracking Details Request":{
                                    "description":"Update Tracking Details Request",
                                    "value":{
                                        "trackingNumber":"1Z9999999999999999",
                                        "trackingNumberUrl":"https://www.ups.com/track"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Tracking Details Response":{
                                        "description":"Update Tracking Details Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-shipments-{shipmentId}-tracking-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-shipments-shipmentid-tracking-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/received/kits":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Update status of a received kit"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Updates the status of a received kit in the system. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"updateReceivedKitsStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be updated along with the new status value.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentUpdateKitsRequest"
                            },
                            "examples":{
                                "Update Received Kits Status Request":{
                                    "description":"Update Received Kits Status Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "toInventoryStatus":2
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Update Received Kits Status Response":{
                                        "description":"Update Received Kits Status Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "receivedDate":"2026-02-24T06:30:00Z",
                                            "damagedCount":0,
                                            "missingCount":0,
                                            "preQuarantinedCount":1,
                                            "availableCount":4
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit', 'Invalid inventory status value'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid update request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-received-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-received-kits-put"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Add additional kits to a received shipment"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Adds additional kits to a received shipment in the system. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"addKitsToReceivedShipment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be added to the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentAddKitsRequest"
                            },
                            "examples":{
                                "Add Kits To Shipment Request":{
                                    "description":"Add Kits To Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Add Kits To Shipment Response":{
                                        "description":"Add Kits To Shipment Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid kit', 'Invalid shipment status value'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid add kits request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-received-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-received-kits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/received/eligible-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits eligible to be received against a shipment"
                ],
                "summary":"v1.0",
                "description":"Retrieves all kits eligible to be received against a shipment. Rights: OrsSupplyManagerGet and OrsBlinded.",
                "operationId":"getEligibleKitsForReceived",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentRecvEligibleKitsResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits For Received Response":{
                                        "description":"Get Eligible Kits For Received Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-received-eligible-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-received-eligible-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves either all kits or a specific kit (if kit number is provided) for a shipment. Rights: OrsSupplyManagerGet and OrsBlinded.",
                "operationId":"getSiteKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-000123"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteShipmentKitsTO"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "kits":[
                                            ],
                                            "paging":{
                                                "offset":0,
                                                "limit":100,
                                                "total":0
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received for a given site"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Marks kits as Received in a site's inventory for a given study. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"markReceived",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be assigned.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedRequest"
                            },
                            "examples":{
                                "Mark Shipment Received Request":{
                                    "description":"Mark Shipment Received Request",
                                    "value":{
                                        "receivedDate":"2026-02-24",
                                        "updateNSKits":[
                                            {
                                                "inventoryStatusId":2,
                                                "location":"SITE",
                                                "lotId":"LOT-001",
                                                "labelGroupId":"LABEL-GRP-001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Response":{
                                        "description":"Mark Shipment Received Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "receivedDate":"2026-02-24T06:30:00Z",
                                            "damagedCount":0,
                                            "missingCount":0,
                                            "preQuarantinedCount":1,
                                            "availableCount":4
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid received request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get a shipment's details by ID for a site"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a shipment's details by ID for a site. Rights: OrsSupplyManagerGet and OrsBlinded.",
                "operationId":"getShipment_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteUserShipmentTOV2"
                                },
                                "examples":{
                                    "Get Site Shipment Response":{
                                        "description":"Get Site Shipment Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a site"
                ],
                "summary":"v2.0",
                "description":"Searches for shipments associated with a site by site ID. Rights: OrsSupplyManagerGet and OrsBlinded.",
                "operationId":"getShipments_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Site Shipments Response":{
                                        "description":"Get Site Shipments Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID',  'Study still in Draft (design phase)', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"No shipments found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves either all kits or a specific kit (if a kit number is provided) for a shipment. Rights: OrsSupplyManagerGet and OrsBlinded. Adds fields to return the kit description and packaging type.",
                "operationId":"getSiteKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-000123"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteShipmentKitsTOV2"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Response":{
                                        "description":"Get Site Shipment Kits Response",
                                        "value":{
                                            "kits":[
                                                {
                                                    "kitNumber":"KIT-000123"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"No kits found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received for a given site"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Marks kits as Received in a site's inventory for a given study. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"markReceived_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be assigned.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Response":{
                                        "description":"Mark Shipment Received Response",
                                        "value":{
                                            "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "status":"RECEIVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid received request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Shipment not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Initiate manual resupply to a site"
                ],
                "summary":"v2.0",
                "description":"Initiates manual resupply to a site. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"siteInitiatedManualResupply",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"SiteID and reason to request manual resupply.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteManualResupplyRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Site Initiated Manual Resupply Response":{
                                        "description":"Site Initiated Manual Resupply Response",
                                        "value":[
                                            {
                                                "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Manual shipment is not allowed for this study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid manual resupply request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Site not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/studyversions/{version}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Study Import APIs/Update study version"
                ],
                "summary":"v1.0",
                "description":"Updates a study's version. Rights: OrsImportDesignPost.",
                "operationId":"updateStudyVersion",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Version of the study.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "description":"Study version parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyVersionRequest"
                            },
                            "examples":{
                                "Update Study Version Request":{
                                    "description":"Update Study Version Request",
                                    "value":{
                                        "version":"1.0.0.6"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Update Study Version Response":{
                                        "description":"Update Study Version Response",
                                        "value":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Study Version Server Error Response":{
                                        "description":"Update Study Version Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"STUDY-500",
                                                "errorMessage":"Unexpected error while updating study version."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study version not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Study Version Not Found Response":{
                                        "description":"Update Study Version Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"STUDY-404",
                                                "errorMessage":"Study version not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid study version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Study Version Bad Request Response":{
                                        "description":"Update Study Version Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"STUDY-400",
                                                "errorMessage":"Invalid study version update request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-studyversions-{version}-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-studyversions-version-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/{siteId}/subjects":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Subject APIs/Get a list of all subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all subjects based on study ID and site ID. Rights: DataCaptureSubjectGet.",
                "operationId":"getDCSSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DCSSubject"
                                    }
                                },
                                "examples":{
                                    "Get DCS Subjects Response":{
                                        "description":"Get DCS Subjects Response",
                                        "value":[
                                            {
                                                "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "screeningNumber":"SCR-0001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"The study identifier <studyGUID> does not match any study identifiers in Clinical One or site not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"No subjects found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-{siteId}-subjects-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-siteid-subjects-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/randomized":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Subject APIs/Get a list of all randomized subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of all randomized subjects in a study. Rights: DataCaptureSubjectGet.",
                "operationId":"getRandomizedSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DCSSubject"
                                    }
                                },
                                "examples":{
                                    "Get Randomized Subjects Response":{
                                        "description":"Get Randomized Subjects Response",
                                        "value":[
                                            {
                                                "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "versionStart":"2026-02-21T06:45:00Z",
                                                "description":"Subject randomized into Treatment Arm A.",
                                                "subjectNumber":"SUBJ-001",
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "siteId":"82558921FCF14D2E9DA23FEDD57DDF7C",
                                                "dob":"1989-05-14",
                                                "screeningDate":"2026-02-14",
                                                "state":"Active",
                                                "stateDate":"2026-02-21",
                                                "informedConsentDate":"2026-02-10",
                                                "gender":"Female",
                                                "subjectTransferId":"E413327EF13845169A8ADADDA435431F",
                                                "studyVersion":"1.0.0.5",
                                                "codeBreak":"Treatment arm A",
                                                "mhealthSubjectId":"F513327EF13845169A8ADADDA4354320",
                                                "randomized":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SUBJECT-500",
                                                "errorMessage":"Unexpected error while retrieving randomized subjects.",
                                                "details":{
                                                    "operation":"getRandomizedSubjects",
                                                    "reason":"The randomized subject lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-randomized-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-randomized-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/visits/{visitId}/status":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Subject APIs/Retrieves the visit date for a particular subject ID and visit ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves the visit date for completed visits; null for visits not completed.",
                "operationId":"getSubjectVisitStatus",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number of the unscheduled visit",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectVisitsStatusResponse"
                                },
                                "examples":{
                                    "Get Subject Visit Status Response":{
                                        "description":"Get Subject Visit Status Response",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "visits":[
                                                        {
                                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                            "versionStart":"2026-02-24T09:15:00Z",
                                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "eventId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "siteId":"82558921FCF14D2E9DA23FEDD57DDF7C",
                                                            "studyVersion":"1.0.0.5",
                                                            "visitStatus":"COMPLETE",
                                                            "reason":"Subject completed the visit successfully",
                                                            "comment":"All required visit data was entered and verified.",
                                                            "visitStartDate":"2026-02-24T09:00:00Z",
                                                            "visitType":"DISPENSATION",
                                                            "eventType":"Visit_Complete"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SUBJECT-500",
                                                "errorMessage":"Unexpected error while retrieving subject visit status.",
                                                "details":{
                                                    "operation":"getSubjectVisitStatus",
                                                    "reason":"The subject visit status lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SUBJECT-400",
                                                "errorMessage":"The subject visit status request is invalid.",
                                                "details":{
                                                    "field":"instanceNumber",
                                                    "reason":"Instance number cannot be negative."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-visits-{visitId}-status-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-visits-visitid-status-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/titration-impact":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Subject APIs/Check if titration has any impact on kit dispensation"
                ],
                "summary":"v1.0",
                "description":"Checks whether titration has any impact on kit dispensation or not. Rights: OrsRandListGet.",
                "operationId":"getTitrationImpact",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"treatmentId",
                        "in":"query",
                        "description":"Treatment ID of the subject.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/TitrationImpactTO"
                                },
                                "examples":{
                                    "Get Titration Impact Response":{
                                        "description":"Get Titration Impact Response",
                                        "value":{
                                            "impact":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SUBJECT-500",
                                                "errorMessage":"Unexpected error while evaluating titration impact.",
                                                "details":{
                                                    "operation":"getTitrationImpact",
                                                    "reason":"The titration impact check failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SUBJECT-400",
                                                "errorMessage":"The titration impact request is invalid.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject is invalid or not randomized."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-titration-impact-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-titration-impact-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves supply settings by study ID.<br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV1"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":true,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":true,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "waitDaysBeforeNotifying":2,
                                            "shipmentPrefixType":"DEPOTID",
                                            "customShipmentIdPrefix":"SomePrefix"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Server Error Response":{
                                        "description":"Get Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-500",
                                                "errorMessage":"Unexpected error while retrieving supply settings.",
                                                "details":{
                                                    "operation":"getSupplySettings",
                                                    "reason":"The supply settings lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Updates supply settings of a study by study ID. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are: clinical supply manager and site manager.",
                "operationId":"updateSupplySettings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV1"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":true,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":true,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "waitDaysBeforeNotifying":2,
                                        "shipmentPrefixType":"DEPOTID",
                                        "customShipmentIdPrefix":"SomePrefix"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Not Found Response":{
                                        "description":"Update Supply Settings Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-404",
                                                "errorMessage":"Supply settings were not found for the study.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Bad Request Response":{
                                        "description":"Update Supply Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-400",
                                                "errorMessage":"The supply settings update request is invalid.",
                                                "details":{
                                                    "field":"shipmentPrefixType",
                                                    "reason":"The shipment prefix type must be DEPOTID, CUSTOM, or NONE."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Server Error Response":{
                                        "description":"Update Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-500",
                                                "errorMessage":"Unexpected error while updating supply settings.",
                                                "details":{
                                                    "operation":"updateSupplySettings",
                                                    "reason":"The supply settings update failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Retrieves supply settings. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV2"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":true,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":true,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "waitDaysBeforeNotifying":2,
                                            "shipmentPrefixType":"DEPOTID",
                                            "customShipmentIdPrefix":"SomePrefix"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Server Error Response":{
                                        "description":"Get Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-500",
                                                "errorMessage":"Unexpected error while retrieving supply settings.",
                                                "details":{
                                                    "operation":"getSupplySettings",
                                                    "reason":"The supply settings lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Updates a study's supply settings by study ID. <br> Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"SupplySettingTO parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV2"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":true,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":true,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "waitDaysBeforeNotifying":2,
                                        "shipmentPrefixType":"DEPOTID",
                                        "customShipmentIdPrefix":"SomePrefix"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Not Found Response":{
                                        "description":"Update Supply Settings Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-404",
                                                "errorMessage":"Supply settings were not found for the study.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Bad Request Response":{
                                        "description":"Update Supply Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-400",
                                                "errorMessage":"The supply settings update request is invalid.",
                                                "details":{
                                                    "field":"shipmentPrefixType",
                                                    "reason":"The shipment prefix type must be DEPOTID, CUSTOM, or NONE."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Server Error Response":{
                                        "description":"Update Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SETTINGS-500",
                                                "errorMessage":"Unexpected error while updating supply settings.",
                                                "details":{
                                                    "operation":"updateSupplySettings",
                                                    "reason":"The supply settings update failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/titration-eligible":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Titration APIs/Check if subject is eligible for titration"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Checks if subject is eligible for titration. This is a new version of the API for returning additional attributes for titration kit label. Rights: OrsSubjectVisitGet.",
                "operationId":"isTitrationAllowedForSubject",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitKitTypeTO"
                                    }
                                },
                                "examples":{
                                    "Titration Eligible Response":{
                                        "description":"Titration Eligible Response",
                                        "value":[
                                            {
                                                "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitsDispensed":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For a subject who cannot be titrated as there are no titration kits dispensed to the subject earlier OR Subject cannot be titrated as no matching kits are defined with subject dispensations. ORInvalid subject OR Missing subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request Response":{
                                        "description":"Bad Request Response",
                                        "value":{
                                            "error":{
                                                "message":"Invalid titration eligible request."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Visit not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found Response":{
                                        "description":"Not Found Response",
                                        "value":{
                                            "error":{
                                                "message":"Subject not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error Response":{
                                        "description":"Server Error Response",
                                        "value":{
                                            "error":{
                                                "message":"Unexpected error."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-titration-eligible-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-titration-eligible-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/allowed-doseholds":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits allowed for dose hold"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Get kits allowed for dose hold in the current visit for a given subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getAllowedDoseHold",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.5"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKitsResponse"
                                },
                                "examples":{
                                    "Allowed Dose Hold Response":{
                                        "description":"Allowed Dose Hold Response",
                                        "value":{
                                            "status":"ALLOW_DOSE_HOLD",
                                            "kitsAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "trialSupplyType":"BOTTLE",
                                                    "deviceType":"ActivityWatch",
                                                    "blindedTItrationLabel":"Low dose",
                                                    "isTitration":true,
                                                    "reason":null
                                                }
                                            ],
                                            "kitsNotAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"E413327EF13845169A8ADADDA435431F",
                                                    "kitDescription":"Kit B",
                                                    "trialSupplyType":"DEVICE",
                                                    "deviceType":"Spirometer",
                                                    "blindedTItrationLabel":"Maintenance dose",
                                                    "isTitration":false,
                                                    "reason":"DOSE_HOLD_VISIT_NOT_STARTED"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Hold Bad Request Response":{
                                        "description":"Allowed Dose Hold Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The allowed dose hold request is invalid.",
                                                "details":{
                                                    "field":"studyVersion",
                                                    "reason":"The study version is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Hold Server Error Response":{
                                        "description":"Allowed Dose Hold Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dose hold eligibility.",
                                                "details":{
                                                    "operation":"getAllowedDoseHold",
                                                    "reason":"The dose hold eligibility lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-allowed-doseholds-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-allowed-doseholds-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codebreak":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code break"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves code break. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreak",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Code view parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code Break Request":{
                                    "description":"Code Break Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code Break Response":{
                                        "description":"Code Break Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Not Found Response":{
                                        "description":"Code Break Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Code break information was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have code break data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Bad Request Response":{
                                        "description":"Code Break Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The code break request is invalid.",
                                                "details":{
                                                    "field":"adverseEvent",
                                                    "reason":"The adverse event flag must be 0 or 1."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Server Error Response":{
                                        "description":"Code Break Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving code break information.",
                                                "details":{
                                                    "operation":"getCodeBreak",
                                                    "reason":"The code break lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codebreak-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-srcsubjectid-codebreak-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codeview":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code view"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves code view. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeView",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Code view parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code View Request":{
                                    "description":"Code View Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code View Response":{
                                        "description":"Code View Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Not Found Response":{
                                        "description":"Code View Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Code view information was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have code view data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Bad Request Response":{
                                        "description":"Code View Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The code view request is invalid.",
                                                "details":{
                                                    "field":"adverseEvent",
                                                    "reason":"The adverse event flag must be 0 or 1."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Server Error Response":{
                                        "description":"Code View Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving code view information.",
                                                "details":{
                                                    "operation":"getCodeView",
                                                    "reason":"The code view lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codeview-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-srcsubjectid-codeview-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: ",
                "operationId":"getDispensationHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":10001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:45:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitDescription":"Bottle of tablets"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Not Found Response":{
                                        "description":"Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No dispensation history was found for the subject visit.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"The subject does not have dispensation history for the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Bad Request Response":{
                                        "description":"Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The dispensation history request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Server Error Response":{
                                        "description":"Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dispensation history.",
                                                "details":{
                                                    "operation":"getDispensationHistory",
                                                    "reason":"The dispensation history lookup could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/visits/{visitId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation info for a subject"
                ],
                "summary":"v1.0",
                "description":"Retrieves dispensation info of the most recent dispensation or all previous dispensations for a study by subject and visit ID. Rights: OrsUnblinded.",
                "operationId":"getDispensationInfo",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"dispensationInfo",
                        "in":"query",
                        "description":"Dispensation info required [last/previous]",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":true
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        }
                    },
                    {
                        "name":"includeUnScheduledVisits",
                        "in":"query",
                        "description":"Include unscheduled visits [Y/N]",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"includeReplacementVisits",
                        "in":"query",
                        "description":"Include replacement visits [Y/N]",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationInfoResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation Info Response":{
                                        "description":"Dispensation Info Response",
                                        "value":[
                                            {
                                                "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "visitName":"Week1",
                                                "eventInstanceNumber":2,
                                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                "kitType":"KitA",
                                                "kitDescription":"Kit A description paracetamol 5mg",
                                                "dateDispensed":"2026-02-21T06:45:00Z",
                                                "dosage":0.5,
                                                "quantity":3,
                                                "isHeld":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or visit ID OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation Info Not Found Response":{
                                        "description":"Dispensation Info Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Dispensation information was not found for the subject visit.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The subject does not have dispensation information for the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation Info Bad Request Response":{
                                        "description":"Dispensation Info Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The dispensation info request is invalid.",
                                                "details":{
                                                    "field":"dispensationInfo",
                                                    "reason":"The dispensation info flag must be true."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation Info Server Error Response":{
                                        "description":"Dispensation Info Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dispensation information.",
                                                "details":{
                                                    "operation":"getDispensationInfo",
                                                    "reason":"The dispensation information lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-visits-{visitId}-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-visits-visitid-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/doseheld-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dose hold history"
                ],
                "summary":"v1.0",
                "description":"Get dose hold history for current subject. Rights: OrsSubjectVisitGet",
                "operationId":"getDoseHeldHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDoseHeldHistoryTO"
                                },
                                "examples":{
                                    "Dose Held History Response":{
                                        "description":"Dose Held History Response",
                                        "value":[
                                            {
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "canBeDispensed":true,
                                                "objectVersionNumber":5,
                                                "userId":"A1B8327AFAA6412287106192AB5984EF",
                                                "versionStart":"2026-02-21T06:45:00Z",
                                                "versionEnd":"2026-02-28T06:45:00Z",
                                                "instanceNumber":2
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held History Bad Request Response":{
                                        "description":"Dose Held History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The dose held history request is invalid.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held History Server Error Response":{
                                        "description":"Dose Held History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dose held history.",
                                                "details":{
                                                    "operation":"getDoseHeldHistory",
                                                    "reason":"The dose held history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-doseheld-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-doseheld-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subject-doseholds":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Dose Hold Subject Visits APIs/Get visits on dose hold for all subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves the visits marked with dose hold for all subjects.",
                "operationId":"getDoseholdSubjectVisits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Subjects list parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DoseholdSubjectsRequestV1"
                            },
                            "examples":{
                                "Dose Hold Subjects Request":{
                                    "description":"Dose Hold Subjects Request",
                                    "value":{
                                        "subjects":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseholdSubjectsResponseV1"
                                },
                                "examples":{
                                    "Dose Hold Subjects Response":{
                                        "description":"Dose Hold Subjects Response",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "instanceNumber":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subject-doseholds-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subject-doseholds-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/locally-sourced-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings for a Subject ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves locally sourced kit settings for a Subject ID.",
                "operationId":"getLocallySourcedKitSettings_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/LocallySourceKitsResponseV1"
                                    }
                                },
                                "examples":{
                                    "Locally Sourced Kits Response":{
                                        "description":"Locally Sourced Kits Response",
                                        "value":[
                                            {
                                                "kitDescription":"Locally sourced inhaler",
                                                "deviceType":"Spirometer",
                                                "deviceConnection":"DevicetoCloud",
                                                "trialSupplyType":"DEVICE",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "instanceNumber":1,
                                                "userId":"A1B8327AFAA6412287106192AB5984EF",
                                                "dispensationDate":"2026-02-21T06:45:00Z",
                                                "quantity":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Locally Sourced Kits Server Error Response":{
                                        "description":"Locally Sourced Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving locally sourced kits.",
                                                "details":{
                                                    "operation":"getLocallySourcedKitSettings",
                                                    "reason":"The locally sourced kits lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-locally-sourced-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-externalsubjectid-locally-sourced-kits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subject-partial-dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Partial Dispensation Subject Visits APIs/Get visits with partial dispensation for all subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves visits marked with partial dispensation for all subjects",
                "operationId":"getPartialDispensationSubjectVisits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Subjects list parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/PartialDispensationSubjectsRequestV1"
                            },
                            "examples":{
                                "Partial Dispensation Subjects Request":{
                                    "description":"Partial Dispensation Subjects Request",
                                    "value":{
                                        "subjects":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PartialDispensationSubjectsResponseV1"
                                },
                                "examples":{
                                    "Partial Dispensation Subjects Response":{
                                        "description":"Partial Dispensation Subjects Response",
                                        "value":{
                                            "subjects":[
                                                {
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "instanceNumber":1,
                                                    "dispensationAllowed":true,
                                                    "visitDate":"2026-02-21T06:45:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subject-partial-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subject-partial-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/randomization-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get randomization history"
                ],
                "summary":"v1.0",
                "description":"Retrieves randomization history. Rights: OrsSubjectVisitGet.",
                "operationId":"getRandomizationHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Randomization History Response":{
                                        "description":"Randomization History Response",
                                        "value":[
                                            {
                                                "randNumber":1001,
                                                "randomizationDate":"2026-02-21T06:45:00Z"
                                            },
                                            {
                                                "randNumber":1002,
                                                "randomizationDate":"2026-02-28T09:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization History Not Found Response":{
                                        "description":"Randomization History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Randomization history was not found for the subject.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"The subject does not have randomization history."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization History Server Error Response":{
                                        "description":"Randomization History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving randomization history.",
                                                "details":{
                                                    "operation":"getRandomizationHistory",
                                                    "reason":"The randomization history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-randomization-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-externalsubjectid-randomization-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/reuse-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get reusable kits"
                ],
                "summary":"v1.0",
                "description":"Get previously dispensed kits that can be reused in the current visit for a given subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getReusableKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.5"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"titrationOption",
                        "in":"query",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"up"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReusableKitsResponseV1"
                                },
                                "examples":{
                                    "Reusable Kits Response":{
                                        "description":"Reusable Kits Response",
                                        "value":{
                                            "status":"ALLOW",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "consumeAcrossDoses":true,
                                                    "dose":5,
                                                    "measurement":"mg",
                                                    "frequency":"QD",
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Bad Request Response":{
                                        "description":"Reusable Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The reusable kits request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Server Error Response":{
                                        "description":"Reusable Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving reusable kits.",
                                                "details":{
                                                    "operation":"getReusableKits",
                                                    "reason":"The reusable kit lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-reuse-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-reuse-kits-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves previously dispensed kits, from a list of kit types passed in the request body, that can be reused in the current visit for a given subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getReusableDoseHoldKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Contains details for getting reusable kits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDoseHoldRequest"
                            },
                            "examples":{
                                "Reusable Dose Hold Kits Request":{
                                    "description":"Reusable Dose Hold Kits Request",
                                    "value":{
                                        "studyVersion":"1.0.0.5",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":2,
                                        "titrationOption":"up",
                                        "kitTypesForDoseHold":[
                                            {
                                                "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"Spirometer",
                                                "isTitration":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReusableKitsResponseV1"
                                },
                                "examples":{
                                    "Reusable Dose Hold Kits Response":{
                                        "description":"Reusable Dose Hold Kits Response",
                                        "value":{
                                            "status":"ALLOW",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "consumeAcrossDoses":true,
                                                    "dose":5,
                                                    "measurement":"mg",
                                                    "frequency":"QD",
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Dose Hold Kits Bad Request Response":{
                                        "description":"Reusable Dose Hold Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The reusable dose hold kits request is invalid.",
                                                "details":{
                                                    "field":"kitTypesForDoseHold",
                                                    "reason":"At least one kit type is required."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Dose Hold Kits Server Error Response":{
                                        "description":"Reusable Dose Hold Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving reusable dose hold kits.",
                                                "details":{
                                                    "operation":"getReusableDoseHoldKits",
                                                    "reason":"The reusable dose hold kit lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-reuse-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-reuse-kits-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subject/{subjectId}/details":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get treatment arm and cohort for a subject"
                ],
                "summary":"v1.0",
                "description":"Retrieves a subject's treatment arm and cohort. Rights: DataCaptureSubjectGet, ORSUnblinded.",
                "operationId":"getSubjectDetails",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTrtArmResponseV1"
                                },
                                "examples":{
                                    "Subject Details Response":{
                                        "description":"Subject Details Response",
                                        "value":{
                                            "treatmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "cohortId":"D313327EF13845169A8ADADDA435431E",
                                            "randomizationDate":"2023-07-26T10:43:40.494Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Details Not Found Response":{
                                        "description":"Subject Details Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Subject details were not found.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject does not have treatment details."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Details Server Error Response":{
                                        "description":"Subject Details Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving subject details.",
                                                "details":{
                                                    "operation":"getSubjectDetails",
                                                    "reason":"The subject details lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subject-{subjectId}-details-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subject-subjectid-details-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/treatment":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get subject treatment"
                ],
                "summary":"v1.0",
                "description":"Retrieves a subject's treatment. Rights: OrsSubjectVisitGet.",
                "operationId":"getSubjectTreatment",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTreatmentResponse"
                                },
                                "examples":{
                                    "Subject Treatment Response":{
                                        "description":"Subject Treatment Response",
                                        "value":{
                                            "treatmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "treatmentTitle":"TA"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment Not Found Response":{
                                        "description":"Subject Treatment Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Treatment information was not found for the subject.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject does not have treatment details."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment Bad Request Response":{
                                        "description":"Subject Treatment Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The subject treatment request is invalid.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Invalid treatment found for the subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment Server Error Response":{
                                        "description":"Subject Treatment Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving subject treatment information.",
                                                "details":{
                                                    "operation":"getSubjectTreatment",
                                                    "reason":"The subject treatment lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-treatment-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-treatment-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{subjectId}/doseheld":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits which are marked as dose hold"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Get kits which are marked as dose hold in the current visit. Rights: OrsSubjectVisitGet.",
                "operationId":"getSubjectVisitDoseHeldKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKit"
                                },
                                "examples":{
                                    "Dose Held Kits Response":{
                                        "description":"Dose Held Kits Response",
                                        "value":{
                                            "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "kitDescription":"Kit A",
                                            "trialSupplyType":"BOTTLE",
                                            "deviceType":"ActivityWatch",
                                            "blindedTItrationLabel":"Low dose",
                                            "isTitration":true,
                                            "reason":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Bad Request Response":{
                                        "description":"Dose Held Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The dose held kits request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Server Error Response":{
                                        "description":"Dose Held Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dose held kits.",
                                                "details":{
                                                    "operation":"getSubjectVisitDoseHeldKits",
                                                    "reason":"The dose held kit lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{subjectId}-doseheld-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-subjectid-doseheld-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subject-treatment":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects IDs"
                ],
                "summary":"v1.0",
                "description":"Retrieves a subject's treatment. Rights: DataCaptureSubjectGet.",
                "operationId":"getSubjectsTrtArm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"id",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTrtArmResponseV1"
                                },
                                "examples":{
                                    "Subject Treatment By IDs Response":{
                                        "description":"Subject Treatment By IDs Response",
                                        "value":{
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "treatmentId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment By IDs Not Found Response":{
                                        "description":"Subject Treatment By IDs Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Treatment information was not found for the subject list.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"No matching subjects were found."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment By IDs Server Error Response":{
                                        "description":"Subject Treatment By IDs Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving subject treatment information.",
                                                "details":{
                                                    "operation":"getSubjectsTrtArm",
                                                    "reason":"The subject treatment lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subject-treatment-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subject-treatment-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves treatment arms for a list of subjects in a study, passed in the request body. Rights: DataCaptureSubjectGet.",
                "operationId":"getSubjectsTreatArm",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Subjects list parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectsRequestV1"
                            },
                            "examples":{
                                "Subject Treatment Request":{
                                    "description":"Subject Treatment Request",
                                    "value":{
                                        "subjects":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectTrtArmResponseV1"
                                },
                                "examples":{
                                    "Subject Treatment Request Response":{
                                        "description":"Subject Treatment Request Response",
                                        "value":{
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "treatmentId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment Request Not Found Response":{
                                        "description":"Subject Treatment Request Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Treatment information was not found for the subject list.",
                                                "details":{
                                                    "field":"subjects",
                                                    "reason":"No matching subjects were found."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Treatment Request Server Error Response":{
                                        "description":"Subject Treatment Request Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving subject treatment information.",
                                                "details":{
                                                    "operation":"getSubjectsTreatArm",
                                                    "reason":"The subject treatment lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subject-treatment-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subject-treatment-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Retrieves unblinded dispensation history for all subjects within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedAllDispHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        }
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DispensationHistoryResponseForAllSubjectV1"
                                },
                                "examples":{
                                    "Unblinded Dispensation History For All Subjects Response":{
                                        "description":"Unblinded Dispensation History For All Subjects Response",
                                        "value":[
                                            {
                                                "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "instanceNumber":1,
                                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                "kitNumber":10001,
                                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                "inventoryStatusId":4,
                                                "inventoryStatus":"Dispensed",
                                                "dispensationDate":"2026-02-24T00:00:00Z",
                                                "barcode":"61234",
                                                "dispensationConfirmed":true,
                                                "dose":1,
                                                "measurement":"mg",
                                                "frequency":"Once daily",
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "conserved":false,
                                                "kitNumberUTF":"KIT-000123"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History For All Subjects Not Found Response":{
                                        "description":"Unblinded Dispensation History For All Subjects Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded dispensation history was found.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"No matching subject dispensation history exists."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History For All Subjects Server Error Response":{
                                        "description":"Unblinded Dispensation History For All Subjects Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded dispensation history.",
                                                "details":{
                                                    "operation":"getUnblindedAllDispHistory",
                                                    "reason":"The unblinded dispensation history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history"
                ],
                "summary":"v1.0",
                "description":"Retrieves history of unblinded dispensation for a subject within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedDispensationHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedDispensationHistoryDTO"
                                },
                                "examples":{
                                    "Unblinded Dispensation History By Subject Response":{
                                        "description":"Unblinded Dispensation History By Subject Response",
                                        "value":{
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Bottle kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE",
                                                    "dispensationDetails":[
                                                        {
                                                            "kitNumber":10001,
                                                            "inventoryStatus":4,
                                                            "dispensationDate":"2026-02-21T06:45:00Z"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Not Found Response":{
                                        "description":"Unblinded Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Unblinded dispensation history was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have unblinded dispensation history."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Bad Request Response":{
                                        "description":"Unblinded Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The unblinded dispensation history request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Server Error Response":{
                                        "description":"Unblinded Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded dispensation history.",
                                                "details":{
                                                    "operation":"getUnblindedDispensationHistory",
                                                    "reason":"The unblinded dispensation history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-srcsubjectid-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/unblinded-rand-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded randomization history"
                ],
                "summary":"v1.0",
                "description":"Retrieves history of unblinded randomizations for a subject within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedRandHistory",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedRandomizationHistoryDTO"
                                },
                                "examples":{
                                    "Unblinded Randomization History Response":{
                                        "description":"Unblinded Randomization History Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4,
                                                    "description":"TA",
                                                    "externalTreatmentId":"TRT-A",
                                                    "visitId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History Not Found Response":{
                                        "description":"Unblinded Randomization History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Unblinded randomization history was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have unblinded randomization history."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History Server Error Response":{
                                        "description":"Unblinded Randomization History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded randomization history.",
                                                "details":{
                                                    "operation":"getUnblindedRandHistory",
                                                    "reason":"The unblinded randomization history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-unblinded-rand-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-srcsubjectid-unblinded-rand-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/unblinded-rand-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded randomization history for all subjects"
                ],
                "summary":"v1.0",
                "description":"Retrieves unblinded randomization history for all subjects within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedRandHistoryForAllSubjects",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedRandomizationHistoryDTO"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Response":{
                                        "description":"Unblinded Randomization History For All Subjects Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4,
                                                    "description":"TA",
                                                    "externalTreatmentId":"TRT-A",
                                                    "visitId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Not Found Response":{
                                        "description":"Unblinded Randomization History For All Subjects Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded randomization history was found.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"No matching subject randomization history exists."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Server Error Response":{
                                        "description":"Unblinded Randomization History For All Subjects Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded randomization history.",
                                                "details":{
                                                    "operation":"getUnblindedRandHistoryForAllSubjects",
                                                    "reason":"The unblinded randomization history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-unblinded-rand-history-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-unblinded-rand-history-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit by its visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"mg",
                                                    "frequency":"QD",
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "quantity":1,
                                                    "lotId":"A1B8327AFAA6412287106192AB5984EF",
                                                    "lotNumber":"LOT20240605A"
                                                }
                                            ],
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"TA",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":0,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Not Found Response":{
                                        "description":"Get Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"The visit was not found for the subject.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The subject does not have the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Bad Request Response":{
                                        "description":"Get Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The visit request is invalid.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"The subject identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Server Error Response":{
                                        "description":"Get Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving the visit.",
                                                "details":{
                                                    "operation":"getVisit",
                                                    "reason":"The visit lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "Subject Visit Request":{
                                    "description":"Subject Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2018-11-23 08:43:01",
                                        "parameters":[
                                            {
                                                "formId":"B1B8327AFAA6412287106192AB5984EF",
                                                "itemId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "value":"A"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Subject Visit Response":{
                                        "description":"Subject Visit Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"mg",
                                                    "frequency":"QD",
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "quantity":1,
                                                    "lotId":"A1B8327AFAA6412287106192AB5984EF",
                                                    "lotNumber":"LOT20240605A",
                                                    "dosingInstruction":"Take one capsule daily"
                                                }
                                            ],
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"TA",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":0,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Visit Server Error Response":{
                                        "description":"Subject Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while processing the subject visit.",
                                                "details":{
                                                    "operation":"visit",
                                                    "reason":"The visit could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/visits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get list of visits"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of visits.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getVisits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Visit"
                                    }
                                },
                                "examples":{
                                    "Visits Response":{
                                        "description":"Visits Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "externalVisitId":"Week 1",
                                                "visitNumber":1,
                                                "nextVisitDays":7,
                                                "windowBeforeDays":2,
                                                "windowAfterDays":2,
                                                "isRepeating":false,
                                                "isScheduled":true,
                                                "isDispensation":true,
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "isRequiredValue":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visits Not Found Response":{
                                        "description":"Visits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Visits were not found for the study.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The supplied study does not contain visit data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visits Server Error Response":{
                                        "description":"Visits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving visits.",
                                                "details":{
                                                    "operation":"getVisits",
                                                    "reason":"The visit lookup could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-visits-get",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-visits-get"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/visits/migrateDispensation":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Migrate dispensation"
                ],
                "summary":"v1.0",
                "description":"Migrates dispensation records",
                "operationId":"migrationDispensation",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MigrationRequestV2"
                            },
                            "examples":{
                                "Migrate Dispensation Request":{
                                    "description":"Migrate Dispensation Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1,
                                        "studyVersion":"1.0.0.5",
                                        "kits":[
                                            {
                                                "sequenceNumber":10001,
                                                "statusId":4,
                                                "locationId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ],
                                        "randomNumber":1001,
                                        "randomizationListId":"D313327EF13845169A8ADADDA435431E",
                                        "visitTimestamp":"2026-02-21 06:45:00"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Migrate Dispensation Response":{
                                        "description":"Migrate Dispensation Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "quantity":1,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"TA"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Migrate Dispensation Server Error Response":{
                                        "description":"Migrate Dispensation Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while migrating dispensation data.",
                                                "details":{
                                                    "operation":"migrationDispensation",
                                                    "reason":"The migration request could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-visits-migrateDispensation-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-visits-migratedispensation-post"
            }
        },
        "/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/replacekits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Replace a subject's kits"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Replaces a subject's kits in the system. Rights: OrsVisitManagementPost.",
                "operationId":"replaceSubjectKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Subject replace kits parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectReplaceKitsRequest"
                            },
                            "examples":{
                                "Replace Subject Kits Request":{
                                    "description":"Replace Subject Kits Request",
                                    "value":{
                                        "kits":[
                                            10001,
                                            10002
                                        ],
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Damaged kits reported by the subject"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectReplaceKitsResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Response":{
                                        "description":"Replace Subject Kits Response",
                                        "value":{
                                            "replacedKits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "quantity":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Not Found Response":{
                                        "description":"Replace Subject Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"The subject kits to replace were not found.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have matching kits for replacement."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or this operation is not allowed during the current subject statusOr invalid kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Bad Request Response":{
                                        "description":"Replace Subject Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The subject kit replacement request is invalid.",
                                                "details":{
                                                    "field":"kits",
                                                    "reason":"At least one replacement kit must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Subject is randomized in error. Or not enough inventory",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Server Error Response":{
                                        "description":"Replace Subject Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while replacing subject kits.",
                                                "details":{
                                                    "operation":"replaceSubjectKits",
                                                    "reason":"The replacement could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v1.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-replacekits-post",
                "x-filename-id":"ec-ors-svc-rest-v1.0-studies-studyid-mode-subjects-srcsubjectid-replacekits-post"
            }
        },
        "/ec-ors-svc/rest/v10.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"v10.0",
                "description":"Retrieves an order's details by shipment ID. In this version, compoundingKits is added in the order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrdersInventoryDTOV10"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "includePooledShipments":true,
                                                "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "shippingAddress":"City,Country,Local Address",
                                                "deliveryNumber":"Order123",
                                                "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "compoundingKits":true,
                                                "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "materialId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                    "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "minExpirationDate":"2026-12-31T00:00:00Z",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "operationType":"modified",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"test",
                                                    "comment":"test",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "pooledKitId":"Pooled Kit01",
                                                    "lotNumber":"MLOT",
                                                    "materialId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            ],
                                            "nsInventory":[
                                                {
                                                    "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "quantity":5,
                                                    "lotNumber":"lot1",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "transactionId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v10.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"v10.0",
                "description":"Retrieves details of the orders. In this version, compoundingKits is added in the orders. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includePooledShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude pooled shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV10"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "includePooledShipments":true,
                                                        "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "shippingAddress":"City,Country,Local Address",
                                                        "deliveryNumber":"Order123",
                                                        "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                        "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "compoundingKits":true,
                                                        "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "materialId":"B1B8327AFAA6412287106192AB5984EF",
                                                            "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        }
                                                    ],
                                                    "kitTypes":[
                                                        {
                                                            "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                            "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "quantity":5,
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "minExpirationDate":"2026-12-31T00:00:00Z",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "operationType":"modified",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "reason":"test",
                                                            "comment":"test",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "pooledKitId":"Pooled Kit01",
                                                            "lotNumber":"MLOT",
                                                            "materialId":"B1B8327AFAA6412287106192AB5984EF"
                                                        }
                                                    ],
                                                    "nsInventory":[
                                                        {
                                                            "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "quantity":5,
                                                            "lotNumber":"lot1",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "transactionId":"D313327EF13845169A8ADADDA435431E"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v10.0/studies/{studyId}/{mode}/supply/settings":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"v10.0",
                "description":"Updates a study's supply settings by study ID. This version includes new field <i>selectShippingAddress</i>. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTO"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true,
                                        "dispenseByLowestKitNumber":true,
                                        "allowDoseHold":true,
                                        "quarantineWithoutTempMonitor":false,
                                        "randomizeWhenKitsAvailable":false,
                                        "allKitsSelectedForRandomization":false,
                                        "kitsSelectedForRandomization":[
                                            "7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                            "6A2D911A4E5E4D61B29A1CC73E5402AB"
                                        ],
                                        "sendNotificationOnce":false,
                                        "tempExcursionStartingNumber":"12,13",
                                        "selectShippingAddress":false
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v10.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"v10.0",
                "description":"Retrieves dispensation history for a study, by subject and visit ID. This version includes additional fields for non-serialized kits and for <b>quantity</b>, <b>subjectVisitNsInventoryId</b>, <b>lotId</b> and <b>lotNumber</b>. <br>Rights: <i>OrsSubjectVisitGet</i>.",
                "operationId":"getDispensationHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Get data as of the given date",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV10"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"MobileApp",
                                                "deviceConnection":"DevicetoCloud",
                                                "mHealthDeviceId":"D313327EF13845169A8ADADDA435431E",
                                                "conserved":false,
                                                "allowReplacement":true,
                                                "instanceNumber":1,
                                                "barcode":"1236",
                                                "dispensationConfirmed":true,
                                                "dosingUnblinded":false,
                                                "quantity":1,
                                                "kitNumberUTF":"000AB123",
                                                "inventoryStatusName":"Dispensed",
                                                "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "titration":"maintain",
                                                "subjectVisitNsInventoryId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                "lotNumber":"mf1",
                                                "originalLotNumber":"mf1"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v10.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v10.0",
                "description":"Deprecated: Retrieves visit by visit ID. This is a new version of the API for adding additional attribute hasUnblindedPharmacistKits for unblinded users. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV9"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "groupingNumber":1,
                                                    "kitNumberUTF":"A-1",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotNumber":"LOT20240605A",
                                                    "dosingInstruction":"Take one capsule daily"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":0,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v10.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. This version of the API includes additional attributes for barcodes and dispensationConfirmed. Rights: OrsVisitManagementPost.",
                "operationId":"visit_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV7"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV9"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "groupingNumber":1,
                                                    "kitNumberUTF":"A-1",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotNumber":"LOT20240605A",
                                                    "dosingInstruction":"Take one capsule daily"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":0,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v10.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v10.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v11.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"v11.0",
                "description":"Retrieves supply settings. This version includes new fields <i>dispenseFromSameLot</i> and <i>shipFromSameLot</i>. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTO"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":false,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":false,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":1,
                                            "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "waitDaysBeforeNotifying":7,
                                            "kitReconcillationRequired":true,
                                            "reuseSealedKits":true,
                                            "reuseOnlyLastVisitKits":true,
                                            "allowPartialDispensation":true,
                                            "confirmDispensation":true,
                                            "depotKitReconRequired":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v11.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v11.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"v11.0",
                "description":"Updates a study's supply settings by study ID. This version includes new fields <i>dispenseFromSameLot</i> and <i>shipFromSameLot</i>. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"SupplySettingTO parameter.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTO"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":1,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "kitReconcillationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v11.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v11.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v11.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"v11.0",
                "description":"Retrieves dispensation history for a study, by subject and visit ID. This version includes additional fields for non-serialized kits and for <b>quantity</b>, <b>subjectVisitNsInventoryId</b>, <b>lotId</b> and <b>lotNumber</b>. <br>Rights: <i>OrsSubjectVisitGet</i>.",
                "operationId":"getDispensationHistory_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Get data as of the given date",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV10"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":"KIT-0001",
                                                "dispensedDate":"2026-02-21T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v11.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v11.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v11.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v11.0",
                "description":"Deprecated: Retrieves visit by visit ID. This is a new version of the API for adding additional attribute groupingNumber for kits. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV10"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v11.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v11.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v11.0",
                "description":"Deprecated: Schedules a new visit in the study. This is a new version of the API for adding additional attribute groupingNumber for kits. Rights: OrsVisitManagementPost.",
                "operationId":"visit_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV7"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV10"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v11.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v11.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v12.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v12.0",
                "description":"Deprecated: Retrieves visit by visit ID. This is a new version of the API for adding additional attribute countOfKitTypesOnDoseHold. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV11"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v12.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v12.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v12.0",
                "description":"Deprecated: Schedules a new visit in the study. This is a new version of the API for adding kitTypesForDoseHold,kitTypesForResumeDispensation in request. Rights: OrsVisitManagementPost.",
                "operationId":"visit_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV8"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV11"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v12.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v12.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v13.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v13.0",
                "description":"Deprecated: Schedules a new visit in the study. This version of the API enables placing an unblinded pharmacist kit on hold or resuming its dispensation. Rights: OrsVisitManagementPost.",
                "operationId":"getVisit_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV12"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v13.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v13.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v13.0",
                "description":"Deprecated: Schedules a new visit in the study. This version of the API enables placing an unblinded pharmacist kit on hold or resuming its dispensation. Rights: OrsVisitManagementPost.",
                "operationId":"visit_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV9"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV11"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v13.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v13.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v14.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v14.0",
                "description":"Deprecated: This is a new version of the API which sends the partial dispensation details in the new field pendingKitQuantity in response.",
                "operationId":"getVisit_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v14.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v14.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v14.0",
                "description":"Deprecated: Schedules a new visit in the study. This is a new version of the API which enables to show kitNumberUTF8 field in response.",
                "operationId":"visit_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV9"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v14.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v14.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v15.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v15.0",
                "description":"Deprecated: This is a new version of the API which sends the locallySourced and quantity field in response.",
                "operationId":"getVisit_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v15.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v15.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v15.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. This version of the API enables to send request with resumePartialDispensation to resume partial dispensation and pendingKitQuantity field in response.",
                "operationId":"visit_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v15.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v15.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v16.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"v16.0",
                "description":"This is a new version of the API which sends the lotId, lotNumber and quantity field in response for non serialized kits.",
                "operationId":"getVisit_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "visitTimestamp":"2026-03-23T10:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":true,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false,
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConnection":"DevicetoCloud",
                                                    "trialSupplyType":"BOTTLE",
                                                    "quantity":1,
                                                    "lotId":"D313327EF13845169A8ADADDA435431E",
                                                    "lotNumber":"LOT20240605A",
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v16.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v16.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v16.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. This version of the API returns the locallySourced and quantity fields in the response to support local sourcing.",
                "operationId":"visit_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "kits":[
                                                {
                                                    "kitId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":"KIT-0001"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v16.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v16.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v17.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"v17.0",
                "description":"This is a new version of the API which sends the dosing Instructions field in response for advanced dispensation kits.",
                "operationId":"getVisit_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "visitTimestamp":"2026-03-23T10:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":true,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false,
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "deviceType":"ActivityWatch",
                                                    "deviceConnection":"DevicetoCloud",
                                                    "trialSupplyType":"BOTTLE",
                                                    "quantity":1,
                                                    "lotId":"D313327EF13845169A8ADADDA435431E",
                                                    "lotNumber":"LOT20240605A",
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Invalid request"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "errorData":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v17.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v17.0-studies-studyid-mode-visits-subjectvisit-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/lots/blinded-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lots"
                ],
                "summary":"v2.0",
                "description":"Retrieves list of blinded lots by study ID. Rights: LotManagementGet, ORSBlindedDepotGet.",
                "operationId":"getAllBlindedLots_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotResponseV2"
                                },
                                "examples":{
                                    "Get Blinded Lots Response":{
                                        "description":"Get Blinded Lots Response",
                                        "value":{
                                            "blindedLots":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "blindedLotNumber":"Bld-Lt-AZ",
                                                    "shortName":"BlindedLot-01",
                                                    "expirationDate":"2026-12-31",
                                                    "doNotShip":50,
                                                    "doNotCount":10,
                                                    "manufacturingLotIds":[
                                                        "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                                    ],
                                                    "settingsByCountry":[
                                                        {
                                                            "countryIso":"US",
                                                            "doNotShip":50,
                                                            "doNotCount":10
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lots Forbidden Response":{
                                        "description":"Get Blinded Lots Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"getAllBlindedLots",
                                                    "reason":"The caller does not have permission to view blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lots Server Error Response":{
                                        "description":"Get Blinded Lots Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving blinded lots.",
                                                "details":{
                                                    "operation":"getAllBlindedLots",
                                                    "reason":"The blinded lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-blinded-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-blinded-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create blinded lot"
                ],
                "summary":"v2.0",
                "description":"Creates a blinded lot by study ID. Rights: LotManagementPost.",
                "operationId":"createBlindedLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindedLotRequest"
                            },
                            "examples":{
                                "Create Blinded Lot Request":{
                                    "description":"Create Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        ],
                                        "settingsByCountry":[
                                            {
                                                "countryIso":"US",
                                                "doNotShip":50,
                                                "doNotCount":10
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "201":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotId"
                                },
                                "examples":{
                                    "Create Blinded Lot Response":{
                                        "description":"Create Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Blinded lot number or lot short name already exists. OR Expiration date is not valid. OR Invalid lot. OR Lot belongs to a blinded lot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Bad Request Response":{
                                        "description":"Create Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot request is invalid.",
                                                "details":{
                                                    "field":"manufacturingLotIds",
                                                    "reason":"At least one valid manufacturing lot identifier must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Forbidden Response":{
                                        "description":"Create Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"createBlindedLot",
                                                    "reason":"The caller does not have permission to create blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Blinded Lot Server Error Response":{
                                        "description":"Create Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while creating the blinded lot.",
                                                "details":{
                                                    "operation":"createBlindedLot",
                                                    "reason":"The blinded lot could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-blinded-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-blinded-lots-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/lots/blinded-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lot by ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves blinded lot by a blinded lot's ID. Rights: LotManagementGet, ORSBlindedDepotGet.",
                "operationId":"getBlindedLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsV3"
                                },
                                "examples":{
                                    "Get Blinded Lot Response":{
                                        "description":"Get Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "blindedLotNumber":"Bld-Lt-AZ",
                                            "shortName":"BlindedLot-01",
                                            "expirationDate":"2026-12-31",
                                            "doNotShip":50,
                                            "doNotCount":10,
                                            "manufacturingLotIds":[
                                                "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                            ],
                                            "settingsByCountry":[
                                                {
                                                    "countryIso":"US",
                                                    "doNotShip":50,
                                                    "doNotCount":10
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Not Found Response":{
                                        "description":"Get Blinded Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"id",
                                                    "reason":"The supplied blinded lot identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Forbidden Response":{
                                        "description":"Get Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"getBlindedLot",
                                                    "reason":"The caller does not have permission to view the blinded lot."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Blinded Lot Server Error Response":{
                                        "description":"Get Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while retrieving the blinded lot.",
                                                "details":{
                                                    "operation":"getBlindedLot",
                                                    "reason":"The blinded lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-blinded-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-blinded-lots-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update blinded lot"
                ],
                "summary":"v2.0",
                "description":"Updates a blinded lot by study ID and blinded lot ID. Rights: LotManagementPost.",
                "operationId":"updateBlindedLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BlindedLotRequest"
                            },
                            "examples":{
                                "Update Blinded Lot Request":{
                                    "description":"Update Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        ],
                                        "settingsByCountry":[
                                            {
                                                "countryIso":"US",
                                                "doNotShip":50,
                                                "doNotCount":10
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotId"
                                },
                                "examples":{
                                    "Update Blinded Lot Response":{
                                        "description":"Update Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Blinded lot number or lot short name already exists. OR Expiration date is not valid. OR Invalid lot. OR Lot belongs to a blinded lot.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Bad Request Response":{
                                        "description":"Update Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot update request is invalid.",
                                                "details":{
                                                    "field":"shortName",
                                                    "reason":"The blinded lot short name must be unique."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Forbidden Response":{
                                        "description":"Update Blinded Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-403",
                                                "errorMessage":"Access denied.",
                                                "details":{
                                                    "operation":"updateBlindedLot",
                                                    "reason":"The caller does not have permission to update blinded lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Blinded Lot Server Error Response":{
                                        "description":"Update Blinded Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-500",
                                                "errorMessage":"Unexpected error while updating the blinded lot.",
                                                "details":{
                                                    "operation":"updateBlindedLot",
                                                    "reason":"The blinded lot could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-blinded-lots-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-blinded-lots-id-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/blindinggroups/{blindingGroupId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get blinding group by ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves blinding group in a study by blinding group ID. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"getBlindingGroup_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"blindingGroupId",
                        "in":"path",
                        "description":"ID of blinding group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindingGroupResponse.BlindingGroup"
                                },
                                "examples":{
                                    "Get Blinding Group Response":{
                                        "description":"Get Blinding Group Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "title":"Blinding Group Lotion",
                                            "description":"Some description.",
                                            "kitTypes":[
                                                {
                                                    "id":"BOTTLE-A",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":5,
                                                    "packageType":"BOTTLE",
                                                    "deviceType":"GlucoseMonitor",
                                                    "deviceConnection":"NoConnection",
                                                    "srcId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study. OR Blinding Group not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Blinding group not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-blindinggroups-{blindingGroupId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-blindinggroups-blindinggroupid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/blindinggroups":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get all blinding groups"
                ],
                "summary":"v2.0",
                "description":"Retrieves all blinding groups in a study. Required sponsor roles are: clinical supply manager and site manager.Please refer to getPackageTypes API for packageTypeId. A study cannot have both DEFAULT and RANDOM blinding group strategies. Based upon the single kit setting (RANDOM, DEFAULT, ALL) at a study level, the UI should restrict drop down values (SEND_KIT_TYPE/RANDOM_KIT). RANDOM_KIT should be hidden if the single kit setting at a study level is DEFAULT. Similarly, SEND_KIT_TYPE should be hidden if the single kit setting is RANDOMor ALL. getStudy API has been modified to return more parameters like singleKitSettingId and useBlindingGroups. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"getBlindingGroups_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindingGroupResponse"
                                },
                                "examples":{
                                    "Get Blinding Groups Response":{
                                        "description":"Get Blinding Groups Response",
                                        "value":{
                                            "blindingGroups":[
                                                {
                                                    "blindingGroupId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "name":"BlindingGroup-01"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Study not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-blindinggroups-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-blindinggroups-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kittypes/noblindinggroup":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Blinding Group/Get kit types which do not belong to any blinding group"
                ],
                "summary":"v2.0",
                "description":"Retrieves kit types which do not belong to any blinding group.<br>Rights: <i>SupplySettingRightsGet</i>. <br>Required sponsor roles are: clinical supply manager and site manager.",
                "operationId":"getKitTypesNotInBlindingGroup_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitType"
                                    }
                                },
                                "examples":{
                                    "Get Kit Types Without Blinding Group Response":{
                                        "description":"Get Kit Types Without Blinding Group Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeName":"Kit A",
                                                "description":"Non-Dosing"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Study not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kittypes-noblindinggroup-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kittypes-noblindinggroup-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/settings/cohortlimits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Get cohort limits by study and mode"
                ],
                "summary":"v2.0",
                "description":"Retrieves cohort limits by study and mode. Rights: SubjectSettingRightsGet.",
                "operationId":"getCohortLimits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimitV2"
                                    }
                                },
                                "examples":{
                                    "Get Cohort Limits Response":{
                                        "description":"Get Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "randomizationLimit":100,
                                                "notificationLimit":80,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-settings-cohortlimits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-settings-cohortlimits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Save cohort limits by study and mode"
                ],
                "summary":"v2.0",
                "description":"Saves cohort limits by study and mode. Rights: SubjectSettingRightsPost.",
                "operationId":"setCohortLimits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"fromMode",
                        "in":"query",
                        "description":"From mode.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CohortLimitList"
                            },
                            "examples":{
                                "Set Cohort Limits Request":{
                                    "description":"Set Cohort Limits Request",
                                    "value":{
                                        "cohortLimits":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "randomizationLimit":100,
                                                "notificationLimit":80,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimitV2"
                                    }
                                },
                                "examples":{
                                    "Set Cohort Limits Response":{
                                        "description":"Set Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "randomizationLimit":100,
                                                "notificationLimit":80,
                                                "enabled":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-settings-cohortlimits-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-settings-cohortlimits-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/recon/shipments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction from a given site to depot"
                ],
                "summary":"v2.0",
                "description":"Rights needed: DDFShipmentPost; versioned to return the form ID in the response.",
                "operationId":"createShipment_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ReconShipmentRequest"
                            },
                            "examples":{
                                "Create Recon Shipment Request":{
                                    "description":"Create Recon Shipment Request",
                                    "value":{
                                        "kits":[
                                            "E39FF55A445543A38D513325664F0B2D"
                                        ],
                                        "kitsFilter":{
                                            "kitRange":"KIT_NUMBER:10:100",
                                            "searchString":"Some search string",
                                            "inventoryStatusIds":[
                                                5
                                            ],
                                            "subjectId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ResupplyResponseV2"
                                    }
                                },
                                "examples":{
                                    "Create Recon Shipment Response":{
                                        "description":"Create Recon Shipment Response",
                                        "value":[
                                            {
                                                "formId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Site ID not found in site service.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"ORS-404",
                                            "errorMessage":"Resource not found",
                                            "details":{
                                                "field":"siteId",
                                                "issue":"not found"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Kit reconciliation required was not set.', 'You cannot update the status of this kit because the kit was sent to a depot', 'You cannot update the status of this kit because it is at a site that you do not have access to. Work with your CRA or a clinical supply manager to update the kit.', 'Reconciliation shipment is not allowed as site has drug destruction capability.', 'Reconciliation shipment cannot be created as none of the depots has drug destruction capability.', 'Update kits cannot have both the kit identifiers list and the kits filter set.', 'Update kits must have either the kit identifiers list or the kits filter set.', 'Invalid inventory status transition.', 'Invalid kit at site.', 'Invalid kit range filter.', 'subjectId is required.', 'Invalid subject.', 'Update kits no rows were found to update.', 'Update kits retrieved size exceeds maximum rows for update limit of.', 'Update kits retrieve error, the following kit identifiers were not found.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"ORS-076",
                                            "errorMessage":"Invalid kit range filter.",
                                            "details":{
                                                "field":"kitsFilter.kitRange",
                                                "issue":"Use KIT_NUMBER:start:end with start less than or equal to end."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"ORS-500",
                                            "errorMessage":"Unexpected error",
                                            "details":{
                                                "issue":"Unhandled exception"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-recon-shipments-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-recon-shipments-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/dbheaders/uploadkits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory database headers"
                ],
                "summary":"v2.0",
                "description":"Retrieves inventory headers containing barcodes from the database.",
                "operationId":"getInventoryDBHeaders_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/UploadDBHeaderResponse"
                                },
                                "examples":{
                                    "Get Inventory DB Headers Response":{
                                        "description":"Get Inventory DB Headers Response",
                                        "value":{
                                            "dbHeaders":[
                                                "Kit Type",
                                                "Kit Number"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory DB Headers Server Error Response":{
                                        "description":"Get Inventory DB Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving inventory database headers.",
                                                "details":{
                                                    "operation":"getInventoryDBHeaders",
                                                    "reason":"The inventory database headers could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-dbheaders-uploadkits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-dbheaders-uploadkits-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/dbheaders/uploadrndlist":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get randomization list database headers"
                ],
                "summary":"v2.0",
                "description":"Retrieves randomization list headers from the database.",
                "operationId":"getRndListDBHeaders_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/UploadDBHeaderResponse"
                                },
                                "examples":{
                                    "Get Randomization List DB Headers Response":{
                                        "description":"Get Randomization List DB Headers Response",
                                        "value":{
                                            "dbHeaders":[
                                                "Randomization Number",
                                                "Treatment",
                                                "Block",
                                                "Stratum",
                                                "Cohort",
                                                "Probability Factor"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List DB Headers Server Error Response":{
                                        "description":"Get Randomization List DB Headers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"RND-500",
                                                "errorMessage":"Unexpected error while retrieving randomization list database headers.",
                                                "details":{
                                                    "operation":"getRndListDBHeaders",
                                                    "reason":"The randomization list database headers could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-dbheaders-uploadrndlist-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-dbheaders-uploadrndlist-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/doseholdsettings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Get all dose hold settings details"
                ],
                "summary":"v2.0",
                "description":"Retrieves all dose hold settings details including last visit. Rights required:SupplySettingRightsGet.",
                "operationId":"getDoseHolds_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DoseHoldSettingsResponseTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Dose Hold Settings Response":{
                                        "description":"Get Dose Hold Settings Response",
                                        "value":[
                                            {
                                                "doseHoldID":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                "startingVisitSrcId":"D313327EF13845169A8ADADDA435431E",
                                                "instanceNumber":1,
                                                "enabled":true,
                                                "frequencyUnlimited":false,
                                                "maxDoseHolds":3,
                                                "frequencyLimitInSequence":2,
                                                "frequencyLimitInDays":30,
                                                "endingVisitSrcId":"D313327EF13845169A8ADADDA435431F",
                                                "endingVisitInstanceNumber":3
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-doseholdsettings-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-doseholdsettings-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Create dose hold settings for the given dose hold"
                ],
                "summary":"v2.0",
                "description":"Adds dose hold setting for a given dose hold. Rights required:SupplySettingRightsPost.",
                "operationId":"createDoseHoldSettings_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DoseHoldSettingsRequestV2"
                            },
                            "examples":{
                                "Create Dose Hold Settings Request":{
                                    "description":"Create Dose Hold Settings Request",
                                    "value":{
                                        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "startingVisitSrcId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                        "instanceNumber":1,
                                        "enabled":true,
                                        "frequencyUnlimited":false,
                                        "maxDoseHolds":3,
                                        "frequencyLimitInSequence":2,
                                        "frequencyLimitInDays":30
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldResponse"
                                },
                                "examples":{
                                    "Create Dose Hold Settings Response":{
                                        "description":"Create Dose Hold Settings Response",
                                        "value":{
                                            "doseHoldId":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid dose hold settings request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-doseholdsettings-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-doseholdsettings-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/doseholdsettings/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Get dose hold setting details of given dose hold by ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves dose hold setting details of given dose hold identified by ID including last visit. Rights required:SupplySettingRightsGet.",
                "operationId":"getDoseHoldById_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Dose Hold ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldSettingsResponseTOV2"
                                },
                                "examples":{
                                    "Get Dose Hold By Id Response":{
                                        "description":"Get Dose Hold By Id Response",
                                        "value":{
                                            "doseHoldID":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "startingVisitSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "instanceNumber":1,
                                            "enabled":true,
                                            "frequencyUnlimited":false,
                                            "maxDoseHolds":3,
                                            "frequencyLimitInSequence":2,
                                            "frequencyLimitInDays":30,
                                            "endingVisitSrcId":"D313327EF13845169A8ADADDA435431F",
                                            "endingVisitInstanceNumber":3
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid dose hold id."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-doseholdsettings-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-doseholdsettings-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Dose Hold Settings/Update dose hold settings of a given dose hold by ID"
                ],
                "summary":"v2.0",
                "description":"Updates dose hold settings of a given dose hold identified by ID. Rights required: SupplySettingRightsPost.",
                "operationId":"updateDoseHoldSettings_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"Dose Hold ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DoseHoldSettingsRequestV2"
                            },
                            "examples":{
                                "Update Dose Hold Settings Request":{
                                    "description":"Update Dose Hold Settings Request",
                                    "value":{
                                        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "startingVisitSrcId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                        "instanceNumber":1,
                                        "enabled":true,
                                        "frequencyUnlimited":false,
                                        "maxDoseHolds":3,
                                        "frequencyLimitInSequence":2,
                                        "frequencyLimitInDays":30
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldResponse"
                                },
                                "examples":{
                                    "Update Dose Hold Settings Response":{
                                        "description":"Update Dose Hold Settings Response",
                                        "value":{
                                            "doseHoldId":"F0E1D2C3B4A5968778695A4B3C2D1E0F"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Dose Hold Setting Details",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid dose hold settings request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-doseholdsettings-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-doseholdsettings-id-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/events/codebreak/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Code Break event"
                ],
                "summary":"v2.0",
                "description":"Retrieves details about a Code Break event in the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreakEvent_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Get Code Break Event Response":{
                                        "description":"Get Code Break Event Response",
                                        "value":"codebreak event payload"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Event not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type. Or No data found for the event.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid event id."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-events-codebreak-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-events-codebreak-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/events/kitreplacement/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Kit Replacement event"
                ],
                "summary":"v2.0",
                "description":"Retrieves details on kit replacement events for a subject with non-serialized kits. Rights: OrsSubjectVisitGet.",
                "operationId":"getKitReplacementEvent_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Get Kit Replacement Event Response":{
                                        "description":"Get Kit Replacement Event Response",
                                        "value":"kit replacement event payload"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Event not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type OR No data found for the event",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid event id."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-events-kitreplacement-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-events-kitreplacement-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/depots/{depotId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kits from depot inventory by depot ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves a list of serialized and/or non-serialized kits on a depot inventory, based on the filters passed in the request.<br><b>Rights:</b> <i>ORSBlindedDepotGet</i>.",
                "operationId":"getDepotKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"searchByKitNumber",
                        "in":"query",
                        "description":"Kit Number search string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":10001
                    },
                    {
                        "name":"searchBySeqNumber",
                        "in":"query",
                        "description":"Sequence number search string.",
                        "schema":{
                            "type":"number"
                        },
                        "example":10
                    },
                    {
                        "name":"sequenceNumberMin",
                        "in":"query",
                        "description":"Minimum sequence number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"sequenceNumberMax",
                        "in":"query",
                        "description":"Maximum sequence number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":9999
                    },
                    {
                        "name":"kitNumberMin",
                        "in":"query",
                        "description":"Minimum kit number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":10000
                    },
                    {
                        "name":"kitNumberMax",
                        "in":"query",
                        "description":"Maximum kit number for search",
                        "schema":{
                            "type":"number"
                        },
                        "example":20000
                    },
                    {
                        "name":"blindedLotId",
                        "in":"query",
                        "description":"Blinded lot ID for search",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentNumber",
                        "in":"query",
                        "description":"Shipment number for search",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHP-10001"
                    },
                    {
                        "name":"quarantineId",
                        "in":"query",
                        "description":"Quarantine ID for search",
                        "schema":{
                            "type":"string"
                        },
                        "example":"QTN-0001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":0
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":100
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":1
                    },
                    {
                        "name":"serialized",
                        "in":"query",
                        "description":"Is kit serialized or non-serialized",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DepotKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Depot Kits Response":{
                                        "description":"Get Depot Kits Response",
                                        "value":{
                                            "distinctInventoryStatusIds":[
                                                1
                                            ],
                                            "blindedLotsExistsInStudy":true,
                                            "kits":[
                                                {
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumberUTF":"10001",
                                                    "sequenceNumber":1,
                                                    "inventoryStatusId":1,
                                                    "inventoryStatus":"Available",
                                                    "unitsPerKit":30,
                                                    "kitDescription":"Bottle of tablets",
                                                    "distributionSetting":"BLINDED",
                                                    "barcode":"BAR-10001",
                                                    "blindedLotExpirationDate":"2026-12-31T00:00:00Z"
                                                }
                                            ],
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving depot kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid depot ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The depot was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The depot kit filters are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-depots-{depotId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-depots-depotid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes from depot inventory by depot ID"
                ],
                "summary":"v2.0",
                "description":"Updates kit attributes from depot inventory by depot ID, for both serialized and non serialized kits. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateDepotKits",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"depotId",
                        "in":"path",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical  depot",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateDepotKitsRequestV2"
                            },
                            "examples":{
                                "Update Depot Kits Request":{
                                    "description":"Update Depot Kits Request",
                                    "value":{
                                        "kitFilters":{
                                            "searchByKitNumber":"10001",
                                            "searchBySeqNumber":10,
                                            "sequenceNumberMin":1,
                                            "sequenceNumberMax":9999,
                                            "kitNumberMin":10000,
                                            "kitNumberMax":20000,
                                            "blindedLotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "shipmentNumber":"SHP-10001",
                                            "quarantineId":"QTN-0001",
                                            "inventoryStatusIds":[
                                                1
                                            ]
                                        },
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ],
                                        "inventoryStatusId":1,
                                        "reason":"Routine depot reconciliation"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateDepotKitsResponse"
                                },
                                "examples":{
                                    "Update Depot Kits Response":{
                                        "description":"Update Depot Kits Response",
                                        "value":{
                                            "updatedCount":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The depot or selected kits were not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The depot kit update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating depot kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-depots-{depotId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-depots-depotid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kits/{sourceId}/export":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Export kit details for the inventory"
                ],
                "summary":"v2.0",
                "description":"Exports kit details with barcodes for the inventory source as a CSV file. Rights: DesignerKitListGet.",
                "operationId":"export_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sourceId",
                        "in":"path",
                        "description":"Source ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9ECA4FA65076451DA7D47D59367D15A5"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "examples":{
                                    "Export Inventory Kits Success (No Content)":{
                                        "description":"Export is streamed as a file download; response has no body."
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"No matching inventory source is available",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Inventory Kits Not Found Response":{
                                        "description":"Export Inventory Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The inventory source was not found.",
                                                "details":{
                                                    "field":"sourceId",
                                                    "reason":"The supplied inventory source identifier does not exist."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Export Inventory Kits Server Error Response":{
                                        "description":"Export Inventory Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while exporting inventory kits.",
                                                "details":{
                                                    "operation":"export_V2",
                                                    "reason":"The inventory export failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kits-{sourceId}-export-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kits-sourceid-export-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kits/generate":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Generate kits"
                ],
                "summary":"v2.0",
                "description":"Generates kits. Rights: DesignerKitListPost. This API contains additional attributes added in the request body for barcode implementation.",
                "operationId":"generateKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/GenerateKitsRequest"
                            },
                            "examples":{
                                "Generate Kits Request":{
                                    "description":"Generate Kits Request",
                                    "value":{
                                        "title":"Comparative Cream - Batch B",
                                        "description":"Initial kit generation for the study",
                                        "kitTypes":[
                                            {
                                                "id":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                                "quantity":10
                                            }
                                        ],
                                        "kitNumberStart":1001,
                                        "sequenceNumberStart":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateKitsResponse"
                                },
                                "examples":{
                                    "Generate Kits Response":{
                                        "description":"Generate Kits Response",
                                        "value":{
                                            "inventorySourceId":"b1b8327a-faa6-4122-8710-6192ab5984ef",
                                            "noOfKitsGenerated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version ",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"The Title has already been used OR Invalid kit type OR The maximum number of rows requested shall not exceed 500000 OR Some numbers in this list are used in another kit list. Adjust the first kit or sequence number so that the values don't overlap with existing numbers. OR 1 or more sequence numbers already exist OR 1 or more kit numbers already exist  OR The CSV might contain duplicate kit number(s) or sequence number(s).",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kits-generate-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kits-generate-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventorystatuses/allowed/{fromInventoryStatusId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get allowed inventory statuses"
                ],
                "summary":"v2.0",
                "description":"Retrieves allowed inventory statuses. Rights: OrsInventoryGet.",
                "operationId":"getAllowedInventoryStatuses_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"fromInventoryStatusId",
                        "in":"path",
                        "description":"ID of the initial inventory status in status transition.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Response":{
                                        "description":"Get Allowed Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":2,
                                                "inventoryStatus":"Damaged"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Server Error Response":{
                                        "description":"Get Allowed Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventorystatuses-allowed-{fromInventoryStatusId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventorystatuses-allowed-frominventorystatusid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kits/{inventoryId}/dispensation":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get dispensation details by inventory ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves dispensation details like subject source ID, visit source ID and instance number for a given inventory ID. Rights: OrsInventoryGet.",
                "operationId":"getInventoryDispensation_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Inventory Dispensation Response":{
                                        "description":"Get Inventory Dispensation Response",
                                        "value":{
                                            "inventoryStatusId":4,
                                            "inventoryStatus":"Dispensed",
                                            "reason":"Dispensed to subject",
                                            "returnedUnits":0,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kits-{inventoryId}-dispensation-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kits-inventoryid-dispensation-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventorystatuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory statuses"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves statuses from an inventory. Rights: OrsInventoryGet.",
                "operationId":"getInventoryStatuses_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Inventory Statuses Response":{
                                        "description":"Get Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Statuses Server Error Response":{
                                        "description":"Get Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventorystatuses-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventorystatuses-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kitDetails":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit details by kit number"
                ],
                "summary":"v2.0",
                "description":"Retrieves kit details by kit number. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitByKitNumber_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitInfoResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Response":{
                                        "description":"Get Kit By Kit Number Response",
                                        "value":{
                                            "kitDetails":{
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "locationId":"SITE-001",
                                                "manufacturingLotId":"LOT-001",
                                                "labelGroupId":"LABEL-001",
                                                "inventoryStatus":"Available",
                                                "blockNumber":"BLK-01",
                                                "kitNumberUTF":"KIT-1001"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kitDetails-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kitdetails-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kits/{kitNumberUTF}/lastStatus":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get a kit's last status"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a kit's last status. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitLastStatus_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"kitNumberUTF",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-1001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Kit Last Status Response":{
                                        "description":"Get Kit Last Status Response",
                                        "value":{
                                            "inventoryStatusId":1,
                                            "inventoryStatus":"Available"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kits-{kitNumberUTF}-lastStatus-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kits-kitnumberutf-laststatus-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kitlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit list details"
                ],
                "summary":"v2.0",
                "description":"Retrieves generated/uploaded kit lists details in a study. Rights: OrsInventoryGet.",
                "operationId":"getKitListsDetails_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitListDetailsTOV2"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kitlists-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kitlists-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":[
                                            {
                                                "kitTypes":[
                                                    {
                                                        "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "kitTypeName":"KitType-01",
                                                        "description":"Example kit type.",
                                                        "packageTypeId":1,
                                                        "packageType":"Bottle",
                                                        "totalKitNumbers":100,
                                                        "kitsDispensed":5,
                                                        "kitsDamaged":1,
                                                        "kitsAvailable":94,
                                                        "kitsInTransit":0,
                                                        "kitsReturnedToSite":0,
                                                        "kitsPendingDestruction":0,
                                                        "kitsExpired":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kits/audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Kit list details for each kit"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Kit list details of each kit. Rights: OrsInventoryGet.",
                "operationId":"getKitsAudit_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"inventorySourceId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsAuditRequestV1"
                            },
                            "examples":{
                                "Kits Audit Request":{
                                    "description":"Kits Audit Request",
                                    "value":{
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsAuditResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Inventory Source ID not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kits-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kits-audit-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kit-types/{kitTypeId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves kit summary by kit type ID. In this API, kitNumber added in request to filter kits by kitNumber, fields blockNumber and kitNumberUTF added to return block number and kit number in UTF-8. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitsByKitTypeId_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string"
                        },
                        "example":100
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered. Default value is 'SEQUENCE_NUMBER'.",
                        "schema":{
                            "type":"string",
                            "default":"SEQUENCE_NUMBER"
                        },
                        "example":"SEQUENCE_NUMBER"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDetailsResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Response":{
                                        "description":"Get Kits By Kit Type ID Response",
                                        "value":{
                                            "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitTypeName":"KitType-01",
                                            "minSequenceNumber":1,
                                            "maxSequenceNumber":10,
                                            "minKitNumber":1001,
                                            "maxKitNumber":1010,
                                            "kits":[
                                                {
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":1001,
                                                    "sequenceNumber":1,
                                                    "inventoryStatusId":1,
                                                    "locationId":"SITE-001",
                                                    "inventoryStatus":"Available"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version or Kit type not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filtersOR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kit-types-{kitTypeId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kit-types-kittypeid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/qualified-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get list of filtered kits"
                ],
                "summary":"v2.0",
                "description":"Retrieves list of kits which had qualified recent updates based on criteria defined by Oracle Clinical One Integration Hub. In this API, blockNumber and kitNumberUTF added to return block number and kit number in UTF-8. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getQualifiedKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"Start date/time for retrieving qualified kit updates",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01T00:00:00.000Z"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"End date/time for retrieving qualified kit updates",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-29T23:59:59.999Z"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDetailsExtTO"
                                    }
                                },
                                "examples":{
                                    "Get Qualified Kits Response":{
                                        "description":"Get Qualified Kits Response",
                                        "value":[
                                            {
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available",
                                                "blockNumber":"BLK-01",
                                                "kitNumberUTF":"KIT-1001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid date range",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-qualified-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-qualified-kits-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventorystatuses/receivedshipment":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get received inventory statuses"
                ],
                "summary":"v2.0",
                "description":"Retrieves received inventory status. Rights: OrsInventoryGet.",
                "operationId":"getReceivedInventoryStatuses_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Received Inventory Statuses Response":{
                                        "description":"Get Received Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            },
                                            {
                                                "inventoryStatusId":20,
                                                "inventoryStatus":"Received for Destruction"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Received Inventory Statuses Not Found Response":{
                                        "description":"Get Received Inventory Statuses Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Received Inventory Statuses Server Error Response":{
                                        "description":"Get Received Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventorystatuses-receivedshipment-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventorystatuses-receivedshipment-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kits/{kitNumber}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by KitNumberUTF"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a site's kit history. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getSiteKitHistory_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kits-{kitNumber}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kits-kitnumber-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kits/{inventoryId}/historyById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves a kit's history by ID. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getSiteKitHistoryById_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit History By ID Response":{
                                        "description":"Get Kit History By ID Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available",
                                                "reason":"Kit received",
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "userName":"jane.doe",
                                                "modifiedDate":"2026-02-21T08:43:01Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kits-{inventoryId}-historyById-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kits-inventoryid-historybyid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/barcode":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update a barcode"
                ],
                "summary":"v2.0",
                "description":"Updates a kit's barcode. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateBarcodes_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kits to be updated with barcodes.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/KitNumberBarcodeTO"
                                }
                            },
                            "examples":{
                                "Update Barcodes Request":{
                                    "description":"Update Barcodes Request",
                                    "value":[
                                        {
                                            "kitNumber":1001,
                                            "barcode":"61234"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/InventoryUpdatedTO"
                                },
                                "examples":{
                                    "Update Barcodes Response":{
                                        "description":"Update Barcodes Response",
                                        "value":{
                                            "inventoryUpdated":5
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found OR Inventory not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Inventory Status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-barcode-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-barcode-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/inventory/kits":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Updates kit attributes. Rights: OrsInventoryPost and OrsUnblinded.",
                "operationId":"updateKitAttributes_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kit attribute parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitAttributesRequestV2"
                            },
                            "examples":{
                                "Update Kit Attributes Request":{
                                    "description":"Update Kit Attributes Request",
                                    "value":{
                                        "reason":"Inventory update",
                                        "inventoryStatusId":1,
                                        "labelGroupId":"LABEL-001",
                                        "location":"SITE-001",
                                        "manufacturingLotId":"LOT-001",
                                        "materialId":"MAT-001",
                                        "itemNumber":"ITEM-001",
                                        "updateMaterialId":true,
                                        "updateItemNumber":true,
                                        "kits":[
                                            "b1b8327a-faa6-4122-8710-6192ab5984ef"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateKitsResponseV1"
                                },
                                "examples":{
                                    "Update Kit Attributes Response":{
                                        "description":"Update Kit Attributes Response",
                                        "value":{
                                            "noOfRowsUpdated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitNumberUTF}/lastStatus":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the latest status of a kit at a site. Rights: OrsInventoryGet and either OrsUnblinded or OrsBlinded.",
                "operationId":"getKitLastStatus_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitNumberUTF",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-1001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusResponse"
                                },
                                "examples":{
                                    "Get Site Kit Last Status Response":{
                                        "description":"Get Site Kit Last Status Response",
                                        "value":{
                                            "inventoryStatusId":10,
                                            "inventoryStatus":"Dispensed"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit Last Status Server Error Response":{
                                        "description":"Get Site Kit Last Status Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving the site kit status."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit Last Status Not Found Response":{
                                        "description":"Get Site Kit Last Status Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit Last Status Bad Request Response":{
                                        "description":"Get Site Kit Last Status Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit number is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitNumberUTF}-lastStatus-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-kitnumberutf-laststatus-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitNumber}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by kit number for a site"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a kit's history at a site by kit number. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKitHistory_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitNumber",
                        "in":"path",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":10001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Kit Number Response":{
                                        "description":"Get Site Kit History By Kit Number Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"Available",
                                            "reason":"Status updated during reconciliation",
                                            "returnedUnits":10,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Kit Number Server Error Response":{
                                        "description":"Get Site Kit History By Kit Number Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kit history."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Kit Number Not Found Response":{
                                        "description":"Get Site Kit History By Kit Number Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kit history was found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Kit Number Bad Request Response":{
                                        "description":"Get Site Kit History By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit number is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitNumber}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-kitnumber-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{inventoryId}/historyById":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history for a site by kitNumberUTF"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a kit's history at a site by inventory ID. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKitHistoryById_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"inventoryId",
                        "in":"path",
                        "description":"ID of the inventory",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Inventory ID Response":{
                                        "description":"Get Site Kit History By Inventory ID Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"Available",
                                            "reason":"Status updated during reconciliation",
                                            "returnedUnits":10,
                                            "missingUnits":0,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Inventory ID Server Error Response":{
                                        "description":"Get Site Kit History By Inventory ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kit history."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Inventory ID Not Found Response":{
                                        "description":"Get Site Kit History By Inventory ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kit history was found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History By Inventory ID Bad Request Response":{
                                        "description":"Get Site Kit History By Inventory ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site inventory identifier is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{inventoryId}-historyById-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-inventoryid-historybyid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: ",
                "operationId":"getSiteKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":[
                            5,
                            10
                        ]
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponseV2"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "minKitNumber":10,
                                            "maxKitNumber":100,
                                            "totalReturnedUnits":2,
                                            "distinctInventoryStatusIds":[
                                                5,
                                                10
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site",
                                                    "subjectId":"D313327EF13845169A8ADADDA435431E",
                                                    "packageTypeId":1,
                                                    "unitsPerKit":10,
                                                    "returnedUnits":2,
                                                    "missingUnits":0,
                                                    "balanceUnits":8,
                                                    "verified":1,
                                                    "lastModifiedDate":"2026-02-21T23:40:32.079Z",
                                                    "kitDescription":"Bottle of tablets",
                                                    "distributionSetting":"BLINDED"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Server Error Response":{
                                        "description":"Get Site Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit number combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Not Found Response":{
                                        "description":"Get Site Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits were found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Bad Request Response":{
                                        "description":"Get Site Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit filter values are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update status for kits in a site"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Updates the status of a kit at a site. If the new status is <i>quarantined</i> it will generate a temperature excursion number. <br>Rights: <i>OrsInventoryPost</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"updateKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kits status update details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Site Kits Response":{
                                        "description":"Update Site Kits Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kits Server Error Response":{
                                        "description":"Update Site Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kits Not Found Response":{
                                        "description":"Update Site Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit selection was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kits Bad Request Response":{
                                        "description":"Update Site Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kits update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status by kit ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Updates a kit's status at a site by kit ID. Rights: OrsInventoryPost and either OrsUnblinded or OrsBlinded.",
                "operationId":"updateKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Kits status update details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Site Kit Response":{
                                        "description":"Update Site Kit Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kit Server Error Response":{
                                        "description":"Update Site Kit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating the site kit."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kit Not Found Response":{
                                        "description":"Update Site Kit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Site Kit Bad Request Response":{
                                        "description":"Update Site Kit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit types"
                ],
                "summary":"v2.0",
                "description":"Retrieves kit types by study ID. Rights: OrsInventoryGet.",
                "operationId":"getKitTypes_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypesTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Kit Types Response":{
                                        "description":"Get Kit Types Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitTypeName":"Kit A",
                                                "description":"Non dosing kit",
                                                "packageTypeId":5,
                                                "packageTypeKey":"INHALER"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Types Server Error Response":{
                                        "description":"Get Kit Types Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving kit types.",
                                                "details":{
                                                    "operation":"getKitTypes",
                                                    "reason":"The kit types could not be loaded."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/lots/manufacturing-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get all manufacturing lots"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves all manufacturing lots by study ID. Rights: LotManagementGet.",
                "operationId":"getAllManufacturingLots_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManufacturingLotTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Manufacturing Lots Response":{
                                        "description":"Get Manufacturing Lots Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "manufacturingLotNumber":"MLOT-2001",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "blindedLotId":"0A1B2C3D4E5F67890123456789ABCDEF",
                                                "doNotCount":5,
                                                "doNotShip":10,
                                                "lotNumber":"LOT-2001",
                                                "versionStart":"2026-01-15T09:30:00Z",
                                                "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                                "runNumber":"run number 01",
                                                "inUse":true,
                                                "versionEnd":"2026-02-15T09:30:00Z",
                                                "blindedLotVersionStart":"2026-01-10T09:30:00Z",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":5,
                                                "softwareVersionNumber":2,
                                                "reason":"Lot details updated",
                                                "comment":"Manufacturing lot updated after review"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving manufacturing lots.",
                                                "details":{
                                                    "operation":"getAllManufacturingLots",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-manufacturing-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-manufacturing-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create manufacturing lot"
                ],
                "summary":"v2.0",
                "description":"Creates a manufacturing lot. Rights: LotManagementPost.",
                "operationId":"createManufacturingLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequest"
                            },
                            "examples":{
                                "Create Manufacturing Lot Request":{
                                    "description":"Create Manufacturing Lot Request",
                                    "value":{
                                        "manufacturingLotNumber":"MLOT-2001",
                                        "lotNumber":"LOT-2001",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":10,
                                        "doNotCount":5,
                                        "quantity":100
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Response":{
                                        "description":"Create Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to create manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have create access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"The manufacturing lot request is invalid.",
                                                "details":{
                                                    "field":"quantity",
                                                    "reason":"Quantity must be a positive whole number and expirationDate must use yyyy-MM-dd format."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while creating the manufacturing lot.",
                                                "details":{
                                                    "operation":"createManufacturingLot",
                                                    "reason":"The manufacturing lot could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-manufacturing-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-manufacturing-lots-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/lots/manufacturing-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves manufacturing lot by lot ID. Rights: LotManagementGet.",
                "operationId":"getManufacturingLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ManufacturingLotTOV2"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Response":{
                                        "description":"Get Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "manufacturingLotNumber":"MLOT-2001",
                                            "expirationDate":"2026-12-31T00:00:00Z",
                                            "blindedLotId":"0A1B2C3D4E5F67890123456789ABCDEF",
                                            "doNotCount":5,
                                            "doNotShip":10,
                                            "lotNumber":"LOT-2001",
                                            "versionStart":"2026-01-15T09:30:00Z",
                                            "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                            "runNumber":"run number 01",
                                            "inUse":true,
                                            "versionEnd":"2026-02-15T09:30:00Z",
                                            "blindedLotVersionStart":"2026-01-10T09:30:00Z",
                                            "operationType":"MODIFIED",
                                            "objectVersionNumber":5,
                                            "softwareVersionNumber":2,
                                            "reason":"Lot details updated",
                                            "comment":"Manufacturing lot updated after review"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view the manufacturing lot.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving the manufacturing lot.",
                                                "details":{
                                                    "operation":"getManufacturingLot",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-manufacturing-lots-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update manufacturing lot by ID"
                ],
                "summary":"v2.0",
                "description":"Update manufacturing lot by a lot's ID. Rights: LotManagementPost.",
                "operationId":"updateManufacturingLot_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequest"
                            },
                            "examples":{
                                "Update Manufacturing Lot Request":{
                                    "description":"Update Manufacturing Lot Request",
                                    "value":{
                                        "manufacturingLotNumber":"MLOT-2001",
                                        "lotNumber":"LOT-2001",
                                        "expirationDate":"2027-06-30",
                                        "doNotShip":15,
                                        "doNotCount":3,
                                        "quantity":120
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Response":{
                                        "description":"Update Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to update manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have update access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"The manufacturing lot update request is invalid.",
                                                "details":{
                                                    "field":"expirationDate",
                                                    "reason":"expirationDate must use yyyy-MM-dd format and quantity must be greater than zero."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while updating the manufacturing lot.",
                                                "details":{
                                                    "operation":"updateManufacturingLot",
                                                    "reason":"The manufacturing lot could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-lots-manufacturing-lots-id-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/replaceRand":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Replace randomization number for a subject"
                ],
                "summary":"v2.0",
                "description":"Replace Randomization Number of a subject. Rights: UnblindedPost or S2S Call.",
                "operationId":"replaceRandomizationNumber",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandReplacementRequestV1"
                            },
                            "examples":{
                                "Replace Randomization Number Request":{
                                    "description":"Replace Randomization Number Request",
                                    "value":{
                                        "allowRandNumberReplacement":true,
                                        "replacementStartingPrefix":997,
                                        "maxReplacements":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Replace Randomization Number Response":{
                                        "description":"Replace Randomization Number Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid Subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Invalid subject id."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For reaching max number of replacements or randomization replacement is turned off.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Randomization replacement is turned off or max replacements reached."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-replaceRand-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-replacerand-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/kits/blindedchainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Blinded Chain of Custody report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Kit Blinded Chain of Custody report. Rights: UnblindedChainofCustodyReportPost.",
                "operationId":"getBlindedChainOfCustodyReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-kits-blindedchainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-kits-blindedchainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/kits/blindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Blinded) report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Kit Inventory (Blinded) report. Rights: BlindedInventoryReportPost.",
                "operationId":"getBlindedInventoryReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-kits-blindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-kits-blindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type and Subject Number. Rights: UnblindedChainofCustodyReportPost. Added fields: List Name, Units per Kit, Returned Units, Missing Units, Depot Returned Units, Balance Units, CRA Verified, Barcode, Dispensation Confirmed, Device ID, Label Group ID",
                "operationId":"getChainOfCustodyReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/cohortenrollments/history":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Cohort Enrollment Audit Trail report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Cohort Enrollment Audit Trail report. Rights: EnrollmentReportPost.",
                "operationId":"getCohortEnrollmentHistoryReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-cohortenrollments-history-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-cohortenrollments-history-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/cohortenrollments":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Cohort Enrollment report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Cohort Enrollment report. Rights: EnrollmentReportPost.",
                "operationId":"getCohortEnrollmentReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-cohortenrollments-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-cohortenrollments-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/projectedsupplies/countrycounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for countries"
                ],
                "summary":"v2.0",
                "description":"Retrieves the projected supplies data for countries.",
                "operationId":"getCountryCounts_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-projectedsupplies-countrycounts-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-projectedsupplies-countrycounts-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/projectedsupplies/depotcounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for depots"
                ],
                "summary":"v2.0",
                "description":"Retrieves the projected supplies data for depots.",
                "operationId":"getDepotCounts_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-projectedsupplies-depotcounts-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-projectedsupplies-depotcounts-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/doseholdsettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get dose hold settings report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the dose hold settings report.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getEnabledDoseHoldSettings_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-doseholdsettings-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-doseholdsettings-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/inventorysettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Inventory Settings report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Study Inventory Settings report. Rights: StudyDesignReportPost.",
                "operationId":"getInventorySettingsReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-inventorysettings-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-inventorysettings-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/order-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Order Summary report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the Order Summary report.",
                "operationId":"getOrderSummarReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-order-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-order-summary-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/partialdispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get partial dispensation settings report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the partial dispensation settings report. Versioned to support auditing and includes the following new columns in the response: status, operation, LastModifiedDateTime. <br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getPartialDispensations_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-partialdispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-partialdispensations-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/unblindedrandreport":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Randomization List report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the Randomization List report. Rights: UnblindedRandomizationReportPost.",
                "operationId":"getRandReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"systemDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"rndListId",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-unblindedrandreport-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-unblindedrandreport-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/recon":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Reconciliation report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves Kit Reconciliation report. Rights: ReconciliationReport.",
                "operationId":"getReconReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-recon-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-recon-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/projectedsupplies/sitecounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for sites"
                ],
                "summary":"v2.0",
                "description":"Retrieves the projected supplies data for sites.",
                "operationId":"getSiteCounts_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-projectedsupplies-sitecounts-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-projectedsupplies-sitecounts-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/supplysettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Design report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Study Design report. Rights: StudyDesignReportPost.",
                "operationId":"getStudyDesignReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-supplysettings-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-supplysettings-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"visitIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/subjects":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Subject Data report"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves the Subject Data report. Rights: SubjectDataReportPost. This API is used in Subject Visit (Blinded) Report, Subject Events Report and CTMS Report.",
                "operationId":"getSubjectsReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"visitIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"eventType",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "Randomized"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-subjects-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-subjects-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/blinded-titration-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Titration Summary (Blinded) report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Titration Summary (Blinded) report, kit description will be shown along with kit number. Rights: TitrationSummaryReport.",
                "operationId":"getTitrationSummaryBlindedReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-blinded-titration-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-blinded-titration-summary-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/titration-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Titration Summary (Unblinded) report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Titration Summary (Unblinded) report. Dosing calculations are included in the response. <br>Rights: <i>UnBlindedTitrationSummaryReport</i>.\"",
                "operationId":"getTitrationSummaryReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-titration-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-titration-summary-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/kits/unblindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Unblinded) report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Kit Inventory (Unblinded) report. Rights: UnblindedInventoryReportPost.",
                "operationId":"getUnBlindedInventoryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-kits-unblindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-kits-unblindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/reports/unblinded-visit-schedule":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Visit Schedule report"
                ],
                "summary":"v2.0",
                "description":"Retrieves the Unblinded Visit Schedule report. This version includes new fields for <b>Kit Replacement</b> and <b>Dispensed Date</b>. <br>Rights: <i>UnblindedSubjectVisitReport</i>.",
                "operationId":"getUnblindedVisitScheduleReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-reports-unblinded-visit-schedule-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-reports-unblinded-visit-schedule-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupplies":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all resupply groups"
                ],
                "summary":"v2.0",
                "description":"Retrieves all resupply groups created for a study.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.triggerWeeks and resupplyWeeks fields aren't needed for Min/Max strategies, so they're hidden when fetched.",
                "operationId":"getResupplyGroups_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyTypeId",
                        "in":"query",
                        "description":"ID of resupply type.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "enum":[
                                null
                            ]
                        },
                        "example":1
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Type of resupply.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Site,Depot"
                            ]
                        },
                        "example":"Site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponseV2"
                                },
                                "examples":{
                                    "Get Resupply Groups Response":{
                                        "description":"Get Resupply Groups Response",
                                        "value":{
                                            "resupplyGroups":[
                                                {
                                                    "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "name":"Site Resupply Group",
                                                    "type":"Site",
                                                    "resupplyTypeId":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Resupply groups not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupplies-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupplies-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Create a resupply group"
                ],
                "summary":"v2.0",
                "description":"Creates a resupply group for a study. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"createResupplyGroup_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequest"
                            },
                            "examples":{
                                "Create Resupply Group Request":{
                                    "description":"Create Resupply Group Request",
                                    "value":{
                                        "name":"Site Resupply Group",
                                        "type":"Site",
                                        "resupplyTypeId":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "400":{
                        "description":"'Invalid resupply type', 'Duplicate resupply'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid resupply group request."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupplies-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupplies-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/resupplies/{resupplyId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get a resupply group by ID"
                ],
                "summary":"v2.0",
                "description":"Retrieves a resupply group by ID.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"getResupplyGroup_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponseV2"
                                },
                                "examples":{
                                    "Get Resupply Group Response":{
                                        "description":"Get Resupply Group Response",
                                        "value":{
                                            "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"Site Resupply Group",
                                            "type":"Site",
                                            "resupplyTypeId":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Resupply group not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupplies-resupplyid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Update a resupply by ID"
                ],
                "summary":"v2.0",
                "description":"Updates a resupply group by ID. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"updateResupplyGroup_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequest"
                            },
                            "examples":{
                                "Update Resupply Group Request":{
                                    "description":"Update Resupply Group Request",
                                    "value":{
                                        "name":"Site Resupply Group",
                                        "type":"Site",
                                        "resupplyTypeId":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Resupply group not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Validation error, 'Invalid resupply type', 'Resupply already exists', 'Resupply contains duplicate IDs for kit types', 'Invalid kit type'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid resupply group request."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-resupplies-resupplyid-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/{studyVersion}/randlist/generate":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Create randomization list"
                ],
                "summary":"v2.0",
                "description":"Generates a randomization list in the study; Rights: DesignerRandListPost.",
                "operationId":"create_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CommonGenerateRndListRequest"
                            },
                            "examples":{
                                "Generate Randomization List Request":{
                                    "description":"Generate Randomization List Request",
                                    "value":{
                                        "name":"RandList-01",
                                        "noOfRows":5
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateResponse"
                                },
                                "examples":{
                                    "Generate Randomization List Response":{
                                        "description":"Generate Randomization List Response",
                                        "value":{
                                            "listId":"9ECA4FA65076451DA7D47D59367D15A5",
                                            "noOfRowsGenerated":5
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Study version not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For algorithm not defined for the randomization design or randomization design not associated with a visit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-{studyVersion}-randlist-generate-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-studyversion-randlist-generate-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/randlists/{rndlistid}/randnumbers":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves randomization numbers for a randomization list. Supports searchString, limit, offset, blockedBy and status filters. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandNum",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9ECA4FA65076451DA7D47D59367D15A5"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"blockedBy",
                        "in":"query",
                        "description":"ID of the entity which has blocked the randomization number.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the randomization number.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandNumberResponse"
                                },
                                "examples":{
                                    "Get Randomization Numbers Response":{
                                        "description":"Get Randomization Numbers Response",
                                        "value":{
                                            "randNumbers":[
                                                {
                                                    "sequenceNumber":1001
                                                }
                                            ],
                                            "offset":0,
                                            "limit":100
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version, or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Randomization list not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-randlists-{rndlistid}-randnumbers-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-randlists-rndlistid-randnumbers-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a randomization list. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlist_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandListTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Randomization Lists Response":{
                                        "description":"Get Randomization Lists Response",
                                        "value":[
                                            {
                                                "randListId":"9ECA4FA65076451DA7D47D59367D15A5",
                                                "name":"RandList-01",
                                                "description":"Randomization list for study.",
                                                "isBlocked":"n",
                                                "isDynamic":"n",
                                                "isStratified":"y",
                                                "inUse":"y",
                                                "isCohortBased":"y"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Randomization lists not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/randlists/{rndlistid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a randomization list by ID. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlistById_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9ECA4FA65076451DA7D47D59367D15A5"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTOV2"
                                },
                                "examples":{
                                    "Get Randomization List By Id Response":{
                                        "description":"Get Randomization List By Id Response",
                                        "value":{
                                            "randListId":"9ECA4FA65076451DA7D47D59367D15A5",
                                            "name":"RandList-01",
                                            "description":"Randomization list for study.",
                                            "isBlocked":"n",
                                            "isDynamic":"n",
                                            "isStratified":"y",
                                            "inUse":"y",
                                            "isCohortBased":"y"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Randomization list not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-randlists-{rndlistid}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-randlists-rndlistid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/randlistdesigns":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Get randomization design list"
                ],
                "summary":"v2.0",
                "description":"Retrieves a randomization design list. Rights: OrsRandListGet, OrsUnblinded. Added new field: randomizationSeed.",
                "operationId":"getRandomizationListDesigns_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RndListDesignList"
                                    }
                                },
                                "examples":{
                                    "Get Randomization List Designs Response":{
                                        "description":"Get Randomization List Designs Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"RndListDesign-01"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Randomization list designs not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-randlistdesigns-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-randlistdesigns-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a kit's details by order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":10001
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"kitNumber"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentKitsResponseV2"
                                },
                                "examples":{
                                    "Get Shipment Kits Response":{
                                        "description":"Get Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "kits":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "barcode":"KIT-000005"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-kits-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Add kits to a shipment"
                ],
                "summary":"v2.0",
                "description":"Adds kits to an order shipment. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"addKitsToShipment_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be added to the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentAddKitsRequest"
                            },
                            "examples":{
                                "Add Kits To Shipment Request":{
                                    "description":"Add Kits To Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Add Kits Response":{
                                        "description":"Add Kits Response",
                                        "value":"89EE76326E984B548D594D592E5C7FC2"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-kits-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/orders-inventory/audit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order items"
                ],
                "summary":"v2.0",
                "description":"Retrieves all order items. <br>Rights: <i>OrsInventoryGet</i>, <i>OrsUnblinded</i>.",
                "operationId":"getAllOrderItems_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderItemResponse"
                                    }
                                },
                                "examples":{
                                    "Get Order Items Response":{
                                        "description":"Get Order Items Response",
                                        "value":[
                                            {
                                                "hasMore":false,
                                                "totalResults":1,
                                                "count":1,
                                                "limit":100,
                                                "offset":0,
                                                "resultData":[
                                                    {
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                        "inventoryVersionStart":"2026-02-21T06:30:00Z",
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "orderVersionStart":"2026-02-21T06:30:00Z",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Created order item.",
                                                        "orderItemId":"5BB2C53538C841268AB4E4A1E640D0C9"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request parameters."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-orders-inventory-audit-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-orders-inventory-audit-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/eligible-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get eligible kits"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Searches for kits by kit type or shipment details. Rights: OrsInventoryGet, OrsUnblinded. Added additional field kitNumberUTF in the response",
                "operationId":"getEligibleKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentEligibleKitsResponseV2"
                                },
                                "examples":{
                                    "Get Eligible Kits Response":{
                                        "description":"Get Eligible Kits Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "kits":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-eligible-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-eligible-kits-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTOV2"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"D313327EF13845169A8ADADDA435431E",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-orders-shipmentid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Update shipment details for an order"
                ],
                "summary":"v2.0",
                "description":"Updates shipment details with deliveryNumber for an order. Rights: OrsInventoryPost, OrsUnblinded.",
                "operationId":"setOrderShipment_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-000123"
                    }
                ],
                "requestBody":{
                    "description":"Order shipment details.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/OrderShipmentDTO"
                            },
                            "examples":{
                                "Set Order Shipment Request":{
                                    "description":"Set Order Shipment Request",
                                    "value":{
                                        "shipDate":"2026-02-24T00:00:00Z",
                                        "trackingNumber":"12345",
                                        "trackingNumberUrl":"http://www.site.com",
                                        "deliveryNumber":"12345",
                                        "updateDeliveryNumber":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "Set Order Shipment Response":{
                                        "description":"Set Order Shipment Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "shipmentId":"SHIP-000123",
                                                "shipmentStatus":"SHIPPED"
                                            },
                                            "errorData":null,
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment type",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-orders-{shipmentId}-put",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-orders-shipmentid-put"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Searches for orders in a given date range matching a status. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderInventoryDTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":[
                                            {
                                                "order":{
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "depotVersionStart":"2026-02-01T00:00:00Z",
                                                    "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                    "orderDate":"2026-02-20T10:15:00Z",
                                                    "orderStatusId":5,
                                                    "studyId":"D313327EF13845169A8ADADDA435431E",
                                                    "studyVersionStart":"2026-01-15T00:00:00Z",
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "shipDate":"2026-02-24T00:00:00Z",
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "trackingNumber":"12345",
                                                    "trackingNumberUrl":"http://www.site.com",
                                                    "orderType":"MANUAL",
                                                    "orderTypeId":5,
                                                    "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"DATA ENTRY ERROR",
                                                    "comment":"Updated with new values",
                                                    "isReconciliation":true,
                                                    "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                },
                                                "inventory":[
                                                    {
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "doNotCount":5,
                                                        "doNotShip":5,
                                                        "expirationDate":"2026-12-31T00:00:00Z",
                                                        "inventoryStatusId":1,
                                                        "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                        "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                        "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                        "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                        "lotVersionStart":"2026-01-15T00:00:00Z",
                                                        "sequenceNumber":5,
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "kitNumber":5,
                                                        "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                        "kitNumberUTF":"24-1",
                                                        "blockNumber":"245",
                                                        "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    }
                                                ],
                                                "version":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request parameters."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves shipment by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipment_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentTOV2"
                                },
                                "examples":{
                                    "Get Shipment Response":{
                                        "description":"Get Shipment Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "shipmentNumber":"SHIP-0001",
                                            "statusId":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipments_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-0001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"query",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "statusId":1,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipment-statuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/List available order status values"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves a list of available order status values. Rights: OrsInventoryGet.",
                "operationId":"getStatuses_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderStatus"
                                    }
                                },
                                "examples":{
                                    "Get Shipment Statuses Response":{
                                        "description":"Get Shipment Statuses Response",
                                        "value":[
                                            {
                                                "id":1,
                                                "status":"PENDING"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipment-statuses-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipment-statuses-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received"
                ],
                "summary":"v2.0",
                "description":"Marks kits as received in a study's inventory. Rights: OrsInventoryPost and DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"markSiteOrDepotShipmentReceived_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be assigned.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedRequest"
                            },
                            "examples":{
                                "Mark Shipment Received Request":{
                                    "description":"Mark Shipment Received Request",
                                    "value":{
                                        "receivedDate":"2026-02-21",
                                        "comment":"Received at site"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Response":{
                                        "description":"Mark Shipment Received Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "status":"RECEIVED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/quarantined":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Quarantine/Update shipment and its kits as quarantined"
                ],
                "summary":"v2.0",
                "description":"Updates the shipment and its kits as quarantined. Rights: OrsInventoryPost, DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"quarantineShipment_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "description":"Quarantine shipment request body.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentQuarantineRequestV1"
                            },
                            "examples":{
                                "Quarantine Shipment Request":{
                                    "description":"Quarantine Shipment Request",
                                    "value":{
                                        "tempMonitorStatus":"missing"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentQuarantineResponseV1"
                                },
                                "examples":{
                                    "Quarantine Shipment Response":{
                                        "description":"Quarantine Shipment Response",
                                        "value":{
                                            "tempExcursionNumber":"001",
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Server Error Response":{
                                        "description":"Quarantine Shipment Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"quarantineShipment",
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Not Found Response":{
                                        "description":"Quarantine Shipment Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "reason":"No shipment matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Quarantine Shipment Bad Request Response":{
                                        "description":"Quarantine Shipment Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid shipment quarantine request.",
                                                "details":{
                                                    "field":"tempMonitorStatus",
                                                    "issue":"Allowed values are yes, no, or missing."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-quarantined-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-quarantined-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/receive-quarantined":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Quarantine/Update a quarantined shipment and its kits to received"
                ],
                "summary":"v2.0",
                "description":"Updates a quarantine shipment and its kits. Rights: DepotQuarantinePost.",
                "operationId":"quarantinedShipmentToReceived_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be damaged.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/QuarantinedToReceivedRequest"
                            },
                            "examples":{
                                "Receive Quarantined Shipment Request":{
                                    "description":"Receive Quarantined Shipment Request",
                                    "value":{
                                        "damagedKits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "updateNSKits":[
                                            {
                                                "lotId":"D313327EF13845169A8ADADDA435431E",
                                                "kitTypeId":"89EE76326E984B548D594D592E5C7FC2",
                                                "inventoryStatusId":2,
                                                "quantity":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/QuarantinedToReceivedResponseV1"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Response":{
                                        "description":"Receive Quarantined Shipment Response",
                                        "value":{
                                            "receivedDate":"2026-02-24T00:00:00Z",
                                            "availableCount":98,
                                            "damagedCount":2
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Bad Request Response":{
                                        "description":"Receive Quarantined Shipment Bad Request Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "field":"damagedKits",
                                                    "issue":"One or more kits do not belong to the quarantined shipment."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Not Found Response":{
                                        "description":"Receive Quarantined Shipment Not Found Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "reason":"No shipment matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Receive Quarantined Shipment Server Error Response":{
                                        "description":"Receive Quarantined Shipment Server Error Response",
                                        "value":{
                                            "status":"ERROR",
                                            "version":2,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"quarantinedShipmentToReceived",
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-receive-quarantined-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-receive-quarantined-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/shipments/{shipmentId}/removeKits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Remove kits from a shipment"
                ],
                "summary":"v2.0",
                "description":"Removes both serialized and non-serialized kits from an order shipment. Rights: OrsInventoryDelete, OrsUnblinded.",
                "operationId":"removeKitsFromShipmentPost_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "description":"Kits to be removed from the shipment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentRemoveKitsRequest"
                            },
                            "examples":{
                                "Remove Kits From Shipment Request":{
                                    "description":"Remove Kits From Shipment Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string",
                                    "format":"uuid"
                                },
                                "examples":{
                                    "Remove Kits Response":{
                                        "description":"Remove Kits Response",
                                        "value":"89EE76326E984B548D594D592E5C7FC2"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid Kit', 'Invalid shipment status'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "message":"Invalid request payload."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-shipments-{shipmentId}-removeKits-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-shipments-shipmentid-removekits-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/titration-eligible":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Titration APIs/Check if subject is eligible for titration"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Checks if subject is eligible for titration. This is a new version of the API for returning additional attributes for titration kit label. Rights: OrsSubjectVisitGet.",
                "operationId":"isTitrationAllowedForSubject_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitKitTypeTO"
                                    }
                                },
                                "examples":{
                                    "Titration Eligible Response":{
                                        "description":"Titration Eligible Response",
                                        "value":[
                                            {
                                                "titrationId":"B1B8327AFAA6412287106192AB5984EF",
                                                "status":"ALLOW",
                                                "isUpAllowed":true,
                                                "isDownAllowed":true,
                                                "kitsDispensed":[
                                                    "B1B8327AFAA6412287106192AB5984EF",
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For a subject who cannot be titrated as there are no titration kits dispensed to the subject earlier OR Subject cannot be titrated as no matching kits are defined with subject dispensations. ORInvalid subject OR Missing subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "errorCode":"INVALID_REQUEST",
                                            "message":"Invalid request."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Visit not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "message":"Resource not found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "errorCode":"SERVER_ERROR",
                                            "message":"Unexpected error."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-titration-eligible-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-titration-eligible-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/allowed-doseholds":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits allowed for dose hold"
                ],
                "summary":"v2.0",
                "description":"Get kits allowed for dose hold in the current visit for a given subject. Rights: OrsSubjectVisitGet.",
                "operationId":"getAllowedDoseHold_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKitsResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Response":{
                                        "description":"Allowed Dose Holds Response",
                                        "value":{
                                            "status":"ALLOW_DOSE_HOLD",
                                            "kitsAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "trialSupplyType":"BOTTLE",
                                                    "isTitration":true
                                                }
                                            ],
                                            "kitsNotAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitDescription":"Kit B",
                                                    "trialSupplyType":"DEVICE",
                                                    "isTitration":false,
                                                    "reason":"DOSE_HOLD_NOT_ALLOWED_ON_ANY_KITS"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Bad Request Response":{
                                        "description":"Allowed Dose Holds Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The allowed dose holds request is invalid.",
                                                "details":{
                                                    "field":"studyVersion",
                                                    "reason":"The study version is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Server Error Response":{
                                        "description":"Allowed Dose Holds Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-500",
                                                "errorMessage":"Unexpected error while retrieving allowed dose holds.",
                                                "details":{
                                                    "operation":"getAllowedDoseHold",
                                                    "reason":"The dose hold evaluation failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-allowed-doseholds-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-allowed-doseholds-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codebreak":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code break"
                ],
                "summary":"v2.0",
                "description":"Retrieves code break. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreak_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Code view parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code Break Request":{
                                    "description":"Code Break Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code Break Response":{
                                        "description":"Code Break Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Not Found Response":{
                                        "description":"Code Break Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Code break information was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have code break data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Bad Request Response":{
                                        "description":"Code Break Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The code break request is invalid.",
                                                "details":{
                                                    "field":"adverseEvent",
                                                    "reason":"The adverse event flag must be 0 or 1."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Server Error Response":{
                                        "description":"Code Break Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving code break information.",
                                                "details":{
                                                    "operation":"getCodeBreak",
                                                    "reason":"The code break lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codebreak-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-srcsubjectid-codebreak-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codeview":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code view"
                ],
                "summary":"v2.0",
                "description":"Retrieves code view. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeView_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Code view parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code View Request":{
                                    "description":"Code View Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code View Response":{
                                        "description":"Code View Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Not Found Response":{
                                        "description":"Code View Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"Code view information was not found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have code view data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Bad Request Response":{
                                        "description":"Code View Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The code view request is invalid.",
                                                "details":{
                                                    "field":"adverseEvent",
                                                    "reason":"The adverse event flag must be 0 or 1."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Server Error Response":{
                                        "description":"Code View Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving code view information.",
                                                "details":{
                                                    "operation":"getCodeView",
                                                    "reason":"The code view lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codeview-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-srcsubjectid-codeview-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves dispensation history. Rights: OrsSubjectVisitGet.",
                "operationId":"getDispensationHistory_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV2"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":10001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:45:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitDescription":"Bottle of tablets"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Not Found Response":{
                                        "description":"Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No dispensation history was found for the subject visit.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"The subject does not have dispensation history for the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Bad Request Response":{
                                        "description":"Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The dispensation history request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Server Error Response":{
                                        "description":"Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving dispensation history.",
                                                "details":{
                                                    "operation":"getDispensationHistory",
                                                    "reason":"The dispensation history lookup could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/randomization-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get randomization history"
                ],
                "summary":"v2.0",
                "description":"Retrieves randomization history. Rights: OrsSubjectVisitGet. Added new field: visit ID.",
                "operationId":"getRandomizationHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Randomization History Response":{
                                        "description":"Randomization History Response",
                                        "value":[
                                            {
                                                "randNumber":1001,
                                                "randomizationDate":"2026-02-21T06:45:00Z",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization History Not Found Response":{
                                        "description":"Randomization History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No randomization history was found for the subject.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"The subject has not been randomized."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization History Server Error Response":{
                                        "description":"Randomization History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving randomization history.",
                                                "details":{
                                                    "operation":"getRandomizationHistory",
                                                    "reason":"The randomization history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-randomization-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-externalsubjectid-randomization-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/reuse-kits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves previously dispensed kits, from a list of kit types passed in the request body, that can be reused in the current visit for a given subject. Support for unblinded pharmacist kits which are put on dose hold. Rights: OrsSubjectVisitGet.",
                "operationId":"getReusableDoseHoldKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Contains details for getting reusable kits.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDoseHoldRequest"
                            },
                            "examples":{
                                "Reusable Kits Request":{
                                    "description":"Reusable Kits Request",
                                    "value":{
                                        "studyVersion":"1.0",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1,
                                        "titrationOption":"up",
                                        "kitTypesForDoseHold":[
                                            {
                                                "kitTypeSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"Spirometer",
                                                "isTitration":true
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReusableKitsResponseV1"
                                },
                                "examples":{
                                    "Reusable Kits Response":{
                                        "description":"Reusable Kits Response",
                                        "value":{
                                            "status":"ALLOW",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Bad Request Response":{
                                        "description":"Reusable Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The reusable kits request is invalid.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Server Error Response":{
                                        "description":"Reusable Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving reusable kits.",
                                                "details":{
                                                    "operation":"getReusableDoseHoldKits",
                                                    "reason":"The reusable kits lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-reuse-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-reuse-kits-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{subjectId}/doseheld":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits which are marked as dose hold"
                ],
                "summary":"v2.0",
                "description":"Get kits which are marked as dose hold in the current visit. Rights: OrsSubjectVisitGet.",
                "operationId":"getSubjectVisitDoseHeldKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKitV2"
                                },
                                "examples":{
                                    "Dose Held Kits Response":{
                                        "description":"Dose Held Kits Response",
                                        "value":{
                                            "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "kitDescription":"Kit A",
                                            "trialSupplyType":"BOTTLE",
                                            "isTitration":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Bad Request Response":{
                                        "description":"Dose Held Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-400",
                                                "errorMessage":"The dose held kits request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Server Error Response":{
                                        "description":"Dose Held Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"DOSE-500",
                                                "errorMessage":"Unexpected error while retrieving dose held kits.",
                                                "details":{
                                                    "operation":"getSubjectVisitDoseHeldKits",
                                                    "reason":"The dose held kits lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{subjectId}-doseheld-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-subjectid-doseheld-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Retrieves unblinded dispensation history for all subjects within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedAllDispHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SUBJ-001"
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "description":"Value of audit parameter",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DispensationHistoryResponseForAllSubjectV2"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Response":{
                                        "description":"Unblinded Dispensation History Response",
                                        "value":{
                                            "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "instanceNumber":1,
                                            "siteId":"D313327EF13845169A8ADADDA435431E",
                                            "inventoryId":"E39FF55A445543A38D513325664F0B2D",
                                            "kitNumber":10001,
                                            "inventoryStatus":"Available",
                                            "dispensationDate":"2026-02-21T06:45:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Not Found Response":{
                                        "description":"Unblinded Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded dispensation history was found.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"No dispensation records matched the supplied filters."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Server Error Response":{
                                        "description":"Unblinded Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded dispensation history.",
                                                "details":{
                                                    "operation":"getUnblindedAllDispHistory",
                                                    "reason":"The dispensation history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history"
                ],
                "summary":"v2.0",
                "description":"Retrieves history of unblinded dispensation for a subject within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedDispensationHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedDispensationHistoryDTO"
                                },
                                "examples":{
                                    "Unblinded Dispensation History By Subject Response":{
                                        "description":"Unblinded Dispensation History By Subject Response",
                                        "value":{
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Bottle kit",
                                                    "packageTypeId":2,
                                                    "packageType":"BOTTLE",
                                                    "dispensationDetails":[
                                                        {
                                                            "kitNumber":10001,
                                                            "inventoryStatus":4,
                                                            "dispensationDate":"2026-02-21T06:45:00Z"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History By Subject Not Found Response":{
                                        "description":"Unblinded Dispensation History By Subject Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded dispensation history was found for the subject.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject has no dispensed kits for the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History By Subject Bad Request Response":{
                                        "description":"Unblinded Dispensation History By Subject Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The unblinded dispensation history request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History By Subject Server Error Response":{
                                        "description":"Unblinded Dispensation History By Subject Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded dispensation history for the subject.",
                                                "details":{
                                                    "operation":"getUnblindedDispensationHistory",
                                                    "reason":"The dispensation history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-srcsubjectid-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/unblinded-rand-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded randomization history"
                ],
                "summary":"v2.0",
                "description":"Retrieves unblinded randomization history. Rights: OrsSubjectVisitGet. Added new field: Cohort ID.",
                "operationId":"getUnblindedRandHistory_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedRandomizationHistoryDTOV2"
                                },
                                "examples":{
                                    "Unblinded Randomization History Response":{
                                        "description":"Unblinded Randomization History Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4,
                                                    "description":"Treatment Arm A",
                                                    "externalTreatmentId":"TA",
                                                    "visitId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History Not Found Response":{
                                        "description":"Unblinded Randomization History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded randomization history was found.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject has no unblinded randomization history."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History Server Error Response":{
                                        "description":"Unblinded Randomization History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded randomization history.",
                                                "details":{
                                                    "operation":"getUnblindedRandHistory",
                                                    "reason":"The randomization history lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-unblinded-rand-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-srcsubjectid-unblinded-rand-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/unblinded-rand-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded randomization history for all subjects"
                ],
                "summary":"v2.0",
                "description":"Retrieves unblinded randomization history for all subjects within the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getUnblindedRandHistoryForAllSubjects_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"SUBJ-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UnblindedRandomizationHistoryDTOV2"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Response":{
                                        "description":"Unblinded Randomization History For All Subjects Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2026-02-21T06:45:00Z",
                                                    "rndStatusId":4,
                                                    "description":"Treatment Arm A",
                                                    "externalTreatmentId":"TA",
                                                    "visitId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Not Found Response":{
                                        "description":"Unblinded Randomization History For All Subjects Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"No unblinded randomization history was found for the supplied filters.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"No randomization records matched the request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization History For All Subjects Server Error Response":{
                                        "description":"Unblinded Randomization History For All Subjects Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving unblinded randomization history for all subjects.",
                                                "details":{
                                                    "operation":"getUnblindedRandHistoryForAllSubjects",
                                                    "reason":"The randomization history query failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-unblinded-rand-history-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-unblinded-rand-history-get"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit by its visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV2"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"A",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Not Found Response":{
                                        "description":"Get Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"The requested subject visit was not found.",
                                                "details":{
                                                    "field":"externalSubjectId",
                                                    "reason":"No subject visit matched the supplied subject and visit identifiers."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Bad Request Response":{
                                        "description":"Get Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The get visit request is invalid.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The visit identifier is not valid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Server Error Response":{
                                        "description":"Get Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while retrieving the subject visit.",
                                                "details":{
                                                    "operation":"getVisit",
                                                    "reason":"The visit lookup could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"D313327EF13845169A8ADADDA435431E",
                                        "visitTimestamp":"2026-02-21 06:45:00",
                                        "studyVersion":"1.0.0.5"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV2"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"A",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Not Found Response":{
                                        "description":"Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"The subject visit was not found.",
                                                "details":{
                                                    "field":"visitId",
                                                    "reason":"The subject is not assigned to the supplied visit."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Bad Request Response":{
                                        "description":"Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The visit request is invalid.",
                                                "details":{
                                                    "field":"subjectId",
                                                    "reason":"The subject identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Server Error Response":{
                                        "description":"Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while processing the visit.",
                                                "details":{
                                                    "operation":"visit",
                                                    "reason":"The visit could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/visits/migrateDispensation":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Migrate dispensation"
                ],
                "summary":"v2.0",
                "description":"Migrates dispensation records",
                "operationId":"migrationDispensation_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/MigrationRequestV2"
                            },
                            "examples":{
                                "Migrate Dispensation Request":{
                                    "description":"Migrate Dispensation Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1,
                                        "studyVersion":"1.0.0.5",
                                        "kits":[
                                            {
                                                "sequenceNumber":10001,
                                                "statusId":4,
                                                "locationId":"B1B8327AFAA6412287106192AB5984EF",
                                                "dispensationTimeStamp":"2026-02-21 06:45:00"
                                            }
                                        ],
                                        "randomNumber":1001,
                                        "randomizationListId":"D313327EF13845169A8ADADDA435431E",
                                        "visitTimestamp":"2026-02-21 06:45:00"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/Response"
                                },
                                "examples":{
                                    "Migrate Dispensation Response":{
                                        "description":"Migrate Dispensation Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "quantity":1,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "visitTimestamp":"2026-02-21T06:45:00Z",
                                            "treatmentTitle":"TA"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Migrate Dispensation Server Error Response":{
                                        "description":"Migrate Dispensation Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while migrating dispensation data.",
                                                "details":{
                                                    "operation":"migrationDispensation",
                                                    "reason":"The migration request could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-visits-migrateDispensation-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-visits-migratedispensation-post"
            }
        },
        "/ec-ors-svc/rest/v2.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/replacekits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Replace a subject's kits"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Replaces a subject's kits in the system, accepts Strings and Numbers. Rights: OrsVisitManagementPost.",
                "operationId":"replaceSubjectKits_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "description":"Subject replace kits parameters.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectReplaceKitsRequest"
                            },
                            "examples":{
                                "Replace Subject Kits Request":{
                                    "description":"Replace Subject Kits Request",
                                    "value":{
                                        "kits":[
                                            "5a"
                                        ],
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Damaged kit replacement",
                                        "reasonLabel":"kits are damaged"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectReplaceKitsResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Response":{
                                        "description":"Replace Subject Kits Response",
                                        "value":{
                                            "replacedKits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "quantity":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Not Found Response":{
                                        "description":"Replace Subject Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-404",
                                                "errorMessage":"The subject kits to replace were not found.",
                                                "details":{
                                                    "field":"srcSubjectId",
                                                    "reason":"The subject does not have matching kits for replacement."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or this operation is not allowed during the current subject statusOr invalid kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Bad Request Response":{
                                        "description":"Replace Subject Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-400",
                                                "errorMessage":"The subject kit replacement request is invalid.",
                                                "details":{
                                                    "field":"kits",
                                                    "reason":"At least one replacement kit must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Subject is randomized in error. Or not enough inventory",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Server Error Response":{
                                        "description":"Replace Subject Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"VISIT-500",
                                                "errorMessage":"Unexpected error while replacing subject kits.",
                                                "details":{
                                                    "operation":"replaceSubjectKits",
                                                    "reason":"The replacement could not be completed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v2.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-replacekits-post",
                "x-filename-id":"ec-ors-svc-rest-v2.0-studies-studyid-mode-subjects-srcsubjectid-replacekits-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/lots/blinded-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lots"
                ],
                "summary":"v3.0",
                "description":"Retrieves all blinded lots with release depot to depot settings.<br>To get a specific lot see <a href='op-ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-blindedlotid-get.html'>Get blinded lot by ID</a>.",
                "operationId":"getAllBlindedLots_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lots Response":{
                                        "description":"Get Blinded Lots Response",
                                        "value":{
                                            "blindedLots":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "blindedLotNumber":"Bld-Lt-AZ",
                                                    "shortName":"BlindedLot-01",
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "doNotShip":50,
                                                    "doNotCount":10,
                                                    "manufacturingLotIds":[
                                                        "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                                    ],
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionEnd":"2026-02-21T06:45:00Z",
                                                    "operationType":"UPDATE",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"Audit",
                                                    "comment":"Updated blinded lot details",
                                                    "inUse":true,
                                                    "settingsByCountry":[
                                                        {
                                                            "id":"A36A3197FDEE433FB5547EE83DE99E4B",
                                                            "countryIso":"US",
                                                            "doNotCount":10,
                                                            "doNotShip":50,
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "versionStart":"2026-02-21T06:30:00Z"
                                                        }
                                                    ],
                                                    "releaseForDepotToDepot":true
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lots Not Found Response":{
                                        "description":"Get Blinded Lots Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"blindedLotId",
                                                    "reason":"No blinded lot matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"v3.0 The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lots Bad Request Response":{
                                        "description":"Get Blinded Lots Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot request is invalid.",
                                                "details":{
                                                    "field":"includeDeleted",
                                                    "reason":"The blinded lot query parameters are invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-blinded-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create blinded lot"
                ],
                "summary":"v3.0",
                "description":"Creates blinded lot with release depot to depot settings.",
                "operationId":"createBlindedLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/releaseForDepotToDepot"
                            },
                            "examples":{
                                "Create Blinded Lot Request":{
                                    "description":"Create Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        ],
                                        "settingsByCountry":[
                                            {
                                                "countryIso":"US",
                                                "doNotShip":50,
                                                "doNotCount":10
                                            }
                                        ],
                                        "releaseForDepotToDepot":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Blinded Lot Response":{
                                        "description":"Create Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Blinded Lot Not Found Response":{
                                        "description":"Create Blinded Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The study or randomization design was not found.",
                                                "details":{
                                                    "field":"studyId",
                                                    "reason":"The blinded lot could not be created because the study context was not found."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"v3.0 The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Blinded Lot Bad Request Response":{
                                        "description":"Create Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot request is invalid.",
                                                "details":{
                                                    "field":"manufacturingLotIds",
                                                    "reason":"At least one valid manufacturing lot identifier must be supplied."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-blinded-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/lots/blinded-lots/{blindedLotId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get blinded lot by ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves blinded lot by ID, with release depot to depot settings.<br>To get all blinded lots see <a href='op-ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-get.html'>Get blinded lots</a>.",
                "operationId":"getBlindedLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"blindedLotId",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lot By ID Response":{
                                        "description":"Get Blinded Lot By ID Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "blindedLotNumber":"Bld-Lt-AZ",
                                            "shortName":"BlindedLot-01",
                                            "expirationDate":"2026-12-31T00:00:00Z",
                                            "doNotShip":50,
                                            "doNotCount":10,
                                            "manufacturingLotIds":[
                                                "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                            ],
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "versionEnd":"2026-02-21T06:45:00Z",
                                            "operationType":"UPDATE",
                                            "objectVersionNumber":1,
                                            "softwareVersionNumber":1,
                                            "reason":"Audit",
                                            "comment":"Updated blinded lot details",
                                            "inUse":true,
                                            "settingsByCountry":[
                                                {
                                                    "id":"A36A3197FDEE433FB5547EE83DE99E4B",
                                                    "countryIso":"US",
                                                    "doNotCount":10,
                                                    "doNotShip":50,
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "versionStart":"2026-02-21T06:30:00Z"
                                                }
                                            ],
                                            "releaseForDepotToDepot":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lot By ID Not Found Response":{
                                        "description":"Get Blinded Lot By ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"blindedLotId",
                                                    "reason":"No blinded lot matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"v3.0 The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BlindedLotsResponseV3"
                                },
                                "examples":{
                                    "Get Blinded Lot By ID Bad Request Response":{
                                        "description":"Get Blinded Lot By ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot request is invalid.",
                                                "details":{
                                                    "field":"blindedLotId",
                                                    "reason":"The supplied blinded lot identifier is invalid."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-blinded-lots-{blindedLotId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-blindedlotid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update blinded lot"
                ],
                "summary":"v3.0",
                "description":"Updates blinded lot with release depot to depot settings.",
                "operationId":"updateBlindedLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"blindedLotId",
                        "in":"path",
                        "description":"ID of blinded lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/releaseForDepotToDepot"
                            },
                            "examples":{
                                "Update Blinded Lot Request":{
                                    "description":"Update Blinded Lot Request",
                                    "value":{
                                        "blindedLotNumber":"Bld-Lt-AZ",
                                        "shortName":"BlindedLot-01",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "manufacturingLotIds":[
                                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                                        ],
                                        "settingsByCountry":[
                                            {
                                                "countryIso":"US",
                                                "doNotShip":50,
                                                "doNotCount":10
                                            }
                                        ],
                                        "releaseForDepotToDepot":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Blinded Lot Response":{
                                        "description":"Update Blinded Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Blinded lot not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Blinded Lot Not Found Response":{
                                        "description":"Update Blinded Lot Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-404",
                                                "errorMessage":"The blinded lot was not found.",
                                                "details":{
                                                    "field":"blindedLotId",
                                                    "reason":"No blinded lot matched the supplied identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"v3.0 The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Blinded Lot Bad Request Response":{
                                        "description":"Update Blinded Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BLIND-400",
                                                "errorMessage":"The blinded lot update request is invalid.",
                                                "details":{
                                                    "field":"shortName",
                                                    "reason":"The blinded lot short name must be unique."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-blinded-lots-{blindedLotId}-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-blinded-lots-blindedlotid-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/settings/cohortlimits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Get cohort limits by study and mode"
                ],
                "summary":"v3.0",
                "description":"Retrieves cohort limits by study and mode. Rights: SubjectSettingRightsGet.",
                "operationId":"getCohortLimits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimit"
                                    }
                                },
                                "examples":{
                                    "Get Cohort Limits Response":{
                                        "description":"Get Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true,
                                                "forcedRandLimit":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Cohort Limits Server Error Response":{
                                        "description":"Get Cohort Limits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"COHORT-500",
                                                "errorMessage":"Unexpected error while retrieving cohort limits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-settings-cohortlimits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-settings-cohortlimits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Cohort APIs/Save cohort limits by study and mode"
                ],
                "summary":"v3.0",
                "description":"Saves cohort limits by study and mode. Rights: SubjectSettingRightsPost.",
                "operationId":"setCohortLimits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"fromMode",
                        "in":"query",
                        "description":"From mode.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CohortLimitList"
                            },
                            "examples":{
                                "Set Cohort Limits Request":{
                                    "description":"Set Cohort Limits Request",
                                    "value":{
                                        "cohortLimits":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true,
                                                "forcedRandLimit":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortLimit"
                                    }
                                },
                                "examples":{
                                    "Set Cohort Limits Response":{
                                        "description":"Set Cohort Limits Response",
                                        "value":[
                                            {
                                                "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                                                "stratumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "randomizationLimit":5,
                                                "notificationLimit":5,
                                                "enabled":true,
                                                "forcedRandLimit":5
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Set Cohort Limits Server Error Response":{
                                        "description":"Set Cohort Limits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"COHORT-500",
                                                "errorMessage":"Unexpected error while saving cohort limits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-settings-cohortlimits-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-settings-cohortlimits-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/events/codebreak/{eventId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Event APIs/Get details about a Code Break event"
                ],
                "summary":"v3.0",
                "description":"Retrieves details about a Code Break event in the study. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreakEvent_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"eventId",
                        "in":"path",
                        "description":"ID of event.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "Code Break Event Response":{
                                        "description":"Code Break Event Response",
                                        "value":{
                                            "eventId":"B1B8327AFAA6412287106192AB5984EF",
                                            "actionType":"CODEBREAK",
                                            "status":"COMPLETED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study identifier does not match any study identifiers in Clinical One. OR Event not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Incorrect event type. Or No data found for the event.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-events-codebreak-{eventId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-events-codebreak-eventid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/kits/{sourceId}/export":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Export kit details for the inventory"
                ],
                "summary":"v3.0",
                "description":"Exports kit details for the inventory source as a CSV file. In this API, Block Number column is added to export in the file. Rights: DesignerKitListGet.",
                "operationId":"export_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sourceId",
                        "in":"path",
                        "description":"Source ID of the inventory.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"INV-SRC-01"
                    }
                ],
                "responses":{
                    "204":{
                        "description":"Successful operation",
                        "content":{
                            "*/*":{
                                "examples":{
                                    "Export Inventory Kits Success (No Content)":{
                                        "description":"Export is streamed as a file download; response has no body."
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"No matching inventory source is available",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Inventory Export Not Found Response":{
                                        "description":"Inventory Export Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "*/*":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Inventory Export Server Error Response":{
                                        "description":"Inventory Export Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-kits-{sourceId}-export-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-kits-sourceid-export-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventorystatuses/allowed/{fromInventoryStatusId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get allowed inventory statuses"
                ],
                "summary":"v3.0",
                "description":"Retrieves allowed inventory statuses. Rights: OrsInventoryGet.",
                "operationId":"getAllowedInventoryStatuses_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"fromInventoryStatusId",
                        "in":"path",
                        "description":"ID of the initial inventory status in status transition.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Response":{
                                        "description":"Get Allowed Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Allowed Inventory Statuses Server Error Response":{
                                        "description":"Get Allowed Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventorystatuses-allowed-{fromInventoryStatusId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventorystatuses-allowed-frominventorystatusid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventorystatuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory statuses"
                ],
                "summary":"v3.0",
                "description":"Retrieves statuses from an inventory. Rights: OrsInventoryGet.",
                "operationId":"getInventoryStatuses_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Inventory Statuses Response":{
                                        "description":"Get Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Statuses Server Error Response":{
                                        "description":"Get Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventorystatuses-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventorystatuses-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventory/kitDetails":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit details by kit number"
                ],
                "summary":"v3.0",
                "description":"Retrieves kit details by kit number. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitByKitNumber_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitInfoResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Response":{
                                        "description":"Get Kit By Kit Number Response",
                                        "value":{
                                            "kitDetails":{
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "locationId":"SITE-001",
                                                "manufacturingLotId":"LOT-001",
                                                "blindedLotId":"BLDLOT-001",
                                                "labelGroupId":"LABEL-001",
                                                "inventoryStatus":"Available",
                                                "manufacturingLotNumber":"ML-01",
                                                "blindedLotNumber":"Bld-Lt-AZ",
                                                "labelGroup":"LabelGroup-01",
                                                "kitTypeSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "materialId":"MAT-001",
                                                "itemNumber":"ITEM-001",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "doNotCount":10,
                                                "doNotShip":50,
                                                "missingUnits":0,
                                                "returnedUnits":0,
                                                "verified":true,
                                                "barcode":"1234567890"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Not Found Response":{
                                        "description":"Get Kit By Kit Number Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Bad Request Response":{
                                        "description":"Get Kit By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Server Error Response":{
                                        "description":"Get Kit By Kit Number Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventory-kitDetails-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventory-kitdetails-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/kitlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit list details"
                ],
                "summary":"v3.0",
                "description":"Retrieves generated or uploaded kit lists details in a study, for both pooled and non-pooled kits. <br><b>Rights:</b> <i>OrsInventoryGet</i>.",
                "operationId":"getKitListsDetails_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitListDetailsTOV3"
                                    }
                                },
                                "examples":{
                                    "Get Kit List Details Response":{
                                        "description":"Get Kit List Details Response",
                                        "value":[
                                            {
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"KitList-01",
                                                "description":"Example kit list.",
                                                "statusId":1,
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "pooledKitList":false
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit List Details Server Error Response":{
                                        "description":"Get Kit List Details Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-kitlists-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-kitlists-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":{
                                            "kitTypes":[
                                                {
                                                    "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                    "kitTypeName":"KitType-01",
                                                    "description":"Example kit type.",
                                                    "packageTypeId":1,
                                                    "packageType":"Bottle",
                                                    "totalKitNumbers":100,
                                                    "kitsDispensed":5,
                                                    "kitsDamaged":1,
                                                    "kitsAvailable":94,
                                                    "kitsInTransit":0,
                                                    "kitsReturnedToSite":0,
                                                    "kitsPendingDestruction":0,
                                                    "kitsExpired":0
                                                }
                                            ],
                                            "minSequenceNumber":1,
                                            "maxSequenceNumber":100,
                                            "minKitNumber":1001,
                                            "maxKitNumber":1100
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventory/kits/audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Kit list details for each kit"
                ],
                "summary":"v3.0",
                "description":"Kit list details of each kit. In this API, blockNumber and kitNumberUTF are added to return block number and kit number in UTF-8. Rights: OrsInventoryGet.",
                "operationId":"getKitsAudit_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"inventorySourceId",
                        "in":"query",
                        "description":"Source ID of the inventory.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsAuditRequestV1"
                            },
                            "examples":{
                                "Kits Audit Request":{
                                    "description":"Kits Audit Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsAuditResponse"
                                },
                                "examples":{
                                    "Kits Audit Response":{
                                        "description":"Kits Audit Response",
                                        "value":{
                                            "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                            "transactionId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitNumberUTF":"KIT-1001",
                                            "blockNumber":"BLK-01",
                                            "kitNumber":1001,
                                            "inventoryStatusId":1,
                                            "operationType":"UPDATE",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "reason":"Audit",
                                            "comment":"Updated kit status",
                                            "subjectId":"11111111111111111111111111111111",
                                            "visitId":"22222222222222222222222222222222",
                                            "instanceNumber":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Inventory Source ID not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Not Found Response":{
                                        "description":"Kits Audit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Bad Request Response":{
                                        "description":"Kits Audit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Server Error Response":{
                                        "description":"Kits Audit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventory-kits-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventory-kits-audit-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventory/kit-types/{kitTypeId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves kit summary by kit type ID with new Column : BlockNumbers, kitNumberUTF8. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitsByKitTypeId_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string"
                        },
                        "example":100
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered. Default value is 'SEQUENCE_NUMBER'.",
                        "schema":{
                            "type":"string",
                            "default":"SEQUENCE_NUMBER"
                        },
                        "example":"SEQUENCE_NUMBER"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"blockNumber",
                        "in":"query",
                        "description":"Block number",
                        "schema":{
                            "type":"string"
                        },
                        "example":"BLK-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDetailsResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Response":{
                                        "description":"Get Kits By Kit Type ID Response",
                                        "value":{
                                            "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitTypeName":"KitType-01",
                                            "minSequenceNumber":1,
                                            "maxSequenceNumber":10,
                                            "minKitNumber":1001,
                                            "maxKitNumber":1010,
                                            "totalResults":10,
                                            "count":10,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/inventory/kit-types/9B83BFB48C5A41C59775E4D8D22D8B26/kits?offset=0&limit=100"
                                                }
                                            ],
                                            "kits":[
                                                {
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":1001,
                                                    "sequenceNumber":1,
                                                    "inventoryStatusId":1,
                                                    "locationId":"SITE-001",
                                                    "inventoryStatus":"Available"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version or Kit type not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Not Found Response":{
                                        "description":"Get Kits By Kit Type ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filtersOR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Bad Request Response":{
                                        "description":"Get Kits By Kit Type ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Server Error Response":{
                                        "description":"Get Kits By Kit Type ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventory-kit-types-{kitTypeId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventory-kit-types-kittypeid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/kits/{kitNumberUTF}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history by KitNumberUTF"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a kit's history by passing kitNumberUTF. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getSiteKitHistory_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumberUTF",
                        "in":"path",
                        "description":"Kit number in UTF-8 format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-1001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Site Kit History Response":{
                                        "description":"Get Site Kit History Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":5,
                                                "inventoryStatus":"New",
                                                "reason":"Audit",
                                                "returnedUnits":10,
                                                "missingUnits":5,
                                                "userName":"jane.doe",
                                                "modifiedDate":"2026-02-21T08:43:01Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Not Found Response":{
                                        "description":"Get Site Kit History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Server Error Response":{
                                        "description":"Get Site Kit History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-kits-{kitNumberUTF}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-kits-kitnumberutf-history-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/inventory/kits":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes"
                ],
                "summary":"v3.0",
                "description":"Updates kit attributes. This version supports new filter <i>BlockNumber</i> and list of kit type IDs. <br>Rights: <i>OrsInventoryPost</i> and <i>OrsUnblinded</i>.",
                "operationId":"updateKitAttributes_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitAttributesRequestV3"
                            },
                            "examples":{
                                "Update Kit Attributes Request":{
                                    "description":"Update Kit Attributes Request",
                                    "value":{
                                        "reason":"Inventory update",
                                        "inventoryStatusId":1,
                                        "labelGroupId":"LABEL-001",
                                        "location":"SITE-001",
                                        "manufacturingLotId":"LOT-001",
                                        "materialId":"MAT-001",
                                        "itemNumber":"ITEM-001",
                                        "updateMaterialId":true,
                                        "updateItemNumber":true,
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ],
                                        "kitFilters":{
                                            "location":"SITE-001",
                                            "lotId":"LOT-001",
                                            "kitStatus":"Available",
                                            "kitRange":"1001-1010",
                                            "labelGroupId":"LABEL-001",
                                            "kitNumber":"1001",
                                            "blockNumber":"BLK-01",
                                            "kitTypeIds":[
                                                "9B83BFB48C5A41C59775E4D8D22D8B26"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateKitsResponseV1"
                                },
                                "examples":{
                                    "Update Kit Attributes Response":{
                                        "description":"Update Kit Attributes Response",
                                        "value":{
                                            "noOfRowsUpdated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Not Found Response":{
                                        "description":"Update Kit Attributes Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Bad Request Response":{
                                        "description":"Update Kit Attributes Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Server Error Response":{
                                        "description":"Update Kit Attributes Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitNumberUTF}/history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit history for a site by kitNumberUTF"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves kit history, within a site, for a kit number given as kitNumberUTF. Rights: OrsInventoryGet and OrsBlinded.",
                "operationId":"getSiteKitHistory_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitNumberUTF",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-1001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitStatusHistoryResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Response":{
                                        "description":"Get Site Kit History Response",
                                        "value":{
                                            "inventoryStatusId":5,
                                            "inventoryStatus":"New",
                                            "reason":"Audit",
                                            "returnedUnits":10,
                                            "missingUnits":5,
                                            "userName":"jane.doe",
                                            "modifiedDate":"2026-02-21T08:43:01Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Server Error Response":{
                                        "description":"Get Site Kit History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid site and kit numberUTF combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Not Found Response":{
                                        "description":"Get Site Kit History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid study and invalid site",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kit History Bad Request Response":{
                                        "description":"Get Site Kit History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitNumberUTF}-history-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-inventory-kits-kitnumberutf-history-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Retrieves kits for a site based on a given number range. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1000-1100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":[
                            5,
                            10
                        ]
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"11111111111111112000000000000000"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "totalResults":1,
                                            "hasMore":false,
                                            "minKitNumber":10,
                                            "maxKitNumber":100,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ],
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/sites/9B83BFB48C5A41C59775E4D8D22D8B26/inventory/kits?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Server Error Response":{
                                        "description":"Get Site Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase OR invalid site ID OR invalid subject ID.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Not Found Response":{
                                        "description":"Get Site Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Bad Request Response":{
                                        "description":"Get Site Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update status for kits in a site"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Updates the status of a kit at a site. Rights: OrsInventoryPost and either OrsUnblinded or OrsBlinded.",
                "operationId":"updateKits_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kits Request":{
                                    "description":"Update Kits Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "subjectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Reconciled at site",
                                        "returnedUnits":2,
                                        "missingUnits":0,
                                        "kits":[
                                            "E39FF55A445543A38D513325664F0B2D",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ],
                                        "kitsFilter":{
                                            "kitRange":"KIT_NUMBER:10:100",
                                            "searchString":"KIT",
                                            "inventoryStatusIds":[
                                                5,
                                                10
                                            ],
                                            "serialized":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kits Response":{
                                        "description":"Update Kits Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Server Error Response":{
                                        "description":"Update Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Not Found Response":{
                                        "description":"Update Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Bad Request Response":{
                                        "description":"Update Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status by kit ID"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Updates a kit's status at a site by kit ID. Rights: OrsInventoryPost and either OrsUnblinded or OrsBlinded.",
                "operationId":"updateKits_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kit By ID Request":{
                                    "description":"Update Kit By ID Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "subjectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Reconciled at site",
                                        "returnedUnits":2,
                                        "missingUnits":0,
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kit By ID Response":{
                                        "description":"Update Kit By ID Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Server Error Response":{
                                        "description":"Update Kit By ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Not Found Response":{
                                        "description":"Update Kit By ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Bad Request Response":{
                                        "description":"Update Kit By ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/lots/manufacturing-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get all manufacturing lots"
                ],
                "summary":"v3.0",
                "description":"Retrieves all manufacturing lots by study ID. Rights: LotManagementGet.",
                "operationId":"getAllManufacturingLots_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManufacturingLotTOV2"
                                    }
                                },
                                "examples":{
                                    "Get Manufacturing Lots Response":{
                                        "description":"Get Manufacturing Lots Response",
                                        "value":[
                                            {
                                                "lotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "manufacturingLotNumber":"ML-01",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "blindedLotId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "doNotCount":10,
                                                "doNotShip":50,
                                                "lotNumber":"LOT-001",
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                                "runNumber":"run number 01",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":5,
                                                "softwareVersionNumber":2,
                                                "reason":"Audit",
                                                "comment":"Updated manufacturing lot",
                                                "inUse":true,
                                                "versionEnd":"2026-02-22T06:30:00Z",
                                                "blindedLotVersionStart":"2026-02-20T06:30:00Z"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Forbidden Response":{
                                        "description":"Get Manufacturing Lots Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Server Error Response":{
                                        "description":"Get Manufacturing Lots Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving manufacturing lots.",
                                                "details":{
                                                    "operation":"getAllManufacturingLots",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-manufacturing-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-manufacturing-lots-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Create manufacturing lot"
                ],
                "summary":"v3.0",
                "description":"Creates a manufacturing lot. Rights: LotManagementPost.",
                "operationId":"createManufacturingLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequest"
                            },
                            "examples":{
                                "Create Manufacturing Lot Request":{
                                    "description":"Create Manufacturing Lot Request",
                                    "value":{
                                        "manufacturingLotNumber":"ML-01",
                                        "lotNumber":"LOT-001",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "quantity":100,
                                        "materialId":"MAT-001",
                                        "kitTypeSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "updateMaterialId":true,
                                        "updateKitTypeId":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Response":{
                                        "description":"Create Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Forbidden Response":{
                                        "description":"Create Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to create manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have create access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Bad Request Response":{
                                        "description":"Create Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"The manufacturing lot request is invalid.",
                                                "details":{
                                                    "field":"materialId",
                                                    "reason":"materialId and kitTypeSrcId must match the selected kit type, and quantity must be greater than zero."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Manufacturing Lot Server Error Response":{
                                        "description":"Create Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while creating the manufacturing lot.",
                                                "details":{
                                                    "operation":"createManufacturingLot",
                                                    "reason":"The manufacturing lot could not be created."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-manufacturing-lots-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-manufacturing-lots-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/lots/manufacturing-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves manufacturing lot by lot ID. Rights: LotManagementGet.",
                "operationId":"getManufacturingLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ManufacturingLotTOV2"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Response":{
                                        "description":"Get Manufacturing Lot Response",
                                        "value":{
                                            "lotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "manufacturingLotNumber":"ML-01",
                                            "expirationDate":"2026-12-31T00:00:00Z",
                                            "blindedLotId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "doNotCount":10,
                                            "doNotShip":50,
                                            "lotNumber":"LOT-001",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                            "runNumber":"run number 01",
                                            "operationType":"MODIFIED",
                                            "objectVersionNumber":5,
                                            "softwareVersionNumber":2,
                                            "reason":"Audit",
                                            "comment":"Updated manufacturing lot",
                                            "inUse":true,
                                            "versionEnd":"2026-02-22T06:30:00Z",
                                            "blindedLotVersionStart":"2026-02-20T06:30:00Z"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Forbidden Response":{
                                        "description":"Get Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view the manufacturing lot.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Server Error Response":{
                                        "description":"Get Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving the manufacturing lot.",
                                                "details":{
                                                    "operation":"getManufacturingLot",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-manufacturing-lots-id-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update manufacturing lot by ID"
                ],
                "summary":"v3.0",
                "description":"Update manufacturing lot by a lot's ID. Rights: LotManagementPost.",
                "operationId":"updateManufacturingLot_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/LotRequest"
                            },
                            "examples":{
                                "Update Manufacturing Lot Request":{
                                    "description":"Update Manufacturing Lot Request",
                                    "value":{
                                        "manufacturingLotNumber":"ML-01",
                                        "lotNumber":"LOT-001",
                                        "expirationDate":"2026-12-31",
                                        "doNotShip":50,
                                        "doNotCount":10,
                                        "quantity":100,
                                        "materialId":"MAT-001",
                                        "kitTypeSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "updateMaterialId":true,
                                        "updateKitTypeId":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Response":{
                                        "description":"Update Manufacturing Lot Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Forbidden Response":{
                                        "description":"Update Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to update manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementPost",
                                                    "reason":"The current user does not have update access for manufacturing lots."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid expiration date. OR Manufacturing Lot Number already exists or Lot short name (lotNumber) already exists.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Bad Request Response":{
                                        "description":"Update Manufacturing Lot Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"BAD_REQUEST",
                                                "errorMessage":"The manufacturing lot update request is invalid.",
                                                "details":{
                                                    "field":"kitTypeSrcId",
                                                    "reason":"kitTypeSrcId must be valid when updateKitTypeId is true, and expirationDate must use yyyy-MM-dd format."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Manufacturing Lot Server Error Response":{
                                        "description":"Update Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while updating the manufacturing lot.",
                                                "details":{
                                                    "operation":"updateManufacturingLot",
                                                    "reason":"The manufacturing lot could not be updated."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-lots-manufacturing-lots-id-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/kits/blindedchainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Blinded Chain of Custody report"
                ],
                "summary":"v3.0",
                "description":"Retrieves the Kit Blinded Chain of Custody report. Rights: UnblindedChainofCustodyReportPost.",
                "operationId":"getBlindedChainOfCustodyReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Blinded Chain Of Custody Report Search Specs Request":{
                                    "description":"Blinded Chain Of Custody Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitStatus",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "10"
                                                ]
                                            },
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"shipmentIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"tempExcursionNumbers",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "TEMP-001"
                                                ]
                                            },
                                            {
                                                "fieldName":"dataType",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "CSV"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-kits-blindedchainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-kits-blindedchainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/kits/blindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Blinded) report"
                ],
                "summary":"v3.0",
                "description":"Retrieves the Kit Inventory (Blinded) report. Rights: BlindedInventoryReportPost.",
                "operationId":"getBlindedInventoryReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-kits-blindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-kits-blindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type, Subject Number and Kit List. Rights: UnblindedChainofCustodyReportPost. Added Kit List in the filter.",
                "operationId":"getChainOfCustodyReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitListIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "D313327EF13845169A8ADADDA435431E"
                                                ]
                                            },
                                            {
                                                "fieldName":"dataType",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "CSV"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/projectedsupplies/countrycounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for countries"
                ],
                "summary":"v3.0",
                "description":"Retrieves the projected supplies data for countries.",
                "operationId":"getCountryCounts_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-projectedsupplies-countrycounts-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-projectedsupplies-countrycounts-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/doseholdsettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get dose hold settings report"
                ],
                "summary":"v3.0",
                "description":"Retrieves the dose hold settings report. Versioned to support auditing and includes the following new columns in the response: status, operation, LastModifiedDateTime. <br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getEnabledDoseHoldSettings_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-doseholdsettings-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-doseholdsettings-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/inventorysettings":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Study Inventory Settings report"
                ],
                "summary":"v3.0",
                "description":"Retrieves the Study Inventory Settings report. Rights: StudyDesignReportPost.",
                "operationId":"getInventorySettingsReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-inventorysettings-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-inventorysettings-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/order-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Order Summary report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the Order Summary report.",
                "operationId":"getOrderSummarReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"receivedBy",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"shippedBy",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"orderStatus",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "PENDING"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":" The result contains the following attributes \n\n   1. Shipped By SDF\n\n        UUID of the site/depot which shipped the shipment. E.g. '41300000900000000000000000000001'\n\n    2. Received By SDF\n\n        UUID of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    3. Received By SDF ID of Country\n\n        UUID of the country of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    4. Shipment ID\n\n        Name of shipment. E.g. 'Hyd125'\n\n    5. Shipment Type\n\n        Type of shipment. E.g. 'Resupply'\n\n    6. Shipment Status\n\n        Current status of the shipment. E.g. '4'\n\n    7. Date Requested\n\n        Date on which the shipment was raised. E.g. '2020-01-20'\n\n    8. Date Received\n\n        Date on which the shipment was received. null if the shipment is still not received\n\n    9. Days Outstanding\n\n        Number of days until the shipment was received. If the shipment is still not received, this equals the number of days since the shipment was requested (current date - date requested).\n\n    9. Days Outstanding\n\n        Number of days until the shipment was received. If the shipment is still not received, this equals the number of days since the shipment was requested (current date - date requested).\n\n    10. Date Cancelled/Marked Lost\n\n        Date on which the shipment was canceled. null if not available (shipment not canceled)\n\n    11. Kit Count\n\n        No. of kits in the shipment.\n\n    12. Kit Numbers in Shipment \n\n        Kit numbers separated by `\\u7F`. E.g. \"300\\u7F400\"\n\n        Use Character.toString((char) 0x7F) as the delimiter when concatenating multiple kits\n\n        Use Character.toString((char) 0x7F) as the delimiter when concatenating multiple kits\n\n     13. Tracking Number\n\n       Tracking number which is assigned to the shipment \n\nResponse Payload: \n\n{\n\n  \"result\": {\n\n    \"hasMore\": \"true\",\n\n    \"totalResults\": 221,\n\n    \"count\": 1,\n\n    \"limit\": 1,\n\n    \"offset\": 0,\n\n    \"columns\": [\n\n      \"Shipped By SDF\",\n\n      \"Received By SDF\",\n\n      \"Received By SDF ID for Country\",\n\n      \"Shipment ID\",\n\n      \"Shipment Type\",\n\n      \"Shipment Status\",\n\n      \"Date Requested\",\n\n      \"Date Received\",\n\n      \"Days Outstanding\",\n\n      \"Date Cancelled/Marked Lost\",\n\n      \"Kit Count\",\n\n      \"Kit Numbers in Shipment\",\n\n      \"Tracking Number\",\n\n      \"Temperature Monitor Status\"\n\n    ],\n\n    \"data\": [\n\n      [\n\n        \"09CA38D0A01145A285B2086729B4453C\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"depo161\",\n\n        \"Manual\",\n\n        \"Received\",\n\n        \"04-Jan-2022\",\n\n        \"04-Jan-2022\",\n\n        \"0\",\n\n        \"\",\n\n        \"4\",\n\n        \"100324704780\",\n\n        \"\",\n\n        \"Yes\"\n\n      ]\n\n    ]\n\n  },\n\n  \"status\": \"success\",\n\n  \"errorData\": null\n\n}",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-order-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-order-summary-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/unblindedrandreport":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Randomization List report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the Randomization List report. Rights: UnblindedRandomizationReportPost.",
                "operationId":"getRandReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"systemDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"rndListId",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-unblindedrandreport-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-unblindedrandreport-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/recon":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Reconciliation report"
                ],
                "summary":"v3.0",
                "description":"Retrieves Kit Reconciliation report. Rights: ReconciliationReport.",
                "operationId":"getReconReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Recon Report Search Specs Request":{
                                    "description":"Recon Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitStatus",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "10"
                                                ]
                                            },
                                            {
                                                "fieldName":"shipmentIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-recon-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-recon-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/projectedsupplies/sitecounts":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get projected supplies data for sites"
                ],
                "summary":"v3.0",
                "description":"Retrieves the projected supplies data for sites.",
                "operationId":"getSiteCounts_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"Report search parameters.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-projectedsupplies-sitecounts-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-projectedsupplies-sitecounts-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"visitIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/subjects":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Subject Data report"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves the Subject Data report. Rights: SubjectDataReportPost. This API is used in Subject Visit (Blinded) Report, Subject Events Report and CTMS Report.",
                "operationId":"getSubjectsReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            },
                                            {
                                                "fieldName":"visitIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"eventTypes",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "RANDOMIZED"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-subjects-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-subjects-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/reports/kits/unblindedInventory":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Inventory (Unblinded) report"
                ],
                "summary":"v3.0",
                "description":"Retrieves the Kit Inventory (Unblinded) report. Rights: UnblindedInventoryReportPost.",
                "operationId":"getUnBlindedInventoryReport_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Report Search Specs Request":{
                                    "description":"Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            },
                                            {
                                                "fieldName":"lotIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "D313327EF13845169A8ADADDA435431E"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study does not match any study in Clinical One.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-reports-kits-unblindedInventory-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-reports-kits-unblindedinventory-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/resupplies":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all resupply groups"
                ],
                "summary":"v3.0",
                "description":"Retrieves all resupply groups created for a study.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.triggerWeeks and resupplyWeeks fields aren't needed for Min/Max strategies, so they're hidden when fetched.",
                "operationId":"getResupplyGroups_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyTypeId",
                        "in":"query",
                        "description":"ID of resupply type.",
                        "required":true,
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "enum":[
                                null
                            ]
                        },
                        "example":1
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Type of resupply.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "Site,Depot"
                            ]
                        },
                        "example":"Site"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponseV2"
                                },
                                "examples":{
                                    "Get Resupply Groups Response":{
                                        "description":"Get Resupply Groups Response",
                                        "value":{
                                            "resupplyGroups":[
                                                {
                                                    "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "resupplyName":"ResupplyGroup-01",
                                                    "resupplyTypeId":1,
                                                    "type":"Site",
                                                    "kitTypes":[
                                                        {
                                                            "id":"KITTYPE-01",
                                                            "kitTypeName":"KitType-01",
                                                            "description":"Example kit type.",
                                                            "packageTypeId":1,
                                                            "triggerWeeks":2,
                                                            "resupplyWeeks":4,
                                                            "minBuffer":10,
                                                            "maxBuffer":20,
                                                            "initialShippingUnits":10,
                                                            "manualConsignment":0
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Groups Not Found Response":{
                                        "description":"Get Resupply Groups Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Groups Server Error Response":{
                                        "description":"Get Resupply Groups Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupplies-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupplies-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Create a resupply group"
                ],
                "summary":"v3.0",
                "description":"Creates a resupply group for a study. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"createResupplyGroup_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequestV3"
                            },
                            "examples":{
                                "Create Resupply Group Request":{
                                    "description":"Create Resupply Group Request",
                                    "value":{
                                        "resupplyName":"ResupplyGroup-01",
                                        "resupplyTypeId":1,
                                        "type":"Site",
                                        "ignoreSubjectsOnDoseHold":true,
                                        "ignoreSubjectsOnSkipDispensingVisit":true,
                                        "ignoreIfOutsideWindowBy":2,
                                        "countRandomizedSubjects":true,
                                        "groups":[
                                            {
                                                "id":"GROUP-01",
                                                "name":"DynamicGroup-01",
                                                "minRange":10,
                                                "maxRange":20,
                                                "kitTypes":[
                                                    {
                                                        "id":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "triggerWeeks":2,
                                                        "resupplyWeeks":4,
                                                        "minBuffer":10,
                                                        "maxBuffer":20,
                                                        "initialShippingUnits":10,
                                                        "manualConsignment":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "400":{
                        "description":"'Invalid resupply type', 'Duplicate resupply'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Resupply Group Bad Request Response":{
                                        "description":"Create Resupply Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Create Resupply Group Server Error Response":{
                                        "description":"Create Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupplies-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupplies-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/resupplies/{resupplyId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Get a resupply group by ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves a resupply group by ID.<br>Rights: <i>SupplySettingRightsGet</i>. Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"getResupplyGroup_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResupplyGroupResponseV2"
                                },
                                "examples":{
                                    "Get Resupply Group Response":{
                                        "description":"Get Resupply Group Response",
                                        "value":{
                                            "resupplyGroups":[
                                                {
                                                    "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "resupplyName":"ResupplyGroup-01",
                                                    "resupplyTypeId":1,
                                                    "type":"Site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Resupply not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Group Not Found Response":{
                                        "description":"Get Resupply Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Resupply Group Server Error Response":{
                                        "description":"Get Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupplies-resupplyid-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Resupply Group Settings/Update a resupply by ID"
                ],
                "summary":"v3.0",
                "description":"Updates a resupply group by ID. <br>Rights: <i>SupplySettingRightsPost</i> <br>Required sponsor roles are clinical supply manager and site manager.",
                "operationId":"updateResupplyGroup_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"resupplyId",
                        "in":"path",
                        "description":"ID of resupply group.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyGroupRequestV3"
                            },
                            "examples":{
                                "Update Resupply Group Request":{
                                    "description":"Update Resupply Group Request",
                                    "value":{
                                        "resupplyId":"B1B8327AFAA6412287106192AB5984EF",
                                        "resupplyName":"ResupplyGroup-01",
                                        "resupplyTypeId":1,
                                        "type":"Site",
                                        "ignoreSubjectsOnDoseHold":true,
                                        "ignoreSubjectsOnSkipDispensingVisit":true,
                                        "ignoreIfOutsideWindowBy":2,
                                        "countRandomizedSubjects":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation"
                    },
                    "404":{
                        "description":"'Resupply not found', 'Study identifier does not match any study identifiers in Clinical One.'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Not Found Response":{
                                        "description":"Update Resupply Group Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Validation error, 'Invalid resupply type', 'Resupply already exists', 'Resupply contains duplicate IDs for kit types', 'Invalid kit type'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Bad Request Response":{
                                        "description":"Update Resupply Group Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Resupply Group Server Error Response":{
                                        "description":"Update Resupply Group Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupplies-{resupplyId}-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupplies-resupplyid-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy"
                ],
                "summary":"v3.0",
                "description":"Creates a manual shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manual_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualSupplyRequestV2"
                            },
                            "examples":{
                                "Create Manual Shipment Request":{
                                    "description":"Create Manual Shipment Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "siteId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "kits":[
                                            {
                                                "kitTypeId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "lotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "quantity":10
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManualResupplyResponse"
                                    }
                                },
                                "examples":{
                                    "Create Manual Shipment Response":{
                                        "description":"Create Manual Shipment Response",
                                        "value":[
                                            {
                                                "orderId":"B1B8327AFAA6412287106192AB5984EF",
                                                "shipmentNumber":"123",
                                                "status":"PENDING"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Manual Shipment Not Found Response":{
                                        "description":"Create Manual Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "errorMessage":"No data found.",
                                            "details":{
                                                "resource":"Site",
                                                "reason":"The site or kit type referenced in the manual shipment request was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Manual Shipment Server Error Response":{
                                        "description":"Create Manual Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"INTERNAL_SERVER_ERROR",
                                            "errorMessage":"An unexpected error occurred.",
                                            "details":{
                                                "operation":"createManualShipment",
                                                "reason":"The manual shipment request could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/resupply/resupply":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy"
                ],
                "summary":"v3.0",
                "description":"Creates a resupply strategy for a study. Rights: OrsSupplyManagerPost. If the Resupply type is Predictive for any site and Trigger weeks and Resupply weeks aren't defined for any resupplykit type, a configuration exception is thrown. If Min/Max buffers aren't defined, the resupply strategy would use 0for the buffers. No exception is thrown.",
                "operationId":"resupply_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ResupplyRequestV1"
                            },
                            "examples":{
                                "Create Resupply Request":{
                                    "description":"Create Resupply Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Resupply Response":{
                                        "description":"Create Resupply Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Resupply Not Found Response":{
                                        "description":"Create Resupply Not Found Response",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "errorMessage":"No data found.",
                                            "details":{
                                                "resource":"Study",
                                                "reason":"No resupply configuration was found for the supplied study."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Resupply Server Error Response":{
                                        "description":"Create Resupply Server Error Response",
                                        "value":{
                                            "errorCode":"INTERNAL_SERVER_ERROR",
                                            "errorMessage":"An unexpected error occurred.",
                                            "details":{
                                                "operation":"createResupplyStrategy",
                                                "reason":"The resupply request could not be submitted."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-resupply-resupply-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-resupply-resupply-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/{studyVersion}/randlist/generate":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Create randomization list"
                ],
                "summary":"v3.0",
                "description":"Generates a randomization list in the study with sequence number; Rights: DesignerRandListPost.",
                "operationId":"create_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"studyVersion",
                        "in":"path",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CommonGenerateRndListRequest"
                            },
                            "examples":{
                                "Generate Rand List Request":{
                                    "description":"Generate Rand List Request",
                                    "value":{
                                        "randListDesignId":"B1B8327AFAA6412287106192AB5984EF",
                                        "seed":12345
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/GenerateResponse"
                                },
                                "examples":{
                                    "Generate Rand List Response":{
                                        "description":"Generate Rand List Response",
                                        "value":{
                                            "listId":"9ECA4FA65076451DA7D47D59367D15A5",
                                            "noOfRowsGenerated":5
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Rand List Server Error Response":{
                                        "description":"Generate Rand List Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Rand List Not Found Response":{
                                        "description":"Generate Rand List Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For algorithm not defined for the randomization design or randomization design not associated with a visit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Generate Rand List Bad Request Response":{
                                        "description":"Generate Rand List Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-{studyVersion}-randlist-generate-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-studyversion-randlist-generate-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/randlists/{rndlistid}/randnumbers":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves randomization number. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandNum_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RNDLIST-01"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"blockedBy",
                        "in":"query",
                        "description":"ID of the entity which has blocked the randomization number.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the randomization number.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"cohortId",
                        "in":"query",
                        "description":"ID of the cohort.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandNumberResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Response":{
                                        "description":"Get Rand Numbers Response",
                                        "value":{
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/randlists/RNDLIST-01/randnumbers?offset=0&limit=100"
                                                }
                                            ],
                                            "randNumbers":[
                                                {
                                                    "randNumberId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"2026-02-21T06:45:00Z",
                                                    "randNumber":1001,
                                                    "blockNumber":1,
                                                    "randStatusId":4,
                                                    "randStatusKey":"Assigned",
                                                    "treatmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "externalTreatmentId":"ARM-A",
                                                    "blockingParamName":"site",
                                                    "blockingParamId":"SITE-001",
                                                    "blockingParamValue":"Site1001",
                                                    "subjectId":"D313327EF13845169A8ADADDA435431E",
                                                    "subjectNumber":"S1001",
                                                    "statumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                    "stratumName":"Male",
                                                    "cohortId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "cohortName":"Demo Cohort 1001",
                                                    "sequenceNumber":1001
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Server Error Response":{
                                        "description":"Get Rand Numbers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version, or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Not Found Response":{
                                        "description":"Get Rand Numbers Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-randlists-{rndlistid}-randnumbers-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-randlists-rndlistid-randnumbers-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a randomization list. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlist_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Rand Lists Response":{
                                        "description":"Get Rand Lists Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "versionEnd":"2026-02-21T06:45:00Z",
                                            "name":"UPL_RL191_V1001",
                                            "description":"Randomization list with demographic cohort",
                                            "isStratified":"y",
                                            "isBlocked":"y",
                                            "isDynamic":"n",
                                            "inUse":"y",
                                            "blockedBy":"site",
                                            "isCohortBased":"y",
                                            "isMinimization":"n",
                                            "lastAssctdRandDesignSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "lastAssctdStudyVersion":"1.0.1",
                                            "useSequenceNumber":"y",
                                            "firstAssctdRandDesignSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "firstAssctdStudyVersion":"1.0.1",
                                            "cohortType":"Adaptive"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Lists Server Error Response":{
                                        "description":"Get Rand Lists Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Lists Not Found Response":{
                                        "description":"Get Rand Lists Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/randlists/{rndlistid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a randomization list by ID. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlistById_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RNDLIST-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Rand List By ID Response":{
                                        "description":"Get Rand List By ID Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "versionEnd":"2026-02-21T06:45:00Z",
                                            "name":"UPL_RL191_V1001",
                                            "description":"Randomization list with demographic cohort",
                                            "isStratified":"y",
                                            "isBlocked":"y",
                                            "isDynamic":"n",
                                            "inUse":"y",
                                            "blockedBy":"site",
                                            "isCohortBased":"y",
                                            "isMinimization":"n",
                                            "lastAssctdRandDesignSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "lastAssctdStudyVersion":"1.0.1",
                                            "useSequenceNumber":"y",
                                            "firstAssctdRandDesignSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "firstAssctdStudyVersion":"1.0.1",
                                            "cohortType":"Adaptive"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand List By ID Server Error Response":{
                                        "description":"Get Rand List By ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand List By ID Not Found Response":{
                                        "description":"Get Rand List By ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-randlists-{rndlistid}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-randlists-rndlistid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/randlistdesigns":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Designs/Get randomization design list"
                ],
                "summary":"v3.0",
                "description":"Retrieves a randomization design list. Rights: OrsRandListGet, OrsUnblinded. Added new field: useSequenceNumber.",
                "operationId":"getRandomizationListDesigns_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RndListDesignList"
                                    }
                                },
                                "examples":{
                                    "Get Randomization List Designs Response":{
                                        "description":"Get Randomization List Designs Response",
                                        "value":[
                                            {
                                                "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                                "randListName":"RandList-01",
                                                "randomizationSeed":12345,
                                                "useSequenceNumber":true,
                                                "randDesigns":[
                                                    {
                                                        "randDesignId":"392DA9F053E94B9B9339AC7D0FA0D1DB",
                                                        "randDesignName":"Design-A"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Designs Server Error Response":{
                                        "description":"Get Randomization List Designs Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Randomization List Designs Not Found Response":{
                                        "description":"Get Randomization List Designs Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-randlistdesigns-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-randlistdesigns-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipments/{shipmentId}/eligible-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get eligible kits"
                ],
                "summary":"v3.0",
                "description":"Searches for kits by kit type or shipment details. Rights: OrsInventoryGet, OrsUnblinded. Added additional field kitNumberUTF in the response",
                "operationId":"getEligibleKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentEligibleKitsResponseV2"
                                },
                                "examples":{
                                    "Get Eligible Kits Response":{
                                        "description":"Get Eligible Kits Response",
                                        "value":{
                                            "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kits":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "kitTypeName":"Kit A",
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "kitNumberUTF":"12345ab",
                                                    "srcId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/shipments/B1B8327AFAA6412287106192AB5984EF/eligible-kits?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits Server Error Response":{
                                        "description":"Get Eligible Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits Not Found Response":{
                                        "description":"Get Eligible Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipments-{shipmentId}-eligible-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipments-shipmentid-eligible-kits-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a kit's details by order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":10001
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"kitNumber"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentKitsResponseV3"
                                },
                                "examples":{
                                    "Get Shipment Kits Response":{
                                        "description":"Get Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Kit type summary for shipment.",
                                                    "packageTypeId":1001,
                                                    "unitsPerKit":10,
                                                    "packageTypeKey":"BOTTLE",
                                                    "kits":[
                                                        {
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "kitNumber":5,
                                                            "sequenceNumber":5,
                                                            "barcode":"KIT-000005",
                                                            "returnedUnits":0,
                                                            "missingUnits":0,
                                                            "depotReturnedUnits":0,
                                                            "inventoryStatusId":1,
                                                            "materialId":"MAT-001",
                                                            "itemNumber":"ITEM-001"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Kits Server Error Response":{
                                        "description":"Get Shipment Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Kits Not Found Response":{
                                        "description":"Get Shipment Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTOV3"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"89EE76326E984B548D594D592E5C7FC2",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Order not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"No order matched the supplied shipment identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Server Error Response":{
                                        "description":"Get Order Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves a list of all orders in a study. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV3"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Orders Server Error Response":{
                                        "description":"Get Orders Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Orders Bad Request Response":{
                                        "description":"Get Orders Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves shipment by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipment_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentTOV2"
                                },
                                "examples":{
                                    "Get Shipment Response":{
                                        "description":"Get Shipment Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "siteName":"Site Houston",
                                            "siteShortName":"st_hstn",
                                            "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "depotName":"Depot Houston",
                                            "depotShortName":"dpt_hstn",
                                            "shipmentNumber":"SHIP-0001",
                                            "statusId":1,
                                            "createdDate":"2026-02-21T06:30:00Z",
                                            "shipDate":"2026-02-21T06:45:00Z",
                                            "trackingNumber":"12345",
                                            "reportId":"D313327EF13845169A8ADADDA435431E",
                                            "reconciliation":false,
                                            "trackingNumberURL":"http://www.site.com",
                                            "formInstanceId":"00d48a2a-7280-1a4e-e063-0100007f3af8"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Server Error Response":{
                                        "description":"Get Shipment Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Not Found Response":{
                                        "description":"Get Shipment Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipments_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "siteName":"Site Houston",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "statusId":1,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/shipments?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipments Server Error Response":{
                                        "description":"Get Shipments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipments Not Found Response":{
                                        "description":"Get Shipments Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipment-statuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/List available order status values"
                ],
                "summary":"v3.0",
                "description":"Lists available order status values. Rights: OrsInventoryGet.",
                "operationId":"getStatuses_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderStatus"
                                    }
                                },
                                "examples":{
                                    "Get Shipment Statuses Response":{
                                        "description":"Get Shipment Statuses Response",
                                        "value":[
                                            {
                                                "id":1,
                                                "status":"PENDING"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Order not found.",
                                                "details":{
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "reason":"No order exists for the supplied shipment identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Statuses Server Error Response":{
                                        "description":"Get Shipment Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipment-statuses-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipment-statuses-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/shipments/{shipmentId}/received":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received"
                ],
                "summary":"v3.0",
                "description":"Marks kits as received in a study's inventory. Rights: OrsInventoryPost and DepotShipmentReceiptPost/OrsBlinded.",
                "operationId":"markSiteOrDepotShipmentReceived_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ShipmentReceivedRequest"
                            },
                            "examples":{
                                "Mark Shipment Received Request":{
                                    "description":"Mark Shipment Received Request",
                                    "value":{
                                        "updateKits":{
                                            "KIT-0001":1,
                                            "KIT-0002":2
                                        },
                                        "tempMonitorStatus":"yes"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentReceivedResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Response":{
                                        "description":"Mark Shipment Received Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "receivedDate":"2026-02-21T06:30:00Z",
                                            "damagedCount":1,
                                            "missingCount":0,
                                            "preQuarantinedCount":0,
                                            "availableCount":9
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'Invalid order status', 'Invalid kit'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Bad Request Response":{
                                        "description":"Mark Shipment Received Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid shipment ID', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Not Found Response":{
                                        "description":"Mark Shipment Received Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Mark Shipment Received Server Error Response":{
                                        "description":"Mark Shipment Received Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-shipments-{shipmentId}-received-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-shipments-shipmentid-received-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get a shipment's details by ID for a site"
                ],
                "summary":"v3.0",
                "description":"Retrieves a shipment's details by ID for a site. This version includes additional attributes: <i>versionStart</i> and <i>userId</i>. <br>Rights: <i>OrsSupplyManagerGet</i> and <i>OrsBlinded</i>.",
                "operationId":"getShipment_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteUserShipmentTOV3"
                                },
                                "examples":{
                                    "Get Site Shipment Response":{
                                        "description":"Get Site Shipment Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "siteId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "siteName":"Site 001",
                                            "siteShortName":"SITE-001",
                                            "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                            "depotName":"Depot 001",
                                            "depotShortName":"DEPOT-001",
                                            "statusId":1,
                                            "shipmentNumber":"SHIP-0001",
                                            "createdDate":"2026-02-21T06:30:00Z",
                                            "shipDate":"2026-02-22T06:30:00Z",
                                            "trackingNumber":"TRK-0001",
                                            "trackingNumberURL":"https://carrier.example.com/TRK-0001",
                                            "statusDate":"2026-02-22T06:30:00Z",
                                            "damagedCount":0,
                                            "missingCount":0,
                                            "preQuarantinedCount":0,
                                            "availableCount":12,
                                            "inTransitCount":0,
                                            "reportId":"D313327EF13845169A8ADADDA435431E",
                                            "reconciliation":false,
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Not Found Response":{
                                        "description":"Get Site Shipment Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Server Error Response":{
                                        "description":"Get Site Shipment Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a site"
                ],
                "summary":"v3.0",
                "description":"Searches for shipments associated with a site by site ID. This version includes a new field in the response: <i>formInstanceId</i>. <br>Rights: <i>OrsSupplyManagerGet</i> and <i>OrsBlinded</i>.",
                "operationId":"getShipments_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV3"
                                },
                                "examples":{
                                    "Get Site Shipments Response":{
                                        "description":"Get Site Shipments Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "statusId":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/sites/9B83BFB48C5A41C59775E4D8D22D8B26/shipments?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID',  'Study still in Draft (design phase)', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipments Not Found Response":{
                                        "description":"Get Site Shipments Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipments Server Error Response":{
                                        "description":"Get Site Shipments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment"
                ],
                "summary":"v3.0",
                "description":"Retrieves either all kits or a specific kit (if a kit number is provided) for a shipment. Rights: OrsSupplyManagerGet and OrsBlinded. Adds the kitNumberUTF field to the response.",
                "operationId":"getSiteKits_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":10001
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteShipmentKitsTOV3"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Response":{
                                        "description":"Get Site Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v3.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/sites/9B83BFB48C5A41C59775E4D8D22D8B26/shipments/89EE76326E984B548D594D592E5C7FC2/kits?offset=0&limit=100"
                                                }
                                            ],
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Not Found Response":{
                                        "description":"Get Site Shipment Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Server Error Response":{
                                        "description":"Get Site Shipment Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/sites/{siteId}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Initiate manual resupply to a site"
                ],
                "summary":"v3.0",
                "description":"Initiates manual resupply to a site. Rights: OrsSupplyManagerPost and OrsBlinded.",
                "operationId":"siteInitiatedManualResupply_1",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteManualResupplyRequest"
                            },
                            "examples":{
                                "Site Initiated Manual Resupply Request":{
                                    "description":"Site Initiated Manual Resupply Request",
                                    "value":{
                                        "jobInstanceId":"4FEBE3E166454E2687C6FAC306E7C86E",
                                        "reason":"Some reason."
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Site Initiated Manual Resupply Response":{
                                        "description":"Site Initiated Manual Resupply Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Manual shipment is not allowed for this study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Site Initiated Manual Resupply Bad Request Response":{
                                        "description":"Site Initiated Manual Resupply Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Site Initiated Manual Resupply Not Found Response":{
                                        "description":"Site Initiated Manual Resupply Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Site Initiated Manual Resupply Server Error Response":{
                                        "description":"Site Initiated Manual Resupply Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-sites-{siteId}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-sites-siteid-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Retrieves supply settings by study ID.<br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV3"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":true,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":true,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "waitDaysBeforeNotifying":2,
                                            "shipmentPrefixType":"DEPOTID",
                                            "customShipmentIdPrefix":"SomePrefix",
                                            "kitReconciliationRequired":true,
                                            "reuseSealedKits":true,
                                            "reuseOnlyLastVisitKkits":true,
                                            "allowPartialDispensation":true,
                                            "confirmDispensation":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Server Error Response":{
                                        "description":"Get Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Updates supply settings of a study by study ID. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are: clinical supply manager and site manager.",
                "operationId":"updateSupplySettings_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV3"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":true,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":true,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":2,
                                        "shipmentPrefixType":"DEPOTID",
                                        "customShipmentIdPrefix":"SomePrefix",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Not Found Response":{
                                        "description":"Update Supply Settings Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Bad Request Response":{
                                        "description":"Update Supply Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Server Error Response":{
                                        "description":"Update Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/titration-eligible":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Titration APIs/Check if subject is eligible for titration"
                ],
                "summary":"v3.0",
                "description":"Checks if subject is eligible for titration. This is a new version of the API for returning additional attributes for titration kit label. Rights: OrsSubjectVisitGet.",
                "operationId":"isTitrationAllowedForSubject_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"11111111111111112000000000000000"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/SubjectVisitKitTypeTO"
                                    }
                                },
                                "examples":{
                                    "Titration Eligible Response":{
                                        "description":"Titration Eligible Response",
                                        "value":[
                                            {
                                                "titrationId":"B1B8327AFAA6412287106192AB5984EF",
                                                "status":"ALLOW",
                                                "isUpAllowed":true,
                                                "isDownAllowed":true,
                                                "kitsDispensed":[
                                                    "B1B8327AFAA6412287106192AB5984EF",
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ],
                                                "titrationKitLabel":"Low Dose"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For a subject who cannot be titrated as there are no titration kits dispensed to the subject earlier OR Subject cannot be titrated as no matching kits are defined with subject dispensations. ORInvalid subject OR Missing subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Titration Eligible Bad Request Response":{
                                        "description":"Titration Eligible Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Visit not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Titration Eligible Not Found Response":{
                                        "description":"Titration Eligible Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Titration Eligible Server Error Response":{
                                        "description":"Titration Eligible Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-titration-eligible-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-titration-eligible-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/allowed-doseholds":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits allowed for dose hold"
                ],
                "summary":"v3.0",
                "description":"Get kits allowed for dose hold in the current visit for a given subject, taking into account ADs. Rights: OrsSubjectVisitGet.",
                "operationId":"getAllowedDoseHold_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"screeningDate",
                        "in":"query",
                        "description":"Screening date.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    },
                    {
                        "name":"visitStartDate",
                        "in":"query",
                        "description":"Visit start date.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKitsResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Response":{
                                        "description":"Allowed Dose Holds Response",
                                        "value":{
                                            "status":"ALLOW_DOSE_HOLD",
                                            "kitsAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitDescription":"Kit A",
                                                    "trialSupplyType":"BOTTLE",
                                                    "deviceType":"ActivityWatch",
                                                    "blindedTItrationLabel":"Low dose",
                                                    "isTitration":true
                                                }
                                            ],
                                            "kitsNotAllowedForDoseHold":[
                                                {
                                                    "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitDescription":"Kit B",
                                                    "trialSupplyType":"BOTTLE",
                                                    "deviceType":"ActivityWatch",
                                                    "blindedTItrationLabel":"High dose",
                                                    "isTitration":false,
                                                    "reason":"DOSE_HOLD_VISIT_NOT_STARTED"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Bad Request Response":{
                                        "description":"Allowed Dose Holds Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Allowed Dose Holds Server Error Response":{
                                        "description":"Allowed Dose Holds Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-allowed-doseholds-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-allowed-doseholds-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codebreak":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code break"
                ],
                "summary":"v3.0",
                "description":"Retrieves code break. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeBreak_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code Break Request":{
                                    "description":"Code Break Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code Break Response":{
                                        "description":"Code Break Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2025-01-01T12:34:56Z",
                                                    "rndStatusId":5
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":5,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Not Found Response":{
                                        "description":"Code Break Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Bad Request Response":{
                                        "description":"Code Break Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code Break Server Error Response":{
                                        "description":"Code Break Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codebreak-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-srcsubjectid-codebreak-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/codeview":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get code view"
                ],
                "summary":"v3.0",
                "description":"Retrieves code view. Rights: OrsSubjectVisitGet.",
                "operationId":"getCodeView_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CodeViewRequest"
                            },
                            "examples":{
                                "Code View Request":{
                                    "description":"Code View Request",
                                    "value":{
                                        "adverseEvent":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CodeViewResponse"
                                },
                                "examples":{
                                    "Code View Response":{
                                        "description":"Code View Response",
                                        "value":{
                                            "treatmentArms":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "description":"Randomized successfully",
                                                    "externalTreatmentId":"TA",
                                                    "randNumber":1001,
                                                    "randomizationDate":"2025-01-01T12:34:56Z",
                                                    "rndStatusId":5
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":5,
                                                    "packageType":"BOTTLE"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Not Found Response":{
                                        "description":"Code View Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Bad Request Response":{
                                        "description":"Code View Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Code View Server Error Response":{
                                        "description":"Code View Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-codeview-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-srcsubjectid-codeview-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves dispensation history. Rights: OrsSubjectVisitGet.",
                "operationId":"getDispensationHistory_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV2"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":10001,
                                                "inventoryStatus":10,
                                                "dispensationDate":"2026-03-01T08:30:00Z",
                                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                "packageTypeId":5,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "lastModifiedDate":"2026-03-01T09:00:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"WearablePatch",
                                                "deviceConnection":"DevicetoCloud",
                                                "mHealthDeviceId":"MH-10001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Not Found Response":{
                                        "description":"Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Bad Request Response":{
                                        "description":"Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Server Error Response":{
                                        "description":"Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/reuse-kits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types"
                ],
                "summary":"v3.0",
                "description":"Retrieves previously dispensed kits, from a list of kit types passed in the request body, that can be reused in the current visit for a given subject. Support for unblinded pharmacist kits which are put on dose hold. UTF-8 format support for kitNumber. Rights: OrsSubjectVisitGet.",
                "operationId":"getReusableDoseHoldKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDoseHoldRequest"
                            },
                            "examples":{
                                "Reusable Kits Request":{
                                    "description":"Reusable Kits Request",
                                    "value":{
                                        "studyVersion":"1.0.0.5",
                                        "visitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "instanceNumber":2,
                                        "titrationOption":"up"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReusableKitsResponseV1"
                                },
                                "examples":{
                                    "Reusable Kits Response":{
                                        "description":"Reusable Kits Response",
                                        "value":{
                                            "status":"ALLOW",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "isDosingUnblinded":true,
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Bad Request Response":{
                                        "description":"Reusable Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Server Error Response":{
                                        "description":"Reusable Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-reuse-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-reuse-kits-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{subjectId}/doseheld":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get kits which are marked as dose hold"
                ],
                "summary":"v3.0",
                "description":"Get kits which are marked as dose hold for a given search criteria. Rights: OrsSubjectVisitGet.",
                "operationId":"getSubjectVisitDoseHeldKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Get data as of the given date",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DoseHoldKitV3"
                                },
                                "examples":{
                                    "Dose Held Kits Response":{
                                        "description":"Dose Held Kits Response",
                                        "value":{
                                            "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                            "kitDescription":"Kit A",
                                            "trialSupplyType":"BOTTLE",
                                            "deviceType":"ActivityWatch",
                                            "blindedTItrationLabel":"Low dose",
                                            "isTitration":true,
                                            "reason":"DOSE_HOLD_VISIT_NOT_STARTED"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Bad Request Response":{
                                        "description":"Dose Held Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dose Held Kits Server Error Response":{
                                        "description":"Dose Held Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{subjectId}-doseheld-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-subjectid-doseheld-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Retrieves unblinded dispensation history for all subjects within the study. Rights: OrsSubjectVisitGet. In this version pagination and these two fields were added : titrationOption, operationType",
                "operationId":"getUnblindedAllDispHistory_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "description":"Value of audit parameter",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Response":{
                                        "description":"Unblinded Dispensation History Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":0,
                                            "hasMore":false,
                                            "totalResults":0,
                                            "resultData":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Not Found Response":{
                                        "description":"Unblinded Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid limit or offset values",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Bad Request Response":{
                                        "description":"Unblinded Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Server Error Response":{
                                        "description":"Unblinded Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit by its visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":1001,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:43:01Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":true,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or visit for subject does not exist",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Not Found Response":{
                                        "description":"Get Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Bad Request Response":{
                                        "description":"Get Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Server Error Response":{
                                        "description":"Get Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequest"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"11111111111111111111111111111111",
                                        "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "visitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:43:01"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"1001",
                                            "kits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":1001,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:43:01Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":true,
                                            "countOfKitTypesOnDoseHold":1,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Not Found Response":{
                                        "description":"Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp. Or you must associate the randomization design with a visit before you can create/upload a randomization list for it Or the next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject Or subject can't be re-randomized before randomization. Or this operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Bad Request Response":{
                                        "description":"Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported visit. Or subject already completed the visit. Or subject is randomized in error Or invalid treatment found for the subject. Or visit out of order. Or this operation is not allowed in the current subject status Or visit is outside visit window. Or visit is outside visit window and at least one kit is configured not to dispense outside visit window Or not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Server Error Response":{
                                        "description":"Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v3.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/replacekits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Replace a subject's kits"
                ],
                "summary":"v3.0",
                "description":"Replaces a subject's kits in the system,  accepts Strings and Numbers. Rights: OrsVisitManagementPost.",
                "operationId":"replaceSubjectKits_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectReplaceKitsRequest"
                            },
                            "examples":{
                                "Replace Subject Kits Request":{
                                    "description":"Replace Subject Kits Request",
                                    "value":{
                                        "kits":[
                                            "5a"
                                        ],
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Some reason",
                                        "reasonLabel":"kits are damaged"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectReplaceKitsResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Response":{
                                        "description":"Replace Subject Kits Response",
                                        "value":{
                                            "replacedKits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":1001,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Not Found Response":{
                                        "description":"Replace Subject Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or this operation is not allowed during the current subject statusOr invalid kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Bad Request Response":{
                                        "description":"Replace Subject Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Subject is randomized in error. Or not enough inventory",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Server Error Response":{
                                        "description":"Replace Subject Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v3.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-replacekits-post",
                "x-filename-id":"ec-ors-svc-rest-v3.0-studies-studyid-mode-subjects-srcsubjectid-replacekits-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventorystatuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get inventory statuses"
                ],
                "summary":"v4.0",
                "description":"Retrieves statuses from an inventory. Rights: OrsInventoryGet.",
                "operationId":"getInventoryStatuses_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"isLocalized",
                        "in":"query",
                        "description":"language",
                        "schema":{
                            "maximum":1,
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/InventoryStatus"
                                    }
                                },
                                "examples":{
                                    "Get Inventory Statuses Response":{
                                        "description":"Get Inventory Statuses Response",
                                        "value":[
                                            {
                                                "inventoryStatusId":1,
                                                "inventoryStatus":"Available"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Inventory Statuses Server Error Response":{
                                        "description":"Get Inventory Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventorystatuses-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventorystatuses-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventory/kitDetails":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit details by kit number"
                ],
                "summary":"v4.0",
                "description":"Retrieves kit details by kit number. In this API, blockNumber and kitNumberUTF are added to return Block Number and Kit Number in UTF8. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitByKitNumber_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitInfoResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Response":{
                                        "description":"Get Kit By Kit Number Response",
                                        "value":{
                                            "kitDetails":{
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "kitNumber":1001,
                                                "sequenceNumber":1,
                                                "inventoryStatusId":1,
                                                "locationId":"SITE-001",
                                                "manufacturingLotId":"LOT-001",
                                                "blindedLotId":"BLDLOT-001",
                                                "labelGroupId":"LABEL-001",
                                                "inventoryStatus":"Available",
                                                "manufacturingLotNumber":"ML-01",
                                                "blindedLotNumber":"Bld-Lt-AZ",
                                                "labelGroup":"LabelGroup-01",
                                                "kitTypeSrcId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                "materialId":"MAT-001",
                                                "itemNumber":"ITEM-001",
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "expirationDate":"2026-12-31T00:00:00Z",
                                                "doNotCount":10,
                                                "doNotShip":50,
                                                "missingUnits":0,
                                                "returnedUnits":0,
                                                "verified":true,
                                                "barcode":"1234567890"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Not Found Response":{
                                        "description":"Get Kit By Kit Number Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Kit not found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Bad Request Response":{
                                        "description":"Get Kit By Kit Number Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid kit number.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit By Kit Number Server Error Response":{
                                        "description":"Get Kit By Kit Number Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventory-kitDetails-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventory-kitdetails-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves a kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":[
                                            {
                                                "kitTypes":[
                                                    {
                                                        "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "kitTypeName":"KitType-01",
                                                        "description":"Example kit type.",
                                                        "packageTypeId":1,
                                                        "packageType":"Bottle",
                                                        "totalKitNumbers":100,
                                                        "kitsDispensed":5,
                                                        "kitsDamaged":1,
                                                        "kitsAvailable":94,
                                                        "kitsInTransit":0,
                                                        "kitsReturnedToSite":0,
                                                        "kitsPendingDestruction":0,
                                                        "kitsExpired":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location or Invalid kitNumber",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventory/kits/audit":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Kit list details for each kit"
                ],
                "summary":"v4.0",
                "description":"Kit list details of each kit. In this API, tempExcursionNumber is added to return Temperature Excursion Number. Rights: OrsInventoryGet.",
                "operationId":"getKitsAudit_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "required":true,
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "required":true,
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"inventorySourceId",
                        "in":"query",
                        "description":"Source ID of the inventory.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitsAuditRequestV1"
                            },
                            "examples":{
                                "Kits Audit Request":{
                                    "description":"Kits Audit Request",
                                    "value":{
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitsAuditResponseV4"
                                },
                                "examples":{
                                    "Kits Audit Response":{
                                        "description":"Kits Audit Response",
                                        "value":{
                                            "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                            "transactionId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitNumberUTF":"KIT-1001",
                                            "blockNumber":"BLK-01",
                                            "kitNumber":1001,
                                            "inventoryStatusId":1,
                                            "operationType":"UPDATE",
                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "reason":"Audit",
                                            "comment":"Updated kit status",
                                            "subjectId":"11111111111111111111111111111111",
                                            "visitId":"22222222222222222222222222222222",
                                            "instanceNumber":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID OR Study not found OR Inventory Source ID not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Not Found Response":{
                                        "description":"Kits Audit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Bad Request Response":{
                                        "description":"Kits Audit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Kits Audit Server Error Response":{
                                        "description":"Kits Audit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventory-kits-audit-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventory-kits-audit-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventory/kit-types/{kitTypeId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID"
                ],
                "summary":"v4.0",
                "description":"Retrieves kit summary by kit type ID with new Column : TempExcursionNumber. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitsByKitTypeId_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"path",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string"
                        },
                        "example":100
                    },
                    {
                        "name":"sortBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered. Default value is 'SEQUENCE_NUMBER'.",
                        "schema":{
                            "type":"string",
                            "default":"SEQUENCE_NUMBER"
                        },
                        "example":"SEQUENCE_NUMBER"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"blockNumber",
                        "in":"query",
                        "description":"Block number",
                        "schema":{
                            "type":"string"
                        },
                        "example":"BLK-01"
                    },
                    {
                        "name":"tempExcursionNumber",
                        "in":"query",
                        "description":"tempExcursionNumber",
                        "schema":{
                            "type":"string"
                        },
                        "example":"001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDetailsResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Response":{
                                        "description":"Get Kits By Kit Type ID Response",
                                        "value":{
                                            "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                            "kitTypeName":"KitType-01",
                                            "minSequenceNumber":1,
                                            "maxSequenceNumber":10,
                                            "minKitNumber":1001,
                                            "maxKitNumber":1010,
                                            "totalResults":10,
                                            "count":10,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0,
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v4.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/inventory/kit-types/9B83BFB48C5A41C59775E4D8D22D8B26/kits?offset=0&limit=100"
                                                }
                                            ],
                                            "kits":[
                                                {
                                                    "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":1001,
                                                    "sequenceNumber":1,
                                                    "inventoryStatusId":1,
                                                    "locationId":"SITE-001",
                                                    "inventoryStatus":"Available"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version or Kit type not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Not Found Response":{
                                        "description":"Get Kits By Kit Type ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filtersOR Invalid kit type OR Invalid Lot OR Invalid location",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Bad Request Response":{
                                        "description":"Get Kits By Kit Type ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kits By Kit Type ID Server Error Response":{
                                        "description":"Get Kits By Kit Type ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventory-kit-types-{kitTypeId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventory-kit-types-kittypeid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/inventory/kits":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit attributes"
                ],
                "summary":"v4.0",
                "description":"Updates kit attributes. Rights: OrsInventoryPost and OrsUnblinded. New filter tempExcursionNumber added.",
                "operationId":"updateKitAttributes_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateKitAttributesRequestV4"
                            },
                            "examples":{
                                "Update Kit Attributes Request":{
                                    "description":"Update Kit Attributes Request",
                                    "value":{
                                        "reason":"Inventory update",
                                        "inventoryStatusId":1,
                                        "labelGroupId":"LABEL-001",
                                        "location":"SITE-001",
                                        "manufacturingLotId":"LOT-001",
                                        "materialId":"MAT-001",
                                        "itemNumber":"ITEM-001",
                                        "updateMaterialId":true,
                                        "updateItemNumber":true,
                                        "kits":[
                                            "B1B8327AFAA6412287106192AB5984EF"
                                        ],
                                        "kitFilters":{
                                            "location":"SITE-001",
                                            "lotId":"LOT-001",
                                            "kitStatus":"Available",
                                            "kitRange":"1001-1010",
                                            "labelGroupId":"LABEL-001",
                                            "kitNumber":"1001",
                                            "blockNumber":"BLK-01",
                                            "kitTypeIds":[
                                                "9B83BFB48C5A41C59775E4D8D22D8B26"
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateKitsResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Response":{
                                        "description":"Update Kit Attributes Response",
                                        "value":{
                                            "noOfRowsUpdated":10
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Not Found Response":{
                                        "description":"Update Kit Attributes Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Specify at least one kit attribute OR Reason is required OR Specify at least one filter. OR Either kits or kitFilters is required  OR Invalid kit status OR Invalid kit range filter OR Invalid lot OR Invalid label group in kit filters OR Invalid kit type OR Invalid location OR No kits to update OR Update kits retrieved size exceeds maximum rows for update limit OR Invalid inventory status transition",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Bad Request Response":{
                                        "description":"Update Kit Attributes Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request payload.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit Attributes Server Error Response":{
                                        "description":"Update Kit Attributes Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Retrieves kits for a site based on a given number range. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":[
                            5,
                            10
                        ]
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "totalResults":1,
                                            "hasMore":false,
                                            "minKitNumber":10,
                                            "maxKitNumber":100,
                                            "totalReturnedUnits":0,
                                            "distinctInventoryStatusIds":[
                                                10
                                            ],
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ],
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v4.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/sites/C36A3197FDEE433FB5547EE83DE99E4B/inventory/kits?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Server Error Response":{
                                        "description":"Get Site Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid site ID OR invalid subject ID.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Not Found Response":{
                                        "description":"Get Site Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Kits Bad Request Response":{
                                        "description":"Get Site Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update status for kits in a site"
                ],
                "summary":"v4.0",
                "description":"Updates the status of a kit at a site. Returns <i>formInstanceId</i> when user updates kits to <i>pendingDestruction</i>. <br>Rights: <i>OrsInventoryPost</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"updateKits_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kits Request":{
                                    "description":"Update Kits Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "reason":"Reconciled at site",
                                        "subjectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "returnedUnits":2,
                                        "missingUnits":0,
                                        "kits":[
                                            "E39FF55A445543A38D513325664F0B2D",
                                            "C36A3197FDEE433FB5547EE83DE99E4B"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateSiteKitsResponseV2"
                                },
                                "examples":{
                                    "Update Kits Response":{
                                        "description":"Update Kits Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                            "tempExcursionNumber":"001",
                                            "formInstanceId":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Server Error Response":{
                                        "description":"Update Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Not Found Response":{
                                        "description":"Update Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kits Bad Request Response":{
                                        "description":"Update Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status by kit ID"
                ],
                "summary":"v4.0",
                "description":"Updates a kit's status at a site by kit ID. If the new status is <i>quarantined</i> it will generate a temperature excursion number. <br>Rights: <i>OrsInventoryPost</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"updateKits_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"E39FF55A445543A38D513325664F0B2D"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kit By ID Request":{
                                    "description":"Update Kit By ID Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "reason":"Reconciled at site",
                                        "subjectId":"B1B8327AFAA6412287106192AB5984EF",
                                        "returnedUnits":2,
                                        "missingUnits":0
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Kit By ID Response":{
                                        "description":"Update Kit By ID Response",
                                        "value":{
                                            "id":"E39FF55A445543A38D513325664F0B2D"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Server Error Response":{
                                        "description":"Update Kit By ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Not Found Response":{
                                        "description":"Update Kit By ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Kit By ID Bad Request Response":{
                                        "description":"Update Kit By ID Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-put",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-put"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/lots/manufacturing-lots":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get all manufacturing lots"
                ],
                "summary":"v4.0",
                "description":"Retrieves all manufacturing lots by study ID. Rights: LotManagementGet.",
                "operationId":"getAllManufacturingLots_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ManufacturingLotCommon"
                                    }
                                },
                                "examples":{
                                    "Get Manufacturing Lots Response":{
                                        "description":"Get Manufacturing Lots Response",
                                        "value":[
                                            {
                                                "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "manufacturingLotNumber":"MLOT-4001",
                                                "expirationDate":"2027-12-31T00:00:00Z",
                                                "blindedLotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "doNotCount":5,
                                                "doNotShip":10,
                                                "lotNumber":"LOT-4001",
                                                "versionStart":"2026-03-01T08:00:00Z",
                                                "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                                "runNumber":"run number 04",
                                                "inUse":true,
                                                "versionEnd":"2026-03-15T08:00:00Z",
                                                "blindedLotVersionStart":"2026-02-25T08:00:00Z",
                                                "operationType":"MODIFIED",
                                                "objectVersionNumber":7,
                                                "softwareVersionNumber":4,
                                                "reason":"Material assignment updated",
                                                "comment":"Manufacturing lot aligned to kit type",
                                                "quantity":250,
                                                "materialId":"MAT-4001",
                                                "kitTypeSrcId":"30100000200000000000000000000005"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Forbidden Response":{
                                        "description":"Get Manufacturing Lots Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view manufacturing lots.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lots Server Error Response":{
                                        "description":"Get Manufacturing Lots Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving manufacturing lots.",
                                                "details":{
                                                    "operation":"getAllManufacturingLots",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-lots-manufacturing-lots-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-lots-manufacturing-lots-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/lots/manufacturing-lots/{id}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID"
                ],
                "summary":"v4.0",
                "description":"Retrieves manufacturing lot by lot ID. Rights: LotManagementGet.",
                "operationId":"getManufacturingLot_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"id",
                        "in":"path",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    {
                        "name":"includeDeleted",
                        "in":"query",
                        "description":"Include deleted records.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ManufacturingLotCommon"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Response":{
                                        "description":"Get Manufacturing Lot Response",
                                        "value":{
                                            "id":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "manufacturingLotNumber":"MLOT-4001",
                                            "expirationDate":"2027-12-31T00:00:00Z",
                                            "blindedLotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                            "doNotCount":5,
                                            "doNotShip":10,
                                            "lotNumber":"LOT-4001",
                                            "versionStart":"2026-03-01T08:00:00Z",
                                            "userId":"C36A3197-FDEE-433F-B554-7EE83DE99E4B",
                                            "runNumber":"run number 04",
                                            "inUse":true,
                                            "versionEnd":"2026-03-15T08:00:00Z",
                                            "blindedLotVersionStart":"2026-02-25T08:00:00Z",
                                            "operationType":"MODIFIED",
                                            "objectVersionNumber":7,
                                            "softwareVersionNumber":4,
                                            "reason":"Material assignment updated",
                                            "comment":"Manufacturing lot aligned to kit type",
                                            "quantity":250,
                                            "materialId":"MAT-4001",
                                            "kitTypeSrcId":"30100000200000000000000000000005"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"The study identifier does not match any study identifiers in Clinical One",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Forbidden Response":{
                                        "description":"Get Manufacturing Lot Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to view the manufacturing lot.",
                                                "details":{
                                                    "right":"LotManagementGet",
                                                    "reason":"The current user does not have access to manufacturing lot data."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Manufacturing Lot Server Error Response":{
                                        "description":"Get Manufacturing Lot Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INTERNAL_SERVER_ERROR",
                                                "errorMessage":"Unexpected error while retrieving the manufacturing lot.",
                                                "details":{
                                                    "operation":"getManufacturingLot",
                                                    "reason":"The manufacturing lot lookup failed."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-lots-manufacturing-lots-{id}-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-lots-manufacturing-lots-id-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type, Subject Number and Kit List. Rights: UnblindedChainofCustodyReportPost. Added field: Return Site ID for a reconciliation shipment.",
                "operationId":"getChainOfCustodyReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Chain Of Custody Report Search Specs Request":{
                                    "description":"Chain Of Custody Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Response":{
                                        "description":"Chain Of Custody Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Kit Number",
                                                    "Status"
                                                ],
                                                "data":[
                                                    [
                                                        "10001",
                                                        "Available"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Server Error Response":{
                                        "description":"Chain Of Custody Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Bad Request Response":{
                                        "description":"Chain Of Custody Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Not Found Response":{
                                        "description":"Chain Of Custody Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/order-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Order Summary report"
                ],
                "summary":"v4.0",
                "description":"Retrieves the Order Summary report.",
                "operationId":"getOrderSummarReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Order Summary Report Search Specs Request":{
                                    "description":"Order Summary Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":" The result contains the following attributes \n\n   1. Shipped By SDF\n\n        UUID of the site/depot which shipped the shipment. E.g. '41300000900000000000000000000001'\n\n    2. Received By SDF\n\n        UUID of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    3. Received By SDF ID of Country\n\n        UUID of the country of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    4. Shipment ID\n\n        Name of shipment. E.g. 'Hyd125'\n\n    5. Shipment Type\n\n        Type of shipment. E.g. 'Resupply'\n\n    6. Shipment Status\n\n        Current status of the shipment. E.g. '4'\n\n    7. Date Requested\n\n        Date on which the shipment was raised. E.g. '2020-01-20'\n\n    8. Date Received\n\n        Date on which the shipment was received. null if the shipment is still not received\n\n    9. Days Outstanding\n\n        No. of days till the shipment was received. If the shipment is still not received, this would be equal to no. of days since the shipment was requested (current date - date requested).\n\n    10. Date Cancelled/Marked Lost\n\n        Date on which the shipment was canceled. null if not available (shipment not canceled)\n\n    11. Kit Count\n\n        No. of kits in the shipment.\n\n    12. Kit Numbers in Shipment \n\n        Kit numbers separated by `\\u7F`. E.g. \"300\\u7F400\"\n\n        Use  Character.toString ((char) 0x7F) as delimiter while concatenating multiple kits\n\n    13. Tracking Number\n\n       Tracking number which is assigned to the shipment \n\n    14. Received By User\n\n        UUID of the user which received the shipment. E.g. '41300000900000000000000000000001'\n\nResponse Payload: \n\n{\n\n  \"result\": {\n\n    \"hasMore\": \"true\",\n\n    \"totalResults\": 221,\n\n    \"count\": 1,\n\n    \"limit\": 1,\n\n    \"offset\": 0,\n\n    \"columns\": [\n\n      \"Shipped By SDF\",\n\n      \"Received By SDF\",\n\n      \"Received By SDF ID for Country\",\n\n      \"Shipment ID\",\n\n      \"Shipment Type\",\n\n      \"Shipment Status\",\n\n      \"Date Requested\",\n\n      \"Date Received\",\n\n      \"Days Outstanding\",\n\n      \"Date Cancelled/Marked Lost\",\n\n      \"Kit Count\",\n\n      \"Kit Numbers in Shipment\",\n\n      \"Tracking Number\",\n\n      \"Temperature Monitor Status\",\n\n      \"Received By User\"\n\n    ],\n\n    \"data\": [\n\n      [\n\n        \"09CA38D0A01145A285B2086729B4453C\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"depo161\",\n\n        \"Manual\",\n\n        \"Received\",\n\n        \"04-Jan-2022\",\n\n        \"04-Jan-2022\",\n\n        \"0\",\n\n        \"\",\n\n        \"4\",\n\n        \"100324704780\",\n\n        \"\",\n\n        \"Yes\",\n\n        \"0000000000000000000000000000000B\"\n\n      ]\n\n    ]\n\n  },\n\n  \"status\": \"success\",\n\n  \"errorData\": null\n\n}",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Order Summary Report Response":{
                                        "description":"Order Summary Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Shipment Number",
                                                    "Status"
                                                ],
                                                "data":[
                                                    [
                                                        "SHIP-0001",
                                                        "PENDING"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Order Summary Report Server Error Response":{
                                        "description":"Order Summary Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Order Summary Report Bad Request Response":{
                                        "description":"Order Summary Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Order Summary Report Not Found Response":{
                                        "description":"Order Summary Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-order-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-order-summary-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/unblindedrandreport":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Randomization List report"
                ],
                "summary":"v4.0",
                "description":"Retrieves the Randomization List report. Rights: UnblindedRandomizationReportPost.",
                "operationId":"getRandReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Randomization Report Search Specs Request":{
                                    "description":"Randomization Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Randomization Report Response":{
                                        "description":"Randomization Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Rand Number",
                                                    "Status"
                                                ],
                                                "data":[
                                                    [
                                                        "10001",
                                                        "Assigned"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization Report Server Error Response":{
                                        "description":"Randomization Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization Report Bad Request Response":{
                                        "description":"Randomization Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Randomization Report Not Found Response":{
                                        "description":"Randomization Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-unblindedrandreport-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-unblindedrandreport-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/recon":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Reconciliation report"
                ],
                "summary":"v4.0",
                "description":"Retrieves Kit Reconciliation report. Rights: ReconciliationReport.",
                "operationId":"getReconReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"onlyCounts",
                        "in":"query",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Reconciliation Report Search Specs Request":{
                                    "description":"Reconciliation Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Reconciliation Report Response":{
                                        "description":"Reconciliation Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Kit Number",
                                                    "Inventory Status"
                                                ],
                                                "data":[
                                                    [
                                                        "10001",
                                                        "Available"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reconciliation Report Server Error Response":{
                                        "description":"Reconciliation Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reconciliation Report Bad Request Response":{
                                        "description":"Reconciliation Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reconciliation Report Not Found Response":{
                                        "description":"Reconciliation Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-recon-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-recon-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subject Dispensation Report Search Specs Request":{
                                    "description":"Subject Dispensation Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "9B83BFB48C5A41C59775E4D8D22D8B26"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Response":{
                                        "description":"Subject Dispensation Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Subject",
                                                    "Visit"
                                                ],
                                                "data":[
                                                    [
                                                        "S1001",
                                                        "Visit 1"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Server Error Response":{
                                        "description":"Subject Dispensation Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Forbidden Response":{
                                        "description":"Subject Dispensation Report Forbidden Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to perform this operation.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Bad Request Response":{
                                        "description":"Subject Dispensation Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Not Found Response":{
                                        "description":"Subject Dispensation Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/reports/subjects":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Subject Data report"
                ],
                "summary":"v4.0",
                "description":"Retrieves the Subject Data report. Rights: SubjectDataReportPost. This API is used in Subject Visit (Blinded) Report, Subject Events Report and CTMS Report.",
                "operationId":"getSubjectsReport_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subjects Report Search Specs Request":{
                                    "description":"Subjects Report Search Specs Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subjects Report Response":{
                                        "description":"Subjects Report Response",
                                        "value":{
                                            "status":"success",
                                            "errorData":null,
                                            "result":{
                                                "columns":[
                                                    "Subject",
                                                    "Event Type"
                                                ],
                                                "data":[
                                                    [
                                                        "S1001",
                                                        "DISPENSE"
                                                    ]
                                                ],
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "totalResults":1,
                                                "hasMore":"false"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subjects Report Server Error Response":{
                                        "description":"Subjects Report Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subjects Report Bad Request Response":{
                                        "description":"Subjects Report Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Subjects Report Not Found Response":{
                                        "description":"Subjects Report Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-reports-subjects-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-reports-subjects-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/resupply/manual":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy"
                ],
                "summary":"v4.0",
                "description":"Creates a manual shipment as part of a study's predictive resupply group. Rights: OrsSupplyManagerPost.",
                "operationId":"manual_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ManualSupplyRequestV2"
                            },
                            "examples":{
                                "Create Manual Shipment Request":{
                                    "description":"Create Manual Shipment Request",
                                    "value":{
                                        "studyId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                        "jobInstanceId":"JOB-001",
                                        "siteId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "kits":[
                                            {
                                                "kitTypeId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "lotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                "quantity":10
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Create Manual Shipment Response":{
                                        "description":"Create Manual Shipment Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Manual Shipment Not Found Response":{
                                        "description":"Create Manual Shipment Not Found Response",
                                        "value":{
                                            "errorCode":"NOT_FOUND",
                                            "errorMessage":"No data found."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                },
                                "examples":{
                                    "Create Manual Shipment Server Error Response":{
                                        "description":"Create Manual Shipment Server Error Response",
                                        "value":{
                                            "errorCode":"INTERNAL_SERVER_ERROR",
                                            "errorMessage":"An unexpected error occurred."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-resupply-manual-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-resupply-manual-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/randlists/{rndlistid}/randnumbers":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number"
                ],
                "summary":"v4.0",
                "description":"Retrieves randomization number. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandNum_2",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ARM-A"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"blockedBy",
                        "in":"query",
                        "description":"ID of the entity which has blocked the randomization number.",
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the randomization number.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"cohortId",
                        "in":"query",
                        "description":"ID of the cohort.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"COH-01"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"ID of the group in a stratum.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"GRP-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandNumberResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Response":{
                                        "description":"Get Rand Numbers Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "randNumbers":[
                                                {
                                                    "randNumberId":"D313327EF13845169A8ADADDA435431E",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"2026-02-21T06:45:00Z",
                                                    "randNumber":10001,
                                                    "blockNumber":1,
                                                    "randStatusId":1,
                                                    "externalTreatmentId":"ARM-A",
                                                    "blockingParamName":"site",
                                                    "blockingParamId":"SITE-001",
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "cohortId":"COH-01",
                                                    "sequenceNumber":1001
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Server Error Response":{
                                        "description":"Get Rand Numbers Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version, or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Not Found Response":{
                                        "description":"Get Rand Numbers Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-randlists-{rndlistid}-randnumbers-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-randlists-rndlistid-randnumbers-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves a randomization list. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlist_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Rand Lists Response":{
                                        "description":"Get Rand Lists Response",
                                        "value":{
                                            "randListId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "versionEnd":"2026-02-21T06:45:00Z",
                                            "name":"UPL_RL191_V1001",
                                            "description":"Randomization list with demographic cohort",
                                            "isStratified":"n",
                                            "isBlocked":"y",
                                            "isDynamic":"n",
                                            "inUse":"y",
                                            "blockedBy":"site",
                                            "isCohortBased":"y",
                                            "firstAssctdRandDesignSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                            "firstAssctdStudyVersion":"1.0.1",
                                            "isMinimization":"n",
                                            "lastAssctdRandDesignSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "lastAssctdStudyVersion":"1.0.2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Lists Server Error Response":{
                                        "description":"Get Rand Lists Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand Lists Not Found Response":{
                                        "description":"Get Rand Lists Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/randlists/{rndlistid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID"
                ],
                "summary":"v4.0",
                "description":"Retrieves a randomization list by ID. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlistById_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Rand List By ID Response":{
                                        "description":"Get Rand List By ID Response",
                                        "value":{
                                            "randListId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                            "versionStart":"2026-02-21T06:30:00Z",
                                            "versionEnd":"2026-02-21T06:45:00Z",
                                            "name":"UPL_RL191_V1001",
                                            "description":"Randomization list with demographic cohort",
                                            "isStratified":"n",
                                            "isBlocked":"y",
                                            "isDynamic":"n",
                                            "inUse":"y",
                                            "blockedBy":"site",
                                            "isCohortBased":"y",
                                            "firstAssctdRandDesignSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                            "firstAssctdStudyVersion":"1.0.1",
                                            "isMinimization":"n",
                                            "lastAssctdRandDesignSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "lastAssctdStudyVersion":"1.0.2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand List By ID Server Error Response":{
                                        "description":"Get Rand List By ID Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Rand List By ID Not Found Response":{
                                        "description":"Get Rand List By ID Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-randlists-{rndlistid}-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-randlists-rndlistid-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/shipments/{shipmentId}/eligible-kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get eligible kits"
                ],
                "summary":"v4.0",
                "description":"Searches for kits by kit type or shipment details. Rights: OrsInventoryGet, OrsUnblinded. Added additional field kitNumberUTF in the response",
                "operationId":"getEligibleKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentEligibleKitsResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits Response":{
                                        "description":"Get Eligible Kits Response",
                                        "value":{
                                            "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kits":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":5,
                                                    "sequenceNumber":5,
                                                    "kitTypeName":"Kit A",
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "kitNumberUTF":"12345ab",
                                                    "srcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "lotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                                    "lotNumber":"LOT-001",
                                                    "quantity":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits Server Error Response":{
                                        "description":"Get Eligible Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Eligible Kits Not Found Response":{
                                        "description":"Get Eligible Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-shipments-{shipmentId}-eligible-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-shipments-shipmentid-eligible-kits-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits"
                ],
                "summary":"v4.0",
                "description":"Retrieves a kit's details by order. Rights: OrsInventoryGet, OrsUnblinded. Added new field: kitNumberUTF to the response.",
                "operationId":"getKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":10001
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"kitNumber"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentKitsResponseV4"
                                },
                                "examples":{
                                    "Get Shipment Kits Response":{
                                        "description":"Get Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "kitTypes":[
                                                {
                                                    "id":"D313327EF13845169A8ADADDA435431E",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Kit type summary for shipment.",
                                                    "packageTypeId":1001,
                                                    "unitsPerKit":10,
                                                    "packageTypeKey":"BOTTLE",
                                                    "kits":[
                                                        {
                                                            "id":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "kitNumber":5,
                                                            "sequenceNumber":5,
                                                            "barcode":"KIT-000005",
                                                            "returnedUnits":0,
                                                            "missingUnits":0,
                                                            "depotReturnedUnits":0,
                                                            "inventoryStatusId":1,
                                                            "materialId":"MAT-001",
                                                            "itemNumber":"ITEM-001"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Kits Server Error Response":{
                                        "description":"Get Shipment Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Kits Not Found Response":{
                                        "description":"Get Shipment Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. In this API, blockNumber and kitNumberUTF added to return block number and kit number in UTF-8. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTO"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"89EE76326E984B548D594D592E5C7FC2",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Order not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"No order matched the supplied shipment identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Server Error Response":{
                                        "description":"Get Order Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves a list of all orders in a study. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponse"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Orders Server Error Response":{
                                        "description":"Get Orders Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Orders Bad Request Response":{
                                        "description":"Get Orders Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID"
                ],
                "summary":"v4.0",
                "description":"Retrieves shipment containing source and destination locations by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipment_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentTOV2"
                                },
                                "examples":{
                                    "Get Shipment Response":{
                                        "description":"Get Shipment Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "shipmentNumber":"SHIP-0001",
                                            "statusId":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Server Error Response":{
                                        "description":"Get Shipment Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Not Found Response":{
                                        "description":"Get Shipment Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipments_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "statusId":1,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipments Server Error Response":{
                                        "description":"Get Shipments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipments Not Found Response":{
                                        "description":"Get Shipments Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/shipment-statuses":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/List available order status values"
                ],
                "summary":"v4.0",
                "description":"Lists available order status values. Rights: OrsInventoryGet.",
                "operationId":"getStatuses_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/OrderStatus"
                                    }
                                },
                                "examples":{
                                    "Get Shipment Statuses Response":{
                                        "description":"Get Shipment Statuses Response",
                                        "value":[
                                            {
                                                "id":1,
                                                "status":"PENDING"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Order not found.",
                                                "details":{
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "reason":"No order exists for the supplied shipment identifier."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Shipment Statuses Server Error Response":{
                                        "description":"Get Shipment Statuses Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"shipment",
                                                    "reason":"Review the error code and message for the failed shipment request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-shipment-statuses-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-shipment-statuses-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get a shipment's details by ID for a site"
                ],
                "summary":"v4.0",
                "description":"Retrieves a shipment's details by ID for a site. Rights: OrsSupplyManagerGet and OrsBlinded. Added additional attributes: quarantinedCount.",
                "operationId":"getShipment_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteUserShipmentTO"
                                },
                                "examples":{
                                    "Get Site Shipment Response":{
                                        "description":"Get Site Shipment Response",
                                        "value":{
                                            "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "shipmentNumber":"123",
                                            "status":"INTRANSIT"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Not Found Response":{
                                        "description":"Get Site Shipment Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Shipment not found.",
                                                "details":{
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Server Error Response":{
                                        "description":"Get Site Shipment Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"getShipment",
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/sites/{siteId}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a site"
                ],
                "summary":"v4.0",
                "description":"Searches for shipments associated with a site by site ID. This version includes a new fields in the response: shipmentRegisteredDate, shipmentReceivedDate. <br>Rights: <i>OrsSupplyManagerGet</i> and <i>OrsBlinded</i>.",
                "operationId":"getShipments_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        }
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        }
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        }
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV4"
                                },
                                "examples":{
                                    "Get Site Shipments Response":{
                                        "description":"Get Site Shipments Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "siteName":"Houston Research Center",
                                                    "statusId":1,
                                                    "shipmentNumber":"SHIP-0001",
                                                    "createdDate":"2026-02-20T08:30:00Z",
                                                    "shipDate":"2026-02-21T06:45:00Z",
                                                    "trackingNumber":"1Z9999999999999999",
                                                    "reconciliation":false,
                                                    "trackingNumberURL":"http://www.site.com/tracking/1Z9999999999999999",
                                                    "formInstanceId":"00D48A2A-7280-1A4E-E063-0100007F3AF8",
                                                    "shipmentRegisteredDate":"2026-02-20T08:30:00Z",
                                                    "shipmentReceivedDate":"2026-02-24T10:15:00Z"
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID',  'Study still in Draft (design phase)', 'Invalid site ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipments Not Found Response":{
                                        "description":"Get Site Shipments Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No shipments were found for the supplied criteria.",
                                                "details":{
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "searchString":"SHIP"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Site Shipments Server Error Response":{
                                        "description":"Get Site Shipments Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"getShipments",
                                                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/sites/{siteId}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment"
                ],
                "summary":"v4.0",
                "description":"Retrieves either all kits or a specific kit (if a kit number is provided) for a shipment. Rights: OrsSupplyManagerGet and OrsBlinded. Adds support for non-serialized kits.",
                "operationId":"getSiteKits_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-1001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteShipmentKitsTO"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Response":{
                                        "description":"Get Site Shipment Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "totalResults":1,
                                            "hasMore":false,
                                            "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":1001,
                                                    "inventoryStatusId":10,
                                                    "barcode":"KIT-1001",
                                                    "lotNumber":"Manufacturing lot 1",
                                                    "lotId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "quantity":1
                                                }
                                            ],
                                            "links":[
                                                {
                                                    "rel":"self",
                                                    "href":"https://example.com/v4.0/studies/1BC29B36F5D64B1B95F4BDBBCEA481BE/test/sites/C36A3197FDEE433FB5547EE83DE99E4B/shipments/B1B8327AFAA6412287106192AB5984EF/kits?offset=0&limit=100"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in Draft (design phase)', 'Invalid site ID', 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Not Found Response":{
                                        "description":"Get Site Shipment Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":"KIT-1001"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Site Shipment Kits Server Error Response":{
                                        "description":"Get Site Shipment Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "operation":"getSiteKits",
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-sites-{siteId}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-sites-siteid-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Retrieves a study's supply settings by study ID. This version includes new field <i>confirmDispensation</i> in Response. <br>Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV4"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":true,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":true,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "waitDaysBeforeNotifying":2,
                                            "shipmentPrefixType":"DEPOTID",
                                            "customShipmentIdPrefix":"SomePrefix",
                                            "kitReconciliationRequired":true,
                                            "reuseSealedKits":true,
                                            "reuseOnlyLastVisitKkits":true,
                                            "allowPartialDispensation":true,
                                            "confirmDispensation":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Supply Settings Server Error Response":{
                                        "description":"Get Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Updates a study's supply settings by study ID. This version includes new field <i>confirmDispensation</i> in Response. <br>Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV4"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":true,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":true,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":2,
                                        "shipmentPrefixType":"DEPOTID",
                                        "customShipmentIdPrefix":"SomePrefix",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Not Found Response":{
                                        "description":"Update Supply Settings Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Bad Request Response":{
                                        "description":"Update Supply Settings Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Update Supply Settings Server Error Response":{
                                        "description":"Update Supply Settings Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation history by study ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getDispensationHistory_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV4"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":10001,
                                                "inventoryStatus":10,
                                                "dispensationDate":"2026-03-01T08:30:00Z",
                                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                "packageTypeId":5,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "lastModifiedDate":"2026-03-01T09:00:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"WearablePatch",
                                                "deviceConnection":"DevicetoCloud",
                                                "mHealthDeviceId":"MH-10001"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Not Found Response":{
                                        "description":"Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Bad Request Response":{
                                        "description":"Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Dispensation History Server Error Response":{
                                        "description":"Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/{subjectId}/reuse-kits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types"
                ],
                "summary":"v4.0",
                "description":"Retrieves previously dispensed kits, from a list of kit types passed in the request body, that can be reused in the current visit for a given subject. Support for unblinded pharmacist kits which are put on dose hold. UTF-8 format support for kitNumber. Rights: OrsSubjectVisitGet.",
                "operationId":"getReusableDoseHoldKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"subjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDoseHoldRequest"
                            },
                            "examples":{
                                "Reusable Kits Request":{
                                    "description":"Reusable Kits Request",
                                    "value":{
                                        "studyVersion":"1.0.0.5",
                                        "visitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "instanceNumber":1,
                                        "titrationOption":"up",
                                        "kitTypesForDoseHold":[
                                            {
                                                "kitTypeSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "trialSupplyType":"BOTTLE",
                                                "deviceType":"Spirometer",
                                                "isTitration":true
                                            }
                                        ],
                                        "screeningDate":"2026-02-21T06:30:00",
                                        "visitStartDate":"2026-02-21T06:45:00"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReusableKitsResponseV1"
                                },
                                "examples":{
                                    "Reusable Kits Response":{
                                        "description":"Reusable Kits Response",
                                        "value":{
                                            "status":"ALLOW",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "isDosingUnblinded":true,
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "kitDescription":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject OR Scheduled visit with instance number OR Unscheduled visit with no instance number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Bad Request Response":{
                                        "description":"Reusable Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Reusable Kits Server Error Response":{
                                        "description":"Reusable Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{subjectId}-reuse-kits-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-subjects-subjectid-reuse-kits-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects"
                ],
                "summary":"v4.0",
                "description":"Retrieves unblinded dispensation history for all subjects within the study. In this version pagination and these two fields were added : <ul><li>titrationOption</li><li>operationType</li></ul><br> Rights: <i>OrsSubjectVisitGet</i>.",
                "operationId":"getUnblindedAllDispHistory_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "description":"Value of audit parameter",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Response":{
                                        "description":"Unblinded Dispensation History Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":0,
                                            "hasMore":false,
                                            "totalResults":0,
                                            "resultData":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Not Found Response":{
                                        "description":"Unblinded Dispensation History Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid limit or offset values",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Bad Request Response":{
                                        "description":"Unblinded Dispensation History Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Server Error Response":{
                                        "description":"Unblinded Dispensation History Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Retrieves visit by visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "groupingNumber":1,
                                                    "kitNumberUTF":"A-1",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotNumber":"LOT20240605A",
                                                    "dosingInstruction":"Take one capsule daily"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":0,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Not Found Response":{
                                        "description":"Get Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Bad Request Response":{
                                        "description":"Get Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Visit Server Error Response":{
                                        "description":"Get Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV4"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "visitId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                        "subjectId":"11111111111111111111111111111111",
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "parameters":[
                                            {
                                                "name":"WEIGHT",
                                                "value":"70"
                                            }
                                        ],
                                        "titrationOption":"up",
                                        "userConfirmationTaken":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "groupingNumber":1,
                                                    "kitNumberUTF":"A-1",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotNumber":"LOT20240605A",
                                                    "dosingInstruction":"Take one capsule daily"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A",
                                            "needsToVisitPharmacist":false,
                                            "countOfKitTypesOnDoseHold":0,
                                            "pendingKitQuantity":1,
                                            "forcedRandomized":false
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Not Found Response":{
                                        "description":"Visit Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Bad Request Response":{
                                        "description":"Visit Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Visit Server Error Response":{
                                        "description":"Visit Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v4.0/studies/{studyId}/{mode}/subjects/{srcSubjectId}/replacekits":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Replace a subject's kits"
                ],
                "summary":"v4.0",
                "description":"Replaces a subject's kits in the system,  accepts Strings and Numbers. Allows non-serialized kits to be replaced. Rights: OrsVisitManagementPost.",
                "operationId":"replaceSubjectKits_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"srcSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SubjectReplaceKitsRequest"
                            },
                            "examples":{
                                "Replace Subject Kits Request":{
                                    "description":"Replace Subject Kits Request",
                                    "value":{
                                        "nsKits":[
                                            {
                                                "subjectVisitNsinventoryId":"41200000000000000000000000000252",
                                                "quantity":10
                                            }
                                        ],
                                        "kits":[
                                            "5a"
                                        ],
                                        "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                        "reason":"Some reason",
                                        "reasonLabel":"kits are damaged"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SubjectReplaceKitsResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Response":{
                                        "description":"Replace Subject Kits Response",
                                        "value":{
                                            "replacedKits":[
                                                {
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "kitNumber":1001,
                                                    "kitTypeName":"Kit A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or version. Or subject not found. Or site ID not found in site service",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Not Found Response":{
                                        "description":"Replace Subject Kits Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or this operation is not allowed during the current subject statusOr invalid kit",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Bad Request Response":{
                                        "description":"Replace Subject Kits Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Subject is randomized in error. Or not enough inventory",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Replace Subject Kits Server Error Response":{
                                        "description":"Replace Subject Kits Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v4.0-studies-{studyId}-{mode}-subjects-{srcSubjectId}-replacekits-post",
                "x-filename-id":"ec-ors-svc-rest-v4.0-studies-studyid-mode-subjects-srcsubjectid-replacekits-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves a kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"blockNumber",
                        "in":"query",
                        "description":"Block number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"BLOCK-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":[
                                            {
                                                "kitTypes":[
                                                    {
                                                        "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "kitTypeName":"KitType-01",
                                                        "description":"Example kit type.",
                                                        "packageTypeId":1,
                                                        "packageType":"Bottle",
                                                        "totalKitNumbers":100,
                                                        "kitsDispensed":5,
                                                        "kitsDamaged":1,
                                                        "kitsAvailable":94,
                                                        "kitsInTransit":0,
                                                        "kitsReturnedToSite":0,
                                                        "kitsPendingDestruction":0,
                                                        "kitsExpired":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location OR Invalid kitNumber OR Invalid Block Number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves kits for a site based on a given number range. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":10
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "minKitNumber":10001,
                                            "maxKitNumber":10001,
                                            "totalReturnedUnits":2,
                                            "distinctInventoryStatusIds":[
                                                10
                                            ],
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid site ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits matched the supplied filters."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit filter values are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update status for kits in a site"
                ],
                "summary":"v5.0",
                "description":"Updates a kit's status at a site. Added <i>formInstanceId</i> in response when kits are updated to pending destruction. <br>Rights: <i>OrsInventoryPost</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"updateKits_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kits Status Request":{
                                    "description":"Update Kits Status Request",
                                    "value":{
                                        "kitsFilter":{
                                            "kitRange":"KIT_NUMBER:10:100",
                                            "searchString":"KIT",
                                            "inventoryStatusIds":[
                                                5,
                                                10
                                            ],
                                            "serialized":true
                                        },
                                        "nskits":[
                                            {
                                                "subjectVisitNSInventoryId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                "lotId":"D313327EF13845169A8ADADDA435431E",
                                                "inventoryStatusId":10
                                            }
                                        ],
                                        "kits":[
                                            "C36A3197FDEE433FB5547EE83DE99E4B",
                                            "E39FF55A445543A38D513325664F0B2D"
                                        ],
                                        "inventoryStatusId":10,
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1,
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "returnedUnits":2,
                                        "missingUnits":0,
                                        "singleRowNSUpdate":true,
                                        "quantity":1,
                                        "reason":"Reconciled at site"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateSiteKitsResponseV2"
                                },
                                "examples":{
                                    "Update Kits Status Response":{
                                        "description":"Update Kits Status Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "tempExcursionNumber":"001",
                                            "formInstanceId":"89EE76326E984B548D594D592E5C7FC2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits matched the supplied selection."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kits update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-put",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-sites-siteid-inventory-kits-put"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits/{kitId}":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Update kit status by kit ID"
                ],
                "summary":"v5.0",
                "description":"Updates a kit's status at a site. Added <i>formInstanceId</i> in response when kits are updated to pending destruction. <br>Rights: <i>OrsInventoryPost</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"updateKits_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"ID of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SiteUserUpdateKitsStatusRequest"
                            },
                            "examples":{
                                "Update Kit Status Request":{
                                    "description":"Update Kit Status Request",
                                    "value":{
                                        "inventoryStatusId":10,
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "reason":"Reconciled at site",
                                        "returnedUnits":2,
                                        "missingUnits":0,
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "instanceNumber":1,
                                        "kits":[
                                            "D313327EF13845169A8ADADDA435431E"
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateSiteKitsResponseV2"
                                },
                                "examples":{
                                    "Update Kit Status Response":{
                                        "description":"Update Kit Status Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF",
                                            "tempExcursionNumber":"001",
                                            "formInstanceId":"89EE76326E984B548D594D592E5C7FC2"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while updating the site kit."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID or study still in design phase AND for invalid kit and study combination.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"The site kit was not found."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid subject or inventory status or invalid transition status for, kit does not belong to site.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit update request is invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-{kitId}-put",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-sites-siteid-inventory-kits-kitid-put"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type, Subject Number and Kit List. Rights: UnblindedChainofCustodyReportPost. Added field: Block Number for a reconciliation shipment.",
                "operationId":"getChainOfCustodyReport_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Chain Of Custody Report Request":{
                                    "description":"Chain Of Custody Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Response":{
                                        "description":"Chain Of Custody Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Kit Number",
                                                    "Transaction Date"
                                                ],
                                                "data":[
                                                    [
                                                        "KIT-0001",
                                                        "2026-02-21"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/reports/order-summary":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Order Summary report"
                ],
                "summary":"v5.0",
                "description":"Retrieves the Order Summary report.",
                "operationId":"getOrderSummaryReport",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Order Summary Report Request":{
                                    "description":"Order Summary Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"orderStatus",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "SHIPPED"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":" The result contains the following attributes \n\n   1. Shipped By SDF\n\n        UUID of the site/depot which shipped the shipment. E.g. '41300000900000000000000000000001'\n\n    2. Received By SDF\n\n        UUID of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    3. Received By SDF ID of Country\n\n        UUID of the country of the site/depot which received the shipment. E.g. '41300000900000000000000000000001'\n\n    4. Shipment ID\n\n        Name of shipment. E.g. 'Hyd125'\n\n    5. Shipment Type\n\n        Type of shipment. E.g. 'Resupply'\n\n    6. Shipment Status\n\n        Current status of the shipment. E.g. '4'\n\n    7. Date Requested\n\n        Date on which the shipment was raised. E.g. '2020-01-20'\n\n    8. Date Received\n\n        Date on which the shipment was received. null if the shipment is still not received\n\n    9. Days Outstanding\n\n        No. of days till the shipment was received. If the shipment is still not received, this would be equal to no. of days since the shipment was requested (current date - date requested).\n\n    10. Date Cancelled/Marked Lost\n\n        Date on which the shipment was canceled. null if not available (shipment not canceled)\n\n    11. Kit Count\n\n        No. of kits in the shipment.\n\n    12. Kit Numbers in Shipment \n\n        Kit numbers separated by `\\u7F`. E.g. \"300\\u7F400\"\n\n        Use  Character.toString ((char) 0x7F) as delimiter while concatenating multiple kits\n\n    13. Tracking Number\n\n       Tracking number which is assigned to the shipment \n\n    14. Received By User\n\n        UUID of the user which received the shipment. E.g. '41300000900000000000000000000001'\n\nResponse Payload: \n\n{\n\n  \"result\": {\n\n    \"hasMore\": \"true\",\n\n    \"totalResults\": 221,\n\n    \"count\": 1,\n\n    \"limit\": 1,\n\n    \"offset\": 0,\n\n    \"columns\": [\n\n      \"Shipped By SDF\",\n\n      \"Received By SDF\",\n\n      \"Received By SDF ID for Country\",\n\n      \"Shipment ID\",\n\n      \"Shipment Type\",\n\n      \"Shipment Status\",\n\n      \"Date Requested\",\n\n      \"Date Received\",\n\n      \"Days Outstanding\",\n\n      \"Date Cancelled/Marked Lost\",\n\n      \"Kit Count\",\n\n      \"Kit Numbers in Shipment\",\n\n      \"Tracking Number\",\n\n      \"Temperature Monitor Status\",\n\n      \"Received By User\"\n\n    ],\n\n    \"data\": [\n\n      [\n\n        \"09CA38D0A01145A285B2086729B4453C\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"EB0F5FE4B75E4652800B90BE21521733\",\n\n        \"depo161\",\n\n        \"Manual\",\n\n        \"Received\",\n\n        \"04-Jan-2022\",\n\n        \"04-Jan-2022\",\n\n        \"0\",\n\n        \"\",\n\n        \"4\",\n\n        \"100324704780\",\n\n        \"\",\n\n        \"Yes\",\n\n        \"0000000000000000000000000000000B\"\n\n      ]\n\n    ]\n\n  },\n\n  \"status\": \"success\",\n\n  \"errorData\": null\n\n}",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Order Summary Report Response":{
                                        "description":"Order Summary Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Order Number",
                                                    "Status"
                                                ],
                                                "data":[
                                                    [
                                                        "ORDER-0001",
                                                        "SHIPPED"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-reports-order-summary-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-reports-order-summary-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/reports/unblindedrandreport":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Unblinded Randomization List report"
                ],
                "summary":"v5.0",
                "description":"Retrieves the Randomization List report. Rights: UnblindedRandomizationReportPost.",
                "operationId":"getRandReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Unblinded Randomization Report Request":{
                                    "description":"Unblinded Randomization Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"systemDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"rndListId",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Unblinded Randomization Report Response":{
                                        "description":"Unblinded Randomization Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Rand Number",
                                                    "Status"
                                                ],
                                                "data":[
                                                    [
                                                        "10",
                                                        "Assigned"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-reports-unblindedrandreport-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-reports-unblindedrandreport-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subject Dispensation Report Request":{
                                    "description":"Subject Dispensation Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Response":{
                                        "description":"Subject Dispensation Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Site",
                                                    "Subject",
                                                    "Kit Number"
                                                ],
                                                "data":[
                                                    [
                                                        "Site1001",
                                                        "S1001",
                                                        "KIT-0001"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to perform this operation.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/reports/subjects":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Subject Data report"
                ],
                "summary":"v5.0",
                "description":"Retrieves the Subject Data report. Rights: SubjectDataReportPost. This API is used in Subject Visit (Blinded) Report, Subject Events Report and CTMS Report.",
                "operationId":"getSubjectsReport_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"sessionToken",
                        "in":"query",
                        "description":"Session token.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subjects Report Request":{
                                    "description":"Subjects Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subjects Report Response":{
                                        "description":"Subjects Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Subject",
                                                    "Event Type"
                                                ],
                                                "data":[
                                                    [
                                                        "S1001",
                                                        "VISIT"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-reports-subjects-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-reports-subjects-post"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/randlists/{rndlistid}/randnumbers":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number"
                ],
                "summary":"v5.0",
                "description":"Versioned to return sequenceNumber along with the randomization number. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandNum_3",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"S1001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"blockedBy",
                        "in":"query",
                        "description":"ID of the entity which has blocked the randomization number.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the randomization number.",
                        "schema":{
                            "type":"number"
                        },
                        "example":3
                    },
                    {
                        "name":"cohortId",
                        "in":"query",
                        "description":"ID of the cohort.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    {
                        "name":"groupId",
                        "in":"query",
                        "description":"ID of the group in a stratum.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"GROUP-A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandNumberResponse"
                                },
                                "examples":{
                                    "Get Rand Numbers Response":{
                                        "description":"Get Rand Numbers Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "randNumbers":[
                                                {
                                                    "randNumberId":"D313327EF13845169A8ADADDA435431E",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"2026-02-21T06:45:00Z",
                                                    "randNumber":10,
                                                    "blockNumber":1,
                                                    "randStatusId":3,
                                                    "randStatusKey":"Assigned",
                                                    "treatmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "externalTreatmentId":"ARM-A",
                                                    "blockingParamName":"site",
                                                    "blockingParamId":"SITE-001",
                                                    "blockingParamValue":"Site1001",
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "subjectNumber":"S1001",
                                                    "cohortId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "cohortName":"Demo Cohort 1001",
                                                    "sequenceNumber":1001
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version, or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-randlists-{rndlistid}-randnumbers-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-randlists-rndlistid-randnumbers-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves a randomization list based on the query parameter <i>minimizationList</i>, which can take one of the following values: <ul><li>1 = Only minimization list</li><li>0 = Non-minimization list</li><li>null = All lists</li></ul><br>Rights: <i>OrsRandListGet</i> and <i>OrsUnblinded</i>.",
                "operationId":"getRandlist_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"minimizationLists",
                        "in":"query",
                        "description":"Integer property for type of rand list.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Randlists Response":{
                                        "description":"Get Randlists Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"RandList-01",
                                            "description":"Randomization list for Study",
                                            "inUse":"y"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/randlists/{rndlistid}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID"
                ],
                "summary":"v5.0",
                "description":"Retrieves a randomization list by ID. This API version returns <i>useSequenceNumber</i> to identify whether a given randomization list has a Sequence Number or not. Rights: OrsRandListGet and OrsUnblinded.",
                "operationId":"getRandlistById_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"rndlistid",
                        "in":"path",
                        "description":"ID of the randomization list.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO5"
                                },
                                "examples":{
                                    "Get Randlist By Id Response":{
                                        "description":"Get Randlist By Id Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"RandList-01",
                                            "description":"Randomization list for Study",
                                            "inUse":"y",
                                            "isMinimization":"n",
                                            "useSequenceNumber":"y"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID, invalid study version or if a randomization list isn't found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-randlists-{rndlistid}-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-randlists-rndlistid-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/shipments/{shipmentId}/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Kits/Get kits"
                ],
                "summary":"v5.0",
                "description":"Retrieves a serialized and non-serialized kit's details by order. Rights: OrsInventoryGet, OrsUnblinded. Added new field: nsKits to the response.",
                "operationId":"getKits_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit/Lot number.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT-0001"
                    },
                    {
                        "name":"orderBy",
                        "in":"query",
                        "description":"Specify the parameter by which the kits are ordered.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"kitNumber"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentKitsResponseV5"
                                },
                                "examples":{
                                    "Get Shipment Kits Response":{
                                        "description":"Get Shipment Kits Response",
                                        "value":{
                                            "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitTypes":[
                                                {
                                                    "id":"89EE76326E984B548D594D592E5C7FC2",
                                                    "kitTypeName":"Kit A",
                                                    "description":"Non dosing kit",
                                                    "packageTypeId":5,
                                                    "packageTypeKey":"INHALER",
                                                    "unitsPerKit":5,
                                                    "kitTypeSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "kits":[
                                                        {
                                                            "id":"D313327EF13845169A8ADADDA435431E",
                                                            "kitNumber":1001,
                                                            "sequenceNumber":1,
                                                            "barcode":"12345",
                                                            "returnedUnits":0,
                                                            "missingUnits":0,
                                                            "depotReturnedUnits":0,
                                                            "inventoryStatusId":5,
                                                            "materialId":"MaterialId0000001",
                                                            "itemNumber":"ItemNumber0000001",
                                                            "kitNumberUTF":"12345"
                                                        }
                                                    ],
                                                    "nsKits":[
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-shipments-{shipmentId}-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-shipments-shipmentid-kits-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. In this version, tempExcursionNumber is added to return temperature excursion number of the kit. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTOV5"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"D313327EF13845169A8ADADDA435431E",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves details of the orders. In this version, tempExcursionNumber is added to return temperature excursion number of the kit in an order. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV5"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"D313327EF13845169A8ADADDA435431E",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "orderId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "inventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/shipments/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID"
                ],
                "summary":"v5.0",
                "description":"Retrieves shipment containing source and destination locations by shipment ID. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getShipment_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ShipmentTO"
                                },
                                "examples":{
                                    "Get Shipment Response":{
                                        "description":"Get Shipment Response",
                                        "value":{
                                            "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                            "shipmentNumber":"SHIP-0001",
                                            "statusId":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase' or 'Invalid shipment ID'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Shipment not found."
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-shipments-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-shipments-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getShipments_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-0001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":5
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"123",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Retrieves supply settings. This version includes new field <i>confirmDispensation</i> in Response. Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV5"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":false,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":false,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "waitDaysBeforeNotifying":7,
                                            "shipmentPrefixType":"CUSTOM",
                                            "customShipmentIdPrefix":"ORD",
                                            "kitReconciliationRequired":true,
                                            "reuseSealedKits":true,
                                            "reuseOnlyLastVisitKkits":true,
                                            "allowPartialDispensation":true,
                                            "confirmDispensation":true,
                                            "depotKitReconRequired":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Updates a study's supply settings by study ID.  This version includes new field <i>confirmDispensation</i> in Response. <br>Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV5"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation history for a study, by subject and visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getDispensationHistory_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponseV5"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "conserved":false,
                                                "allowReplacement":false,
                                                "instanceNumber":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/unblinded-disp-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects"
                ],
                "summary":"v5.0",
                "description":"Retrieves unblinded dispensation history for all subjects within the study. This version includes new fields in response for non-serialized kits: <ul><li>subjectVisitNsInventoryId </li> <i>lotId</li> <li>quantity</li> <li>lotNumber</li> <li>nsInventoryVersionStart</li> <li>visitManualAssignment</li> <li>nsInventoryId</li> <li>userId</li> <li>originalSubjectVisitNSInventory</li> <li>notDispensedToSubject</li></ul> <br> Rights: <i>OrsSubjectVisitGet</i>.",
                "operationId":"getUnblindedAllDispHistory_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"audit",
                        "in":"query",
                        "description":"Value of audit parameter",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponse"
                                },
                                "examples":{
                                    "Unblinded Dispensation History Response":{
                                        "description":"Unblinded Dispensation History Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "resultData":[
                                                {
                                                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "instanceNumber":1,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "inventoryId":"699EF3745FC545589F186D2198F3C65E",
                                                    "kitNumber":123,
                                                    "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "inventoryStatusId":5,
                                                    "inventoryStatus":"Available",
                                                    "dispensationDate":"2026-02-24T00:00:00Z",
                                                    "barcode":"61234",
                                                    "dispensationConfirmed":true,
                                                    "dose":1,
                                                    "measurement":"mg",
                                                    "frequency":"Once daily",
                                                    "returnedUnits":0,
                                                    "missingUnits":0,
                                                    "conserved":false,
                                                    "kitNumberUTF":"KIT-000123",
                                                    "titrationOption":"maintain",
                                                    "operationType":"CREATED",
                                                    "subjectVisitNsInventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "lotId":"D313327EF13845169A8ADADDA435431E",
                                                    "quantity":2,
                                                    "lotNumber":"mf1",
                                                    "nsInventoryVersionStart":"2026-02-21T06:30:00Z",
                                                    "visitManualAssignment":false,
                                                    "nsInventoryId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                    "originalSubjectVisitNSInventory":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                                    "notDispensedToSubject":0
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version. Or subject not found.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid limit or offset values",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-unblinded-disp-history-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-unblinded-disp-history-get"
            }
        },
        "/ec-ors-svc/rest/v5.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Retrieves visit by visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_12",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"UUID"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV4"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "titrationOption":"maintain",
                                        "userConfirmationTaken":true
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v5.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v5.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"v6.0",
                "description":"Retrieves a kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary_4",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"blockNumber",
                        "in":"query",
                        "description":"Block number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"BLOCK-001"
                    },
                    {
                        "name":"tempExcursionNumber",
                        "in":"query",
                        "description":"tempExcursionNumber",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"TEMP-001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":[
                                            {
                                                "kitTypes":[
                                                    {
                                                        "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "kitTypeName":"KitType-01",
                                                        "description":"Example kit type.",
                                                        "packageTypeId":1,
                                                        "packageType":"Bottle",
                                                        "totalKitNumbers":100,
                                                        "kitsDispensed":5,
                                                        "kitsDamaged":1,
                                                        "kitsAvailable":94,
                                                        "kitsInTransit":0,
                                                        "kitsReturnedToSite":0,
                                                        "kitsPendingDestruction":0,
                                                        "kitsExpired":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location OR Invalid kitNumber OR Invalid Block Number OR Invalid temperature excursion number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves kits for a site based on a given number range. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":10
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "minKitNumber":10001,
                                            "maxKitNumber":10001,
                                            "totalReturnedUnits":2,
                                            "distinctInventoryStatusIds":[
                                                10
                                            ],
                                            "blindedLotsExistsInStudy":true,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid site ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits matched the supplied filters."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit filter values are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"v6.0",
                "description":"Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type, Subject Number, Kit List and Temperature Excursion Number. Rights: UnblindedChainofCustodyReportPost. Added field: Temperature Excursion Number for a reconciliation shipment.",
                "operationId":"getChainOfCustodyReport_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Chain Of Custody Report Request":{
                                    "description":"Chain Of Custody Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Response":{
                                        "description":"Chain Of Custody Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Kit Number",
                                                    "Transaction Date"
                                                ],
                                                "data":[
                                                    [
                                                        "KIT-0001",
                                                        "2026-02-21"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subject Dispensation Report Request":{
                                    "description":"Subject Dispensation Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Response":{
                                        "description":"Subject Dispensation Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Site",
                                                    "Subject",
                                                    "Kit Number"
                                                ],
                                                "data":[
                                                    [
                                                        "Site1001",
                                                        "S1001",
                                                        "KIT-0001"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to perform this operation.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"v6.0",
                "description":"Retrieves a randomization list. This API version returns <i>useSequenceNumber</i> to identify whether a given randomization list has a Sequence Number or not.",
                "operationId":"getRandlist_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"minimizationLists",
                        "in":"query",
                        "description":"Integer property for type of rand list.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO5"
                                },
                                "examples":{
                                    "Get Randlists Response":{
                                        "description":"Get Randlists Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"RandList-01",
                                            "description":"Randomization list for Study",
                                            "inUse":"y"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. In this version, tempExcursionNumber is added to return temperature excursion number of the kit. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryDTOV6"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"D313327EF13845169A8ADADDA435431E",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "shippingAddress":"City,Country,Local Address",
                                                "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves details of the orders. In this version, tempExcursionNumber is added to return temperature excursion number of the kit in an order. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV6"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"D313327EF13845169A8ADADDA435431E",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "shippingAddress":"City,Country,Local Address",
                                                        "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                        "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getShipments_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"active"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-0001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":5
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV2"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"123",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/supply/settings":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Get supply settings"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves supply settings. This version includes new field <i>confirmDispensation</i> in Response. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsGet</i>.",
                "operationId":"getSupplySettings_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SupplySettingsTOV10"
                                },
                                "examples":{
                                    "Get Supply Settings Response":{
                                        "description":"Get Supply Settings Response",
                                        "value":{
                                            "useBlindingGroups":true,
                                            "useLabelGroups":true,
                                            "useShippingGroups":true,
                                            "useTemperatureExcursion":false,
                                            "allowSingleKitQuarantine":true,
                                            "allowManualConsignments":false,
                                            "singleKitSettingId":1,
                                            "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                            "intlShipmentTriggerId":2,
                                            "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                            "waitDaysBeforeNotifying":7,
                                            "shipmentPrefixType":"CUSTOM",
                                            "customShipmentIdPrefix":"ORD",
                                            "kitReconciliationRequired":true,
                                            "reuseSealedKits":true,
                                            "reuseOnlyLastVisitKkits":true,
                                            "allowPartialDispensation":true,
                                            "confirmDispensation":true,
                                            "depotKitReconRequired":true,
                                            "dispenseByLowestKitNumber":true,
                                            "allowDoseHold":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-supply-settings-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-supply-settings-get"
            },
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Updates a study's supply settings by study ID. This version includes new field <i>dispenseByLowestKitNumber</i> in Request. <br>Rights: <i>SupplySettingRightsPost</i>. <br>Required sponsor roles are: clinical supply manager and site manager.",
                "operationId":"updateSupplySettings_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV6"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true,
                                        "dispenseByLowestKitNumber":true,
                                        "allowDoseHold":true
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Retrieves dispensation history for a study, by subject and visit ID. Rights: OrsSubjectVisitGet. See additional fields for barcodes and dispensation Confirmed for data on confirmation of dispensed kits.",
                "operationId":"getDispensationHistory_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "conserved":false,
                                                "instanceNumber":1,
                                                "barcode":"1236",
                                                "dispensationConfirmed":true,
                                                "dosingUnblinded":false,
                                                "kitNumberUTF":"000AB123",
                                                "inventoryStatusName":"Dispensed",
                                                "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "titration":"maintain",
                                                "originalKit":"Kit-345",
                                                "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                "lotNumber":"mf1",
                                                "originalLotNumber":"mf1",
                                                "dosingInstruction":"once daily"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid Parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v6.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Retrieves visit by visit ID. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_13",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v6.0",
                "description":"Deprecated: Use latest version instead. Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_12",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV6"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v6.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v6.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/inventory/kit-types":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits"
                ],
                "summary":"v7.0",
                "description":"Retrieves a serialized and non-serialized kit's summary. Rights: OrsInventoryGet and OrsUnblinded.",
                "operationId":"getKitSummary_5",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    {
                        "name":"location",
                        "in":"query",
                        "description":"Location of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SITE-001"
                    },
                    {
                        "name":"lotId",
                        "in":"query",
                        "description":"ID of the lot.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LOT-001"
                    },
                    {
                        "name":"kitTypeId",
                        "in":"query",
                        "description":"ID of the kit type.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"kitStatus",
                        "in":"query",
                        "description":"Status of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"Available"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1001-1010"
                    },
                    {
                        "name":"labelGroupId",
                        "in":"query",
                        "description":"ID of the label group.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"LABEL-001"
                    },
                    {
                        "name":"kitNumber",
                        "in":"query",
                        "description":"Kit number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":1001
                    },
                    {
                        "name":"blockNumber",
                        "in":"query",
                        "description":"Block number",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"BLOCK-001"
                    },
                    {
                        "name":"tempExcursionNumber",
                        "in":"query",
                        "description":"tempExcursionNumber",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"TEMP-001"
                    },
                    {
                        "name":"serialized",
                        "in":"query",
                        "description":"serialized",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeSummaryResponse"
                                    }
                                },
                                "examples":{
                                    "Get Kit Summary Response":{
                                        "description":"Get Kit Summary Response",
                                        "value":[
                                            {
                                                "kitTypes":[
                                                    {
                                                        "kitTypeId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                                        "kitTypeName":"KitType-01",
                                                        "description":"Example kit type.",
                                                        "packageTypeId":1,
                                                        "packageType":"Bottle",
                                                        "totalKitNumbers":100,
                                                        "kitsDispensed":5,
                                                        "kitsDamaged":1,
                                                        "kitsAvailable":94,
                                                        "kitsInTransit":0,
                                                        "kitsReturnedToSite":0,
                                                        "kitsPendingDestruction":0,
                                                        "kitsExpired":0
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Not Found Response":{
                                        "description":"Get Kit Summary Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"No data found.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid kit status OR Invalid kit range filter OR Invalid label group in kit filters OR Invalid kit type OR Invalid Lot OR Invalid location OR Invalid kitNumber OR Invalid Block Number OR Invalid temperature excursion number",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Bad Request Response":{
                                        "description":"Get Kit Summary Bad Request Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Get Kit Summary Server Error Response":{
                                        "description":"Get Kit Summary Server Error Response",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"An unexpected error occurred.",
                                                "details":{
                                                    "context":"inventory",
                                                    "reason":"Review the error code and message for the failed inventory request."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-inventory-kit-types-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-inventory-kit-types-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"v7.0",
                "description":"Retrieves kits for a site based on a given number range. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":10
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "minKitNumber":10001,
                                            "maxKitNumber":10001,
                                            "totalReturnedUnits":2,
                                            "distinctInventoryStatusIds":[
                                                10
                                            ],
                                            "distinctNSInventoryStatusIds":[
                                                10
                                            ],
                                            "blindedLotsExistsInStudy":true,
                                            "updatableKitsTotal":1,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid site ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits matched the supplied filters."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit filter values are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/reports/kits/chainofcustody":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report"
                ],
                "summary":"v7.0",
                "description":"Retrieves the Chain of Custody report, result can be filtered on the basis of Location, Date Range, Kit Type, Subject Number, Kit List and Temperature Excursion Number. Rights: UnblindedChainofCustodyReportPost. Added field: Dispensation Visit and Instance Number.",
                "operationId":"getChainOfCustodyReport_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Chain Of Custody Report Request":{
                                    "description":"Chain Of Custody Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"transDt",
                                                "fieldType":"date",
                                                "fieldValueList":[
                                                    "2026-02-01",
                                                    "2026-02-28"
                                                ]
                                            },
                                            {
                                                "fieldName":"kitTypeIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Chain Of Custody Report Response":{
                                        "description":"Chain Of Custody Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Kit Number",
                                                    "Transaction Date"
                                                ],
                                                "data":[
                                                    [
                                                        "KIT-0001",
                                                        "2026-02-21"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Study not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-reports-kits-chainofcustody-post",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-reports-kits-chainofcustody-post"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/reports/dispensations":{
            "post":{
                "tags":[
                    "Randomization and Supplies/Report APIs/Get the Subject Dispensation report"
                ],
                "summary":"v7.0",
                "description":"Retrieves the Subject Dispensation report; Rights: SubjectDataReportPost. Site role: Blinded site user.",
                "operationId":"getSubjectDispensationReport_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "Subject Dispensation Report Request":{
                                    "description":"Subject Dispensation Report Request",
                                    "value":{
                                        "offset":0,
                                        "limit":100,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"siteIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "B1B8327AFAA6412287106192AB5984EF"
                                                ]
                                            },
                                            {
                                                "fieldName":"subjectIds",
                                                "fieldType":"list",
                                                "fieldValueList":[
                                                    "C36A3197FDEE433FB5547EE83DE99E4B"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ReportBaseResponse"
                                },
                                "examples":{
                                    "Subject Dispensation Report Response":{
                                        "description":"Subject Dispensation Report Response",
                                        "value":{
                                            "result":{
                                                "offset":0,
                                                "limit":100,
                                                "count":1,
                                                "hasMore":"false",
                                                "totalResults":1,
                                                "columns":[
                                                    "Site",
                                                    "Subject",
                                                    "Kit Number"
                                                ],
                                                "data":[
                                                    [
                                                        "Site1001",
                                                        "S1001",
                                                        "KIT-0001"
                                                    ]
                                                ]
                                            },
                                            "status":"success",
                                            "errorData":""
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403":{
                        "description":"403 Forbidden.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Forbidden":{
                                        "description":"Forbidden",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"FORBIDDEN",
                                                "errorMessage":"You do not have permission to perform this operation.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Validation error - Invalid search criteria.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_SEARCH_CRITERIA",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For study not found or invalid study",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-reports-dispensations-post",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-reports-dispensations-post"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/randlists":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Randomization List APIs/Lists/Get randomization list"
                ],
                "summary":"v7.0",
                "description":"Retrieves a randomization list. This API version returns <i>useSequenceNumber</i> to identify whether a given randomization list has a Sequence Number or not.",
                "operationId":"getRandlist_6",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"minimizationLists",
                        "in":"query",
                        "description":"Integer property for type of rand list.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"y"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandListTO"
                                },
                                "examples":{
                                    "Get Randlists Response":{
                                        "description":"Get Randlists Response",
                                        "value":{
                                            "randListId":"B1B8327AFAA6412287106192AB5984EF",
                                            "name":"RandList-01",
                                            "description":"Randomization list for Study",
                                            "inUse":"y"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Appears for invalid study ID or invalid study version.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-randlists-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-randlists-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. In this version, tempExcursionNumber is added to return temperature excursion number of the kit. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrdersInventoryDTOV7"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "includePooledShipments":true,
                                                "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "shippingAddress":"City,Country,Local Address",
                                                "deliveryNumber":"Order123",
                                                "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                    "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "minExpirationDate":"2026-12-31T00:00:00Z",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "operationType":"modified",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"test",
                                                    "comment":"test",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "pooledKitId":"Pooled Kit01",
                                                    "lotNumber":"MLOT"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Retrieves details of the orders. In this version, tempExcursionNumber is added to return temperature excursion number of the kit in an order. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_7",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includePooledShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude pooled shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV7"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "includePooledShipments":true,
                                                        "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "shippingAddress":"City,Country,Local Address",
                                                        "deliveryNumber":"Order123",
                                                        "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                        "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        }
                                                    ],
                                                    "kitTypes":[
                                                        {
                                                            "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                            "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "quantity":5,
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "minExpirationDate":"2026-12-31T00:00:00Z",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "operationType":"modified",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "reason":"test",
                                                            "comment":"test",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "pooledKitId":"Pooled Kit01",
                                                            "lotNumber":"MLOT"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"v7.0",
                "description":"Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getShipments_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV7"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"123",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/supply/settings":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Updates a study's supply settings by study ID.  This version includes new field <i>confirmDispensation</i> in request. <br>Required sponsor roles are: clinical supply manager and site manager. <br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV7"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true,
                                        "dispenseByLowestKitNumber":true,
                                        "allowDoseHold":true,
                                        "quarantineWithoutTempMonitor":false
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Retrieves dispensation history for a study, by subject and visit ID. Rights: OrsSubjectVisitGet. Added additional field dosingUnblinded.",
                "operationId":"getDispensationHistory_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "conserved":false,
                                                "instanceNumber":1,
                                                "barcode":"1236",
                                                "dispensationConfirmed":true,
                                                "dosingUnblinded":false,
                                                "kitNumberUTF":"000AB123",
                                                "inventoryStatusName":"Dispensed",
                                                "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "titration":"maintain",
                                                "originalKit":"Kit-345",
                                                "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                "lotNumber":"mf1",
                                                "originalLotNumber":"mf1",
                                                "dosingInstruction":"once daily"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v7.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Retrieves visit by visit ID. This is a new version of the API for adding additional attribute conserved, for partial dispensation. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_14",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v7.0",
                "description":"Deprecated: Use latest version instead. Randomize a subject and/or dispense kits during a randomization or dispensation visit. Rights: OrsVisitManagementPost.",
                "operationId":"visit_13",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV7"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v7.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v7.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/sites/{siteId}/inventory/kits":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site"
                ],
                "summary":"v8.0",
                "description":"Retrieves kits for a site based on a given number range and filters kits as serialized or non-serialized. Kit Range should be specified in the format as KIT_NUMBER:{From Kit number}:{To Kit number}. e.g. KIT_NUMBER:1:100. <br>Rights: <i>OrsInventoryGet</i> and either <i>OrsUnblinded</i> or <i>OrsBlinded</i>.",
                "operationId":"getSiteKits_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"siteId",
                        "in":"path",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT"
                    },
                    {
                        "name":"kitRange",
                        "in":"query",
                        "description":"Range of the kit.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"KIT_NUMBER:10:100"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"inventoryStatusId",
                        "in":"query",
                        "description":"List of inventory status IDs.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"integer",
                                "format":"int32"
                            }
                        },
                        "example":10
                    },
                    {
                        "name":"subjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"serialized",
                        "in":"query",
                        "description":"Serialized",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/SiteKitDetailsResponse"
                                },
                                "examples":{
                                    "Get Site Kits Response":{
                                        "description":"Get Site Kits Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "minKitNumber":10001,
                                            "maxKitNumber":10001,
                                            "totalReturnedUnits":2,
                                            "distinctInventoryStatusIds":[
                                                10
                                            ],
                                            "distinctNSInventoryStatusIds":[
                                                10
                                            ],
                                            "blindedLotsExistsInStudy":true,
                                            "updatableKitsTotal":1,
                                            "kits":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitNumber":10001,
                                                    "inventoryStatusId":10,
                                                    "inventoryStatus":"Dispensed",
                                                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "shipmentNumber":"SHIP-0001",
                                                    "receivedDate":"2026-02-21T23:36:32.079Z",
                                                    "comment":"Received at site"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-500",
                                                "errorMessage":"Unexpected error while retrieving site kits."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"For invalid study ID OR study still in design phase OR invalid site ID OR invalid subject ID",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-404",
                                                "errorMessage":"No site kits matched the supplied filters."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"For invalid kit range format",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INV-400",
                                                "errorMessage":"The site kit filter values are invalid."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-sites-{siteId}-inventory-kits-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-sites-siteid-inventory-kits-get"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Retrieves an order's details by shipment ID. In this version, non-serialized inventory details are added in the order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrdersInventoryDTOV8"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "includePooledShipments":true,
                                                "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "shippingAddress":"City,Country,Local Address",
                                                "deliveryNumber":"Order123",
                                                "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                    "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "minExpirationDate":"2026-12-31T00:00:00Z",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "operationType":"modified",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"test",
                                                    "comment":"test",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "pooledKitId":"Pooled Kit01",
                                                    "lotNumber":"MLOT"
                                                }
                                            ],
                                            "nsInventory":[
                                                {
                                                    "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "quantity":5,
                                                    "lotNumber":"lot1",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "transactionId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Retrieves details of the orders. In this version, non-serialized inventory details are added in the orders. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_8",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includePooledShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude pooled shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV8"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "includePooledShipments":true,
                                                        "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "shippingAddress":"City,Country,Local Address",
                                                        "deliveryNumber":"Order123",
                                                        "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                        "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        }
                                                    ],
                                                    "kitTypes":[
                                                        {
                                                            "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                            "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "quantity":5,
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "minExpirationDate":"2026-12-31T00:00:00Z",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "operationType":"modified",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "reason":"test",
                                                            "comment":"test",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "pooledKitId":"Pooled Kit01",
                                                            "lotNumber":"MLOT"
                                                        }
                                                    ],
                                                    "nsInventory":[
                                                        {
                                                            "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "quantity":5,
                                                            "lotNumber":"lot1",
                                                            "operationType":"CREATED",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "transactionId":"D313327EF13845169A8ADADDA435431E"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"v8.0",
                "description":"Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getShipments_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":1
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B83BFB48C5A41C59775E4D8D22D8B26"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV8"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"123",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/supply/settings":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Updates a study's supply settings by study ID. This version includes new fields in request: Randomize only when all kits are available at Site and Select Kits. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTOV8"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true,
                                        "dispenseByLowestKitNumber":true,
                                        "allowDoseHold":true,
                                        "quarantineWithoutTempMonitor":false,
                                        "randomizeWhenKitsAvailable":false,
                                        "allKitsSelectedForRandomization":false,
                                        "kitsSelectedForRandomization":[
                                            "7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                            "6A2D911A4E5E4D61B29A1CC73E5402AB"
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Retrieves dispensation history for a study, by subject and visit ID. Rights: OrsSubjectVisitGet. Added additional field kitNumberUTF8.",
                "operationId":"getDispensationHistory_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "conserved":false,
                                                "instanceNumber":1,
                                                "barcode":"1236",
                                                "dispensationConfirmed":true,
                                                "dosingUnblinded":false,
                                                "kitNumberUTF":"000AB123",
                                                "inventoryStatusName":"Dispensed",
                                                "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "titration":"maintain",
                                                "originalKit":"Kit-345",
                                                "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                "lotNumber":"mf1",
                                                "originalLotNumber":"mf1",
                                                "dosingInstruction":"once daily"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v8.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Retrieves visit by visit ID. This is a new version of the API for adding additional attribute titrationKitLabel for blinded kit label. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_15",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v8.0",
                "description":"Deprecated: Use latest version instead. Randomize a subject and/or dispense kits during a randomization or dispensation visit. This new version also contains additional attributes for blinded kit labels in titrations: titrationKitLabel. Rights: OrsVisitManagementPost.",
                "operationId":"visit_14",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV7"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResult"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v8.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v8.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/orders/{shipmentId}":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID"
                ],
                "summary":"v9.0",
                "description":"Retrieves an order's details by shipment ID. In this version, material ID is added in the order. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrder_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"shipmentId",
                        "in":"path",
                        "description":"ID of the shipment.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrdersInventoryDTOV8"
                                },
                                "examples":{
                                    "Get Order Response":{
                                        "description":"Get Order Response",
                                        "value":{
                                            "order":{
                                                "versionStart":"2026-02-21T06:30:00Z",
                                                "versionEnd":"9999-12-31T23:59:59Z",
                                                "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                "depotVersionStart":"2026-02-01T00:00:00Z",
                                                "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                "orderDate":"2026-02-20T10:15:00Z",
                                                "orderStatusId":5,
                                                "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                "studyVersionStart":"2026-01-15T00:00:00Z",
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "siteVersionStart":"2026-01-15T00:00:00Z",
                                                "shipDate":"2026-02-24T00:00:00Z",
                                                "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                "trackingNumber":"12345",
                                                "trackingNumberUrl":"http://www.site.com",
                                                "orderType":"MANUAL",
                                                "orderTypeId":5,
                                                "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                "operationType":"CREATED",
                                                "objectVersionNumber":1,
                                                "softwareVersionNumber":1,
                                                "reason":"DATA ENTRY ERROR",
                                                "comment":"Updated with new values",
                                                "isReconciliation":true,
                                                "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                "isDepotShipment":true,
                                                "includePooledShipments":true,
                                                "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                "shippingAddress":"City,Country,Local Address",
                                                "deliveryNumber":"Order123",
                                                "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                            },
                                            "inventory":[
                                                {
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "doNotCount":5,
                                                    "doNotShip":5,
                                                    "expirationDate":"2026-12-31T00:00:00Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "sequenceNumber":5,
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "kitNumber":5,
                                                    "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                    "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                    "kitNumberUTF":"24-1",
                                                    "blockNumber":"245",
                                                    "tempExcursionNumber":"001",
                                                    "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                }
                                            ],
                                            "kitTypes":[
                                                {
                                                    "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                    "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "quantity":5,
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "minExpirationDate":"2026-12-31T00:00:00Z",
                                                    "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                    "operationType":"modified",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "reason":"test",
                                                    "comment":"test",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "pooledKitId":"Pooled Kit01",
                                                    "lotNumber":"MLOT"
                                                }
                                            ],
                                            "nsInventory":[
                                                {
                                                    "nsInventoryId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2",
                                                    "versionStart":"2026-02-21T06:30:00Z",
                                                    "versionEnd":"9999-12-31T23:59:59Z",
                                                    "inventoryStatusId":1,
                                                    "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                    "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                    "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                    "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                    "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                    "lotVersionStart":"2026-01-15T00:00:00Z",
                                                    "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                    "siteVersionStart":"2026-01-15T00:00:00Z",
                                                    "quantity":5,
                                                    "lotNumber":"lot1",
                                                    "operationType":"CREATED",
                                                    "objectVersionNumber":1,
                                                    "softwareVersionNumber":1,
                                                    "transactionId":"D313327EF13845169A8ADADDA435431E"
                                                }
                                            ],
                                            "version":1
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Order not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Get Order Not Found Response":{
                                        "description":"Get Order Not Found Response",
                                        "value":{
                                            "status":"error",
                                            "message":"Order not found for shipmentId 89EE76326E984B548D594D592E5C7FC2."
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-orders-{shipmentId}-get",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-orders-shipmentid-get"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/orders":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Orders/Get orders"
                ],
                "summary":"v9.0",
                "description":"Retrieves details of the orders. In this version, material ID is added in the orders. If a kit list is disabled, the shipment will be excluded from the Orders API. Rights: OrsInventoryGet, OrsUnblinded.",
                "operationId":"getOrders_9",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"status",
                        "in":"query",
                        "description":"Status of the order.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"PENDING"
                    },
                    {
                        "name":"startDate",
                        "in":"query",
                        "description":"The starting date and time (optional). If you don't specify the time, the date range begins after midnight (UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-01"
                    },
                    {
                        "name":"endDate",
                        "in":"query",
                        "description":"The ending date and time (optional). If you don't specify the time, the date range stops before midnight (23:59:59 UTC) for the specified date. The accepted date and time formats are: dd-MMM-yyyy HH:mm:ss.SSS, dd-MMM-yyyy HH:mm:ss, or dd-MMM-yyyy HH:mm.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-02-28"
                    },
                    {
                        "name":"includeReconShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude destruction shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includeDepotShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude depot to depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"includePooledShipments",
                        "in":"query",
                        "description":"By Default this value is set to False, which the default API will exclude pooled shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":100
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/OrderInventoryPagedListResponseV7"
                                },
                                "examples":{
                                    "Get Orders Response":{
                                        "description":"Get Orders Response",
                                        "value":{
                                            "shipments":[
                                                {
                                                    "order":{
                                                        "versionStart":"2026-02-21T06:30:00Z",
                                                        "versionEnd":"9999-12-31T23:59:59Z",
                                                        "depotId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "depotVersionStart":"2026-02-01T00:00:00Z",
                                                        "jobInstanceId":"D313327EF13845169A8ADADDA435431E",
                                                        "orderDate":"2026-02-20T10:15:00Z",
                                                        "orderStatusId":5,
                                                        "studyId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "studyVersionStart":"2026-01-15T00:00:00Z",
                                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "siteVersionStart":"2026-01-15T00:00:00Z",
                                                        "shipDate":"2026-02-24T00:00:00Z",
                                                        "shipmentId":"89EE76326E984B548D594D592E5C7FC2",
                                                        "trackingNumber":"12345",
                                                        "trackingNumberUrl":"http://www.site.com",
                                                        "orderType":"MANUAL",
                                                        "orderTypeId":5,
                                                        "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                        "operationType":"CREATED",
                                                        "objectVersionNumber":1,
                                                        "softwareVersionNumber":1,
                                                        "reason":"DATA ENTRY ERROR",
                                                        "comment":"Updated with new values",
                                                        "isReconciliation":true,
                                                        "reportId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                        "isDepotShipment":true,
                                                        "includePooledShipments":true,
                                                        "shippingAddressId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                        "shippingAddress":"City,Country,Local Address",
                                                        "deliveryNumber":"Order123",
                                                        "shipmentReceiptDate":"2026-02-26T00:00:00Z",
                                                        "shipmentReceivedById":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                        "orderId":"3D7A4A0D4D8C4A179E2A75E2E0D1C9F2"
                                                    },
                                                    "inventory":[
                                                        {
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "doNotCount":5,
                                                            "doNotShip":5,
                                                            "expirationDate":"2026-12-31T00:00:00Z",
                                                            "inventoryStatusId":1,
                                                            "kitTypeId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "kitTypeVersionStart":"2026-01-15T00:00:00Z",
                                                            "labelGroupId":"7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                                            "labelGroupVersionStart":"2026-01-15T00:00:00Z",
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "lotVersionStart":"2026-01-15T00:00:00Z",
                                                            "sequenceNumber":5,
                                                            "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                            "siteVersionStart":"2026-01-15T00:00:00Z",
                                                            "kitNumber":5,
                                                            "inventorySourceId":"5BB2C53538C841268AB4E4A1E640D0C9",
                                                            "inventorySourceVersionStart":"2026-02-21T06:30:00Z",
                                                            "kitNumberUTF":"24-1",
                                                            "blockNumber":"245",
                                                            "tempExcursionNumber":"001",
                                                            "inventoryId":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                                                        }
                                                    ],
                                                    "kitTypes":[
                                                        {
                                                            "id":"4A4F2C3D1E6B4A6FB7A8C9D0E1F2A3B4",
                                                            "kitTypeSrcId":"2AC584703F7B4DCC8D8A8B282A4D09E2",
                                                            "quantity":5,
                                                            "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                            "minExpirationDate":"2026-12-31T00:00:00Z",
                                                            "userId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                                            "operationType":"modified",
                                                            "objectVersionNumber":1,
                                                            "softwareVersionNumber":1,
                                                            "reason":"test",
                                                            "comment":"test",
                                                            "versionStart":"2026-02-21T06:30:00Z",
                                                            "versionEnd":"9999-12-31T23:59:59Z",
                                                            "pooledKitId":"Pooled Kit01",
                                                            "lotNumber":"MLOT"
                                                        }
                                                    ],
                                                    "version":1
                                                }
                                            ],
                                            "totalResults":1,
                                            "count":1,
                                            "hasMore":false,
                                            "limit":100,
                                            "offset":0
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid order status value",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"Invalid request parameters.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-orders-get",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-orders-get"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/shipments":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study"
                ],
                "summary":"v9.0",
                "description":"Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.",
                "operationId":"getShipments_11",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Search string.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"SHIP-0001"
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Maximum number of records to display per page.",
                        "schema":{
                            "type":"string",
                            "default":"100"
                        },
                        "example":100
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"statusId",
                        "in":"query",
                        "description":"ID of the status.",
                        "required":true,
                        "schema":{
                            "type":"number"
                        },
                        "example":5
                    },
                    {
                        "name":"recon",
                        "in":"query",
                        "description":"Boolean value for recon.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"originId",
                        "in":"query",
                        "description":"String value for origin of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    {
                        "name":"destinationId",
                        "in":"query",
                        "description":"String value for destination of shipment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"depotShipment",
                        "in":"query",
                        "description":"Boolean value for looking for depot shipments.",
                        "required":true,
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"String value for transaction ID of shipment.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ViewShipmentResponseV9"
                                },
                                "examples":{
                                    "Get Shipments Response":{
                                        "description":"Get Shipments Response",
                                        "value":{
                                            "offset":0,
                                            "limit":100,
                                            "count":1,
                                            "hasMore":false,
                                            "totalResults":1,
                                            "shipments":[
                                                {
                                                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "shipmentNumber":"123",
                                                    "statusId":5,
                                                    "createdDate":"2026-02-21T06:30:00Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "message":"Server error"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"'Invalid study ID', 'Study still in design phase'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "message":"Not found"
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-shipments-get",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-shipments-get"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/supply/settings":{
            "put":{
                "tags":[
                    "Randomization and Supplies/Settings APIs/Update supply settings"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Updates a study's supply settings by study ID. This version includes new fields: tempExcursionStartingNumber, sendNotificationOnce. <br>Required sponsor roles are: clinical supply manager and site manager.<br>Rights: <i>SupplySettingRightsPost</i>.",
                "operationId":"updateSupplySettings_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SupplySettingsTO"
                            },
                            "examples":{
                                "Update Supply Settings Request":{
                                    "description":"Update Supply Settings Request",
                                    "value":{
                                        "useBlindingGroups":true,
                                        "useLabelGroups":true,
                                        "useShippingGroups":true,
                                        "useTemperatureExcursion":false,
                                        "allowSingleKitQuarantine":true,
                                        "allowManualConsignments":false,
                                        "singleKitSettingId":1,
                                        "sendKitTypeForSingleKitOrder":"B1B8327AFAA6412287106192AB5984EF",
                                        "intlShipmentTriggerId":2,
                                        "intlShipmentVisitId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "waitDaysBeforeNotifying":7,
                                        "shipmentPrefixType":"CUSTOM",
                                        "customShipmentIdPrefix":"ORD",
                                        "kitReconciliationRequired":true,
                                        "reuseSealedKits":true,
                                        "reuseOnlyLastVisitKkits":true,
                                        "allowPartialDispensation":true,
                                        "confirmDispensation":true,
                                        "depotKitReconRequired":true,
                                        "dispenseByLowestKitNumber":true,
                                        "allowDoseHold":true,
                                        "quarantineWithoutTempMonitor":false,
                                        "randomizeWhenKitsAvailable":false,
                                        "allKitsSelectedForRandomization":false,
                                        "kitsSelectedForRandomization":[
                                            "7F6D13B3A6D54F0C9D90A5C58E6B2F11",
                                            "6A2D911A4E5E4D61B29A1CC73E5402AB"
                                        ],
                                        "sendNotificationOnce":false,
                                        "tempExcursionStartingNumber":"12,13"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/IDResponseV1"
                                },
                                "examples":{
                                    "Update Supply Settings Response":{
                                        "description":"Update Supply Settings Response",
                                        "value":{
                                            "id":"B1B8327AFAA6412287106192AB5984EF"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid shipment OR Invalid Kit status OR One or more shipment are not in valid status OR Custom shipment prefix should be of length between 1 to 10 and contains only alphanumerics OR Invalid shipment prefix type.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-supply-settings-put",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-supply-settings-put"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/subjects/{externalSubjectId}/dispensation-history":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get dispensation history"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Retrieves dispensation history for a study, by subject and visit ID. This version includes additional fields:<ul> <li><i>userId</i></li><li><i>originalKit</i></li><li><i>titration</i></li><li><i>inventoryStatusName</i></li></ul> <br>Rights: <i>OrsSubjectVisitGet</i>.",
                "operationId":"getDispensationHistory_10",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"path",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Get data as of the given date",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2026-03-01"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DispensationHistoryResponse"
                                    }
                                },
                                "examples":{
                                    "Dispensation History Response":{
                                        "description":"Dispensation History Response",
                                        "value":[
                                            {
                                                "kitNumber":1001,
                                                "inventoryStatus":4,
                                                "dispensationDate":"2026-02-21T06:30:00Z",
                                                "inventoryId":"B1B8327AFAA6412287106192AB5984EF",
                                                "packageTypeId":2,
                                                "unitsPerKit":1,
                                                "returnedUnits":0,
                                                "missingUnits":0,
                                                "balanceUnits":1,
                                                "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                                "lastModifiedDate":"2026-02-22T09:45:00Z",
                                                "kitDescription":"Kit A",
                                                "dose":5,
                                                "measurement":"ml",
                                                "frequency":"BID",
                                                "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                                "trialSupplyType":"BOTTLE",
                                                "conserved":false,
                                                "instanceNumber":1,
                                                "barcode":"1236",
                                                "dispensationConfirmed":true,
                                                "dosingUnblinded":false,
                                                "kitNumberUTF":"000AB123",
                                                "inventoryStatusName":"Dispensed",
                                                "userId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                                "titration":"maintain",
                                                "originalKit":"Kit-345",
                                                "lotId":"6A2D911A4E5E4D61B29A1CC73E5402AB",
                                                "lotNumber":"mf1",
                                                "originalLotNumber":"mf1",
                                                "dosingInstruction":"once daily"
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Subject not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid parameters",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-subjects-{externalSubjectId}-dispensation-history-get",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-subjects-externalsubjectid-dispensation-history-get"
            }
        },
        "/ec-ors-svc/rest/v9.0/studies/{studyId}/{mode}/visits/subjectvisit":{
            "get":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Get visit by visit ID"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Retrieves visit by visit ID. This is a new version of the API for adding additional attributes barcode, dispensationConfirmed for barcode. Rights: OrsSubjectVisitGet.",
                "operationId":"getVisit_16",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"externalSubjectId",
                        "in":"query",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    {
                        "name":"visitId",
                        "in":"query",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"instanceNumber",
                        "in":"query",
                        "description":"Instance number for unscheduled visit.",
                        "schema":{
                            "type":"string"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV8"
                                },
                                "examples":{
                                    "Get Visit Response":{
                                        "description":"Get Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Visit for subject does not exist.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid subject",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Internal server error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-visits-subjectvisit-get",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-visits-subjectvisit-get"
            },
            "post":{
                "tags":[
                    "Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit"
                ],
                "summary":"[Deprecated]: v9.0",
                "description":"Deprecated: Randomize a subject and/or dispense kits during a randomization or dispensation visit. This version of the API includes additional attributes for barcodes and dispensationConfirmed. Rights: OrsVisitManagementPost.",
                "operationId":"visit_15",
                "parameters":[
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"test"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitRequestV7"
                            },
                            "examples":{
                                "Visit Request":{
                                    "description":"Visit Request",
                                    "value":{
                                        "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                        "siteId":"89EE76326E984B548D594D592E5C7FC2",
                                        "visitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "studyVersion":"1.0.0.5",
                                        "visitTimestamp":"2026-03-01 08:30:00",
                                        "instanceNumber":1
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitResultV8"
                                },
                                "examples":{
                                    "Visit Response":{
                                        "description":"Visit Response",
                                        "value":{
                                            "randomNumber":"10",
                                            "kits":[
                                                {
                                                    "id":2,
                                                    "kitDescription":"Kit A",
                                                    "dose":5,
                                                    "measurement":"ml",
                                                    "frequency":"BID",
                                                    "consumeAcrossDoses":true,
                                                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                                    "trialSupplyType":"BOTTLE",
                                                    "conserved":true,
                                                    "barcode":"1000",
                                                    "dispensationConfirmed":true,
                                                    "dosingUnblinded":false,
                                                    "titrationOption":"maintain"
                                                }
                                            ],
                                            "visitTimestamp":"2026-03-01T08:30:00Z",
                                            "treatmentTitle":"A"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Invalid study ID or version OR Rand List not found OR Design not found",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Not Found":{
                                        "description":"Not Found",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"NOT_FOUND",
                                                "errorMessage":"Resource not found.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid visit timestamp OR You must associate the randomization design with a visit before you can create/upload a randomization list for it OR The next step in this visit isn???t allowed for subject because the study version at your site isn???t compatible with the subject OR Subject can't be Re-randomized before randomization OR This operation is not allowed in the current subject status",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Bad Request":{
                                        "description":"Bad Request",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"INVALID_REQUEST",
                                                "errorMessage":"The request is invalid.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unsupported Visit OR Subject already completed the visit OR Subject is randomized in error OR Invalid treatment found for the subject OR Visit out of order OR This operation is not allowed in the current subject status  OR Visit is outside visit window OR Visit is outside visit window and at least one kit is configured not to dispense outside visit window OR Not enough inventory.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ORSResponse"
                                },
                                "examples":{
                                    "Server Error":{
                                        "description":"Server Error",
                                        "value":{
                                            "status":"error",
                                            "result":null,
                                            "errorData":{
                                                "errorCode":"SERVER_ERROR",
                                                "errorMessage":"Unexpected error occurred.",
                                                "details":{
                                                    "reason":"See the error message for more information."
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-ors-svc-rest-v9.0-studies-{studyId}-{mode}-visits-subjectvisit-post",
                "x-filename-id":"ec-ors-svc-rest-v9.0-studies-studyid-mode-visits-subjectvisit-post"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rulemgt/studies/{studyId}/{ruleId}/rulehistory":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule history by study ID, ruleid and optionally study mode"
                ],
                "summary":"v1.0",
                "description":"Retrieves the audit history of a given rule, including state, validation outcome, and author details. Compared to the legacy v0.9 endpoint, v1.0 introduces the optional `modes` filter and returns the origin channel metadata for each revision.",
                "operationId":"getRuleHistoryByRuleIdV1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Required list of study modes to filter the response. Allowed values: design, test, training, active.",
                        "required":true,
                        "schema":{
                            "type":"array",
                            "description":"Required list of study modes to filter the history results.",
                            "items":{
                                "maxLength":8,
                                "minLength":4,
                                "type":"string",
                                "description":"Study mode to include in the history response. Allowed values: design, test, training, or active.",
                                "example":"design",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active"
                                ]
                            }
                        },
                        "example":[
                            "design",
                            "test"
                        ]
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Returned when rule history records are found for the supplied identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleHistoryResponseDoc"
                                },
                                "examples":{
                                    "RuleHistory":{
                                        "description":"RuleHistory",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleRevisionNumber":3,
                                                        "ruleDeleted":0,
                                                        "ruleEnabled":1,
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                        "ruleDescription":"Validates that visit start date is not later than expected window.",
                                                        "ruleState":"approved",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule evaluated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "versionStart":"2025-09-07T19:12:08Z",
                                                        "versionEnd":null,
                                                        "userId":"0000000000000000000000000000000A",
                                                        "userName":"jsmith",
                                                        "studyId":"36753A48BBA048CB98A5F3278146118D",
                                                        "studyversion":"3.2.0.18",
                                                        "studymode":"test"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied identifiers fail validation or the query parameters are malformed.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                                },
                                "examples":{
                                    "RuleHistoryBadRequest":{
                                        "description":"RuleHistoryBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Returned when no history entries exist for the supplied rule identifier and study context.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                                },
                                "examples":{
                                    "RuleHistoryNotFound":{
                                        "description":"RuleHistoryNotFound",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the rule history retrieval encounters an unexpected server-side error.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                                },
                                "examples":{
                                    "RuleHistoryServerError":{
                                        "description":"RuleHistoryServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-{studyId}-{ruleId}-rulehistory-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-studyid-ruleid-rulehistory-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rulemgt/studies/{studyId}/{mode}/filteredlist":{
            "post":{
                "tags":[
                    "Rule Designer/Rule Management/Get all rules based on filter parameters"
                ],
                "summary":"v1.0",
                "description":"Retrieves rule management summaries by applying form, question, state, enabled, or validation filters. Multiple filters can be combined and the request body example illustrates supported fields and pagination controls. Compared to the v0.9 legacy endpoint, v1.0 introduces server-side pagination and explicit sort ordering to reduce payload sizes.",
                "operationId":"filterRulesByStudyAndModeV1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-F]{32}$|^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Filtered lists payload \n (one or multiple parameter)",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleMgmtFilterDTO"
                            },
                            "examples":{
                                "BulkRuleFilterRequest":{
                                    "description":"BulkRuleFilterRequest",
                                    "value":{
                                        "formId":"39903D6C-042D-4D9E-8977-3160488E6D3D",
                                        "userId":"0000000000000000000000000000000A",
                                        "userName":"jsmith",
                                        "itemId":[
                                            "2F4F4E67-E0CE-4BE0-BB95-44D2CD38A569"
                                        ],
                                        "ruleState":[
                                            "approved",
                                            "publish"
                                        ],
                                        "ruleEnabled":"1",
                                        "publishRun":"AllData",
                                        "ruleTrainingEnabled":"false",
                                        "sortColumn":"ruleName",
                                        "sortOrder":"ASC"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BulkRuleMgmtFilterResponseDoc"
                                },
                                "examples":{
                                    "BulkRuleFilterSuccess":{
                                        "description":"BulkRuleFilterSuccess",
                                        "value":{
                                            "hasMore":false,
                                            "totalResults":2,
                                            "count":2,
                                            "limit":50,
                                            "offset":0,
                                            "resultData":[
                                                {
                                                    "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                                    "ruleOrder":10,
                                                    "ruleDeleted":0,
                                                    "ruleEnabled":1,
                                                    "ruleName":"Out of Range Visit Date",
                                                    "ruleRefName":"VISIT_DATE_RANGE_VALIDATION",
                                                    "ruleDescription":"Creates a query when visit date falls outside the allowable window.",
                                                    "ruleState":"approved",
                                                    "ruleValidationStatus":"true",
                                                    "ruleValidationMessage":"Rule evaluated successfully.",
                                                    "ruleOriginType":"UI",
                                                    "ruleActionTypeName":"CREATE_QUERY",
                                                    "ruleEverInProduction":"false",
                                                    "ruleActionTarget":"VISIT",
                                                    "publishRun":"AllData",
                                                    "versionStart":"2025-09-07T19:12:08Z",
                                                    "versionEnd":null,
                                                    "lastModifiedDate":"2025-11-02T14:45:22Z",
                                                    "formName":"Screening Visit",
                                                    "questionName":"Visit Date",
                                                    "formRefName":"SCR_VISIT",
                                                    "questionRefName":"VISIT_DATE",
                                                    "userId":"0000000000000000000000000000000A",
                                                    "userName":"jsmith",
                                                    "ruleTrainingEnabled":"false"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BulkRuleMgmtErrorDoc"
                                },
                                "examples":{
                                    "BulkRuleFilterValidationError":{
                                        "description":"BulkRuleFilterValidationError",
                                        "value":{
                                            "status":"failed",
                                            "result":"No result returned because the request failed validation.",
                                            "errorCode":"JSON-004",
                                            "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/BulkRuleMgmtErrorDoc"
                                },
                                "examples":{
                                    "BulkRuleFilterServerError":{
                                        "description":"BulkRuleFilterServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":"No result returned because the request failed.",
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-{studyId}-{mode}-filteredlist-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-studyid-mode-filteredlist-post"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rulemgt/studies/{studyId}/{mode}/{publishRun}":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Allow rules to run on either All or Future data"
                ],
                "summary":"v1.0",
                "description":"Updates rules in a study to execute, when published, for either all or future data only. Compared to the v0.9 endpoint, v1.0 centralizes the publish scope in the path parameter and validates rule identifiers before applying changes.",
                "operationId":"updatePublishRunForRulesV1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-F]{32}$|^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"publishRun",
                        "in":"path",
                        "description":"`AllData` republishes rules for existing and future subject data, while `FutureData` restricts the change to newly collected data.",
                        "required":true,
                        "schema":{
                            "maxLength":9,
                            "minLength":8,
                            "pattern":"AllData|FutureData",
                            "type":"string",
                            "example":"AllData",
                            "enum":[
                                "AllData",
                                "FutureData"
                            ]
                        },
                        "example":"AllData"
                    }
                ],
                "requestBody":{
                    "description":"Collection of rule identifiers included in the request. Each identifier accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleIdsDTO"
                            },
                            "examples":{
                                "PublishRunRequest":{
                                    "description":"PublishRunRequest",
                                    "value":{
                                        "ruleIds":[
                                            "8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "938D23FA6B7241CCA41BD627E5DB60DA"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule enable/disable was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/BulkRulePublishRunResponseItemDoc"
                                    }
                                },
                                "examples":{
                                    "PublishRunSuccess":{
                                        "description":"PublishRunSuccess",
                                        "value":[
                                            {
                                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                                "ruleName":"Out of Range Visit Date",
                                                "jobStatus":"Success",
                                                "ruleValidationMessage":"Rule updated successfully.",
                                                "ruleValidationStatus":true,
                                                "httpErrorCode":200,
                                                "httpErrorMessage":"Success",
                                                "result":{
                                                    "status":"success",
                                                    "result":"Publish run updated to AllData"
                                                },
                                                "error":{
                                                    "status":"failed",
                                                    "result":"Validation failed",
                                                    "errorCode":"RuleSvc-021",
                                                    "errorMessage":"Issue in BulkExecuteRule API triggering",
                                                    "details":"Rule update failed validation."
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/BulkRulePublishRunResponseItemDoc"
                                    }
                                },
                                "examples":{
                                    "PublishRunValidationError":{
                                        "description":"PublishRunValidationError",
                                        "value":[
                                            {
                                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                                "ruleName":"Out of Range Visit Date",
                                                "jobStatus":"Failed",
                                                "ruleValidationMessage":"Payload must include at least one ruleId.",
                                                "ruleValidationStatus":false,
                                                "httpErrorCode":400,
                                                "httpErrorMessage":"Bad Request",
                                                "result":{
                                                    "status":"failed",
                                                    "result":"Validation failed"
                                                },
                                                "error":{
                                                    "status":"failed",
                                                    "result":"Validation failed",
                                                    "errorCode":"JSON-004",
                                                    "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element.",
                                                    "details":null
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/BulkRulePublishRunResponseItemDoc"
                                    }
                                },
                                "examples":{
                                    "PublishRunServerError":{
                                        "description":"PublishRunServerError",
                                        "value":[
                                            {
                                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                                "ruleName":"Out of Range Visit Date",
                                                "jobStatus":"Error",
                                                "ruleValidationMessage":"Unexpected error while updating publish run.",
                                                "ruleValidationStatus":false,
                                                "httpErrorCode":500,
                                                "httpErrorMessage":"Internal Server Error",
                                                "result":{
                                                    "status":"error",
                                                    "result":"Processing failed"
                                                },
                                                "error":{
                                                    "status":"failed",
                                                    "result":"Processing failed",
                                                    "errorCode":"RuleSvc-021",
                                                    "errorMessage":"Issue in BulkExecuteRule API triggering",
                                                    "details":null
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-{studyId}-{mode}-{publishRun}-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rulemgt-studies-studyid-mode-publishrun-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Generates Rule Designer reports using the original column mapping. Compared to the preview implementation, this version standardizes pagination and validates supplied filters against the v1 schema. Upgrade to version 5.0 or later to access the expanded report schemas and audit metadata.",
                "operationId":"generateReport",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/delete/form/{formId}":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Delete UI rules by form ID"
                ],
                "summary":"v1.0",
                "description":"Removes UI rules by form ID.",
                "operationId":"DeleteFormRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"38891F5E75BB4071BBF8ACE1F43BD1BD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Delete UI rules per form was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-delete-form-{formId}-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-delete-form-formid-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/bulkdelete":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Delete rules in bulk"
                ],
                "summary":"v1.0",
                "description":"Removes rules in bulk.",
                "operationId":"DeleteRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Bulk State Rules object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleIdsDTO"
                            },
                            "examples":{
                                "BulkRuleDeleteRequest":{
                                    "summary":"List of rule IDs to delete",
                                    "description":"BulkRuleDeleteRequest",
                                    "value":{
                                        "ruleIds":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk delete rules was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-bulkdelete-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-bulkdelete-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/{ruleStatus}":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Enable or disable rule"
                ],
                "summary":"v1.0",
                "description":"Enables or disables rules in a study in Testing, Training or Production mode.",
                "operationId":"EnableDisableRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleStatus",
                        "in":"path",
                        "description":"Action applied to the targeted rules. Allowed values: enable (set ruleEnabled to 1) or disable (set ruleEnabled to 0).",
                        "required":true,
                        "schema":{
                            "pattern":"enable|disable",
                            "type":"string",
                            "description":"Requested action to apply to the rules. Allowed values: enable, disable.",
                            "example":"enable",
                            "enum":[
                                "enable",
                                "disable"
                            ]
                        },
                        "example":"enable"
                    }
                ],
                "requestBody":{
                    "description":"Collection of rule identifiers included in the request. Each identifier accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleIdsDTO"
                            },
                            "examples":{
                                "EnableDisableRequest":{
                                    "summary":"List of rule IDs to enable or disable",
                                    "description":"EnableDisableRequest",
                                    "value":{
                                        "ruleIds":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule enable/disable was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "RulesListDTO":{
                                        "summary":"RulesListDTOExample",
                                        "description":"RulesListDTO",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-{ruleStatus}-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-rulestatus-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/simple":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get all rules based on given parameters"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of rules based on parameters such as form ID, item ID, property type, and rule name. Compared to the preview v0.9 API, v1.0 validates UUID filters, returns normalized action metadata, and limits responses to the requested study mode for UI consumption.",
                "operationId":"GetAllRulesBy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    },
                    {
                        "name":"ruleId",
                        "in":"query",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    {
                        "name":"ruleName",
                        "in":"query",
                        "description":"Optional rule name filter. Provide the user-facing title assigned to the rule.",
                        "schema":{
                            "type":"string",
                            "example":"Visit Start Date Validation"
                        },
                        "example":"Visit Start Date Validation"
                    },
                    {
                        "name":"propertyName",
                        "in":"query",
                        "description":"Optional property name filter used together with propertyType and eventId to resolve visit metadata.",
                        "schema":{
                            "type":"string",
                            "example":"visitStartDate"
                        },
                        "example":"visitStartDate"
                    },
                    {
                        "name":"propertyType",
                        "in":"query",
                        "description":"Optional property type filter used with propertyName and eventId. Allowed values: visit (filters by visit definition), event (limits results to a specific event), form (targets form-level attributes), item (targets a single item operand or action), and none (returns all property types).",
                        "schema":{
                            "type":"string",
                            "example":"visit",
                            "enum":[
                                "visit",
                                "event",
                                "form",
                                "item",
                                "none"
                            ]
                        },
                        "example":"visit"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional event identifier. When supplied, responses include rules bound to the given event or unbound rules.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"itemId",
                        "in":"query",
                        "description":"Optional item identifier. Helps locate rules where the item is either an operand or the action target.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSimpleListDoc"
                                },
                                "examples":{
                                    "RulesSimpleSuccess":{
                                        "description":"RulesSimpleSuccess",
                                        "value":{
                                            "rules":[
                                                {
                                                    "ruleId":"699EF3745FC545589F186D2198F3C65E",
                                                    "ruleName":"Query on negative temperature",
                                                    "ruleDescription":"Creates a query when body temperature is outside accepted range.",
                                                    "ruleValidationStatus":"true",
                                                    "ruleValidationMessage":"Rule validated successfully.",
                                                    "ruleOriginType":"UI",
                                                    "actions":[
                                                        {
                                                            "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                            "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                            "ruleActionTypeName":"CREATE_QUERY",
                                                            "propertyType":"visit",
                                                            "propertyName":"visitStartDate",
                                                            "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                        }
                                                    ],
                                                    "operands":[
                                                        {
                                                            "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                            "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                            "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                            "mapRelation":"ANY"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesSimpleBadRequest":{
                                        "description":"RulesSimpleBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesSimpleServerError":{
                                        "description":"RulesSimpleServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-simple-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-simple-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/form/{formId}/valid":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get valid and enabled rules by form ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of rules which are in both valid and enabled states that belong to a given form.",
                "operationId":"GetRulesByForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Optional item identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesListDTO":{
                                        "summary":"RulesListDTOExample",
                                        "description":"RulesListDTO",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-form-{formId}-valid-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-form-formid-valid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/form/{formId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by form ID"
                ],
                "summary":"v1.0",
                "description":"Retrieves every rule attached to the supplied form, including associated actions, operands, and validation details. Supports optional study version, event, and item filters to narrow the response. Compared to the legacy v0.9 endpoint, v1.0 returns normalized action metadata and enforces UUID validation for all identifiers.",
                "operationId":"listRulesByFormV1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"39903D6C042D4D9E89773160488E6D3D"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    },
                    {
                        "name":"ruleValidationStatus",
                        "in":"query",
                        "description":"Optional rule validation status filter. Accepted values: true (latest validation passed) or false (rule has validation errors).",
                        "schema":{
                            "type":"string",
                            "example":"true",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"ruleEnabled",
                        "in":"query",
                        "description":"Optional rule enabled filter. Accepted values: 1 (rule executes in the selected mode) or 0 (rule is disabled).",
                        "schema":{
                            "maximum":1,
                            "minimum":0,
                            "type":"integer",
                            "format":"int64",
                            "example":0,
                            "enum":[
                                0,
                                1
                            ]
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByFormSuccess":{
                                        "description":"RulesByFormSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByFormBadRequest":{
                                        "description":"RulesByFormBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByFormServerError":{
                                        "description":"RulesByFormServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-form-{formId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-form-formid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/item/{itemId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by item ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of rules and related actions that belong to an item. Version 1.0 omits the operand metadata normalization introduced in versions 2.0 and 3.0.",
                "operationId":"GetRulesByItem",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"36753A48BBA048CB98A5F3278146118D"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Optional item identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "type":"string",
                            "example":"3.2.0.18"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional clinical event identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "nullable":true,
                            "example":"9B4AA96F48344015A259D6436EB97B47"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid",
                            "nullable":true,
                            "example":"39903D6C042D4D9E89773160488E6D3D"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByItemSuccess":{
                                        "description":"RulesByItemSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemBadRequest":{
                                        "description":"RulesByItemBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemServerError":{
                                        "description":"RulesByItemServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-item-{itemId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-item-itemid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/propertyType/{propertyType}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by property"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of rules and related actions based on a property. Version 1.0 does not expose the property metadata normalization introduced in versions 2.0 and 3.0.",
                "operationId":"GetRulesByProperty",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"propertyType",
                        "in":"path",
                        "description":"Optional property type filter aligned with RuleDesignerPropertyTypeEnum (visit, event, form, item, none).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "visit",
                                "event",
                                "form",
                                "item",
                                "none"
                            ]
                        },
                        "example":"visit"
                    },
                    {
                        "name":"propertyName",
                        "in":"query",
                        "description":"Optional property name filter that works with propertyType to locate the visit attribute.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"visitStartDate"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional event identifier retained for backward compatibility.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Optional event instance number retained for backward compatibility. Provide a non-negative integer.",
                        "schema":{
                            "minimum":0,
                            "type":"number",
                            "format":"double"
                        },
                        "example":1
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier retained for backward compatibility.",
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByPropertySuccess":{
                                        "description":"RulesByPropertySuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyBadRequest":{
                                        "description":"RulesByPropertyBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyServerError":{
                                        "description":"RulesByPropertyServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-propertyType-{propertyType}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-propertytype-propertytype-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rules by study ID and study mode"
                ],
                "summary":"v1.0",
                "description":"Retrieves a list of rules and related actions that belong to a specified study ID and mode. Compared to the legacy v0.9 endpoint, v1.0 normalizes rule payload metadata, enforces UUID validation for all identifiers, and blocks design-mode queries that previously returned partial results.",
                "operationId":"GetRulesByStudyMode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleValidationStatus",
                        "in":"query",
                        "description":"Rule validation status flag. Allowed values: true (latest validation passed) or false (validation failed).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"ruleEnabled",
                        "in":"query",
                        "description":"Rule enabled flag. Allowed values: 1 (enabled) or 0 (disabled) for the selected study mode.",
                        "schema":{
                            "maximum":1,
                            "minimum":0,
                            "type":"integer",
                            "format":"int64",
                            "enum":[
                                0,
                                1
                            ]
                        },
                        "example":0
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByStudyModeSuccess":{
                                        "description":"RulesByStudyModeSuccess",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByStudyModeBadRequest":{
                                        "description":"RulesByStudyModeBadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByStudyModeServerError":{
                                        "description":"RulesByStudyModeServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/publish":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Publish a collection of rules in Testing mode"
                ],
                "summary":"v1.0",
                "description":"Publishes a collection of rules in a study, while in Testing mode.",
                "operationId":"PublishRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reExecuteRules",
                        "in":"query",
                        "description":"Re-execute Rules.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Collection of rule identifiers included in the request. Each identifier accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleIdsDTO"
                            },
                            "examples":{
                                "PublishRulesRequest":{
                                    "summary":"List of rule IDs to publish",
                                    "description":"PublishRulesRequest",
                                    "value":{
                                        "ruleIds":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Rule published successfully.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-publish-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-publish-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Updates multiple rules within a study in a single transaction. Each rule entry must specify operands, actions, and the desired enabled state. Requests are validated against the supplied study mode (design or test) before any persistence changes are committed. Version 1.0 relies on the legacy synchronous engine and does not provide the performance optimizations or job identifier tracking added in versions 6.0 and 7.0.",
                "operationId":"UpdateRulesBulk",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Bulk Rules object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTO"
                            },
                            "examples":{
                                "BulkUpdateRulesRequest":{
                                    "summary":"Example bulk rule update payload",
                                    "description":"BulkUpdateRulesRequest",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"938D23FA6B7241CCA41BD627E5DB60DA",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleExpression":"var1 != null",
                                                "studyVersion":"3.2.0.18",
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleJSExpression":"var1 != null",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginType":"user rule",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date."
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE"
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/bulkcopy":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Copy rules in bulk"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Copies rules in bulk. Version 1.0 executes the legacy synchronous copy flow and omits the asynchronous job status metadata introduced in versions 2.0 and 3.0.",
                "operationId":"copyFormRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Bulk State Rules object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleCopyDTO"
                            },
                            "examples":{
                                "BulkCopyRequest":{
                                    "summary":"Example bulk copy payload",
                                    "description":"BulkCopyRequest",
                                    "value":{
                                        "studies":[
                                            {
                                                "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                                "fromStudyVersion":"1.0.0.0",
                                                "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                                "toStudyVersion":"1.0.0.0",
                                                "forms":[
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk delete rules was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-bulkcopy-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-bulkcopy-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/copyrules":{
            "post":{
                "tags":[
                    "Rule Designer/Rule Management/Copy Rules to newly copied study"
                ],
                "summary":"v1.0",
                "description":"Copies all active rules from specified source study to specified target study.",
                "operationId":"copyRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Study Map object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyMapDTO"
                            },
                            "examples":{
                                "CopyRulesRequest":{
                                    "summary":"Example mapping payload",
                                    "description":"CopyRulesRequest",
                                    "value":{
                                        "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                        "fromStudyVersion":"1.0.0.0",
                                        "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                        "toStudyVersion":"1.0.0.0",
                                        "forms":[
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Validation request accepted and processing started asynchronously.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Accepted":{
                                        "description":"Accepted",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Queued",
                                            "ruleValidationMessage":"Copy request accepted for asynchronous processing.",
                                            "ruleValidationStatus":true,
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Copy request accepted for asynchronous processing."
                                                }
                                            },
                                            "error":null,
                                            "httpErrorCode":202,
                                            "httpErrorMessage":"Accepted"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-copyrules-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-copyrules-post"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/disableAllNotificationRules":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Disable all notification rules"
                ],
                "summary":"v1.0",
                "description":"Disables all notification rules for a given study. The rules in all the study modes are disabled.",
                "operationId":"disableAllNotificationRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Rule copy was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Operation completed successfully.",
                                                "processedCount":2
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-disableAllNotificationRules-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-disableallnotificationrules-put"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/versions/{version}/formId/{formId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get visits and forms action information."
                ],
                "summary":"v1.0",
                "description":"Retrieves information about visits/forms related actions.",
                "operationId":"getActionVisitsForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Optional study version value. Provide the semantic version string that uniquely identifies the study draft.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"38891F5E75BB4071BBF8ACE1F43BD1BD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RDSRestResponseDTO"
                                    }
                                },
                                "examples":{
                                    "RulesListDTO":{
                                        "summary":"RulesListDTOExample",
                                        "description":"RulesListDTO",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "message":"Operation completed successfully.",
                                                    "processedCount":2
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-versions-{version}-formId-{formId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-versions-version-formid-formid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/ruleId/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by rule ID"
                ],
                "summary":"[Deprecated]: v1.0",
                "description":"Deprecated: Use latest version instead. Retrieves the rule identified by the supplied rule ID, returning full metadata, operands, actions, and validation state so clients can render the rule editor. Version 1.0 omits the execution summary and job tracking metadata provided from version 5.0 onward.",
                "operationId":"getRulesById",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RDSRestResponseDTO"
                                    }
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "message":"Operation completed successfully.",
                                                    "processedCount":2
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-ruleId-{ruleId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-ruleid-ruleid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/ruleIds/operands":{
            "post":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule Operands list by rule IDs"
                ],
                "summary":"v1.0",
                "description":"Retrieves the rule operands that belong to a specified rule IDs.",
                "operationId":"getRulesByIds",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of Rule IDs.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleIDsReq"
                            },
                            "examples":{
                                "RuleIdsRequest":{
                                    "summary":"List of rule IDs to fetch operands",
                                    "description":"RuleIdsRequest",
                                    "value":{
                                        "ruleIds":[
                                            "938D23FA6B7241CCA41BD627E5DB60DA",
                                            "699EF3745FC545589F186D2198F3C65E"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RDSRestResponseDTO"
                                    }
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "message":"Operation completed successfully.",
                                                    "processedCount":2
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-ruleIds-operands-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-ruleids-operands-post"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/rulenames":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get multiple parameters of all rules in a study"
                ],
                "summary":"v1.0",
                "description":"Retrieves the following data for all rules: name, ID, rulerefname, ruleState, ruleDeleted, ruleEnabled, ruleValidationStatus and studymode for a given study ID and mode. Allows optional filters such as ruleState, ruleDeleted, ruleEnabled, and ruleValidationStatus.",
                "operationId":"getRulesNameByMode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleValidationStatus",
                        "in":"query",
                        "description":"Optional rule validation status filter. Accepted values: true (latest validation passed) or false (rule has validation errors).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":true
                    },
                    {
                        "name":"ruleEnabled",
                        "in":"query",
                        "description":"Optional rule enabled filter. Accepted values: 1 (rule executes in the selected mode) or 0 (rule is disabled).",
                        "schema":{
                            "maximum":1,
                            "minimum":0,
                            "type":"integer",
                            "format":"int64",
                            "enum":[
                                0,
                                1
                            ]
                        },
                        "example":0
                    },
                    {
                        "name":"ruleDeleted",
                        "in":"query",
                        "description":"Optional rule deleted filter. Accepted values: 1 (rule marked deleted) or 0 (rule active).",
                        "schema":{
                            "maximum":1,
                            "minimum":0,
                            "type":"integer",
                            "format":"int64",
                            "enum":[
                                0,
                                1
                            ]
                        },
                        "example":0
                    },
                    {
                        "name":"ruleState",
                        "in":"query",
                        "description":"Optional rule workflow state filter. Allowed values: draft (authoring), uat (in validation), approved (ready for release), publish (live in production).",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "draft",
                                "uat",
                                "approved",
                                "publish"
                            ]
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RDSRestResponseDTO"
                                    }
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":[
                                            {
                                                "status":"success",
                                                "result":{
                                                    "message":"Operation completed successfully.",
                                                    "processedCount":2
                                                }
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-rulenames-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-rulenames-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/{mode}/rulestates":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get all rule states"
                ],
                "summary":"v1.0",
                "description":"Retrieves states of all rules by study ID and study mode (Testing, Training, or Production).",
                "operationId":"ruleStates",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "example":"draft",
                                        "enum":[
                                            "draft",
                                            "uat",
                                            "approved",
                                            "publish"
                                        ]
                                    }
                                },
                                "examples":{
                                    "Success":{
                                        "description":"Success",
                                        "value":[
                                            "draft",
                                            "uat",
                                            "approved",
                                            "publish"
                                        ]
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-{mode}-rulestates-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-mode-rulestates-get"
            }
        },
        "/ec-rule-designer-svc/rest/v1.0/rule/studies/{studyId}/validateCopiedRules":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Validate copied rules"
                ],
                "summary":"v1.0",
                "description":"Validates copied rules during the initial draft-to-testing tile move. The optional request body accepts study title labels used in notification content: one title for the target study or two titles in order [sourceStudyTitle, targetStudyTitle].",
                "operationId":"validateCopiedRulesDuringInitialDraftTileMove",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version value. Provide the semantic version string that uniquely identifies the study draft.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    }
                ],
                "requestBody":{
                    "description":"Optional array of study title labels used for copy-validation notifications. Provide one title (target study) or two titles in order [sourceStudyTitle, targetStudyTitle].",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string",
                                    "example":"Source Oncology Study"
                                }
                            },
                            "examples":{
                                "StudyTitles":{
                                    "description":"StudyTitles",
                                    "value":[
                                        "Source Oncology Study",
                                        "Target Oncology Study"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "202":{
                        "description":"Validation request accepted and processing started asynchronously.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Accepted":{
                                        "description":"Accepted",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Copied Rule Validation In Progress"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-{studyId}-validateCopiedRules-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v1.0-rule-studies-studyid-validatecopiedrules-put"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Generates Rule Designer reports using the v2 schema. Compared to v1.0, it accepts the additional filter keys defined in ReportColumnMappingV2 and enforces their expected data types. This benefits users by reducing failed report runs caused by malformed filter payloads. Later versions add expanded report schemas and audit metadata????????upgrade to version 5.0 or above.",
                "operationId":"generateReport_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":3,
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/simple":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get all rules based on given parameters"
                ],
                "summary":"v2.0",
                "description":"Retrieves rule summaries with the extended filtering set introduced for the rule designer grid. Compared to v1.0, v2.0 adds pagination controls (offset, limit), grid layout toggles, server-side sorting, and advanced text filtering used by the redesigned workspace. This benefits users by making large rule sets faster to navigate and triage.",
                "operationId":"GetAllRulesBy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    },
                    {
                        "name":"ruleId",
                        "in":"query",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    {
                        "name":"ruleName",
                        "in":"query",
                        "description":"Optional rule name filter. Provide the user-facing title assigned to the rule.",
                        "schema":{
                            "maxLength":256,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Visit Start Date Validation"
                    },
                    {
                        "name":"propertyName",
                        "in":"query",
                        "description":"Optional property name filter used together with propertyType and eventId to resolve visit metadata.",
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"visitStartDate"
                    },
                    {
                        "name":"propertyType",
                        "in":"query",
                        "description":"Optional property type filter used with propertyName and eventId. Allowed values: visit (filters by visit definition), event (limits results to a specific event), form (targets form-level attributes), item (targets a single item operand or action), and none (returns all property types).",
                        "schema":{
                            "maxLength":5,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "visit",
                                "event",
                                "form",
                                "item",
                                "none"
                            ]
                        },
                        "example":"visit"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional event identifier. When supplied, responses include rules bound to the given event or unbound rules.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"itemId",
                        "in":"query",
                        "description":"Optional item identifier. Helps locate rules where the item is either an operand or the action target.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"gridView",
                        "in":"query",
                        "description":"Optional UI layout selector. Allowed values: Grid (card layout) or List (tabular layout).",
                        "schema":{
                            "maxLength":16,
                            "minLength":2,
                            "type":"string"
                        },
                        "example":"Grid"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Zero-based offset for pagination. Supply a non-negative integer.",
                        "schema":{
                            "minimum":0,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Page size for pagination. Supply an integer between 1 and 500.",
                        "schema":{
                            "maximum":500,
                            "minimum":1,
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":50
                    },
                    {
                        "name":"sortColumn",
                        "in":"query",
                        "description":"Column name used for sorting (for example ruleName, ruleState). Provide 1 to 64 characters.",
                        "schema":{
                            "maxLength":64,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"ruleName"
                    },
                    {
                        "name":"sortOrder",
                        "in":"query",
                        "description":"Sort order for the selected column. Allowed values: ASC (ascending) or DESC (descending).",
                        "schema":{
                            "maxLength":4,
                            "minLength":3,
                            "type":"string",
                            "enum":[
                                "ASC",
                                "DESC"
                            ]
                        },
                        "example":"ASC"
                    },
                    {
                        "name":"filterView",
                        "in":"query",
                        "description":"Optional named filter preset applied in the designer UI (for example Filter, Favorites). Provide up to 32 characters.",
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"Filter"
                    },
                    {
                        "name":"searchString",
                        "in":"query",
                        "description":"Optional keyword filter applied to rule names or descriptions. Provide 1 to 256 characters.",
                        "schema":{
                            "maxLength":256,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"visitStartDate"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSimpleListDoc"
                                },
                                "examples":{
                                    "RulesSimpleListV2Success":{
                                        "description":"RulesSimpleListV2Success",
                                        "value":{
                                            "rules":[
                                                {
                                                    "ruleId":"699EF3745FC545589F186D2198F3C65E",
                                                    "ruleName":"Query on negative temperature",
                                                    "ruleDescription":"Creates a query when body temperature is outside accepted range.",
                                                    "ruleValidationStatus":"true",
                                                    "ruleValidationMessage":"Rule validated successfully.",
                                                    "ruleOriginType":"UI",
                                                    "actions":[
                                                        {
                                                            "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                            "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                            "ruleActionTypeName":"CREATE_QUERY",
                                                            "propertyType":"visit",
                                                            "propertyName":"visitStartDate",
                                                            "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                        }
                                                    ],
                                                    "operands":[
                                                        {
                                                            "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                            "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                            "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                            "mapRelation":"ANY"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesSimpleListV2BadRequest":{
                                        "description":"RulesSimpleListV2BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesSimpleListV2ServerError":{
                                        "description":"RulesSimpleListV2ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-simple-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-simple-get"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/item/{itemId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by item ID"
                ],
                "summary":"v2.0",
                "description":"Version 2.0 retrieves rules by item identifier with normalized operand metadata and UUID validation compared to version 1.0. This benefits users by reducing client-side data-shaping work when rendering item-level rule summaries.",
                "operationId":"GetRulesByItem_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Optional item identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional clinical event identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EACDC121885343B1B7EF452D49D96666"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByItemV2Success":{
                                        "description":"RulesByItemV2Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemV2BadRequest":{
                                        "description":"RulesByItemV2BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemV2ServerError":{
                                        "description":"RulesByItemV2ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-item-{itemId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-item-itemid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/propertyType/{propertyType}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by property"
                ],
                "summary":"v2.0",
                "description":"Version 2.0 retrieves rules by property type with normalized property metadata and UUID validation compared to version 1.0. This benefits users by producing consistent property-filter responses across study modes.",
                "operationId":"GetRulesByProperty_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"propertyType",
                        "in":"path",
                        "description":"Optional property type filter aligned with RuleDesignerPropertyTypeEnum (visit, event, form, item, none).",
                        "required":true,
                        "schema":{
                            "maxLength":5,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "visit",
                                "event",
                                "form",
                                "item",
                                "none"
                            ]
                        },
                        "example":"visit"
                    },
                    {
                        "name":"propertyName",
                        "in":"query",
                        "description":"Optional property name filter that works with propertyType to locate the visit attribute.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"visitStartDate"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional event identifier retained for backward compatibility.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Optional event instance number retained for backward compatibility. Provide a non-negative integer.",
                        "schema":{
                            "minimum":0,
                            "type":"number",
                            "format":"double"
                        },
                        "example":1
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier retained for backward compatibility.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"valid",
                        "in":"query",
                        "description":"Optional flag that limits results to rules that currently validate successfully (true/false).",
                        "schema":{
                            "maxLength":5,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV2Success":{
                                        "description":"RulesByPropertyV2Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV2BadRequest":{
                                        "description":"RulesByPropertyV2BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV2ServerError":{
                                        "description":"RulesByPropertyV2ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-propertyType-{propertyType}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-propertytype-propertytype-get"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Updates multiple rules within a study in a single transaction. Each rule entry must specify operands, actions, and the desired enabled state. Requests are validated against the supplied study mode (design or test) before any persistence changes are committed. Compared to version 1.0, version 2.0 improves payload validation consistency for bulk updates. Version 2.0 predates the cached execution pipeline and asynchronous job identifiers available from version 6.0 onward. This benefits users by reducing avoidable validation mismatches in bulk-update requests.",
                "operationId":"UpdateRulesBulk_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV3"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV3":{
                                    "summary":"BulkUpdateRulesDTOV3Example",
                                    "description":"BulkUpdateRulesDTOV3",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date."
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/bulkcopy":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Copy rules in bulk"
                ],
                "summary":"v2.0",
                "description":"Version 2.0 copies rules in bulk with stricter UUID validation and detailed error reporting compared to version 1.0, preparing clients for the asynchronous status tracking added in version 3.0. This benefits users by improving copy-request reliability before migrating to asynchronous flows.",
                "operationId":"copyFormRules_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Bulk State Rules object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleCopyDTO"
                            },
                            "examples":{
                                "BulkCopyRequest":{
                                    "summary":"Example bulk copy payload",
                                    "description":"BulkCopyRequest",
                                    "value":{
                                        "studies":[
                                            {
                                                "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                                "fromStudyVersion":"1.0.0.0",
                                                "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                                "toStudyVersion":"1.0.0.0",
                                                "forms":[
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk delete rules was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk copy Rules Success Response":{
                                        "summary":"Example response for a successful bulk copy rules request",
                                        "description":"Bulk copy Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-bulkcopy-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-bulkcopy-put"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/copyrules":{
            "post":{
                "tags":[
                    "Rule Designer/Rule Management/Copy Rules to newly copied study"
                ],
                "summary":"v2.0",
                "description":"Copies all active rules from the specified source study to the target study. Compared to v1.0, v2.0 records asynchronous job identifiers, validates new UUID conversion helpers, and supports the enhanced Audit payload returned by the designer service. This benefits users by providing deterministic tracking for cross-study copy operations.",
                "operationId":"copyRules_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Study Map object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyMapDTOV3"
                            },
                            "examples":{
                                "CopyRulesRequest":{
                                    "summary":"Example mapping payload",
                                    "description":"CopyRulesRequest",
                                    "value":{
                                        "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                        "fromStudyVersion":"1.0.0.0",
                                        "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                        "toStudyVersion":"1.0.0.0",
                                        "fromIsLibrary":false,
                                        "toIsLibrary":false,
                                        "isToIsLibrary":false,
                                        "forms":[
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "202":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Accepted":{
                                        "description":"Accepted",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-copyrules-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-copyrules-post"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/ruleId/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by rule ID"
                ],
                "summary":"[Deprecated]: v2.0",
                "description":"Deprecated: Use latest version instead. Retrieves the rule identified by the supplied rule ID, returning full metadata, operands, actions, and validation state so clients can render the rule editor. Compared to version 1.0, version 2.0 standardizes UUID validation and payload normalization for this endpoint. Version 2.0 predates the execution summary fields exposed from version 5.0 onward. This benefits users by providing more consistent rule-detail payloads for UI rendering.",
                "operationId":"getRulesById_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Rule Details for given RuleId":{
                                        "summary":"Example response for a successful rules request",
                                        "description":"Rule Details for given RuleId",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Operation completed successfully.",
                                                "processedCount":2
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-ruleId-{ruleId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-ruleid-ruleid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v2.0/rule/studies/{studyId}/{mode}/ruleIds/operands":{
            "post":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule Operands list by rule IDs"
                ],
                "summary":"v2.0",
                "description":"Retrieves the operands associated with each supplied rule identifier. Compared to v1.0, v2.0 returns operands grouped by ruleId, includes mapRelation metadata, and documents operand data types for the enhanced rule designer grid. This benefits users by reducing client-side parsing complexity for bulk operand rendering.",
                "operationId":"getRulesByIds_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing list of all rules",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RuleIDsReq"
                            },
                            "examples":{
                                "RuleIDsReq":{
                                    "summary":"RuleIDsReqExample",
                                    "description":"RuleIDsReq",
                                    "value":{
                                        "ruleIds":[
                                            "EACDC121885343B1B7EF452D49D96666",
                                            "CDBAE5901A2D407A9DE6A53D70FC2488"
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Operands details for list of rules Success Response":{
                                        "summary":"Example list of operands response for a list of rules",
                                        "description":"Operands details for list of rules Success Response",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "cdbae590-1a2d-407a-9de6-a53d70fc2488":[
                                                    {
                                                        "eventId":null,
                                                        "eventInstanceNumber":null,
                                                        "formId":null,
                                                        "itemId":null,
                                                        "propertyType":null,
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"input",
                                                        "dataType":"Date",
                                                        "eventRefName":null,
                                                        "formRefName":null,
                                                        "itemRefName":null,
                                                        "mapRelation":"N"
                                                    }
                                                ],
                                                "eacdc121-8853-43b1-b7ef-452d49d96666":[
                                                    {
                                                        "eventId":null,
                                                        "eventInstanceNumber":null,
                                                        "formId":null,
                                                        "itemId":null,
                                                        "propertyType":null,
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"dov",
                                                        "dataType":"Date",
                                                        "eventRefName":null,
                                                        "formRefName":null,
                                                        "itemRefName":null,
                                                        "mapRelation":"N"
                                                    },
                                                    {
                                                        "eventId":null,
                                                        "eventInstanceNumber":null,
                                                        "formId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                        "propertyType":null,
                                                        "propertyName":null,
                                                        "operandName":"banana",
                                                        "dataType":"Text",
                                                        "eventRefName":null,
                                                        "formRefName":null,
                                                        "itemRefName":null,
                                                        "mapRelation":"N"
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-{studyId}-{mode}-ruleIds-operands-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v2.0-rule-studies-studyid-mode-ruleids-operands-post"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Generates Rule Designer reports using the v3 schema. Compared to v2.0, it surfaces the action and operand reference columns introduced in ReportColumnMappingV3 and validates filters against those additions. This benefits users by exposing richer diagnostics in a single report export. Upgrade to version 5.0 or later for the audit metadata and instrument tracking columns delivered in more recent schemas.",
                "operationId":"generateReport_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":3,
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/rule/studies/{studyId}/{mode}/item/{itemId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by item ID"
                ],
                "summary":"v3.0",
                "description":"Retrieves rules and related actions that belong to the specified item. Compared to v2.0, v3.0 adds the optional studyVersion filter so clients can inspect rules for a specific draft and returns the enhanced operand metadata introduced with the designer v3 DTO. This benefits users by enabling draft-specific troubleshooting without switching endpoints.",
                "operationId":"GetRulesByItem_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Optional item identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional clinical event identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier filter. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"EACDC121885343B1B7EF452D49D96666"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByItemV3Success":{
                                        "description":"RulesByItemV3Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemV3BadRequest":{
                                        "description":"RulesByItemV3BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByItemV3ServerError":{
                                        "description":"RulesByItemV3ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-{studyId}-{mode}-item-{itemId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-studyid-mode-item-itemid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/rule/studies/{studyId}/{mode}/propertyType/{propertyType}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by property"
                ],
                "summary":"v3.0",
                "description":"Retrieves rules and actions based on visit property metadata. Compared to v2.0, v3.0 enables the studyVersion and validity filters so clients can isolate rules that passed the latest validation within a given draft. This benefits users by reducing noise when validating draft-specific rule quality.",
                "operationId":"GetRulesByProperty_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"propertyType",
                        "in":"path",
                        "description":"Optional property type filter aligned with RuleDesignerPropertyTypeEnum (visit, event, form, item, none).",
                        "required":true,
                        "schema":{
                            "maxLength":5,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "visit",
                                "event",
                                "form",
                                "item",
                                "none"
                            ]
                        },
                        "example":"visit"
                    },
                    {
                        "name":"propertyName",
                        "in":"query",
                        "description":"Optional property name filter that works with propertyType to locate the visit attribute.",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"visitStartDate"
                    },
                    {
                        "name":"eventId",
                        "in":"query",
                        "description":"Optional event identifier retained for backward compatibility.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    {
                        "name":"eventInstanceNumber",
                        "in":"query",
                        "description":"Optional event instance number retained for backward compatibility. Provide a non-negative integer.",
                        "schema":{
                            "minimum":0,
                            "type":"number",
                            "format":"double"
                        },
                        "example":1
                    },
                    {
                        "name":"studyVersion",
                        "in":"query",
                        "description":"Optional study version retained for backward compatibility.",
                        "schema":{
                            "maxLength":32,
                            "minLength":1,
                            "type":"string"
                        },
                        "example":"3.2.0.18"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Optional form identifier retained for backward compatibility.",
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    {
                        "name":"valid",
                        "in":"query",
                        "description":"Optional flag that limits results to rules that currently validate successfully (true/false).",
                        "schema":{
                            "maxLength":5,
                            "minLength":4,
                            "type":"string",
                            "enum":[
                                "true",
                                "false"
                            ]
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryResponseDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV3Success":{
                                        "description":"RulesByPropertyV3Success",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "rules":[
                                                    {
                                                        "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                        "ruleName":"Visit Start Date Validation",
                                                        "ruleDescription":"Validates visit start date before allowing progression.",
                                                        "ruleValidationStatus":"true",
                                                        "ruleValidationMessage":"Rule validated successfully.",
                                                        "ruleOriginType":"UI",
                                                        "actions":[
                                                            {
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "ruleActionTypeName":"CREATE_QUERY",
                                                                "propertyType":"visit",
                                                                "propertyName":"visitStartDate",
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47"
                                                            }
                                                        ],
                                                        "operands":[
                                                            {
                                                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                                                "mapRelation":"ANY"
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV3BadRequest":{
                                        "description":"RulesByPropertyV3BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RuleSummaryErrorDoc"
                                },
                                "examples":{
                                    "RulesByPropertyV3ServerError":{
                                        "description":"RulesByPropertyV3ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":null,
                                            "errorCode":"RuleSvc-030",
                                            "errorMessage":"Error encountered during rule execution. Contact your system administrator.",
                                            "details":null
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-{studyId}-{mode}-propertyType-{propertyType}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-studyid-mode-propertytype-propertytype-get"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Updates multiple rules within a study in a single transaction. Each rule entry must specify operands, actions, and the desired enabled state. Requests are validated against the supplied study mode (design or test) before any persistence changes are committed. Compared to version 2.0, version 3.0 aligns bulk-update processing with the v3 request model. Version 3.0 precedes the performance improvements and job identifier telemetry added in versions 6.0 and 7.0. This benefits users by improving consistency across v3 rule-management workflows.",
                "operationId":"UpdateRulesBulk_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV3"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV3":{
                                    "summary":"BulkUpdateRulesDTOV3Example",
                                    "description":"BulkUpdateRulesDTOV3",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date."
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/rule/studies/{studyId}/bulkcopy":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Copy rules in bulk"
                ],
                "summary":"v3.0",
                "description":"Copies the supplied rules in bulk. Compared to v2.0, v3.0 records asynchronous job status in the response payload and normalizes the UUID formatting required by the rule designer service. This benefits users by enabling reliable progress tracking for long-running copy jobs.",
                "operationId":"copyFormRules_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    }
                ],
                "requestBody":{
                    "description":"Bulk State Rules object.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkRuleCopyDTOV3"
                            },
                            "examples":{
                                "BulkCopyRulesRequest":{
                                    "description":"BulkCopyRulesRequest",
                                    "value":{
                                        "studies":[
                                            {
                                                "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                                "fromStudyVersion":"1.0.0.0",
                                                "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                                "toStudyVersion":"1.0.0.0",
                                                "fromIsLibrary":false,
                                                "toIsLibrary":false,
                                                "isToIsLibrary":false,
                                                "forms":[
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk delete rules was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk copy Rules Success Response":{
                                        "summary":"Example response for a successful bulk copy rules request",
                                        "description":"Bulk copy Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-{studyId}-bulkcopy-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-studyid-bulkcopy-put"
            }
        },
        "/ec-rule-designer-svc/rest/v3.0/rule/studies/{studyId}/{mode}/ruleId/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by rule ID"
                ],
                "summary":"[Deprecated]: v3.0",
                "description":"Deprecated: Use latest version instead. Retrieves the rule identified by the supplied rule ID, returning full metadata, operands, actions, and validation state so clients can render the rule editor. Compared to version 2.0, version 3.0 aligns this endpoint with the v3 operand and study-version model. Version 3.0 does not surface the execution summary and job tracking details that arrive in version 5.0. This benefits users by keeping rule-detail behavior aligned with other v3 endpoints.",
                "operationId":"getRulesById_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Rule Details for given RuleId":{
                                        "summary":"Example response for a successful rules request",
                                        "description":"Rule Details for given RuleId",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Operation completed successfully.",
                                                "processedCount":2
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-{studyId}-{mode}-ruleId-{ruleId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v3.0-rule-studies-studyid-mode-ruleid-ruleid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v4.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Generates Rule Designer reports using the v4 schema. Compared to v3.0, it adds derived visit metadata columns outlined in ReportColumnMappingV4 and allows clients to filter on them. This benefits users by improving root-cause analysis for visit-scoped rule behavior. Upgrade to version 5.0 or later to access the audit metadata and expanded schema columns.",
                "operationId":"generateReport_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":3,
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v4.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v4.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v4.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"[Deprecated]: v4.0",
                "description":"Deprecated: Use latest version instead. Updates multiple rules within a study in a single transaction. Each rule entry must specify operands, actions, and the desired enabled state. Requests are validated against the supplied study mode (design or test) before any persistence changes are committed. Compared to version 3.0, version 4.0 keeps the synchronous contract but aligns with v4 metadata handling. Version 4.0 predates the performance profile and telemetry introduced by versions 6.0 and 7.0. This benefits users by preserving predictable synchronous behavior while adopting v4 payload conventions.",
                "operationId":"UpdateRulesBulk_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV4"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV4":{
                                    "summary":"BulkUpdateRulesDTOV4Example",
                                    "description":"BulkUpdateRulesDTOV4",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date."
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v4.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v4.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v5.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"v5.0",
                "description":"Generates Rule Designer reports using the v5 schema. Compared to v4.0, it incorporates audit metadata columns from ReportColumnMappingV5 and enforces the matching filter types. This benefits users by making audit-focused investigations faster and more consistent.",
                "operationId":"generateReport_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":3,
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v5.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v5.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v5.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"[Deprecated]: v5.0",
                "description":"Deprecated: Use latest version instead. Updates multiple rules within a study in a single transaction. Each rule entry must specify operands, actions, and the desired enabled state. Requests are validated against the supplied study mode (design or test) before any persistence changes are committed. Compared to version 4.0, version 5.0 introduces the execution summary model while retaining synchronous update semantics. Version 5.0 does not include the performance improvements or job tracking metadata delivered starting in version 6.0. This benefits users by exposing richer execution context without requiring asynchronous adoption.",
                "operationId":"UpdateRulesBulk_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV5"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV5":{
                                    "summary":"BulkUpdateRulesDTOV5Example",
                                    "description":"BulkUpdateRulesDTOV5",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date.",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate"
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v5.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v5.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v5.0/rule/studies/{studyId}/{mode}/ruleId/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by rule ID"
                ],
                "summary":"v5.0",
                "description":"Version 5.0 retrieves rules by identifier and adds validation metadata compared to version 3.0, preparing clients for the execution summary fields introduced in version 6.0. This benefits users by improving rule-detail diagnostics before transitioning to v6.0 execution telemetry.",
                "operationId":"getRulesById_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Rule Details for given RuleId":{
                                        "summary":"Example response for a successful rules request",
                                        "description":"Rule Details for given RuleId",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Operation completed successfully.",
                                                "processedCount":2
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v5.0-rule-studies-{studyId}-{mode}-ruleId-{ruleId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v5.0-rule-studies-studyid-mode-ruleid-ruleid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v6.0/studies/{studyId}/{mode}/report/{reportName}":{
            "post":{
                "tags":[
                    "Rule Designer/Reporting/Generate Rule Designer reports"
                ],
                "summary":"v6.0",
                "description":"Generates Rule Designer reports using the v6 schema. Compared to v5.0, it exposes instrument version tracking fields from ReportColumnMappingV6 and requires filters to align with the expanded schema. This benefits users by improving traceability across instrument-version transitions.",
                "operationId":"generateReport_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"Report Name",
                        "required":true,
                        "schema":{
                            "maxLength":128,
                            "minLength":3,
                            "type":"string"
                        },
                        "example":"RuleExecutionSummary"
                    }
                ],
                "requestBody":{
                    "description":"Report Search Specs",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "ReportSearchSpecs":{
                                    "summary":"Filter reports for approved rules",
                                    "description":"ReportSearchSpecs",
                                    "value":{
                                        "limit":25,
                                        "offset":0,
                                        "fieldSpecsList":[
                                            {
                                                "fieldName":"ruleState",
                                                "fieldType":"list",
                                                "fieldSequence":1,
                                                "fieldValueList":[
                                                    "approved",
                                                    "publish"
                                                ]
                                            },
                                            {
                                                "fieldName":"ruleEnabled",
                                                "fieldType":"list",
                                                "fieldSequence":2,
                                                "fieldValueList":[
                                                    "1"
                                                ]
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportSuccess":{
                                        "summary":"Sample paginated report response",
                                        "description":"ReportSuccess",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":2,
                                            "count":2,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                                "ruleId",
                                                "ruleName",
                                                "ruleState",
                                                "ruleEnabled",
                                                "studyMode"
                                            ],
                                            "data":[
                                                [
                                                    "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                    "Visit Start Date Validation",
                                                    "approved",
                                                    "1",
                                                    "test"
                                                ],
                                                [
                                                    "90C7669C40BF4371B71E8EB26851B8AD",
                                                    "Overdue Signature Reminder",
                                                    "publish",
                                                    "1",
                                                    "production"
                                                ]
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Invalid search specification. Returned when the request body omits required filters or supplies unsupported field names or data types.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportRequestInvalid":{
                                        "summary":"Invalid filters supplied",
                                        "description":"ReportRequestInvalid",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Unexpected processing failure while compiling the report results. Indicates a downstream data-service error or database issue.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "ReportServerError":{
                                        "summary":"Unexpected error executing report",
                                        "description":"ReportServerError",
                                        "value":{
                                            "hasMore":"false",
                                            "totalResults":0,
                                            "count":0,
                                            "limit":25,
                                            "offset":0,
                                            "columns":[
                                            ],
                                            "data":[
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-rule-designer-svc-rest-v6.0-studies-{studyId}-{mode}-report-{reportName}-post",
                "x-filename-id":"ec-rule-designer-svc-rest-v6.0-studies-studyid-mode-report-reportname-post"
            }
        },
        "/ec-rule-designer-svc/rest/v6.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"v6.0",
                "description":"Version 6.0 updates multiple rules in a single transaction. Compared to version 5.0 it enables the performance-optimized execution path controlled by ENABLE_PERF_IMPROVEMENT while maintaining compatibility with existing payload validation.",
                "operationId":"UpdateRulesBulk_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV6"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV6":{
                                    "summary":"BulkUpdateRulesDTOV6Example",
                                    "description":"BulkUpdateRulesDTOV6",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date.",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate"
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "mapRelation":"N"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v6.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v6.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-rule-designer-svc/rest/v6.0/rule/studies/{studyId}/{mode}/ruleId/{ruleId}":{
            "get":{
                "tags":[
                    "Rule Designer/Rule Management/Get rule by rule ID"
                ],
                "summary":"v6.0",
                "description":"Retrieves the rule identified by the supplied rule ID, including the execution summary required by the orchestration service. Compared to v5.0, v6.0 adds job tracking fields and the origin metadata required by the asynchronous publish pipeline. This benefits users by improving publish-tracking visibility during operational support.",
                "operationId":"getRulesById_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"ruleId",
                        "in":"path",
                        "description":"Rule identifier. Required for path parameters targeting a single rule; optional when used as a query filter.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "Rule Details for given RuleId":{
                                        "summary":"Example response for a successful rules request",
                                        "description":"Rule Details for given RuleId",
                                        "value":{
                                            "status":"success",
                                            "result":{
                                                "message":"Operation completed successfully.",
                                                "processedCount":2
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the supplied parameters fail validation or use an unsupported combination of filter values.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when no data is available for the supplied study context or identifiers.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "status":"failed",
                                            "result":{
                                                "message":"Rule could not be processed."
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v6.0-rule-studies-{studyId}-{mode}-ruleId-{ruleId}-get",
                "x-filename-id":"ec-rule-designer-svc-rest-v6.0-rule-studies-studyid-mode-ruleid-ruleid-get"
            }
        },
        "/ec-rule-designer-svc/rest/v7.0/rule/studies/{studyId}/{mode}/bulkupdate":{
            "put":{
                "tags":[
                    "Rule Designer/Rule Management/Update rules in bulk"
                ],
                "summary":"v7.0",
                "description":"Updates multiple rules within a study in a single transaction. Compared to v6.0, v7.0 supports rule origin auditing, enforces UUID string validation on each operand, and records asynchronous job identifiers for downstream monitoring. This benefits users by improving auditability and operational traceability for bulk updates.",
                "operationId":"UpdateRulesBulk_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Unique study identifier supplied as a UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                        "required":true,
                        "schema":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode determines the data segment being managed. Allowed values: design (draft configuration workspace), test (UAT sandbox), training (sandbox for practice data), production (live subject data).",
                        "required":true,
                        "schema":{
                            "maxLength":10,
                            "minLength":4,
                            "type":"string",
                            "description":"Value of the study data segment being managed. Choose one of: design (draft workspace), test (UAT sandbox), training (practice environment), production (live data).",
                            "example":"test",
                            "enum":[
                                "design",
                                "test",
                                "training",
                                "production"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"Request body containing information about all rules for which they need to created or updated",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/BulkUpdateRulesDTOV6"
                            },
                            "examples":{
                                "BulkUpdateRulesDTOV6":{
                                    "summary":"BulkUpdateRulesDTOV6Example",
                                    "description":"BulkUpdateRulesDTOV6",
                                    "value":{
                                        "rules":[
                                            {
                                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                                "ruleRefName":"VISIT_START_DATE_VALIDATION",
                                                "ruleName":"Visit Start Date Validation",
                                                "ruleExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleJSExpression":"if(var1 != null){ return true; } return false;",
                                                "ruleVersionNumber":3,
                                                "ruleDescription":"Validates visit start date before allowing progression.",
                                                "ruleState":"approved",
                                                "ruleValidationStatus":"true",
                                                "ruleValidationMessage":"Rule validated successfully.",
                                                "ruleOriginalType":"user rule",
                                                "isLibrary":false,
                                                "ruleEnabled":1,
                                                "ruleDeleted":0,
                                                "studyVersion":"3.2.0.18",
                                                "actions":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "ruleActionTypeName":"auto query",
                                                        "ruleActionOrder":1,
                                                        "ruleActionDescription":"Open a query when validation fails.",
                                                        "ruleActionParams":"Please verify visit start date.",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate"
                                                    }
                                                ],
                                                "operands":[
                                                    {
                                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                                        "(Optional)eventInstanceNumber":1,
                                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                                        "itemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                        "propertyType":"visit",
                                                        "propertyName":"visitStartDate",
                                                        "operandName":"var1",
                                                        "dataType":"Text",
                                                        "eventRefName":"SCREENING",
                                                        "formRefName":"DEMO_FORM",
                                                        "itemRefName":"VISIT_START_DATE",
                                                        "mapRelation":"N"
                                                    }
                                                ],
                                                "async":0
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Bulk rule update was successful.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "Bulk Update Rules Success Response":{
                                        "summary":"Example response for a successful bulk update rules request",
                                        "description":"Bulk Update Rules Success Response",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Success",
                                            "ruleValidationMessage":"Rule updated successfully.",
                                            "ruleValidationStatus":true,
                                            "httpErrorCode":200,
                                            "httpErrorMessage":"Success",
                                            "result":{
                                                "status":"success",
                                                "result":{
                                                    "message":"Rule updated successfully."
                                                }
                                            },
                                            "error":null
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request payload is missing required fields, supplies invalid identifiers, or otherwise fails validation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "BadRequest":{
                                        "description":"BadRequest",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the service encounters an unexpected server-side error while processing the request.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RDSRestUnifiedResponseDTO"
                                },
                                "examples":{
                                    "ServerError":{
                                        "description":"ServerError",
                                        "value":{
                                            "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                            "ruleName":"Visit Start Date Validation",
                                            "jobId":"5F3B2C7890D3413F8C1D019BFB290F34",
                                            "jobStatus":"Failed",
                                            "ruleValidationMessage":"Rule expression cannot be empty.",
                                            "ruleValidationStatus":false,
                                            "httpErrorCode":400,
                                            "httpErrorMessage":"Bad Request",
                                            "result":null,
                                            "error":{
                                                "status":"failed",
                                                "result":null,
                                                "errorCode":"JSON-004",
                                                "errorMessage":"Rule expression is required.",
                                                "details":null
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "security":[
                    {
                        "Rule Designer Service":[
                        ]
                    }
                ],
                "x-internal-id":"ec-rule-designer-svc-rest-v7.0-rule-studies-{studyId}-{mode}-bulkupdate-put",
                "x-filename-id":"ec-rule-designer-svc-rest-v7.0-rule-studies-studyid-mode-bulkupdate-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/dispense/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get titration dispensation data"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all data needed to define dispensation of kit type titration. For example, list of assignable visits, treatment arms and randomization designs.",
                "operationId":"assignKitTypeTitration_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-dispense-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-design-visits-visitid-dispense-kits-kitid-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/randomizations/{randomizationId}":{
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Assign randomization to visit"
                ],
                "summary":"V1.0",
                "description":"Assigns a randomization to a visit. Use the latest supported visit design endpoint in v17.0 for current behavior.",
                "operationId":"assignRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomizationId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-randomizations-{randomizationId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-design-visits-visitid-randomizations-randomizationid-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get visit design assignments"
                ],
                "summary":"V1.0",
                "description":"Retrieves visit design assignments for the study version. Use the latest supported visit design endpoint in v17.0 for current behavior.",
                "operationId":"getVisitDesign_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "getVisitDesignV1Response":{
                                        "description":"getVisitDesignV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "randomizationId":"A1B8327AFAA6412287106192AB5984EF"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/validate/assign/kits/{kitId}":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Assign kit type titration to a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Validates assigning kit type titration to a visit.",
                "operationId":"validateAssignKitTypeTitration_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-validate-assign-kits-{kitId}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-design-visits-visitid-validate-assign-kits-kitid-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/validate/assign/randomization/{randomizationId}":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Validate assigning randomization"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Validates assigning randomization design to a visit.",
                "operationId":"validateAssignRandomization_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomizationId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-validate-assign-randomization-{randomizationId}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-design-visits-visitid-validate-assign-randomization-randomizationid-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/kits/names":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of kit names in a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves list of kit names in a study version.",
                "operationId":"getStudyKitNames_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitTypeIdDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-kits-names-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-kits-names-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits for all study versions in Testing, Approved and Archived states.",
                "operationId":"getStudyNonDraftKitDesc_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDescDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/arms":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/List treatment arms"
                ],
                "summary":"V1.0",
                "description":"Retrieves treatment arms for the study version. Use the latest supported arm endpoint in v17.0 for current behavior and metadata.",
                "operationId":"getArms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmDtoV1"
                                    }
                                },
                                "examples":{
                                    "listArmsV1Response":{
                                        "description":"listArmsV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"B1B8327AFAA6412287106192AB5984EF",
                                                    "name":"Arm A"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-get"
            },
            "post":{
                "tags":[
                    "Designer/Treatment Arms APIs/Create treatment arm"
                ],
                "summary":"V1.0",
                "description":"Creates a treatment arm for the study version. Use the latest supported arm endpoint in v17.0 for current behavior.",
                "operationId":"addArm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Treatment arm payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ArmDtoV1"
                            },
                            "examples":{
                                "createArmV1Request":{
                                    "description":"createArmV1Request",
                                    "value":{
                                        "name":"Arm A",
                                        "refname":"ARM_A"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ArmDtoV1"
                                },
                                "examples":{
                                    "createArmV1Response":{
                                        "description":"createArmV1Response",
                                        "value":{
                                            "result":{
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Arm A"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/arms/{armId}":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get treatment arm by ID"
                ],
                "summary":"V1.0",
                "description":"Retrieves one treatment arm by ID for a study version. Use the latest supported arm endpoint in v17.0 for current behavior.",
                "operationId":"getArm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ArmDtoV1"
                                },
                                "examples":{
                                    "getArmV1Response":{
                                        "description":"getArmV1Response",
                                        "value":{
                                            "result":{
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Arm A"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-{armId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-armid-get"
            },
            "put":{
                "tags":[
                    "Designer/Treatment Arms APIs/Update treatment arm"
                ],
                "summary":"V1.0",
                "description":"Updates a treatment arm for the study version. Use the latest supported arm endpoint in v17.0 for current behavior.",
                "operationId":"updateArm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Treatment arm payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/ArmDtoV1"
                            },
                            "examples":{
                                "updateArmV1Request":{
                                    "description":"updateArmV1Request",
                                    "value":{
                                        "name":"Arm A Updated",
                                        "refname":"ARM_A"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ArmDtoV1"
                                },
                                "examples":{
                                    "updateArmV1Response":{
                                        "description":"updateArmV1Response",
                                        "value":{
                                            "result":{
                                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                                "name":"Arm A Updated"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-{armId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-armid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Treatment Arms APIs/Delete treatment arm"
                ],
                "summary":"V1.0",
                "description":"Deletes a treatment arm from the study version. Use the latest supported arm endpoint in v17.0 for current behavior.",
                "operationId":"deleteArm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ArmDtoV1"
                                },
                                "examples":{
                                    "deleteArmV1Response":{
                                        "description":"deleteArmV1Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-{armId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-armid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/List arm dispensings"
                ],
                "summary":"V1.0",
                "description":"Retrieves arm dispensing assignments. Use the latest supported arm endpoint in v17.0 for current behavior.",
                "operationId":"getDispensings_26",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "listArmDispensingsV1Response":{
                                        "description":"listArmDispensingsV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "armId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/codelist/{codeListId}/linkedformsummary":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get linked form summary"
                ],
                "summary":"V1.0",
                "description":"Returns linked form summary for a code list within a study.",
                "operationId":"getLinkedFormSummary_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"Code List Id",
                        "in":"path",
                        "description":"Code List Id Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"codeListId",
                        "in":"path",
                        "description":"Code list ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-codelist-{codeListId}-linkedformsummary-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-codelist-codelistid-linkedformsummary-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/cohorts":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Cohorts/Get a list of all active cohorts in a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of all cohorts in a study. You can retrieve this list by study ID.",
                "operationId":"getCohorts_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode to filter cohorts.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-cohorts-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-cohorts-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Optional visit ID (UUID, 32-character uppercase hexadecimal string) where randomization was assigned. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of dispensation mappings to create or update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                }
                            },
                            "examples":{
                                "updateDispensingsV1Request":{
                                    "description":"updateDispensingsV1Request",
                                    "value":[
                                        {
                                            "armId":"B1B8327AFAA6412287106192AB5984EF",
                                            "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_25",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV1"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead.  Adds a form in a study version.",
                "operationId":"addForm_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form to add",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV1"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/visits":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Bulk assign forms to visits"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Assigns forms to visits in bulk, preserving any previous assignments.",
                "operationId":"addFormToVisits_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of form visits",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitsDtoV1"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "addFormToVisitsV1Response":{
                                        "description":"addFormToVisitsV1Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-visits-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/copyForms":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Copy forms in bulk"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Copies all the forms passed in request to the given study and version.",
                "operationId":"bulkFormCopy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Bulk copy of forms",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CopyFormsV1"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CopyFormsResponse"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-copyForms-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-copyforms-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific form in a study version.",
                "operationId":"getForm_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV1"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a specific form in a study version.",
                "operationId":"updateForm_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV1"
                            },
                            "examples":{
                                "updateFormV1Request":{
                                    "description":"updateFormV1Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV1"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a specific form in a study version.",
                "operationId":"deleteForm_14",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV1"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/associateForms":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Get associated forms"
                ],
                "summary":"V1.0",
                "description":"Returns associated forms impacted by copy mappings. Use the latest supported forms API in v17.0 for current behavior.",
                "operationId":"getAssociateForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of all forms which needs to be copied to current study and version.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CopyFormsV1"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-associateForms-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-associateforms-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/numericItems":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get forms and questions used in dosing calculations"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms and questions used in dosing calculations in a study.",
                "operationId":"getNumericForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV1"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-numericItems-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-numericitems-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV1"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV1"
                            },
                            "examples":{
                                "createKitV1Request":{
                                    "description":"createKitV1Request",
                                    "value":{
                                        "title":"Dose Pack A",
                                        "refname":"KIT_A"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV1"
                            },
                            "examples":{
                                "updateKitV1Request":{
                                    "description":"updateKitV1Request",
                                    "value":{
                                        "title":"Dose Pack A Updated",
                                        "refname":"KIT_A"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a kit type from a study.",
                "operationId":"deleteKit_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/kits/kitsonly":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all investigational product kits and devices"
                ],
                "summary":"V1.0",
                "description":"Retrieves list of all investigational product kits and devices in the study.",
                "operationId":"getAllKitOnly_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-kitsonly-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-kitsonly-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/{formId}/previewFormNotification":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Preview/Send a notification to preview a form"
                ],
                "summary":"V1.0",
                "description":"Preview Form Notification.",
                "operationId":"notify_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Preview form notification request payload. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/WelcomeDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "message":"Welcome to Clinical One Design",
                                        "tenant":"DESIGN"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/WelcomeDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-previewFormNotification-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-previewformnotification-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Randomization Factors/Get all active factors in a study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of Study factors. You can retrieve this list by study mode and RandType.",
                "operationId":"getRandFactors_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode to filter factors.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Rand Algorithim to filter factors.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "stratum",
                                "cohort",
                                "minimization",
                                "all"
                            ]
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationFactorsV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all randomization designs for a study version.",
                "operationId":"getRandomizations_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates a new randomization design in a study version.",
                "operationId":"addRandomization_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV1"
                            },
                            "examples":{
                                "createRandomizationV1Request":{
                                    "description":"createRandomizationV1Request",
                                    "value":{
                                        "name":"RAND_A",
                                        "algorithm":"STRATUM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get a randomization design"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a randomization design for a study version.",
                "operationId":"getRandomization_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV1"
                            },
                            "examples":{
                                "updateRandomizationV1Request":{
                                    "description":"updateRandomizationV1Request",
                                    "value":{
                                        "name":"RAND_A_UPDATED",
                                        "algorithm":"STRATUM"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Delete randomization design"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a randomization design from a study version within a study.",
                "operationId":"deleteRandomization_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizationRatios":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of treatment arm ratios associated with all cohort or stratum groups in a randomization design.",
                "operationId":"getRandomizationsList_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationsGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"object"
                                },
                                "examples":{
                                    "noContentResponse":{
                                        "description":"noContentResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizationRatios-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizationratios-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/tracking/rollback/{trackingId}":{
            "post":{
                "tags":[
                    "Designer/Rollback APIs/Rollback tracked transaction"
                ],
                "summary":"V1.0",
                "description":"Creates a rollback tracked transaction.",
                "operationId":"trackingRollback_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"trackingId",
                        "in":"path",
                        "description":"Tracking ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A3B4C5D6E7F84901AB23CD45EF678901"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RollbackDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "status":"completed",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-tracking-rollback-{trackingId}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-tracking-rollback-trackingid-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/tracking/start":{
            "post":{
                "tags":[
                    "Designer/Rollback APIs/Start tracking transaction"
                ],
                "summary":"V1.0",
                "description":"Creates a start-tracking transaction.",
                "operationId":"trackingStart_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RollbackDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "status":"completed",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-tracking-start-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-tracking-start-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/tracking/stop/{trackingId}":{
            "post":{
                "tags":[
                    "Designer/Rollback APIs/Stop tracking transaction"
                ],
                "summary":"V1.0",
                "description":"Creates a stop-tracking transaction.",
                "operationId":"trackingStop_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"trackingId",
                        "in":"path",
                        "description":"Tracking ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"A3B4C5D6E7F84901AB23CD45EF678901"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RollbackDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "status":"completed",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-tracking-stop-{trackingId}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-tracking-stop-trackingid-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/strata":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get all active strata in a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of study strata. You can retrieve this list by study mode.",
                "operationId":"getStrata_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode to filter strata.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-strata-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-strata-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/studyDesign":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Visit details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignMapperV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/lock":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Lock/Get study lock"
                ],
                "summary":"V1.0",
                "description":"Get a lock for a study.",
                "operationId":"getStudyLockResponse_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-lock-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-lock-get"
            },
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Lock/Update study lock"
                ],
                "summary":"V1.0",
                "description":"Update a lock for a study.",
                "operationId":"updateLock_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-lock-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-lock-put"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Lock/Create study lock"
                ],
                "summary":"V1.0",
                "description":"Create a lock for a study.",
                "operationId":"createLock_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-lock-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-lock-post"
            },
            "delete":{
                "tags":[
                    "Designer/Study APIs/Study Lock/Delete study lock"
                ],
                "summary":"V1.0",
                "description":"Delete a lock for a study.",
                "operationId":"deleteLock_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-lock-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-lock-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/studyMetadata":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Metadata APIs/Get metadata of a specified study ID and study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves metadata for a specified study ID and study version.",
                "operationId":"getStudy_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Format for the study metadata",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "unique",
                                "casebook"
                            ]
                        },
                        "example":"unique"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Study"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-studyMetadata-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-studymetadata-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a list of all studies"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of the latest studies in your system.",
                "operationId":"queryStudies_3",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Add study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Add a study in your system.",
                "operationId":"addStudy_4",
                "requestBody":{
                    "description":"Study payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/{formId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check form in study version"
                ],
                "summary":"V1.0",
                "description":"Check a specific form in a study version placed in a Testing or Approved state.",
                "operationId":"checkStudyForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"inclDraft",
                        "in":"query",
                        "description":"Include draft entities in validation. Optional. Allowed values: \"Y\" to include drafts, \"N\" (default) to exclude drafts.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-{formId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/{formId}/items/{formItemId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check form item existence in study."
                ],
                "summary":"V1.0",
                "description":"Check a specific form item existence in any testing or approved study version.",
                "operationId":"checkStudyFormItem_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formItemId",
                        "in":"path",
                        "description":"Form item ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344"
                    },
                    {
                        "name":"inclDraft",
                        "in":"query",
                        "description":"Include draft entities in validation. Optional. Allowed values: \"Y\" to include drafts, \"N\" (default) to exclude drafts.",
                        "schema":{
                            "type":"string",
                            "default":"N"
                        },
                        "example":"N"
                    },
                    {
                        "name":"filterOutCondition",
                        "in":"query",
                        "description":"Condition used to exclude matching items from validation. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"status!=DRAFT"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-{formId}-items-{formItemId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formid-items-formitemid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/visits/{visitId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check visit in study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Checks a specific visit in a study version placed in a Testing or Approved state.",
                "operationId":"checkStudyVisit_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-visits-{visitId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-visits-visitid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/cloneSystemCodelist":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Clone system codelist"
                ],
                "summary":"V1.0",
                "description":"Clones the system codelist for the study.",
                "operationId":"cloneSystemCodeList_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"httpMethod",
                        "in":"query",
                        "description":"httpMethod , which is required to identify whether it's create/update action and update the corresponding statuses while cloning the sytem codelist",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"POST"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-cloneSystemCodelist-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-clonesystemcodelist-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms.",
                "operationId":"fetchAllForms_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get coding questions in all forms"
                ],
                "summary":"V1.0",
                "description":"Retrieves all forms with coding questions in non-draft SVs mode.",
                "operationId":"getAllFormsWithCodeQueInNonDraftSV_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/allstudiesforms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get all study forms"
                ],
                "summary":"V1.0",
                "description":"Retrieves all the forms of the latest study version of other studies.",
                "operationId":"getAllStudiesForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"otherStudy",
                        "in":"query",
                        "description":"OtherStudy, which can have the value all, or otherStudy ID. It defaults to value first in the absence of query param.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"first"
                        },
                        "example":1
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AllStudiesFormsDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-allstudiesforms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-allstudiesforms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/approved/objectids":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get IDs of all artifacts in an approved study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of IDs of all artifacts in a specified approved study. An artifact refers to anything that belongs to the study design, for example: forms, randomization, treatment arm, kits, etc.",
                "operationId":"getApprovedIds_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"all",
                        "in":"query",
                        "description":"Include all study artifacts. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"arms",
                        "in":"query",
                        "description":"Include treatment arms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"kits",
                        "in":"query",
                        "description":"Include kits. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"rands",
                        "in":"query",
                        "description":"Include randomization. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Include forms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"items",
                        "in":"query",
                        "description":"Include items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"visits",
                        "in":"query",
                        "description":"Include visits. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"calculateddoses",
                        "in":"query",
                        "description":"Include calculated doses. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"cohorts",
                        "in":"query",
                        "description":"Include cohorts and cohort factors. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"inclEverApproved",
                        "in":"query",
                        "description":"Include study artifacts that were ever approved. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-approved-objectids-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-approved-objectids-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/arms":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get list of treatment arms for all study versions"
                ],
                "summary":"V1.0",
                "description":"Retrieves list of treatment arms for all study versions.",
                "operationId":"getArms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"includeAllSubjects",
                        "in":"query",
                        "description":"Include dummy entry for all subjects along with all treatment arms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter arms.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-arms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-arms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/{mode}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get a list of study forms"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of forms in a study.",
                "operationId":"queryStudyForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode to filter study forms.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormSummaryDTOV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-{mode}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-mode-forms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/approved/choiceoptions":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get options of all choice items in the latest approved version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves options of all choice items in the latest approved version.",
                "operationId":"getLatestApprovedChoiceOptions_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormOptionDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-approved-choiceoptions-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-approved-choiceoptions-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/objectids":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get IDs of all artifacts in a study in a specific mode"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of IDs of all artifacts in a study in the specified mode: Testing, Approved and/or Archived. An artifact refers to anything that belongs to the study design, for example: forms, randomization, treatment arm, kits, etc.",
                "operationId":"getObjectIds_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studymode",
                        "in":"query",
                        "description":"Study modes to search for artifacts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active",
                                    "all"
                                ]
                            }
                        },
                        "example":"active"
                    },
                    {
                        "name":"archived",
                        "in":"query",
                        "description":"Include the archived versions of a study in a specified mode. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    },
                    {
                        "name":"all",
                        "in":"query",
                        "description":"Include all study artifacts. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Include forms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"items",
                        "in":"query",
                        "description":"Include form items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-objectids-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-objectids-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/hasRandomization":{
            "post":{
                "tags":[
                    "Designer/Study Version APIs/Get list of combination of study version and boolean representing the existence of randomization"
                ],
                "summary":"V1.0",
                "description":"Retrieves the list of study versions take a list of study versions and return true or false in the response for each study version.",
                "operationId":"getRandomizationsExistanceByStudyIds_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions list Exemple : 1.0.0.1 ,1.0.0.3 Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "1.0.0.1",
                                        "1.0.0.2"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVersionsRandomizationDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-hasRandomization-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-hasrandomization-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: \"1.0.0.1\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/studycopystatus":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get study rule copy status"
                ],
                "summary":"V1.0",
                "description":"Get a list of copy studies that logged in user has access to along with their statuses.",
                "operationId":"getStudyRulesCopyStatus_1",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyCopyStatusDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-studycopystatus-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studycopystatus-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/statusessummary":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses summary of a study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses summary for a specified study ID.",
                "operationId":"getStudyStatusesSummary_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-statusessummary-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-statusessummary-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/formitems":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all form items in a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all form items in a form by mode.",
                "operationId":"queryBulkFormsItems_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"itemType",
                        "in":"query",
                        "description":"Form item types to include in the response. Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"instructionalText"
                    }
                ],
                "requestBody":{
                    "description":"ItemIds for Choice Options Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-formitems-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formitems-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/{formId}/choiceoptions":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get options of all choice items by study mode and form ID(s)."
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves options of all choice items by study mode and form ID(s).",
                "operationId":"queryChoiceOptions_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of form item IDs to include in choice option lookup. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormOptionDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-{formId}-choiceoptions-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formid-choiceoptions-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/{formId}/formitems":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all form items in a form by form ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all form items in a form by ID.",
                "operationId":"queryFormItems_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"itemType",
                        "in":"query",
                        "description":"Form item types to include in the response. Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"instructionalText"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-{formId}-formitems-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formid-formitems-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/identity":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get study identity based on protocol ID"
                ],
                "summary":"V1.0",
                "description":"Retrieves a study's identity based on protocol ID.",
                "operationId":"queryIdentity_1",
                "parameters":[
                    {
                        "name":"protocolId",
                        "in":"query",
                        "description":"Study protocol ID (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"PROTOCOL_001"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyIdentityDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-identity-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-identity-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/maxversion/tenant":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get maximum study versions of a tenant"
                ],
                "summary":"V1.0",
                "description":"Get list of latest version of studies by tenant name.",
                "operationId":"queryMaxVersionStudiesForTenant_1",
                "parameters":[
                    {
                        "name":"tenant",
                        "in":"query",
                        "description":"Tenant identifier. Optional. If omitted, current request tenant context is used.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"acme"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-maxversion-tenant-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-maxversion-tenant-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/tenant":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get latest study versions of a tenant"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of all study versions. You can get this list based on a tenant's name.",
                "operationId":"queryStudiesForTenant_1",
                "parameters":[
                    {
                        "name":"tenant",
                        "in":"query",
                        "description":"Tenant name Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"acme"
                    },
                    {
                        "name":"study",
                        "in":"query",
                        "description":"Study name Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"CardioStudy01"
                    },
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-tenant-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-tenant-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/all":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all study versions of multiple tenants"
                ],
                "summary":"V1.0",
                "description":"Retrieves a list of all study versions of the specified tenants.",
                "operationId":"queryStudiesForTenants_1",
                "parameters":[
                    {
                        "name":"tenants",
                        "in":"query",
                        "description":"List of tenants name Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"acme"
                    },
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-all-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-all-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/{mode}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/List visits for a form by study mode"
                ],
                "summary":"V1.0",
                "description":"Retrieves visits where the specified form is present for a given study mode (test, training, active).",
                "operationId":"queryStudyFormVisits_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode to filter study form visits.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitDTOv1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-{mode}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-mode-forms-formid-visits-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/state":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a study's status"
                ],
                "summary":"V1.0",
                "description":"Retrieves the status of a study.",
                "operationId":"queryStudyState_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyStateDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-state-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-state-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update existing study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates an existing study.",
                "operationId":"updateStudy_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study payload to update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/studycopystatus":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update study rule copy status"
                ],
                "summary":"V1.0",
                "description":"Update study rule copy status for the targetted study.",
                "operationId":"updateStudyRulesCopyStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study copy status update payload. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyCopyStatusDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Design Item"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyCopyStatusDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-studycopystatus-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-studycopystatus-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/state/{statedata}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update a study's state"
                ],
                "summary":"V1.0",
                "description":"Updates status of a specified study.",
                "operationId":"updateStudyState_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"statedata",
                        "in":"path",
                        "description":"Study State. Example: \"ACTIVE\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"ACTIVE"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyStateDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-state-{statedata}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-state-statedata-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versionshistory/asofdate/{asofdate}":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get history of all versions for a study as of a certain date"
                ],
                "summary":"V1.0",
                "description":"Retrieves the history of all versions for a study as of a certain date.",
                "operationId":"getStudyVersionsHistory_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"asofdate",
                        "in":"path",
                        "description":"As of date parameter in the format yyyy-mm-ddTHH24:MI:SS",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2024-01-15T10:30:00"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVersionHistoryDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versionshistory-asofdate-{asofdate}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versionshistory-asofdate-asofdate-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions":{
            "get":{
                "tags":[
                    "Designer/Versions APIs/Get list of study versions"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of versions for a specified study.",
                "operationId":"getVersions_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VersionDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-get"
            },
            "post":{
                "tags":[
                    "Designer/Versions APIs/Add study version"
                ],
                "summary":"V1.0",
                "description":"Adds versions for a specific study.",
                "operationId":"addVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Study payload used to add a new draft version. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Design Item"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}":{
            "get":{
                "tags":[
                    "Designer/Versions APIs/Get version of a study"
                ],
                "summary":"V1.0",
                "description":"Retrieves a single version for a specified study.",
                "operationId":"getSingleVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VersionDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-get"
            },
            "put":{
                "tags":[
                    "Designer/Versions APIs/Update study version"
                ],
                "summary":"V1.0",
                "description":"Updates a specified study's version.",
                "operationId":"updateVersion_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"The study payload used to update version/title",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/JsonNode"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV3"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-put"
            },
            "delete":{
                "tags":[
                    "Designer/Versions APIs/Delete study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a study's version.",
                "operationId":"deleteStudy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/status/{state}/async":{
            "put":{
                "tags":[
                    "Designer/Versions APIs/Update status of study version asynchronously"
                ],
                "summary":"V1.0",
                "description":"Updates status of a specific study version asynchronously.",
                "operationId":"movingStudyVersionOrchestrator_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version ID",
                        "required":true,
                        "schema":{
                            "pattern":"^([0-9]+(\\.[0-9]+){3})$",
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"state",
                        "in":"path",
                        "description":"Target study version state. Required.",
                        "required":true,
                        "schema":{
                            "pattern":"^[a-zA-Z][a-zA-Z_]+[a-zA-Z]$",
                            "type":"string"
                        },
                        "example":"testing"
                    }
                ],
                "requestBody":{
                    "description":"The study version",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VersionDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-status-{state}-async-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-status-state-async-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/revert":{
            "put":{
                "tags":[
                    "Designer/Versions APIs/Remove duplicate study version"
                ],
                "summary":"V1.0",
                "description":"Removes duplicate data for a specific study version.",
                "operationId":"removeDuplicateVersionData_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-revert-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-revert-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/status/{state}":{
            "put":{
                "tags":[
                    "Designer/Versions APIs/Update status of study version"
                ],
                "summary":"V1.0",
                "description":"Updates status of a specific study version.",
                "operationId":"updateStudyVersionStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "pattern":"^([0-9]+(\\.[0-9]+){3})$",
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"state",
                        "in":"path",
                        "description":"Target study version state. Required.",
                        "required":true,
                        "schema":{
                            "pattern":"^[a-zA-Z][a-zA-Z_]+[a-zA-Z]$",
                            "type":"string"
                        },
                        "example":"testing"
                    }
                ],
                "requestBody":{
                    "description":"Study version payload used during status update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyVersionDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-status-{state}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-status-state-put"
            },
            "post":{
                "tags":[
                    "Designer/Versions APIs/Set status of study version"
                ],
                "summary":"V1.0",
                "description":"Sets a status for a specific study version.",
                "operationId":"setStudyVersionStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version id",
                        "required":true,
                        "schema":{
                            "pattern":"^([0-9]+(\\.[0-9]+){3})$",
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"state",
                        "in":"path",
                        "description":"Target study version state. Required.",
                        "required":true,
                        "schema":{
                            "pattern":"^[a-zA-Z][a-zA-Z_]+[a-zA-Z]$",
                            "type":"string"
                        },
                        "example":"testing"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-status-{state}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-status-state-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get study visit schedule"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule in a study.",
                "operationId":"getVisitSchedule_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-schedule-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Update visit schedule"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use this other API instead: /{visitid}/schedule/{fromEventRefId} - Updates visit schedule in your study.",
                "operationId":"updateVisitSchedule_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload to update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-schedule-put"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Create visit schedule"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use this other API instead: /{visitid}/schedule/{fromEventRefId} - Creates a visit schedule for your study.",
                "operationId":"createVisitSchedule_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-schedule-post"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Clear visit schedule"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. /{visitid}/schedule/{fromEventRefId} - Removes visit schedule from your study.",
                "operationId":"clearVisitSchedule_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-schedule-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload to update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings/hasTitration":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Identify if a visit contains a kit type titration"
                ],
                "summary":"V1.0",
                "description":"Identifies if a visit contains a kit type titration.",
                "operationId":"getHasDispensing_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-hasTitration-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-dispensings-hastitration-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/branches":{
            "get":{
                "tags":[
                    "Designer/Branch APIs/Get a list of study branches"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of branches in a study.",
                "operationId":"getBranches_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-branches-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-branches-get"
            },
            "post":{
                "tags":[
                    "Designer/Branch APIs/Add a branch"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Adds a branch in your study.",
                "operationId":"addBranch_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit branch payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitBranchDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-branches-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-branches-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/branches/{branchid}":{
            "get":{
                "tags":[
                    "Designer/Branch APIs/Get study branch"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a branch in a study.",
                "operationId":"getBranch_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitBranchDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-branches-{branchid}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-branches-branchid-get"
            },
            "put":{
                "tags":[
                    "Designer/Branch APIs/Update a branch"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a branch in your study.",
                "operationId":"updateBranch_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Visit branch payload to update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitBranchDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-branches-{branchid}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-branches-branchid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Branch APIs/Delete a branch"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a branch from your study.",
                "operationId":"deleteBranch_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-branches-{branchid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-branches-branchid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/visitsforms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get all visits, forms, and questions by study ID"
                ],
                "summary":"V1.0",
                "description":"Get all visits, forms, questions by a study ID and one or more study versions.",
                "operationId":"queryVisitsForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"versions",
                        "in":"query",
                        "description":"comma separated list of study version numbers.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1,1.0.0.2"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsFormsQuestionsDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-visitsforms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-visitsforms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/visitsMetadata":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Metadata/Get the metadata of specified visits by study ID and study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves metadata for specified visits in different study versions.",
                "operationId":"queryVisitsForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Study version visit details. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ODM1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-visitsMetadata-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-visitsmetadata-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/report/{reportName}":{
            "post":{
                "tags":[
                    "Designer/Reporting APIs/Generate study design reports"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves study-design data in paginated format based on the selected report name and filters. Access requires the StudyDesignReportPost permission.",
                "operationId":"generateDesignerReport_3",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"The report section name",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "DESIGNER_VISITS_SECTION",
                                "STUDY_DESIGN_SUMMARY",
                                "DESIGNER_KITS_SECTION",
                                "DESIGNER_FORMS_SECTION",
                                "DESIGNER_KIT_DISPENSATION_SECTION",
                                "DESIGNER_RANDOMIZATION_SECTION",
                                "DESIGNER_STRATIFICATION_SECTION",
                                "DESIGNER_RANDOMIZATION_TREATMENT_ARMS",
                                "CALCULATED_DOSES",
                                "DESIGNER_COHORT_TREATMENT_ARMS",
                                "DESIGNER_DEMOGRAPHY_COHORTS",
                                "KIT_TYPE_TITRATIONS",
                                "DESIGNER_TITRATION_KIT_SETTINGS",
                                "DESIGNER_TITRATION_KIT_SETTINGS",
                                "DESIGNER_RULES_SECTION",
                                "DESIGNER_GENERAL_STUDY_SETTINGS",
                                "DESIGNER_FORMS_BY_VISITS_SECTION"
                            ]
                        },
                        "example":"DESIGNER_VISITS_SECTION"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"isLocalized",
                        "in":"query",
                        "description":"Indicates whether to localize the report data Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"fileType",
                        "in":"query",
                        "description":"Output format. Allowed values: plain (plain text output), html (rich text output). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"plain"
                        },
                        "example":"plain"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Mode of report Optional.",
                        "schema":{
                            "type":"string",
                            "default":"design"
                        },
                        "example":"design"
                    }
                ],
                "requestBody":{
                    "description":"The search filter Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "offset":0,
                                        "limit":100
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'studyId is a mandatory filter criteria', 'studyVersion is a mandatory filter criteria', 'Filter Criteria can not be empty', 'Invalid Offset', 'Invalid Limit', 'Missing Request Body'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-report-{reportName}-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-report-reportname-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/studyObjectsMapping":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get study object mappings"
                ],
                "summary":"V1.0",
                "description":"Returns study object mappings from source study to target study.",
                "operationId":"post_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Return to/from forms and visits",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RqstFromToStudyDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "fromStudyId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "toStudyId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-studyObjectsMapping-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-studyobjectsmapping-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"V10.0",
                "description":"Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV10"
                                    }
                                },
                                "examples":{
                                    "getVisitDesignV10Response":{
                                        "description":"getVisitDesignV10Response",
                                        "value":{
                                            "result":{
                                                "visitBranches":[
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV10"
                                    }
                                },
                                "examples":{
                                    "getVisitDesignV10NoContent":{
                                        "description":"getVisitDesignV10NoContent",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"V10.0",
                "description":"Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits_5",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type to query visit forms Optional.",
                        "schema":{
                            "type":"string",
                            "default":"",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "getVisitsV10Response":{
                                        "description":"getVisitsV10Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Visit 1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"V10.0",
                "description":"Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits_5",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of visits to associate with a form. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropDtov10"
                                }
                            },
                            "examples":{
                                "processFormVisitsV10Request":{
                                    "description":"processFormVisitsV10Request",
                                    "value":[
                                        {
                                            "name":"visitIds",
                                            "value":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "processFormVisitsV10Response":{
                                        "description":"processFormVisitsV10Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_26",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV11"
                                    }
                                },
                                "examples":{
                                    "listFormsV10Response":{
                                        "description":"listFormsV10Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV11"
                            },
                            "examples":{
                                "createFormV10Request":{
                                    "description":"createFormV10Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV11"
                                },
                                "examples":{
                                    "createFormV10Response":{
                                        "description":"createFormV10Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV11"
                                },
                                "examples":{
                                    "getFormV10Response":{
                                        "description":"getFormV10Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV11"
                            },
                            "examples":{
                                "updateFormV10Request":{
                                    "description":"updateFormV10Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV11"
                                },
                                "examples":{
                                    "updateFormV10Response":{
                                        "description":"updateFormV10Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV11"
                                },
                                "examples":{
                                    "deleteFormV10Response":{
                                        "description":"deleteFormV10Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov11"
                                    }
                                },
                                "examples":{
                                    "getStratificationFactorsV10Response":{
                                        "description":"getStratificationFactorsV10Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Treatment Arm"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/studyDesign":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"V10.0",
                "description":"Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Visit details.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                                }
                            },
                            "examples":{
                                "getStudyDesignV10Request":{
                                    "description":"getStudyDesignV10Request",
                                    "value":[
                                        {
                                            "version":"1.0.0.1",
                                            "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV11"
                                    }
                                },
                                "examples":{
                                    "getStudyDesignV10Response":{
                                        "description":"getStudyDesignV10Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Visit 1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/design":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Create study design visits for multiple versions"
                ],
                "summary":"V10.0",
                "description":"Creates list of visits for multiple versions in a study's design.",
                "operationId":"getVisitDesign",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of Study Versions.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "createVisitDesignV10Request":{
                                    "description":"createVisitDesignV10Request",
                                    "value":[
                                        "1.0.0.1",
                                        "1.0.0.2"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV10"
                                    }
                                },
                                "examples":{
                                    "createVisitDesignV10Response":{
                                        "description":"createVisitDesignV10Response",
                                        "value":{
                                            "result":{
                                                "1.0.0.1":{
                                                    "visitBranches":[
                                                    ]
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV10"
                                    }
                                },
                                "examples":{
                                    "createVisitDesignV10NoContent":{
                                        "description":"createVisitDesignV10NoContent",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-design-post",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-design-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V10.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode to filter forms.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV11"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV10Response":{
                                        "description":"listVisitFormsV10Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/visits":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"V10.0",
                "description":"Adds a visit in your study.",
                "operationId":"addVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"toTop",
                        "in":"query",
                        "description":"Add visit to top in branch schedule Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"copyScreeningVisit",
                        "in":"query",
                        "description":"Copy the screening event to make an identical re-screen event Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Visit payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV10"
                            },
                            "examples":{
                                "addVisitV10Request":{
                                    "description":"addVisitV10Request",
                                    "value":{
                                        "name":"Visit 1",
                                        "type":"regular"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV10"
                                    }
                                },
                                "examples":{
                                    "addVisitV10Response":{
                                        "description":"addVisitV10Response",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Visit 1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v10.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"V10.0",
                "description":"Retrieves a visit in a study.",
                "operationId":"getVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV10"
                                },
                                "examples":{
                                    "getVisitV10Response":{
                                        "description":"getVisitV10Response",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Visit 1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"V10.0",
                "description":"Updates a visit in your study.",
                "operationId":"updateVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload to update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV10"
                            },
                            "examples":{
                                "updateVisitV10Request":{
                                    "description":"updateVisitV10Request",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Visit 1 Updated",
                                        "type":"regular"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV10"
                                    }
                                },
                                "examples":{
                                    "updateVisitV10Response":{
                                        "description":"updateVisitV10Response",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Visit 1 Updated"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"V10.0",
                "description":"Removes a visit from your study.",
                "operationId":"deleteVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV10"
                                    }
                                },
                                "examples":{
                                    "deleteVisitV10Response":{
                                        "description":"deleteVisitV10Response",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "deleted":true
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v10.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v10.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms that contain tagged items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV12"
                                    }
                                },
                                "examples":{
                                    "listFormsV11Response":{
                                        "description":"listFormsV11Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV12"
                            },
                            "examples":{
                                "createFormV11Request":{
                                    "description":"createFormV11Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV12"
                                },
                                "examples":{
                                    "createFormV11Response":{
                                        "description":"createFormV11Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV12"
                                },
                                "examples":{
                                    "getFormV11Response":{
                                        "description":"getFormV11Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV12"
                            },
                            "examples":{
                                "updateFormV11Request":{
                                    "description":"updateFormV11Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV12"
                                },
                                "examples":{
                                    "updateFormV11Response":{
                                        "description":"updateFormV11Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV12"
                                },
                                "examples":{
                                    "deleteFormV11Response":{
                                        "description":"deleteFormV11Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"excludeRepeatFormItems",
                        "in":"query",
                        "description":"Exclude Repeat Form Items Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"includeAllNumberItems",
                        "in":"query",
                        "description":"Include all number items in stratification factor response. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov11"
                                    }
                                },
                                "examples":{
                                    "listStratificationFactorsV11Response":{
                                        "description":"listStratificationFactorsV11Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4A5C8D0E2F1B4D56A23C9F3A0C7D4E99",
                                                    "name":"Age Group",
                                                    "itemType":"NUMBER"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves one unblinded form. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}` for the active unblinded endpoint.",
                "operationId":"getUnblindedForm_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV12"
                                },
                                "examples":{
                                    "getUnblindedFormV11Response":{
                                        "description":"getUnblindedFormV11Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Dose Administration"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves unblinded forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded` for the active endpoint.",
                "operationId":"getUnblindedForms_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV12"
                                    }
                                },
                                "examples":{
                                    "listUnblindedFormsV11Response":{
                                        "description":"listUnblindedFormsV11Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Dose Administration"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-svc/rest/v11.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V11.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV12"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV11Response":{
                                        "description":"listVisitFormsV11Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v11.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v11.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms that contain tagged items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov13"
                                    }
                                },
                                "examples":{
                                    "listFormsV12Response":{
                                        "description":"listFormsV12Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov13"
                            },
                            "examples":{
                                "createFormV12Request":{
                                    "description":"createFormV12Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov13"
                                },
                                "examples":{
                                    "createFormV12Response":{
                                        "description":"createFormV12Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov13"
                                },
                                "examples":{
                                    "getFormV12Response":{
                                        "description":"getFormV12Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov13"
                            },
                            "examples":{
                                "updateFormV12Request":{
                                    "description":"updateFormV12Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov13"
                                },
                                "examples":{
                                    "updateFormV12Response":{
                                        "description":"updateFormV12Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov13"
                                },
                                "examples":{
                                    "deleteFormV12Response":{
                                        "description":"deleteFormV12Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"V12.0",
                "description":"Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"excludeRepeatFormItems",
                        "in":"query",
                        "description":"Exclude Repeat Form Items Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"includeAllNumberItems",
                        "in":"query",
                        "description":"Include all number items in stratification factor response. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov19"
                                    }
                                },
                                "examples":{
                                    "listStratificationFactorsV12Response":{
                                        "description":"listStratificationFactorsV12Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4A5C8D0E2F1B4D56A23C9F3A0C7D4E99",
                                                    "name":"Age Group",
                                                    "itemType":"NUMBER"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Retrieves one unblinded form. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}` for the active unblinded endpoint.",
                "operationId":"getUnblindedForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov13"
                                },
                                "examples":{
                                    "getUnblindedFormV12Response":{
                                        "description":"getUnblindedFormV12Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Dose Administration"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Retrieves unblinded forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded` for the active endpoint.",
                "operationId":"getUnblindedForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Request the lite version of the response to include form items extended properties. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov13"
                                    }
                                },
                                "examples":{
                                    "listUnblindedFormsV12Response":{
                                        "description":"listUnblindedFormsV12Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Dose Administration"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-svc/rest/v12.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V12.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov13"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV12Response":{
                                        "description":"listVisitFormsV12Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v12.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v12.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v13.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V13.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"As-of date for historical form view in YYYY-MM-DD format. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-01-15"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov13"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV13Response":{
                                        "description":"listVisitFormsV13Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v13.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v13.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v14.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms that contain tagged items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov14"
                                    }
                                },
                                "examples":{
                                    "listFormsV14Response":{
                                        "description":"listFormsV14Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov14"
                            },
                            "examples":{
                                "createFormV14Request":{
                                    "description":"createFormV14Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov14"
                                },
                                "examples":{
                                    "createFormV14Response":{
                                        "description":"createFormV14Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v14.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov14"
                                },
                                "examples":{
                                    "getFormV14Response":{
                                        "description":"getFormV14Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov14"
                            },
                            "examples":{
                                "updateFormV14Request":{
                                    "description":"updateFormV14Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov14"
                                },
                                "examples":{
                                    "updateFormV14Response":{
                                        "description":"updateFormV14Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov14"
                                },
                                "examples":{
                                    "deleteFormV14Response":{
                                        "description":"deleteFormV14Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v14.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Retrieves one unblinded form. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}` for the active unblinded endpoint.",
                "operationId":"getUnblindedForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov14"
                                },
                                "examples":{
                                    "getUnblindedFormV14Response":{
                                        "description":"getUnblindedFormV14Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Dose Administration"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-svc/rest/v14.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Retrieves unblinded forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded` for the active endpoint.",
                "operationId":"getUnblindedForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Request the lite version of the response to include form items extended properties. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov14"
                                    }
                                },
                                "examples":{
                                    "listUnblindedFormsV14Response":{
                                        "description":"listUnblindedFormsV14Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Dose Administration"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-svc/rest/v14.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V14.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"As-of date for historical form view in YYYY-MM-DD format. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-01-15"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov14"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV14Response":{
                                        "description":"listVisitFormsV14Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v14.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v14.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v15.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` instead.",
                "operationId":"getForms_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms that contain tagged items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov15"
                                    }
                                },
                                "examples":{
                                    "listFormsV15Response":{
                                        "description":"listFormsV15Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and v17 metadata mapping.",
                "operationId":"addForm_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov15"
                            },
                            "examples":{
                                "createFormV15Request":{
                                    "description":"createFormV15Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov15"
                                },
                                "examples":{
                                    "createFormV15Response":{
                                        "description":"createFormV15Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v15.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` instead.",
                "operationId":"getForm_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov15"
                                },
                                "examples":{
                                    "getFormV15Response":{
                                        "description":"getFormV15Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov15"
                            },
                            "examples":{
                                "updateFormV15Request":{
                                    "description":"updateFormV15Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov15"
                                },
                                "examples":{
                                    "updateFormV15Response":{
                                        "description":"updateFormV15Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov15"
                                },
                                "examples":{
                                    "deleteFormV15Response":{
                                        "description":"deleteFormV15Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v15.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Retrieves one unblinded form. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}` for the active unblinded form endpoint.",
                "operationId":"getUnblindedForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov15"
                                },
                                "examples":{
                                    "getUnblindedFormV15Response":{
                                        "description":"getUnblindedFormV15Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Dose Administration"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-svc/rest/v15.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Retrieves unblinded forms for a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/unblinded` for the active endpoint.",
                "operationId":"getUnblindedForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Request the lite version of the response to include form items extended properties. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov15"
                                    }
                                },
                                "examples":{
                                    "listUnblindedFormsV15Response":{
                                        "description":"listUnblindedFormsV15Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Dose Administration"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-svc/rest/v15.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V15.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"As-of date for historical form view in YYYY-MM-DD format. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-01-15"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov15"
                                    }
                                },
                                "examples":{
                                    "getVisitFormsV15Response":{
                                        "description":"getVisitFormsV15Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v15.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v15.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v16.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V16.0",
                "description":"Deprecated: Use latest version instead. Returns a specific form in v16.0 for the requested study version. Compared with v15.0, v16.0 introduces updated handling for visit-form retrieval dependencies and form metadata behavior.",
                "operationId":"getForm_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov16"
                                },
                                "examples":{
                                    "getFormV16Response":{
                                        "description":"getFormV16Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v16.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v16.0-studies-studyid-versions-version-forms-formid-get"
            }
        },
        "/ec-designer-svc/rest/v16.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V16.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"As-of date for historical form view in YYYY-MM-DD format. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-01-15"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov16"
                                    }
                                },
                                "examples":{
                                    "getVisitFormsV16Response":{
                                        "description":"getVisitFormsV16Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v16.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v16.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v17.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"V17.0",
                "description":"Returns forms for the requested study version in v17.0. Compared with v16.0, v17.0 supports richer response controls such as tagged-only filtering and dynamic-data handling in this endpoint.",
                "operationId":"getForms_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"taggedOnly",
                        "in":"query",
                        "description":"Return only forms that contain tagged items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov17"
                                    }
                                },
                                "examples":{
                                    "listFormsV17Response":{
                                        "description":"listFormsV17Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM",
                                                    "versionStart":"2025-04-30T09:24:15Z"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"V17.0",
                "description":"Creates a new form in v17.0 for the requested study version. Compared with v16.0, v17.0 aligns create behavior with v17 response mapping and extended form metadata handling.",
                "operationId":"addForm_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov17"
                            },
                            "examples":{
                                "createFormV17Request":{
                                    "description":"createFormV17Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov17"
                                },
                                "examples":{
                                    "createFormV17Response":{
                                        "description":"createFormV17Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v17.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"V17.0",
                "description":"Returns a specific form in v17.0 for the requested study version. Compared with v16.0, v17.0 improves compatibility with enhanced hidden-item behavior and dynamic-data processing.",
                "operationId":"getForm_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov17"
                                },
                                "examples":{
                                    "getFormV17Response":{
                                        "description":"getFormV17Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"V17.0",
                "description":"Updates a specific form in v17.0 for the requested study version. Compared with v16.0, v17.0 aligns update behavior with v17 form metadata and mapping expectations.",
                "operationId":"updateForm_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtov17"
                            },
                            "examples":{
                                "updateFormV17Request":{
                                    "description":"updateFormV17Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov17"
                                },
                                "examples":{
                                    "updateFormV17Response":{
                                        "description":"updateFormV17Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"V17.0",
                "description":"Deletes a specific form in v17.0 from the requested study version. Compared with v16.0, v17.0 deletion is aligned with updated form-lock and response behavior.",
                "operationId":"deleteForm_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov17"
                                },
                                "examples":{
                                    "deleteFormV17Response":{
                                        "description":"deleteFormV17Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v17.0/studies/{studyId}/versions/{version}/forms/unblinded/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get unblinded form"
                ],
                "summary":"V17.0",
                "description":"Returns one unblinded form in v17.0 for users with unblinded access. Compared with v16.0, v17.0 keeps unblinded retrieval consistent with updated dynamic-data behavior.",
                "operationId":"getUnblindedForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtov17"
                                },
                                "examples":{
                                    "getUnblindedFormV17Response":{
                                        "description":"getUnblindedFormV17Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Dose Administration"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-unblinded-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-unblinded-formid-get"
            }
        },
        "/ec-designer-svc/rest/v17.0/studies/{studyId}/versions/{version}/forms/unblinded":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List unblinded forms"
                ],
                "summary":"V17.0",
                "description":"Returns all unblinded forms in v17.0 for users with unblinded access. Compared with v16.0, v17.0 supports a more complete unblinded response configuration including lite and extended properties flags.",
                "operationId":"getUnblindedForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"includeExtProps",
                        "in":"query",
                        "description":"Request the lite version of the response to include form items extended properties. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov17"
                                    }
                                },
                                "examples":{
                                    "listUnblindedFormsV17Response":{
                                        "description":"listUnblindedFormsV17Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Dose Administration"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-forms-unblinded-get",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-forms-unblinded-get"
            }
        },
        "/ec-designer-svc/rest/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"V17.0",
                "description":"Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type for visit forms. Optional. Allowed values: summary, summaryLite, details.",
                        "schema":{
                            "type":"string",
                            "default":"summary",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite",
                                "details"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter cohorts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"As-of date for historical form view in YYYY-MM-DD format. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2025-01-15"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov17"
                                    }
                                },
                                "examples":{
                                    "getVisitFormsV17Response":{
                                        "description":"getVisitFormsV17Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v17.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v17.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/dispense/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get titration dispensation data"
                ],
                "summary":"V2.0",
                "description":"Retrieves all data needed to define dispensation of kit type titration. For example, list of assignable visits, treatment arms and randomization designs.",
                "operationId":"assignKitTypeTitration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-dispense-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-design-visits-visitid-dispense-kits-kitid-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/validate/assign/kits/{kitId}":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Assign kit type titration to a visit"
                ],
                "summary":"V2.0",
                "description":"Validates assigning kit type titration to a visit.",
                "operationId":"validateAssignKitTypeTitration",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-validate-assign-kits-{kitId}-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-design-visits-visitid-validate-assign-kits-kitid-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/validate/assign/randomization/{randomizationId}":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Validate assigning randomization"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Validates assigning randomization design to a visit.",
                "operationId":"validateAssignRandomization",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomizationId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-validate-assign-randomization-{randomizationId}-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-design-visits-visitid-validate-assign-randomization-randomizationid-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits for all study versions in Testing, Approved and Archived states.",
                "operationId":"getStudyNonDraftKitDesc",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter kits.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDescDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Visit ID where randomization was assigned (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit DTOs used to update existing study version dispensings.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"V2.0",
                "description":"Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_14",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV2"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead.  Adds a form in a study version.",
                "operationId":"addForm_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form to add",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV2"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV2"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/visits":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Bulk assign forms to visits"
                ],
                "summary":"V2.0",
                "description":"Assigns forms to visits in bulk, preserving any previous assignments.",
                "operationId":"addFormToVisits",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of form visits",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitsDtoV1"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "addFormToVisitsV2Response":{
                                        "description":"addFormToVisitsV2Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-visits-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/copyForms":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Copy forms in bulk"
                ],
                "summary":"V2.0",
                "description":"Copies all the forms passed in request to the given study and version.",
                "operationId":"bulkFormCopy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"include",
                        "in":"query",
                        "description":"Optional include filter for copy behavior. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"dependencies"
                    }
                ],
                "requestBody":{
                    "description":"List of source and target form mappings to copy. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CopyForms"
                                }
                            },
                            "examples":{
                                "copyFormsV2Request":{
                                    "description":"copyFormsV2Request",
                                    "value":[
                                        {
                                            "sourceVersion":"1",
                                            "sourceFormRefname":"DM",
                                            "targetVersion":"2"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CopyFormsResponse"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-copyForms-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-copyforms-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"V2.0",
                "description":"Retrieves a specific form in a study version.",
                "operationId":"getForm_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV2"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"V2.0",
                "description":"Updates a specific form in a study version.",
                "operationId":"updateForm_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV2"
                            },
                            "examples":{
                                "updateFormV2Request":{
                                    "description":"updateFormV2Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV2"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"V2.0",
                "description":"Removes a specific form in a study version.",
                "operationId":"deleteForm_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV2"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/numericItems":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get forms and questions used in dosing calculations"
                ],
                "summary":"V2.0",
                "description":"Retrieves forms and questions used in dosing calculations in a study.",
                "operationId":"getNumericForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category filter. Optional. Default is `DCS`. Accepted values are maintained by `FormCategoryEnum`.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtov17"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-numericItems-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-numericitems-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV2"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes a kit type from a study.",
                "operationId":"deleteKit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Randomization Factors/Get all active factors in a study"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of Study factors. You can retrieve this list by study mode and RandType.",
                "operationId":"getRandFactors",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study version mode to filter factors.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"type",
                        "in":"query",
                        "description":"Rand Algorithim to filter factors.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"ALL",
                            "enum":[
                                "stratum",
                                "cohort",
                                "minimization",
                                "all"
                            ]
                        },
                        "example":"all"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationFactorsV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all randomization designs for a study version.",
                "operationId":"getRandomizations",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Creates a new randomization design in a study version.",
                "operationId":"addRandomization",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload used to create a randomization record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get a randomization design"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a randomization design for a study version.",
                "operationId":"getRandomization",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Delete randomization design"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes a randomization design from a study version within a study.",
                "operationId":"deleteRandomization",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/{stratumId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get a stratum group"
                ],
                "summary":"V2.0",
                "description":"Retrieves a stratum group associated with a randomization design.",
                "operationId":"getStratum_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Update existing stratum group"
                ],
                "summary":"V2.0",
                "description":"Updates a stratum group associated with a randomization design.",
                "operationId":"updateStratum_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "requestBody":{
                    "description":"Stratum payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StratumDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                        "name":"Age 18-65"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Delete a stratum group"
                ],
                "summary":"V2.0",
                "description":"Removes a stratum group associated with a randomization design.",
                "operationId":"deleteStratum_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/bulk":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Update randomization cohort groups"
                ],
                "summary":"V2.0",
                "description":"Updates a list of cohort groups associated with a randomization design.",
                "operationId":"updateStratums_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads with updated values for bulk update. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Create list of cohort groups"
                ],
                "summary":"V2.0",
                "description":"Creates a list of new cohort groups associated with a randomization design.",
                "operationId":"saveStratums_4",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads used to create strata in bulk. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Delete cohort groups"
                ],
                "summary":"V2.0",
                "description":"Removes a list of cohort groups associated with a randomization design.",
                "operationId":"deleteStratums_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads used to delete strata in bulk. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get list of all strata groups"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all strata groups associated with a randomization design.",
                "operationId":"getStrata_4",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Create randomization stratum group"
                ],
                "summary":"V2.0",
                "description":"Creates a new stratum group associated with a randomization design.",
                "operationId":"saveStratums",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Stratum payload used to create a stratum. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StratumDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                        "name":"Age 18-65"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-strata-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/studyDesign":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Array of study-version visit references used to fetch study design data. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/studyMetadata":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Metadata APIs/Get metadata of a specified study ID and study version"
                ],
                "summary":"V2.0",
                "description":"Retrieves metadata for a specified study ID and study version.",
                "operationId":"getStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"format",
                        "in":"query",
                        "description":"Format for the study metadata",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "unique",
                                "casebook"
                            ]
                        },
                        "example":"unique"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Format for the study metadata",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2024-01-15T10:30:00"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Study"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-studyMetadata-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-studymetadata-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a list of all studies"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of the latest studies in your system.",
                "operationId":"queryStudies",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Add study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Add a study in your system.",
                "operationId":"addStudy",
                "requestBody":{
                    "description":"Study payload used to create a new study. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/visits/{visitId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check visit in study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Checks a specific visit in a study version placed in a Testing or Approved state.",
                "operationId":"checkStudyVisit",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-visits-{visitId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-visits-visitid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{targetId}/copystudyobjects":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Copy study design objects"
                ],
                "summary":"V2.0",
                "description":"Copies design objects from source to target study.",
                "operationId":"copyStudyObjects_1",
                "parameters":[
                    {
                        "name":"targetId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{targetId}-copystudyobjects-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-targetid-copystudyobjects-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{sourceStudyId}/copy":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create study copy template"
                ],
                "summary":"V2.0",
                "description":"Creates a template study for copying a to another study.",
                "operationId":"createStudyCopy_1",
                "parameters":[
                    {
                        "name":"sourceStudyId",
                        "in":"path",
                        "description":"Source study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "requestBody":{
                    "description":"Details of study to copy",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{sourceStudyId}-copy-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-sourcestudyid-copy-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/allForms/coding":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all coding questions forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves all coding questions forms.",
                "operationId":"fetchAllCodingQuestionsForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-allForms-coding-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-allforms-coding-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms.",
                "operationId":"fetchAllForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get a list of study visits"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of visits in a study.",
                "operationId":"queryVisits_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter visits.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Get visits sorted Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitDTOV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-visits-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/approved/objectids":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get IDs of all artifacts in an approved study"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of IDs of all artifacts in a specified approved study. An artifact refers to anything that belongs to the study design, for example: forms, randomization, treatment arm, kits, etc.",
                "operationId":"getApprovedIds",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"all",
                        "in":"query",
                        "description":"Include all study artifacts. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"arms",
                        "in":"query",
                        "description":"Include treatment arms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"kits",
                        "in":"query",
                        "description":"Include kits. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"rands",
                        "in":"query",
                        "description":"Include randomization. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Include forms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"items",
                        "in":"query",
                        "description":"Include items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"visits",
                        "in":"query",
                        "description":"Include visits. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"calculateddoses",
                        "in":"query",
                        "description":"Include calculated doses. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"cohorts",
                        "in":"query",
                        "description":"Include cohorts and cohort factors. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"inclEverApproved",
                        "in":"query",
                        "description":"Include study artifacts that were ever approved. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-approved-objectids-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-approved-objectids-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/{mode}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get a list of study forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of forms in a study.",
                "operationId":"queryStudyForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode to filter study forms.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormSummaryFlatDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-{mode}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-mode-forms-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/approved/choiceoptions":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get options of all choice items in the latest approved version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves options of all choice items in the latest approved version.",
                "operationId":"getLatestApprovedChoiceOptions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormOptionDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-approved-choiceoptions-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-approved-choiceoptions-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/objectids":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get IDs of all artifacts in a study in a specific mode"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of IDs of all artifacts in a study in the specified mode: Testing, Approved and/or Archived. An artifact refers to anything that belongs to the study design, for example: forms, randomization, treatment arm, kits, etc.",
                "operationId":"getObjectIds",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studymode",
                        "in":"query",
                        "description":"Study modes to search for artifacts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active",
                                    "all"
                                ]
                            }
                        },
                        "example":"active"
                    },
                    {
                        "name":"archived",
                        "in":"query",
                        "description":"Include the archived versions of a study in a specified mode. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    },
                    {
                        "name":"all",
                        "in":"query",
                        "description":"Include all study artifacts. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Include forms. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"items",
                        "in":"query",
                        "description":"Include form items. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "type":"string",
                                        "format":"uuid"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-objectids-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-objectids-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: \"1.0.0.1\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/statusessummary":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses summary of a study"
                ],
                "summary":"V2.0",
                "description":"Retrieves all statuses summary for a specified study ID.",
                "operationId":"getStudyStatusesSummary",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyStatusSummaryDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-statusessummary-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-statusessummary-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/library/{libraryId}/studyType/{studyType}/studyUses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get summary of library studies usage"
                ],
                "summary":"V2.0",
                "description":"Retrieves all usage for library studies including info if some of the copies was modified",
                "operationId":"queryApprovedStudiesLibraryUses_1",
                "parameters":[
                    {
                        "name":"libraryId",
                        "in":"path",
                        "description":"Library ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"1C2D3E4F5A6B7C8D9E00112233445566"
                    },
                    {
                        "name":"studyType",
                        "in":"path",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyLibraryObjectUseDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-library-{libraryId}-studyType-{studyType}-studyUses-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-library-libraryid-studytype-studytype-studyuses-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/forms/formitems":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all form items in a form"
                ],
                "summary":"V2.0",
                "description":"Retrieves all form items in a form by mode.",
                "operationId":"queryBulkFormsItems",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"itemType",
                        "in":"query",
                        "description":"Form item types to include in the response. Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"instructionalText"
                    }
                ],
                "requestBody":{
                    "description":"ItemIds for Choice Options Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov17"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-forms-formitems-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-forms-formitems-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/forms/{formId}/choiceoptions":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get options of all choice items by study mode and form ID(s)."
                ],
                "summary":"V2.0",
                "description":"Retrieves options of all choice items by study mode and form ID(s).",
                "operationId":"queryChoiceOptions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"allowHiddenOptions",
                        "in":"query",
                        "description":"Include hidden choice options in the response. Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"ItemIds for Choice Options Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormOptionDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-forms-{formId}-choiceoptions-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-forms-formid-choiceoptions-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/forms/{formId}/formitems":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all form items in a form by form ID"
                ],
                "summary":"V2.0",
                "description":"Retrieves all form items in a form by ID.",
                "operationId":"queryFormItems",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Retrieves all form items in a form by mode.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"itemType",
                        "in":"query",
                        "description":"Form item types to include in the response. Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        },
                        "example":"instructionalText"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov17"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-forms-{formId}-formitems-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-forms-formid-formitems-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{targetStudyId}/retryCopyStudy":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create study copy template"
                ],
                "summary":"V2.0",
                "description":"Creates a template study for copying a to another study.",
                "operationId":"retryCopyStudy_1",
                "parameters":[
                    {
                        "name":"targetStudyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{targetStudyId}-retryCopyStudy-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-targetstudyid-retrycopystudy-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/updateCopyStudyStatus":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update study copy status"
                ],
                "summary":"V2.0",
                "description":"Update study copy status for the copied study",
                "operationId":"updateCopyStudyStatus_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Copies study status from source to target study.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyCopyStatusDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Design Item"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyCopyStatusDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-updateCopyStudyStatus-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-updatecopystudystatus-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update existing study"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates an existing study.",
                "operationId":"updateStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-put"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/studyversionobjects/formitems":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get items with ASVs within date range"
                ],
                "summary":"V2.0",
                "description":"Retrieves items with ASVs within a given date range.",
                "operationId":"get_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"fromDate",
                        "in":"query",
                        "description":"Start date-time (yyyy-MM-dd'T'HH:mm:ss) for filtering study versions. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2024-01-01T00:00:00"
                    },
                    {
                        "name":"toDate",
                        "in":"query",
                        "description":"End date-time (yyyy-MM-dd'T'HH:mm:ss) for filtering study versions. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"2024-12-31T23:59:59"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from. Optional.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":0
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return. Optional.",
                        "schema":{
                            "type":"integer",
                            "format":"int32",
                            "default":1000
                        },
                        "example":1000
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Form category to filter form items by. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVersionFormItemDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-studyversionobjects-formitems-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-studyversionobjects-formitems-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}":{
            "delete":{
                "tags":[
                    "Designer/Versions APIs/Delete study version"
                ],
                "summary":"V2.0",
                "description":"Removes a study's version.",
                "operationId":"deleteStudy",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"The Version ID",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isCopy",
                        "in":"query",
                        "description":"Indicates copy study  Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions":{
            "get":{
                "tags":[
                    "Designer/Versions APIs/Get list of study versions"
                ],
                "summary":"V2.0",
                "description":"Retrieves list of versions for a specified study.",
                "operationId":"getVersions",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Sorts the response by study version start date when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"nondraftonly",
                        "in":"query",
                        "description":"Returns non-draft versions only when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VersionDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get study visit schedule"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule in a study.",
                "operationId":"getVisitSchedule_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-schedule-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Update visit schedule"
                ],
                "summary":"V2.0",
                "description":"Deprecated: Use this other API instead: /{visitid}/schedule/{fromEventRefId} - Updates visit schedule in your study.",
                "operationId":"updateVisitSchedule",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-schedule-put"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Create visit schedule"
                ],
                "summary":"V2.0",
                "description":"/{visitid}/schedule/{fromEventRefId} - Creates a visit schedule for your study.",
                "operationId":"createVisitSchedule",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload used to create a schedule entry. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-schedule-post"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Clear visit schedule"
                ],
                "summary":"V2.0",
                "description":"Deprecated: Use this other API instead: /{visitid}/schedule/{fromEventRefId} - Removes visit schedule from your study.",
                "operationId":"clearVisitSchedule",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-schedule-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/branches":{
            "get":{
                "tags":[
                    "Designer/Branch APIs/Get a list of study branches"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of branches in a study.",
                "operationId":"getBranches",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-get"
            },
            "post":{
                "tags":[
                    "Designer/Branch APIs/Add a branch"
                ],
                "summary":"V2.0",
                "description":"Adds a branch in your study.",
                "operationId":"addBranch",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit branch payload used to create a branch. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitBranchDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/branches/{branchid}/copyBranch":{
            "post":{
                "tags":[
                    "Designer/Branch APIs/Copy a branch"
                ],
                "summary":"V2.0",
                "description":"Adds a copied branch in your study.",
                "operationId":"copyBranch_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-{branchid}-copyBranch-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-branchid-copybranch-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/branches/{branchid}":{
            "get":{
                "tags":[
                    "Designer/Branch APIs/Get study branch"
                ],
                "summary":"V2.0",
                "description":"Retrieves a branch in a study.",
                "operationId":"getBranch",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitBranchDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-{branchid}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-branchid-get"
            },
            "put":{
                "tags":[
                    "Designer/Branch APIs/Update a branch"
                ],
                "summary":"V2.0",
                "description":"Updates a branch in your study.",
                "operationId":"updateBranch",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Visit branch payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitBranchDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-{branchid}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-branchid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Branch APIs/Delete a branch"
                ],
                "summary":"V2.0",
                "description":"Removes a branch from your study.",
                "operationId":"deleteBranch",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"branchid",
                        "in":"path",
                        "description":"Visit branch ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-branches-{branchid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-branches-branchid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/visitsforms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Query visits, forms, and questions"
                ],
                "summary":"V2.0",
                "description":"Retrieves visits with forms and question metadata for the selected study versions. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` and related v17.0 visit/form endpoints for active behavior and metadata.",
                "operationId":"queryVisitsForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"versions",
                        "in":"query",
                        "description":"Comma-separated study version numbers to filter by. Optional; when omitted, the latest active version data is returned.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"1,2"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form item type to exclude from the question list. Optional. Allowed value: `instructionalText`.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitsFormsQuestionsDto"
                                    }
                                },
                                "examples":{
                                    "queryVisitsFormsV2Response":{
                                        "description":"queryVisitsFormsV2Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "visitName":"Screening",
                                                    "forms":[
                                                        {
                                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                            "title":"Demographics"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-visitsforms-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-visitsforms-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/visitsMetadata":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Metadata/Get the metadata of specified visits by study ID and study version"
                ],
                "summary":"V2.0",
                "description":"Retrieves metadata for specified visits in different study versions.",
                "operationId":"queryVisitsFormsAsOfDate_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"asofdate",
                        "in":"query",
                        "description":"Format for the study metadata",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"2024-01-15T10:30:00"
                    }
                ],
                "requestBody":{
                    "description":"Array of study-version visit references used to build metadata output. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ODM1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Design Item"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-visitsMetadata-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-visitsmetadata-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/report/{reportName}":{
            "post":{
                "tags":[
                    "Designer/Reporting APIs/Generate study design reports"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves study-design data in paginated format based on the selected report name and filters. Access requires the StudyDesignReportPost permission.",
                "operationId":"generateDesignerReport",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"The report section name",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "STUDY_DESIGN_SUMMARY",
                                "DESIGNER_RANDOMIZATION_SECTION",
                                "DESIGNER_RANDOMIZATION_TREATMENT_ARMS",
                                "DESIGNER_KITS_SECTION",
                                "DESIGNER_KIT_DISPENSATION_SECTION"
                            ]
                        },
                        "example":"STUDY_DESIGN_SUMMARY"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Search criteria used to generate the report. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Design Item"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'studyId is a mandatory filter criteria', 'studyVersion is a mandatory filter criteria', 'Filter Criteria can not be empty', 'Invalid Offset', 'Invalid Limit', 'Missing Request Body'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-report-{reportName}-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-report-reportname-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/design/visits/{visitId}/validate/assign/randomization/{randomizationId}":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Validate assigning randomization"
                ],
                "summary":"V3.0",
                "description":"Validates assigning randomization design to a visit.",
                "operationId":"validateAssignRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomizationId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-design-visits-{visitId}-validate-assign-randomization-{randomizationId}-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-design-visits-visitid-validate-assign-randomization-randomizationid-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits for all study versions in Testing, Approved and Archived states.",
                "operationId":"getStudyNonDraftKitDesc_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter kits.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDescDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Visit ID where randomization was assigned (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit payloads used to update existing study version dispensings. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV3"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "name":"Starter Kit",
                                            "kitType":"standard"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_27",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV3"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form to add",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV3"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV3"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms/visits":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Add form to visits"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Adds a form to multiple visits for a study version. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"addFormToVisits_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of form visits",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitsDtoV1"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "addFormToVisitsV3Response":{
                                        "description":"addFormToVisitsV3Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-visits-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV3"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV3"
                            },
                            "examples":{
                                "updateFormV3Request":{
                                    "description":"updateFormV3Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV3"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV3"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List stratification factors"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves stratification factors used in randomization for forms. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"getStratificationFactors_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV3"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values: STANDARD, TITRATION, ALL.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-kitid-put"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/kits/{kitId}/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get blinded data on a kit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKitBlindedInfo_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used for blinded output filtering. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-kits-{kitId}-blindedInfo-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-kits-kitid-blindedinfo-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/randomizations":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all randomization designs for a study version.",
                "operationId":"getRandomizations_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Creates a new randomization design in a study version.",
                "operationId":"addRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload used to create a randomization record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get a randomization design"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a randomization design for a study version.",
                "operationId":"getRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Delete randomization design"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Removes a randomization design from a study version within a study.",
                "operationId":"deleteRandomization_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get list of all strata groups"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of all strata groups associated with a randomization design.",
                "operationId":"getStrata_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-strata-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/studyDesign":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "requestBody":{
                    "description":"Array of study-version visit references used to fetch study design data. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a list of all studies"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of the latest studies in your system.",
                "operationId":"queryStudies_1",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Add study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Add a study in your system.",
                "operationId":"addStudy_1",
                "parameters":[
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "requestBody":{
                    "description":"Study payload used to create a new study. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/visits/{visitId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check visit in study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Checks a specific visit in a study version placed in a Testing or Approved state.",
                "operationId":"checkStudyVisit_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-visits-{visitId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-visits-visitid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/allForms/coding":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all coding questions forms"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves all coding questions forms.",
                "operationId":"fetchAllCodingQuestionsForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-allForms-coding-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-allforms-coding-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms.",
                "operationId":"fetchAllForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/{mode}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get a list of study forms"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of forms in a study.",
                "operationId":"queryStudyForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"path",
                        "description":"Study mode to filter study forms.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/Form Summary DTO V3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-{mode}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-mode-forms-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/approved/choiceoptions":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get options of all choice items in the latest approved version"
                ],
                "summary":"V3.0",
                "description":"Retrieves options of all choice items in the latest approved version.",
                "operationId":"getLatestApprovedChoiceOptions_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormOptionDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-approved-choiceoptions-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-approved-choiceoptions-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: \"1.0.0.1\"",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/statusessummary":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses summary of a study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatusesSummary_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyStatusSummaryDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-statusessummary-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-statusessummary-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/library":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get a list of all library studies"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of the latest library studies in your system.",
                "operationId":"queryLibraryStudies_1",
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-library-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-library-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update existing study"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates an existing study.",
                "operationId":"updateStudy_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-put"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule/{fromEventRefId}":{
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Update visit schedule from event"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates visit schedule in your study.",
                "operationId":"updateVisitSchedule_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-put"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Create visit schedule from event"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Creates a visit schedule for your study.",
                "operationId":"createVisitSchedule_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload used to create a schedule entry. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-post"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Clear visit schedule from event"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Removes visit schedule from your study.",
                "operationId":"clearVisitSchedule_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get study visit schedule"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule in a study.",
                "operationId":"getVisitSchedule_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-schedule-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/report/{reportName}":{
            "post":{
                "tags":[
                    "Designer/Reporting APIs/Generate study design reports"
                ],
                "summary":"V3.0",
                "description":"Generates a designer report for the requested report type using the provided search criteria.",
                "operationId":"generateDesignerReport_1",
                "parameters":[
                    {
                        "name":"reportName",
                        "in":"path",
                        "description":"The report section name",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "DESIGNER_RANDOMIZATION_SECTION",
                                "DESIGNER_KIT_DISPENSATION_SECTION",
                                "DESIGNER_KITS_SECTION"
                            ]
                        },
                        "example":"DESIGNER_RANDOMIZATION_SECTION"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Search criteria used to generate the report. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/SearchSpecs"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Design Item"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/PaginatedResponseDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"'studyId is a mandatory filter criteria', 'studyVersion is a mandatory filter criteria', 'Filter Criteria can not be empty', 'Invalid Offset', 'Invalid Limit', 'Missing Request Body'",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/DesignerResponse"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-report-{reportName}-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-report-reportname-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return the lite visit design response when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Visit ID where randomization was assigned (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit payloads used to update existing study version dispensings. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV4"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "name":"Starter Kit",
                                            "kitType":"standard"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_28",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV4"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"V4.0",
                "description":" Adds a form in a study version.",
                "operationId":"addForm_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form to add",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV4"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV4"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms/visits":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Add form to visits"
                ],
                "summary":"V4.0",
                "description":"Adds a form to multiple visits for a study version. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"addFormToVisits_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of form visits",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitsDtoV4"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "addFormToVisitsV4Response":{
                                        "description":"addFormToVisitsV4Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-visits-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV4"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV4"
                            },
                            "examples":{
                                "updateFormV4Request":{
                                    "description":"updateFormV4Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV4"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV4"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List stratification factors"
                ],
                "summary":"V4.0",
                "description":"Retrieves stratification factors used in randomization for forms. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"getStratificationFactors_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV4"
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_13",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-kitid-put"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/kits/{kitId}/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get blinded data on a kit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKitBlindedInfo",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used for blinded output filtering. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-kits-{kitId}-blindedInfo-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-kits-kitid-blindedinfo-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/randomizations":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all randomization designs for a study version.",
                "operationId":"getRandomizations_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-randomizations-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Creates a new randomization design in a study version.",
                "operationId":"addRandomization_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload used to create a randomization record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get a randomization design"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a randomization design for a study version.",
                "operationId":"getRandomization_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-randomizations-randomid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-randomizations-randomid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Delete randomization design"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Removes a randomization design from a study version within a study.",
                "operationId":"deleteRandomization_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-randomizations-randomid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/studyDesign":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode.",
                "operationId":"getStudyDesignByMode_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Study mode filters. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "default":"all",
                                "enum":[
                                    "all",
                                    "test",
                                    "training",
                                    "active"
                                ]
                            }
                        },
                        "example":"design"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"active",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-studyDesign-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-studydesign-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Array of study-version visit references used to fetch study design data. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV4"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Add study"
                ],
                "summary":"V4.0",
                "description":"Add a study in your system.",
                "operationId":"addStudy_2",
                "parameters":[
                    {
                        "name":"studyType",
                        "in":"query",
                        "description":"Study type. Allowed values: STANDARD (regular study), LIBRARY (reusable library study). Example: LIBRARY. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"STANDARD"
                        },
                        "example":"STANDARD"
                    }
                ],
                "requestBody":{
                    "description":"Study payload used to create a new study. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV6"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/visits/{visitId}/validate":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Check visit in study version"
                ],
                "summary":"V4.0",
                "description":"Checks a specific visit in a study version placed in a Testing or Approved state.",
                "operationId":"checkStudyVisit_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"visitId",
                        "in":"path",
                        "description":"Visit identifier",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"boolean"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":true
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-visits-{visitId}-validate-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-visits-visitid-validate-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/allForms/coding":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all coding questions forms"
                ],
                "summary":"V4.0",
                "description":"Retrieves all coding questions forms.",
                "operationId":"fetchAllCodingQuestionsForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-allForms-coding-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-allforms-coding-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms.",
                "operationId":"fetchAllForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"excludeBaseStudyVersion",
                        "in":"query",
                        "description":"Exclude forms from the base study version when true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: 1.0.0.1",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/statusessummary":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses summary of a study"
                ],
                "summary":"V4.0",
                "description":"Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatusesSummary_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyStatusSummaryDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-statusessummary-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-statusessummary-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule/{fromEventRefId}":{
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Update visit schedule from event"
                ],
                "summary":"V4.0",
                "description":"Updates visit schedule in your study.",
                "operationId":"updateVisitSchedule_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-put"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Create visit schedule from event"
                ],
                "summary":"V4.0",
                "description":"Creates a visit schedule for your study.",
                "operationId":"createVisitSchedule_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "requestBody":{
                    "description":"Visit schedule payload used to create a schedule entry. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                        "name":"Baseline",
                                        "day":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-post"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Clear visit schedule from event"
                ],
                "summary":"V4.0",
                "description":"Removes visit schedule from your study.",
                "operationId":"clearVisitSchedule_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"fromEventRefId",
                        "in":"path",
                        "description":"From Event Ref ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"4D56A23C9F3A0C7D4E117A4D3C2B1E8F"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-{fromEventRefId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-schedule-fromeventrefid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_14",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}/schedule":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get study visit schedule"
                ],
                "summary":"V4.0",
                "description":"Retrieves the visit schedule in a study.",
                "operationId":"getVisitSchedule_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyEventScheduleDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-schedule-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-schedule-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return the lite visit design response when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDesignDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived"
                ],
                "summary":"V5.0",
                "description":"Retrieves list of kits for all study versions in Testing, Approved and Archived states.",
                "operationId":"getStudyNonDraftKitDesc_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to filter kits or titration. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type, such as standard, titration, device or all, to filter by. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"all",
                            "enum":[
                                "standard",
                                "device",
                                "titration",
                                "all"
                            ]
                        },
                        "example":"all"
                    },
                    {
                        "name":"unblinded",
                        "in":"query",
                        "description":"Indicates whether unblinded fields are returned for users who have the OrsUnblinded permission. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDescDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-kits-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, device, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings_16",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Visit ID where randomization was assigned (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit payloads used to update existing study version dispensings. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV4"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "name":"Starter Kit",
                                            "kitType":"standard"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/forms":{
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV5"
                            },
                            "examples":{
                                "createFormV5Request":{
                                    "description":"createFormV5Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV5"
                                },
                                "examples":{
                                    "createFormV5Response":{
                                        "description":"createFormV5Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV5"
                            },
                            "examples":{
                                "updateFormV5Request":{
                                    "description":"updateFormV5Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV5"
                                },
                                "examples":{
                                    "updateFormV5Response":{
                                        "description":"updateFormV5Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-put"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_17",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-kitid-put"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/kits/{kitId}/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get blinded data on a kit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKitBlindedInfo_1",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used for blinded output filtering. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-kits-{kitId}-blindedInfo-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-kits-kitid-blindedinfo-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/latest/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get latest study version objects"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Study modes to search for artifacts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active",
                                    "all"
                                ]
                            }
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-latest-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-latest-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/randomizations":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version"
                ],
                "summary":"V5.0",
                "description":"Retrieves a list of all randomization designs for a study version.",
                "operationId":"getRandomizations_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RandomizationDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-randomizations-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-randomizations-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Create randomization design"
                ],
                "summary":"V5.0",
                "description":"Creates a new randomization design in a study version.",
                "operationId":"addRandomization_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload used to create a randomization record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-randomizations-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-randomizations-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/randomizations/{randomId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Get a randomization design"
                ],
                "summary":"V5.0",
                "description":"Retrieves a randomization design for a study version.",
                "operationId":"getRandomization_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"visitDesignPathIds",
                        "in":"query",
                        "description":"Comma-separated list of Visit Design Path IDs (UUIDs) to scope the randomization retrieval and this parameter is applicable for algorithm type None only Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3BCE1EE7AD7B4625B76876A49A7144CF,4BCE1EE7AD7B4625B76876A49A7144CE,7BCE1EE7AD7B4625B76876A49A7144CD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-randomizations-randomid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Update existing randomization design"
                ],
                "summary":"V5.0",
                "description":"Updates an existing randomization design for a study version.",
                "operationId":"updateRandomization_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"branchIds",
                        "in":"query",
                        "description":"Branch IDs in the visits schedule",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ],
                "requestBody":{
                    "description":"Randomization payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RandomizationDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                        "name":"Primary Randomization",
                                        "method":"block"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-randomizations-randomid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization/Delete randomization design"
                ],
                "summary":"V5.0",
                "description":"Removes a randomization design from a study version within a study.",
                "operationId":"deleteRandomization_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RandomizationDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-randomizations-randomid-delete"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/studyDesign":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode.",
                "operationId":"getStudyDesignByMode",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Study mode filters. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "default":"all",
                                "enum":[
                                    "all",
                                    "test",
                                    "training",
                                    "active"
                                ]
                            }
                        },
                        "example":"design"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"active",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"active"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-studyDesign-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-studydesign-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms.",
                "operationId":"fetchAllForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: 1.0.0.1",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects"
                ],
                "summary":"V5.0",
                "description":"Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AllStudyVersionsObjectsDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Update existing study"
                ],
                "summary":"V5.0",
                "description":"Updates an existing study.",
                "operationId":"updateStudy_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Study payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDtoV7"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-put"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/studyversionobjects/iprDetails":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get IPR details"
                ],
                "summary":"V5.0",
                "description":"Get IPR details.",
                "operationId":"getAdditionalInfoForIPRs_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to fetch IPR details. Optional. Allowed values: test, training, active, design.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-studyversionobjects-iprDetails-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-studyversionobjects-iprdetails-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_18",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return the lite visit design response when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_19",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, device, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version"
                ],
                "summary":"V6.0",
                "description":"Retrieves list of all dispensation visits in a study version.",
                "operationId":"getDispensings_20",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-dispensings-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits"
                ],
                "summary":"V6.0",
                "description":"Updates list of dispensation visits in a study version to create new visits, update existing ones or delete deprecated visits.",
                "operationId":"updateDispensings_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"randVisitId",
                        "in":"query",
                        "description":"Visit ID where randomization was assigned (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"empty"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of ArmKitVisit payloads used to update existing study version dispensings. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/ArmKitVisitDtoV4"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "name":"Starter Kit",
                                            "kitType":"standard"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-dispensings-put",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-dispensings-put"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_30",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV7"
                                    }
                                },
                                "examples":{
                                    "listFormsV6Response":{
                                        "description":"listFormsV6Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV7"
                            },
                            "examples":{
                                "createFormV6Request":{
                                    "description":"createFormV6Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV7"
                                },
                                "examples":{
                                    "createFormV6Response":{
                                        "description":"createFormV6Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV7"
                                },
                                "examples":{
                                    "getFormV6Response":{
                                        "description":"getFormV6Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV7"
                            },
                            "examples":{
                                "updateFormV6Request":{
                                    "description":"updateFormV6Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV7"
                                },
                                "examples":{
                                    "updateFormV6Response":{
                                        "description":"updateFormV6Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV7"
                                },
                                "examples":{
                                    "deleteFormV6Response":{
                                        "description":"deleteFormV6Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_4",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_4",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV6"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_4",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_4",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV6"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Removes a kit type from a study.",
                "operationId":"deleteKit_1",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/kits/{kitId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get the dispensation data of a kit"
                ],
                "summary":"V6.0",
                "description":"Retrieves dispensation information for a kit in a study.",
                "operationId":"getDispensings_21",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-{kitId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-kitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/kits/{kitId}/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get blinded data on a kit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKitBlindedInfo_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"STANDARD"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used for blinded output filtering. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-kits-{kitId}-blindedInfo-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-kits-kitid-blindedinfo-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/latest/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get latest study version objects"
                ],
                "summary":"V6.0",
                "description":"Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Study modes to search for artifacts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active",
                                    "all"
                                ]
                            }
                        },
                        "example":"design"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-latest-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-latest-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/studyDesign":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode.",
                "operationId":"getStudyDesignByMode_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-studyDesign-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-studydesign-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/allForms":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all forms"
                ],
                "summary":"V6.0",
                "description":"Retrieves all forms.",
                "operationId":"fetchAllForms_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Study versions to include. Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespFormDtoWithStudyVersion"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-allForms-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-allforms-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects"
                ],
                "summary":"V6.0",
                "description":"Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/AllStudyVersionsObjectsDtoV9"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/design":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Create study design visits for multiple versions"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Creates list of visits for multiple versions in a study's design.",
                "operationId":"getVisitDesign_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of Study Versions. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-design-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-design-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/studyversionobjects/iprDetails":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get IPR details"
                ],
                "summary":"V6.0",
                "description":"Retrieves additional investigational product randomization (IPR) details for a study version.",
                "operationId":"getAdditionalInfoForIPRs",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used to fetch IPR details. Optional. Allowed values: test, training, active, design.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-studyversionobjects-iprDetails-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-studyversionobjects-iprdetails-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV6"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV6"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV6"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_22",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, device, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return the lite visit design response when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits_7",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Controls response detail level. Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits_7",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of visits to associate with a form. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV7"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                            "name":"Demographics",
                                            "title":"Demographics"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_31",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV8"
                                    }
                                },
                                "examples":{
                                    "listFormsV7Response":{
                                        "description":"listFormsV7Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV8"
                            },
                            "examples":{
                                "createFormV7Request":{
                                    "description":"createFormV7Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV8"
                                },
                                "examples":{
                                    "createFormV7Response":{
                                        "description":"createFormV7Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV8"
                                },
                                "examples":{
                                    "getFormV7Response":{
                                        "description":"getFormV7Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV8"
                            },
                            "examples":{
                                "updateFormV7Request":{
                                    "description":"updateFormV7Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV8"
                                },
                                "examples":{
                                    "updateFormV7Response":{
                                        "description":"updateFormV7Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV8"
                                },
                                "examples":{
                                    "deleteFormV7Response":{
                                        "description":"deleteFormV7Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_5",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_5",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV7"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_5",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Updates a kit type in a study.",
                "operationId":"updateKit_5",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV7"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Removes a kit type from a study.",
                "operationId":"deleteKit_2",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/kits/{kitId}/blindedInfo":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get blinded data on a kit"
                ],
                "summary":"V7.0",
                "description":"Retrieves data on a specific kit in a study.",
                "operationId":"getKitBlindedInfo_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode used for blinded output filtering. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test"
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV9"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-kits-{kitId}-blindedInfo-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-kits-kitid-blindedinfo-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/latest/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get latest study version objects"
                ],
                "summary":"V7.0",
                "description":"Returns study version objects from the latest study version.",
                "operationId":"getStudyVersionObjects_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"modes",
                        "in":"query",
                        "description":"Study modes to search for artifacts. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "schema":{
                            "type":"array",
                            "items":{
                                "type":"string",
                                "enum":[
                                    "design",
                                    "test",
                                    "training",
                                    "active",
                                    "all"
                                ]
                            }
                        },
                        "example":"design"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-latest-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-latest-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/studyDesign":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode.",
                "operationId":"getStudyDesignByMode_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-studyDesign-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-studydesign-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Visit details. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV7"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/studyDesign/paginated":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires in a paginated format"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode, in a paginated format.",
                "operationId":"getStudyDesignByModePaginated_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Set to true to paginate forms within each study version node. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Study design pagination Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDesignPaginationDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-studyDesign-paginated-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-studydesign-paginated-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: 1.0.0.1",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/design":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits for multiple versions"
                ],
                "summary":"V7.0",
                "description":"Retrieves the list of visits for multiple versions in a study's design.",
                "operationId":"getVisitDesign_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of Study Versions. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-design-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-design-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/List visit forms"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms associated with a visit for the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` for the active endpoint.",
                "operationId":"getForms_19",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV8"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV7Response":{
                                        "description":"listVisitFormsV7Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV7"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV7"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV7"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_27",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, device, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Return the lite visit design response when set to true. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Controls response detail level. Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of visits to associate with a form. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV8"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                            "name":"Demographics",
                                            "title":"Demographics"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_20",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV9"
                                    }
                                },
                                "examples":{
                                    "listFormsV8Response":{
                                        "description":"listFormsV8Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV9"
                            },
                            "examples":{
                                "createFormV8Request":{
                                    "description":"createFormV8Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV9"
                                },
                                "examples":{
                                    "createFormV8Response":{
                                        "description":"createFormV8Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV9"
                                },
                                "examples":{
                                    "getFormV8Response":{
                                        "description":"getFormV8Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV9"
                            },
                            "examples":{
                                "updateFormV8Request":{
                                    "description":"updateFormV8Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV9"
                                },
                                "examples":{
                                    "updateFormV8Response":{
                                        "description":"updateFormV8Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV9"
                                },
                                "examples":{
                                    "deleteFormV8Response":{
                                        "description":"deleteFormV8Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of kits in a study.",
                "operationId":"getKits_6",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Creates a new kit type in a study.",
                "operationId":"createKit_6",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV8"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV8"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves data on a specific kit in a study.",
                "operationId":"getKit_6",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV8"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Removes a kit type from a study.",
                "operationId":"deleteKit_3",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/studyDesign":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires"
                ],
                "summary":"V8.0",
                "description":"Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode.",
                "operationId":"getStudyDesignByMode_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-studyDesign-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-studydesign-get"
            },
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Visit details. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV7"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/studyDesign/paginated":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires in a paginated format"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode, in a paginated format.",
                "operationId":"getStudyDesignByModePaginated",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Set to true to paginate forms within each study version node. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Study design pagination Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDesignPaginationDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-studyDesign-paginated-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-studydesign-paginated-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/statuses/{version}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get status of latest study version"
                ],
                "summary":"V8.0",
                "description":"Retrieves status of a specified study ID and study version.",
                "operationId":"getStudy_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version. Example: 1.0.0.1",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"firstVisit",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"",
                            "enum":[
                                "ScreeningVisit"
                            ]
                        },
                        "example":"ScreeningVisit"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StudyDtoV8"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "name":"Hypertension Study",
                                                "version":"1.0.0.1"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-statuses-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-statuses-version-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/statuses":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all statuses of a study"
                ],
                "summary":"V8.0",
                "description":"Retrieves all statuses for a specified study ID.",
                "operationId":"getStudyStatuses_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"versionStatus",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":""
                        },
                        "example":"draft"
                    },
                    {
                        "name":"firstVisit",
                        "in":"query",
                        "description":"Study status filter. Allowed values: DRAFT (editable work-in-progress), TESTING (validation phase), APPROVED (production-ready), ARCHIVED (historical copy). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"",
                            "enum":[
                                "ScreeningVisit"
                            ]
                        },
                        "example":"ScreeningVisit"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "404":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-statuses-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-statuses-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/design":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Create study design visits for multiple versions"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Creates list of visits for multiple versions in a study's design.",
                "operationId":"getVisitDesign_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of Study Versions. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-design-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-design-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/List visit forms"
                ],
                "summary":"V8.0",
                "description":"Retrieves forms associated with a visit for the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` for the active endpoint.",
                "operationId":"getForms_21",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV9"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV8Response":{
                                        "description":"listVisitFormsV8Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of visits in a study.",
                "operationId":"queryVisits_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"toTop",
                        "in":"query",
                        "description":"Add visit to top in branch schedule Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV8"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV8"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV8"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V8.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_7",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV8"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/visits/{visitid}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get dispensation visits"
                ],
                "summary":"V8.0",
                "description":"Retrieves a dispensation visit in a study.",
                "operationId":"getDispensings_24",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: standard, titration, device, or all. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/ArmKitVisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visits-{visitid}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visits-visitid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v8.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"V8.0",
                "description":"Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Whether to include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v8.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v8.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/design":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Get study design visits"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of visits in a study's design.",
                "operationId":"getVisitDesign_14",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-design-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-design-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response type to query visit forms Optional.",
                        "schema":{
                            "type":"string",
                            "default":"",
                            "enum":[
                                "",
                                "summary",
                                "summaryLite"
                            ]
                        },
                        "example":"summary"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode for data classifications. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes).",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"design",
                            "enum":[
                                "test",
                                "training",
                                "active",
                                "design"
                            ]
                        },
                        "example":"design"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of visits to associate with a form. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV9"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                            "name":"Demographics",
                                            "title":"Demographics"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/forms":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/List forms"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for the active endpoint.",
                "operationId":"getForms_22",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV10"
                                    }
                                },
                                "examples":{
                                    "listFormsV9Response":{
                                        "description":"listFormsV9Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "refname":"DM"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Forms/Create form"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Creates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms` for active create behavior and current metadata mapping.",
                "operationId":"addForm_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form payload to create. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV10"
                            },
                            "examples":{
                                "createFormV9Request":{
                                    "description":"createFormV9Request",
                                    "value":{
                                        "title":"Demographics",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV10"
                                },
                                "examples":{
                                    "createFormV9Response":{
                                        "description":"createFormV9Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/forms/{formId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get form by ID"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves one form in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active endpoint.",
                "operationId":"getForm_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV10"
                                },
                                "examples":{
                                    "getFormV9Response":{
                                        "description":"getFormV9Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-{formId}-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-formid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Forms/Update form"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Updates a form in the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for active update behavior.",
                "operationId":"updateForm_13",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"Form payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormDtoV10"
                            },
                            "examples":{
                                "updateFormV9Request":{
                                    "description":"updateFormV9Request",
                                    "value":{
                                        "title":"Demographics Updated",
                                        "refname":"DM",
                                        "isMainForm":true
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV10"
                                },
                                "examples":{
                                    "updateFormV9Response":{
                                        "description":"updateFormV9Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "title":"Demographics Updated",
                                                "refname":"DM"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-{formId}-put",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-formid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Forms/Delete form"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Deletes a form from the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/forms/{formId}` for the active delete endpoint.",
                "operationId":"deleteForm_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormDtoV10"
                                },
                                "examples":{
                                    "deleteFormV9Response":{
                                        "description":"deleteFormV9Response",
                                        "value":{
                                            "result":"Form deleted successfully"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/forms/randomizationfactors":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Forms/Get list questions used in stratified randomization"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves all questions used in stratified randomization designs in a specific study version.",
                "operationId":"getStratificationFactors_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtov10"
                                    }
                                },
                                "examples":{
                                    "listStratificationFactorsV9Response":{
                                        "description":"listStratificationFactorsV9Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4A5C8D0E2F1B4D56A23C9F3A0C7D4E99",
                                                    "name":"Age Group",
                                                    "itemType":"NUMBER"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-forms-randomizationfactors-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-forms-randomizationfactors-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/kits":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get list of all kits"
                ],
                "summary":"V9.0",
                "description":"Retrieves list of kits in a study.",
                "operationId":"getKits_7",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/KitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "name":"Starter Kit",
                                                    "kitType":"standard"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-kits-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-kits-get"
            },
            "post":{
                "tags":[
                    "Designer/Kits APIs/Add a kit in a study"
                ],
                "summary":"V9.0",
                "description":"Creates a new kit type in a study.",
                "operationId":"createKit_7",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload used to create a kit record. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV9"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV9"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-kits-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-kits-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/kits/{kitId}":{
            "get":{
                "tags":[
                    "Designer/Kits APIs/Get data on a kit"
                ],
                "summary":"V9.0",
                "description":"Retrieves data on a specific kit in a study.",
                "operationId":"getKit_7",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV9"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-kits-{kitId}-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-kits-kitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Kits APIs/Update a kit"
                ],
                "summary":"V9.0",
                "description":"Updates a kit type in a study.",
                "operationId":"updateKit_6",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Kit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/KitDtoV9"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "name":"Starter Kit",
                                        "kitType":"standard"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/KitDtoV9"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-kits-{kitId}-put",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-kits-kitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Kits APIs/Delete a kit"
                ],
                "summary":"V9.0",
                "description":"Removes a kit type from a study.",
                "operationId":"deleteKit_4",
                "parameters":[
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Kit type filter. Optional. Accepted values include STANDARD, TITRATION, ALL, and DEVICE.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"ALL"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"kitId",
                        "in":"path",
                        "description":"Kit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"string"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-kits-{kitId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-kits-kitid-delete"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/studyDesign":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Creates all the visits, forms and questionnaires for the study ID on one or more study versions.",
                "operationId":"getStudyDesign_6",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"Request the lite version of the response that does not include all form item details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":true
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Visit details. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "name":"Hypertension Study",
                                            "version":"1.0.0.1"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-studyDesign-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-studydesign-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/studyDesign/paginated":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires in a paginated format"
                ],
                "summary":"V9.0",
                "description":"Retrieves all the visits, forms and questionnaires in a study ID in one or more study versions and by mode, in a paginated format.",
                "operationId":"getStudyDesignByModePaginated_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode filter. Allowed values: design (draft design data), test (testing data), training (training data), active (approved production data), all (all modes). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"test",
                            "enum":[
                                "test",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"forms",
                        "in":"query",
                        "description":"Set to true to paginate forms within each study version node. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return details when call made by service to service Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"Study design pagination Optional.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StudyDesignPaginationDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "name":"Hypertension Study",
                                        "version":"1.0.0.1"
                                    }
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"F054C951EB74443C93716CA714AB686E",
                                                    "name":"Hypertension Study",
                                                    "version":"1.0.0.1"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-studyDesign-paginated-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-studydesign-paginated-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/studyversionobjects/paginated":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects in a paginated format"
                ],
                "summary":"V9.0",
                "description":"Retrieves all study version objects.",
                "operationId":"getPaginatedStudyVersionObjects_4",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required. Example: F054C951EB74443C93716CA714AB686E",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"offset",
                        "in":"query",
                        "description":"Study version index to start from",
                        "schema":{
                            "type":"string",
                            "default":"0"
                        },
                        "example":0
                    },
                    {
                        "name":"limit",
                        "in":"query",
                        "description":"Number of study versions to return",
                        "schema":{
                            "type":"string",
                            "default":"1000"
                        },
                        "example":1000
                    },
                    {
                        "name":"order",
                        "in":"query",
                        "description":"Order in which study versions to be returned",
                        "schema":{
                            "type":"string",
                            "default":"asc"
                        },
                        "example":"asc"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-studyversionobjects-paginated-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-studyversionobjects-paginated-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/design":{
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visit Design/Create study design visits for multiple versions"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Creates list of visits for multiple versions in a study's design.",
                "operationId":"getVisitDesign_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"isLiteAPI",
                        "in":"query",
                        "description":"If true, generate light version of the API. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of Study Versions. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitBranchDesignDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-design-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-design-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/studyversionobjects":{
            "get":{
                "tags":[
                    "Designer/Study Version APIs/Get study version objects for a study version"
                ],
                "summary":"V9.0",
                "description":"Retrieves all study version objects.",
                "operationId":"getStudyVersionObjects_9",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"formCategory",
                        "in":"query",
                        "description":"Return forms with this Form Category.",
                        "schema":{
                            "type":"string",
                            "default":"DCS"
                        },
                        "example":"DCS"
                    }
                ],
                "responses":{
                    "default":{
                        "description":"default response",
                        "content":{
                            "application/json":{
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-studyversionobjects-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-studyversionobjects-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a visit"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms added to a specific visit in a study.",
                "operationId":"getForms_23",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV10"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV9Response":{
                                        "description":"listVisitFormsV9Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/visits":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get list of visits for a study version"
                ],
                "summary":"V9.0",
                "description":"Retrieves a list of visits in a study.",
                "operationId":"queryVisits_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"blindingBranchLabel",
                        "in":"query",
                        "description":"Blind visit branch labels Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    },
                    {
                        "name":"sort",
                        "in":"query",
                        "description":"Get visits sorted Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Visit APIs/Visits/Add a visit"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Adds a visit in your study.",
                "operationId":"addVisit_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"toTop",
                        "in":"query",
                        "description":"Add visit to top in branch schedule Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    },
                    {
                        "name":"copyScreeningVisit",
                        "in":"query",
                        "description":"Copy the screening event to make an identical re-screen event Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":false
                        },
                        "example":false
                    }
                ],
                "requestBody":{
                    "description":"Visit payload used to create a visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV9"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-post"
            }
        },
        "/ec-designer-svc/rest/v9.0/studies/{studyId}/versions/{version}/visits/{visitid}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visits/Get study visit"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Retrieves a visit in a study.",
                "operationId":"getVisit_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/VisitDtoV9"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                "name":"Screening",
                                                "visitType":"scheduled",
                                                "order":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-{visitid}-get",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-visitid-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visits/Update a visit"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Updates a visit in your study.",
                "operationId":"updateVisit_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Visit payload with updated values. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/VisitDtoV9"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                        "name":"Screening",
                                        "visitType":"scheduled",
                                        "order":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-{visitid}-put",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-visitid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visits/Delete a visit"
                ],
                "summary":"[Deprecated]: V9.0",
                "description":"Deprecated: Use latest version instead. Removes a visit from your study.",
                "operationId":"deleteVisit_8",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitDtoV9"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening",
                                                    "visitType":"scheduled",
                                                    "order":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v9.0-studies-{studyId}-versions-{version}-visits-{visitid}-delete",
                "x-filename-id":"ec-designer-svc-rest-v9.0-studies-studyid-versions-version-visits-visitid-delete"
            }
        },
        "/ec-designer-svc/rest/locks/acquireLock/{studyId}":{
            "post":{
                "tags":[
                    "Designer/Study APIs/Study Lock"
                ],
                "summary":"Acquire lock",
                "description":"Acquires the lock of a study or study object.",
                "operationId":"acquireLock",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "requestBody":{
                    "description":"The lock to acquire.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/DesignerLockDetailsDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"F054C951EB74443C93716CA714AB686E",
                                        "lockedBy":"designer.user",
                                        "lockedOn":"2026-04-17T10:00:00Z"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResponseTo"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-locks-acquireLock-{studyId}-post",
                "x-filename-id":"ec-designer-svc-rest-locks-acquirelock-studyid-post"
            }
        },
        "/ec-designer-svc/rest/locks/childLocks/{studyId}":{
            "get":{
                "tags":[
                    "Designer/Study APIs/Study Lock"
                ],
                "summary":"Get all the active locks on the study",
                "description":"Acquires the lock of a study or study object.",
                "operationId":"getAllChildLocks",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"lockBasePath",
                        "in":"query",
                        "description":"Base path used to filter lock nodes. Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"/locks/studies"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ChildLockData"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-locks-childLocks-{studyId}-get",
                "x-filename-id":"ec-designer-svc-rest-locks-childlocks-studyid-get"
            }
        },
        "/ec-designer-svc/rest/locks/releaseLock/{studyId}":{
            "put":{
                "tags":[
                    "Designer/Study APIs/Study Lock"
                ],
                "summary":"Release lock",
                "description":"Release the all study locks held by the logged in user.",
                "operationId":"releaseLock",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ResponseTo"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-locks-releaseLock-{studyId}-put",
                "x-filename-id":"ec-designer-svc-rest-locks-releaselock-studyid-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/forms/{formId}/itemhistory":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item History/Get questions history for a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves history of questions associated with a specific form.",
                "operationId":"getItemHistory",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormHistoryDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-forms-{formId}-itemhistory-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-forms-formid-itemhistory-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/{formId}/items":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get questions for a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves questions associated with a specific form.",
                "operationId":"getItems",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-items-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-items-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Item/Add a question in a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Adds a question to a specific form in a study.",
                "operationId":"addItem",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to create a new form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-items-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-items-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/{formId}/items/{itemId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get a question for a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific question associated with a form.",
                "operationId":"getItem",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-items-itemid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Form Item/Update a question in a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a question included in a form in a study.",
                "operationId":"updateItem",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to update an existing form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-items-itemid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Form Item/Delete a question from a form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a question from a specific form in a study.",
                "operationId":"deleteItem",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"object"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-items-itemid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/List visits for a form"
                ],
                "summary":"V1.0",
                "description":"Retrieves visits associated with a form in a study version. Use the latest supported version of this endpoint in v17.0 for current behavior.",
                "operationId":"getVisits_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "listFormVisitsV1Response":{
                                        "description":"listFormVisitsV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "name":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Update form visit assignments"
                ],
                "summary":"V1.0",
                "description":"Updates visit assignments for a form. Use the latest supported version of this endpoint in v17.0 for current behavior.",
                "operationId":"processFormVisits_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"List of visits to associate with the form. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV1"
                                }
                            },
                            "examples":{
                                "updateFormVisitsV1Request":{
                                    "description":"updateFormVisitsV1Request",
                                    "value":[
                                        {
                                            "id":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "updateFormVisitsV1Response":{
                                        "description":"updateFormVisitsV1Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/lockObjectDetails":{
            "post":{
                "tags":[
                    "Designer/Lock Object APIs/Create list of locked objects"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Creates a list of locked objects as on locked date.",
                "operationId":"queryLockObjects",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter locked objects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    }
                ],
                "requestBody":{
                    "description":"List of locked objects as on locked date.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LockVersionObjectDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "lockedBy":"designer.user",
                                            "lockedOn":"2026-04-17T10:00:00Z"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockObjectDetailsDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-lockObjectDetails-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-lockobjectdetails-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/cohorts/{cohortId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Get cohort group in a randomization"
                ],
                "summary":"V1.0",
                "description":"Retrieves a specific cohort group associated with a randomization design.",
                "operationId":"getCohort",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"cohortId",
                        "in":"path",
                        "description":"Cohort identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6B3C2D1E8F4A4D56A23C9F3A0C7D4E33"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CohortDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-{cohortId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-cohortid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Update existing cohort group"
                ],
                "summary":"V1.0",
                "description":"Updates a cohort group associated with a randomization.",
                "operationId":"updateCohort",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"cohortId",
                        "in":"path",
                        "description":"Cohort identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6B3C2D1E8F4A4D56A23C9F3A0C7D4E33"
                    }
                ],
                "requestBody":{
                    "description":"Cohort payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CohortDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                        "name":"Cohort A",
                                        "number":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CohortDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-{cohortId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-cohortid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Delete cohort group"
                ],
                "summary":"V1.0",
                "description":"Removes a a cohort group from a randomization design.",
                "operationId":"deleteCohort",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"cohortId",
                        "in":"path",
                        "description":"Cohort identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6B3C2D1E8F4A4D56A23C9F3A0C7D4E33"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-{cohortId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-cohortid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/cohorts/bulk":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Update multiple existing cohort groups"
                ],
                "summary":"V1.0",
                "description":"Updates a list of cohort groups associated with a randomization design.",
                "operationId":"updateCohorts",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of cohort payloads with updated values for bulk update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RqstCohortDto"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                            "name":"Cohort A",
                                            "number":1
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "name":"Cohort A",
                                                    "number":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-bulk-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-bulk-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Create multiple cohort groups"
                ],
                "summary":"V1.0",
                "description":"Creates a list of new cohort groups associated with a randomization design.",
                "operationId":"saveCohorts",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of cohort payloads used to create cohorts in bulk.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CohortDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                            "name":"Cohort A",
                                            "number":1
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "name":"Cohort A",
                                                    "number":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-bulk-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-bulk-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Delete multiple existing cohort groups"
                ],
                "summary":"V1.0",
                "description":"Removes a list of cohort groups associated with a randomization design.",
                "operationId":"deleteCohorts",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of cohort payloads used to delete cohorts in bulk.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/CohortDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                            "name":"Cohort A",
                                            "number":1
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "name":"Cohort A",
                                                    "number":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-bulk-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-bulk-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/cohorts":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Get a list of all cohort groups in a randomization"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all cohort groups associated with a randomization design.",
                "operationId":"getCohortList",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "name":"Cohort A",
                                                    "number":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Create a single cohort group"
                ],
                "summary":"V1.0",
                "description":"Creates a new cohort group in a randomization design.",
                "operationId":"saveCohort",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Cohort payload used to create a cohort.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/CohortDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                        "name":"Cohort A",
                                        "number":1
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CohortDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-cohorts-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups by randomization ID"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm ratios associated with all cohort or stratum groups in a randomization design, filtred by randomization ID.",
                "operationId":"getRatiosList",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates treatment arm ratios associated with adaptive cohorts in a randomization design.",
                "operationId":"storeRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of treatment-arm ratio payloads with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "arms":[
                                                {
                                                    "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "ratio":1
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Create treatment arms ratios"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates treatment arm rations in a randomization design.",
                "operationId":"postRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization treatment-arm ratio payload used to create ratios.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RatioGroupingDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "arms":[
                                            {
                                                "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "ratio":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Delete all treatment arm ratios"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Use PUT instead. Delete all treatment arm ratios in a randomization design.",
                "operationId":"deleteAllRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios/{groupingsId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get treatment arm ratios for cohort or stratum groups"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves treatment arm ratios associated with a cohort or stratum group in a randomization design.",
                "operationId":"getRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates treatment arm ratios in a randomization design.",
                "operationId":"putRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Randomization treatment-arm ratio payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RatioGroupingDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "arms":[
                                            {
                                                "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "ratio":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Delete treatment arm ratios"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Use PUT instead. Removes treatment arm ratios in a randomization.",
                "operationId":"deleteRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios/arms":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get list of treatment arms"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves list of treatment arms associated with a randomization design.",
                "operationId":"getArms",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitDesignPathIds",
                        "in":"query",
                        "description":"Comma-separated list of Visit Design Path IDs (UUIDs) to scope the randomization retrieval and this parameter is applicable for algorithm type None only Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3BCE1EE7AD7B4625B76876A49A7144CF,4BCE1EE7AD7B4625B76876A49A7144CE,7BCE1EE7AD7B4625B76876A49A7144CD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioArmDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioArmDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                "name":"Primary Randomization",
                                                "method":"block"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-arms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-arms-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios/adaptivecohort":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts"
                ],
                "summary":"V1.0",
                "description":"Updates treatment arm ratios associated with adaptive cohorts in a randomization design.",
                "operationId":"putAdaptiveCohortRatios",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"query",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Array of adaptive cohort ratio payloads with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RqstCohortGroupingDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                            "name":"Cohort A",
                                            "number":1
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RqstCohortGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RqstCohortGroupingDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "name":"Cohort A",
                                                "number":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-adaptivecohort-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-ratios-adaptivecohort-put"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/{stratumId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get a stratum group"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a stratum group associated with a randomization design.",
                "operationId":"getStratum_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Update existing stratum group"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a stratum group associated with a randomization design.",
                "operationId":"updateStratum_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "requestBody":{
                    "description":"Stratum payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StratumDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                        "name":"Age 18-65"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Delete a stratum group"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a stratum group associated with a randomization design.",
                "operationId":"deleteStratum_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"stratumId",
                        "in":"path",
                        "description":"Stratum identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"5C2D1E8F4A6B4D56A23C9F3A0C7D4E44"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-{stratumId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-stratumid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata/bulk":{
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Update randomization cohort groups"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates a list of cohort groups associated with a randomization design.",
                "operationId":"updateStratums_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads with updated values for bulk update.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Create list of cohort groups"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates a list of new cohort groups associated with a randomization design.",
                "operationId":"saveStratums_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads used to create strata in bulk.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Delete cohort groups"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes a list of cohort groups associated with a randomization design.",
                "operationId":"deleteStratums_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of stratum payloads used to delete strata in bulk.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                            "name":"Age 18-65"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-bulk-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-bulk-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/strata":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Get list of all strata groups"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of all strata groups associated with a randomization design.",
                "operationId":"getStrata",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StratumDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                    "name":"Age 18-65"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-get"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Study Strata/Create randomization stratum group"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Creates a new stratum group associated with a randomization design.",
                "operationId":"saveStratums_3",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Stratum payload used to create a stratum.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/StratumDtoV1"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                        "name":"Age 18-65"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/StratumDtoV1"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"4BCE1EE7AD7B4625B76876A49A7144CE",
                                                "name":"Age 18-65"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-strata-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-randomizations-randomid-strata-post"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a study"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms in a study for a specific study version.",
                "operationId":"getForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV1Response":{
                                        "description":"listVisitFormsV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-forms-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Update forms of a specific visit"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Updates forms associated with a specific visit in a study.",
                "operationId":"updateForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of form IDs to associate with the visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "replaceVisitFormsV1Request":{
                                    "description":"replaceVisitFormsV1Request",
                                    "value":[
                                        "B1B8327AFAA6412287106192AB5984EF",
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "replaceVisitFormsV1Response":{
                                        "description":"replaceVisitFormsV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-forms-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Delete specific or all forms from a visit"
                ],
                "summary":"V1.0",
                "description":"Removes specified or all forms from a specific visit in a study.",
                "operationId":"removeForms",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Form IDs to remove from the visit. Omit or pass null to remove all forms.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-forms-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms/{formId}":{
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove visit form"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Removes one form from a visit in a study version. Use the latest supported visit-form endpoint in v17.0 for current behavior.",
                "operationId":"removeForm",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormV1Response":{
                                        "description":"removeVisitFormV1Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-studyid-versions-version-visits-visitid-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v1.0/visitschedules/{studyId}/{version}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule of a study version"
                ],
                "summary":"[Deprecated]: V1.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule in a study for a study version.",
                "operationId":"getVisitSchedule_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v1.0-visitschedules-{studyId}-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-visitschedules-studyid-version-get"
            }
        },
        "/ec-designer-svc/rest/v1.0/studies/welcome":{
            "get":{
                "tags":[
                    "Designer/Welcome APIs/Get welcome message"
                ],
                "summary":"V1.0",
                "description":"Retrieves a welcome message.",
                "operationId":"getWelcome",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Optional. When omitted, tenant-level welcome text is used.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"00000000000000000000000000000000"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/WelcomeDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "message":"Welcome to Clinical One Design",
                                                "tenant":"DESIGN"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-welcome-get",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-welcome-get"
            },
            "put":{
                "tags":[
                    "Designer/Welcome APIs/Update welcome message"
                ],
                "summary":"V1.0",
                "description":"Updates a welcome message.",
                "operationId":"updateWelcome",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Optional. When omitted, tenant-level welcome text is used.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"00000000000000000000000000000000"
                    }
                ],
                "requestBody":{
                    "description":"Welcome message payload used to update an existing welcome configuration.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RqstWelcomeDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "message":"Welcome to Clinical One Design",
                                        "tenant":"DESIGN"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/WelcomeDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "message":"Welcome to Clinical One Design",
                                                "tenant":"DESIGN"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-welcome-put",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-welcome-put"
            },
            "post":{
                "tags":[
                    "Designer/Welcome APIs/Create welcome message"
                ],
                "summary":"V1.0",
                "description":"Creates a welcome message.",
                "operationId":"createWelcome",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Optional. When omitted, tenant-level welcome text is used.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"00000000000000000000000000000000"
                    }
                ],
                "requestBody":{
                    "description":"Welcome message payload used to create a welcome configuration.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RqstWelcomeDto"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "message":"Welcome to Clinical One Design",
                                        "tenant":"DESIGN"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/WelcomeDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "message":"Welcome to Clinical One Design",
                                                "tenant":"DESIGN"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-welcome-post",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-welcome-post"
            },
            "delete":{
                "tags":[
                    "Designer/Welcome APIs/Delete welcome message"
                ],
                "summary":"V1.0",
                "description":"Deletes a welcome message.",
                "operationId":"deleteWelcome",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"studyId",
                        "in":"query",
                        "description":"Study identifier (UUID, 32-character uppercase hexadecimal string). Optional. When omitted, tenant-level welcome text is used.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"00000000000000000000000000000000"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/WelcomeDto"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "message":"Welcome to Clinical One Design",
                                                "tenant":"DESIGN"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v1.0-studies-welcome-delete",
                "x-filename-id":"ec-designer-svc-rest-v1.0-studies-welcome-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/forms/{formId}/itemhistory":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item History/Get questions history for a form"
                ],
                "summary":"V2.0",
                "description":"Retrieves history of questions associated with a specific form.",
                "operationId":"getItemHistory_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormHistoryDto"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-forms-{formId}-itemhistory-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-forms-formid-itemhistory-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/{formId}/items":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get questions for a form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves questions associated with a specific form.",
                "operationId":"getItems_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-items-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-items-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Item/Add a question in a form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Adds a question to a specific form in a study.",
                "operationId":"addItem_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to create a new form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-items-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-items-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/forms/{formId}/items/{itemId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get a question for a form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific question associated with a form.",
                "operationId":"getItem_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-items-itemid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Form Item/Update a question in a form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates a question included in a form in a study.",
                "operationId":"updateItem_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to update an existing form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-items-itemid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Form Item/Delete a question from a form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes a question from a specific form in a study.",
                "operationId":"deleteItem_1",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-forms-formid-items-itemid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/lockObjectDetails":{
            "post":{
                "tags":[
                    "Designer/Lock Object APIs/Get locked objects"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of locked objects as on locked date.",
                "operationId":"queryLockObjects_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter locked objects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"showVisitDetails",
                        "in":"query",
                        "description":"Include visit-level lock details in the response. Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"itemsIncluded",
                        "in":"query",
                        "description":"Include item details in the response payload. Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of locked objects as on locked date.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LockObjectDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "lockedBy":"designer.user",
                                            "lockedOn":"2026-04-17T10:00:00Z"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockObjectDetailsDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-lockObjectDetails-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-lockobjectdetails-post"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/cohorts":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Cohorts/Get a list of all cohort groups in a randomization"
                ],
                "summary":"V2.0",
                "description":"Retrieves a list of all cohort groups associated with a randomization design.",
                "operationId":"getCohortList_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/CohortDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "name":"Cohort A",
                                                    "number":1
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-cohorts-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-cohorts-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups by randomization ID"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves a list of treatment arm ratios associated with all cohort or stratum groups in a randomization design, filtred by randomization ID.",
                "operationId":"getRatiosList_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Updates treatment arm ratios associated with adaptive cohorts in a randomization design.",
                "operationId":"storeRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of treatment-arm ratio payloads with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "arms":[
                                                {
                                                    "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "ratio":1
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Create treatment arms ratios"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Creates treatment arm rations in a randomization design.",
                "operationId":"postRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization treatment-arm ratio payload used to create ratios.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RatioGroupingDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "arms":[
                                            {
                                                "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "ratio":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-post",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Delete all treatment arm ratios"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Use PUT instead. Delete all treatment arm ratios in a randomization design.",
                "operationId":"deleteAllRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios/{groupingsId}":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get treatment arm ratios for cohort or stratum groups"
                ],
                "summary":"V2.0",
                "description":"Retrieves treatment arm ratios associated with a cohort or stratum group in a randomization design.",
                "operationId":"getRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios"
                ],
                "summary":"V2.0",
                "description":"Updates treatment arm ratios in a randomization design.",
                "operationId":"putRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "requestBody":{
                    "description":"Randomization treatment-arm ratio payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RatioGroupingDtoV2"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "arms":[
                                            {
                                                "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "ratio":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Delete treatment arm ratios"
                ],
                "summary":"V2.0",
                "description":"Use PUT instead. Removes treatment arm ratios in a randomization.",
                "operationId":"deleteRatios_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"groupingsId",
                        "in":"path",
                        "description":"Randomization cohort/stratum grouping identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV2"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-{groupingsId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-groupingsid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios/arms":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get list of treatment arms"
                ],
                "summary":"V2.0",
                "description":"Retrieves list of treatment arms associated with a randomization design.",
                "operationId":"getArms_1",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitDesignPathIds",
                        "in":"query",
                        "description":"Comma-separated list of Visit Design Path IDs (UUIDs) to scope the randomization retrieval and this parameter is applicable for algorithm type None only Optional.",
                        "schema":{
                            "type":"string"
                        },
                        "example":"3BCE1EE7AD7B4625B76876A49A7144CF,4BCE1EE7AD7B4625B76876A49A7144CE,7BCE1EE7AD7B4625B76876A49A7144CD"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioArmDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioArmDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"8E1A7B6C2D3F4A55B12C9D4E6F708192",
                                                    "name":"Primary Randomization",
                                                    "method":"block"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-arms-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-randomizations-randomid-ratios-arms-get"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/List visit forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms associated with a visit in a study version. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` for the active endpoint.",
                "operationId":"getForms_15",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response level. Optional. Allowed values: `summary` (default), `details`.",
                        "schema":{
                            "type":"string",
                            "example":"summary",
                            "default":"summary"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV2"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV2Response":{
                                        "description":"listVisitFormsV2Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-forms-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Replace visit forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Replaces form assignments on a visit for a study version. Use the latest supported visit-form endpoint in v17.0 for current behavior.",
                "operationId":"updateForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of form IDs to associate with the visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "replaceVisitFormsV2Request":{
                                    "description":"replaceVisitFormsV2Request",
                                    "value":[
                                        "B1B8327AFAA6412287106192AB5984EF",
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "replaceVisitFormsV2Response":{
                                        "description":"replaceVisitFormsV2Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-put",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-forms-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove multiple visit forms"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes selected forms from a visit or removes all forms when payload is omitted.",
                "operationId":"removeForms_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Form IDs to remove from the visit. Omit or pass null to remove all forms.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormsV2Response":{
                                        "description":"removeVisitFormsV2Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-forms-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms/{formId}":{
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove visit form"
                ],
                "summary":"[Deprecated]: V2.0",
                "description":"Deprecated: Use latest version instead. Removes one form from a visit in a study version. Use the latest supported visit-form endpoint in v17.0 for current behavior.",
                "operationId":"removeForm_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV1"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormV2Response":{
                                        "description":"removeVisitFormV2Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v2.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v2.0-studies-studyid-versions-version-visits-visitid-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v2.0/visitschedules/{studyId}/{version}":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule of a study version"
                ],
                "summary":"V2.0",
                "description":"Retrieves the visit schedule in a study for a study version.",
                "operationId":"getVisitSchedule_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v2.0-visitschedules-{studyId}-{version}-get",
                "x-filename-id":"ec-designer-svc-rest-v2.0-visitschedules-studyid-version-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms/{formId}/items":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get questions for a form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves questions associated with a specific form.",
                "operationId":"getItems_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-items-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-items-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Item/Add a question in a form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Adds a question to a specific form in a study.",
                "operationId":"addItem_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to create a new form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-items-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-items-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/forms/{formId}/items/{itemId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get a question for a form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific question associated with a form.",
                "operationId":"getItem_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-items-itemid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Form Item/Update a question in a form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Updates a question included in a form in a study.",
                "operationId":"updateItem_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to update an existing form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-items-itemid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Form Item/Delete a question from a form"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Removes a question from a specific form in a study.",
                "operationId":"deleteItem_2",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"object"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Design Item"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-forms-formid-items-itemid-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/lockObjectDetails":{
            "post":{
                "tags":[
                    "Designer/Lock Object APIs/Get locked objects"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Retrieves a list of locked objects as on locked date.",
                "operationId":"queryLockObjects_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"mode",
                        "in":"query",
                        "description":"Study mode to filter locked objects.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        },
                        "example":"test"
                    },
                    {
                        "name":"showVisitDetails",
                        "in":"query",
                        "description":"Include visit-level lock details in the response. Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":false
                    },
                    {
                        "name":"itemsIncluded",
                        "in":"query",
                        "description":"Include item details in the response payload. Optional.",
                        "schema":{
                            "type":"boolean"
                        },
                        "example":true
                    },
                    {
                        "name":"excludeItemType",
                        "in":"query",
                        "description":"Form Item type to exclude from response Optional.",
                        "schema":{
                            "type":"string",
                            "enum":[
                                "instructionalText"
                            ]
                        },
                        "example":"instructionalText"
                    },
                    {
                        "name":"dynamicData",
                        "in":"query",
                        "description":"Return dynamic data in lock details. Optional.",
                        "schema":{
                            "type":"boolean",
                            "default":true
                        },
                        "example":true
                    }
                ],
                "requestBody":{
                    "description":"List of locked objects as on locked date.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/LockObjectDtoV3"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"F054C951EB74443C93716CA714AB686E",
                                            "lockedBy":"designer.user",
                                            "lockedOn":"2026-04-17T10:00:00Z"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/LockObjectDetailsDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"F054C951EB74443C93716CA714AB686E",
                                                "lockedBy":"designer.user",
                                                "lockedOn":"2026-04-17T10:00:00Z"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-lockObjectDetails-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-lockobjectdetails-post"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/randomizations/{randomId}/ratios":{
            "get":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups by randomization ID"
                ],
                "summary":"V3.0",
                "description":"Retrieves a list of treatment arm ratios associated with all cohort or stratum groups in a randomization design, filtred by randomization ID.",
                "operationId":"getRatiosList_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-ratios-get"
            },
            "put":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts"
                ],
                "summary":"V3.0",
                "description":"Updates treatment arm ratios associated with adaptive cohorts in a randomization design.",
                "operationId":"storeRatios_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of treatment-arm ratio payloads with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                            "arms":[
                                                {
                                                    "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                    "ratio":1
                                                }
                                            ]
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-ratios-put"
            },
            "post":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Create treatment arms ratios"
                ],
                "summary":"V3.0",
                "description":"Creates treatment arm rations in a randomization design.",
                "operationId":"postRatios_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Randomization treatment-arm ratio payload used to create ratios.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/RatioGroupingDtoV3"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                        "arms":[
                                            {
                                                "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                "ratio":1
                                            }
                                        ]
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "arms":[
                                                    {
                                                        "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                        "ratio":1
                                                    }
                                                ]
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-post",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-ratios-post"
            },
            "delete":{
                "tags":[
                    "Designer/Randomization APIs/Randomization Ratios/Delete all treatment arm ratios"
                ],
                "summary":"V3.0",
                "description":"Use PUT instead. Delete all treatment arm ratios in a randomization design.",
                "operationId":"deleteAllRatios_2",
                "parameters":[
                    {
                        "name":"randomId",
                        "in":"path",
                        "description":"Randomization identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"8E1A7B6C2D3F4A55B12C9D4E6F708192"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "204":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RatioGroupingDtoV3"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "groupingId":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                    "arms":[
                                                        {
                                                            "armId":"3BCE1EE7AD7B4625B76876A49A7144CF",
                                                            "ratio":1
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-randomizations-{randomId}-ratios-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-randomizations-randomid-ratios-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/List visit forms"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms associated with a visit for the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` for the active endpoint.",
                "operationId":"getForms_16",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV3"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV3Response":{
                                        "description":"listVisitFormsV3Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-forms-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Update forms of a specific visit"
                ],
                "summary":"V3.0",
                "description":"Updates forms associated with a specific visit in a study.",
                "operationId":"updateForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of form IDs to associate with the visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "replaceVisitFormsV3Request":{
                                    "description":"replaceVisitFormsV3Request",
                                    "value":[
                                        "B1B8327AFAA6412287106192AB5984EF",
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV3"
                                    }
                                },
                                "examples":{
                                    "replaceVisitFormsV3Response":{
                                        "description":"replaceVisitFormsV3Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-put",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-forms-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove multiple visit forms"
                ],
                "summary":"[Deprecated]: V3.0",
                "description":"Deprecated: Use latest version instead. Removes selected forms from a visit or removes all forms when payload is omitted.",
                "operationId":"removeForms_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Form IDs to remove from the visit. Omit or pass null to remove all forms.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV3"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormsV3Response":{
                                        "description":"removeVisitFormsV3Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-forms-delete"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms/rules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get visit form rules"
                ],
                "summary":"V3.0",
                "description":"Retrieves item rules for forms on a visit. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"getItemRules",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"property",
                        "in":"query",
                        "description":"Rule lookup property (`item` or `visitStartDate`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"item"
                        },
                        "example":"item"
                    },
                    {
                        "name":"formId",
                        "in":"query",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"itemId",
                        "in":"query",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Optional.",
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemRuleDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-rules-get",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-forms-rules-get"
            }
        },
        "/ec-designer-svc/rest/v3.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms/{formId}":{
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Delete form from a specific visit"
                ],
                "summary":"V3.0",
                "description":"Removes form from a specific visit in a study.",
                "operationId":"removeForm_2",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV3"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormV3Response":{
                                        "description":"removeVisitFormV3Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v3.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v3.0-studies-studyid-versions-version-visits-visitid-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms/{formId}/items":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get questions for a form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves questions associated with a specific form.",
                "operationId":"getItems_3",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV4"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-items-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-items-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Item/Add a question in a form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Adds a question to a specific form in a study.",
                "operationId":"addItem_3",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to create a new form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-items-post",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-items-post"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/forms/{formId}/items/{itemId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get a question for a form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves a specific question associated with a form.",
                "operationId":"getItem_3",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-items-itemid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Form Item/Update a question in a form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Updates a question included in a form in a study.",
                "operationId":"updateItem_3",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV4"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV4"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-items-itemid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Form Item/Delete a question from a form"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Removes a question from a specific form in a study.",
                "operationId":"deleteItem_3",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-forms-formid-items-itemid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/List visit forms"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves forms associated with a visit for the requested study version. Use `/v17.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms` for the active endpoint.",
                "operationId":"getForms_17",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV4"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV4Response":{
                                        "description":"listVisitFormsV4Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-forms-get"
            },
            "put":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Replace visit forms"
                ],
                "summary":"V4.0",
                "description":"Replaces forms on a visit for the requested study version. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"updateForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"List of form IDs to associate with the visit. Required.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "replaceVisitFormsV4Request":{
                                    "description":"replaceVisitFormsV4Request",
                                    "value":[
                                        "B1B8327AFAA6412287106192AB5984EF",
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV4"
                                    }
                                },
                                "examples":{
                                    "replaceVisitFormsV4Response":{
                                        "description":"replaceVisitFormsV4Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-put",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-forms-put"
            },
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove multiple visit forms"
                ],
                "summary":"V4.0",
                "description":"Removes selected forms from a visit or removes all forms when payload is omitted.",
                "operationId":"removeForms_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    }
                ],
                "requestBody":{
                    "description":"Form IDs to remove from the visit. Omit or pass null to remove all forms.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        "2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                    ]
                                }
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV4"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormsV4Response":{
                                        "description":"removeVisitFormsV4Response",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-forms-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms/{formId}":{
            "delete":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Remove visit form"
                ],
                "summary":"V4.0",
                "description":"Removes one form from a visit for the requested study version. Use the latest supported version of this endpoint in v17.0 for current behavior and metadata.",
                "operationId":"removeForm_3",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/VisitFormDtoV4"
                                    }
                                },
                                "examples":{
                                    "removeVisitFormV4Response":{
                                        "description":"removeVisitFormV4Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "visitId":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77",
                                                    "formId":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-{formId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visits-visitid-forms-formid-delete"
            }
        },
        "/ec-designer-svc/rest/v4.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V4.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_5",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV2"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v4.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v4.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/forms/{formId}/items":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get questions for a form"
                ],
                "summary":"V5.0",
                "description":"Retrieves questions associated with a specific form.",
                "operationId":"getItems_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormItemDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "name":"Demographics",
                                                    "title":"Demographics"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-items-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-items-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form Item/Add a question in a form"
                ],
                "summary":"V5.0",
                "description":"Adds a question to a specific form in a study.",
                "operationId":"addItem_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload used to create a new form item.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-items-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-items-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/forms/{formId}/items/{itemId}":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form Item/Get a question for a form"
                ],
                "summary":"V5.0",
                "description":"Retrieves a specific question associated with a form.",
                "operationId":"getItem_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-items-itemid-get"
            },
            "put":{
                "tags":[
                    "Designer/Form APIs/Form Item/Update a question in a form"
                ],
                "summary":"V5.0",
                "description":"Updates a question included in a form in a study.",
                "operationId":"updateItem_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "requestBody":{
                    "description":"Form item payload with updated values.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "$ref":"#/components/schemas/FormItemDtoV5"
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":{
                                        "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                        "name":"Demographics",
                                        "title":"Demographics"
                                    }
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/FormItemDtoV5"
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-put",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-items-itemid-put"
            },
            "delete":{
                "tags":[
                    "Designer/Form APIs/Form Item/Delete a question from a form"
                ],
                "summary":"V5.0",
                "description":"Removes a question from a specific form in a study.",
                "operationId":"deleteItem_4",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"itemId",
                        "in":"path",
                        "description":"Item identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"6F4A6C7E1B8F4D56A23C9F3A0C7D4E55"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-items-{itemId}-delete",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-items-itemid-delete"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV1"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of form-visit payloads used to associate visits with a form.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV1"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                            "name":"Demographics",
                                            "title":"Demographics"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a study"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves all forms in a study for a specific study version.",
                "operationId":"getForms_29",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV5"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV5Response":{
                                        "description":"listVisitFormsV5Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v5.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V5.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_10",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v5.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v5.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/forms/{formId}/visits":{
            "get":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Get visits associated with a form"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves visits associated with a specific form in a study.",
                "operationId":"getVisits_6",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormVisitDtoV6"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                "name":"Demographics",
                                                "title":"Demographics"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-formid-visits-get"
            },
            "post":{
                "tags":[
                    "Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Processes visits to be associated with a specific form in a study.",
                "operationId":"processFormVisits_6",
                "parameters":[
                    {
                        "name":"formId",
                        "in":"path",
                        "description":"Form identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11"
                    },
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    }
                ],
                "requestBody":{
                    "description":"Array of form-visit payloads used to associate visits with a form.",
                    "content":{
                        "application/json":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormVisitDtoV6"
                                }
                            },
                            "examples":{
                                "requestExample":{
                                    "description":"requestExample",
                                    "value":[
                                        {
                                            "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                            "name":"Demographics",
                                            "title":"Demographics"
                                        }
                                    ]
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":"success"
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-forms-{formId}-visits-post",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-forms-formid-visits-post"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/visits/{visitid}/forms":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Forms/Get list of forms in a study"
                ],
                "summary":"V6.0",
                "description":"Retrieves all forms in a study for a specific study version.",
                "operationId":"getForms_18",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"visitid",
                        "in":"path",
                        "description":"Visit ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"9F4A6C7E1B8F4D56A23C9F3A0C7D4E77"
                    },
                    {
                        "name":"response",
                        "in":"query",
                        "description":"Response detail level (`summary` or `details`). Optional.",
                        "schema":{
                            "type":"string",
                            "default":"summary"
                        },
                        "example":"summary"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/FormDtoV7"
                                    }
                                },
                                "examples":{
                                    "listVisitFormsV6Response":{
                                        "description":"listVisitFormsV6Response",
                                        "value":{
                                            "result":[
                                                {
                                                    "id":"2F9A6C7E1B8F4D56A23C9F3A0C7D4E11",
                                                    "title":"Demographics",
                                                    "visitName":"Screening"
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visits-{visitid}-forms-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visits-visitid-forms-get"
            }
        },
        "/ec-designer-svc/rest/v6.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V6.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_11",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Whether to include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v6.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v6.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings":{
            "get":{
                "tags":[
                    "Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version"
                ],
                "summary":"V7.0",
                "description":"Retrieves a list of treatment arm dispensations for a study version.",
                "operationId":"getDispensings_23",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"armId",
                        "in":"path",
                        "description":"Treatment arm identifier (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        },
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    {
                        "name":"kitType",
                        "in":"query",
                        "description":"Type of kits requested: `standard`, `titration`, `device`, or `all`. Optional.",
                        "schema":{
                            "type":"string",
                            "default":"ALL"
                        },
                        "example":"ALL"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/RespArmKitVisitDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"7A4D3C2B1E8F4D56A23C9F3A0C7D4E22",
                                                "name":"Starter Kit",
                                                "kitType":"standard"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-arms-{armId}-dispensings-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-arms-armid-dispensings-get"
            }
        },
        "/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/visitschedules":{
            "get":{
                "tags":[
                    "Designer/Visit APIs/Visit Schedule/Get visit schedule"
                ],
                "summary":"[Deprecated]: V7.0",
                "description":"Deprecated: Use latest version instead. Retrieves the visit schedule of a study.",
                "operationId":"getVisitSchedule_12",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID (UUID, 32-character uppercase hexadecimal string). Required.",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "format":"uuid"
                        },
                        "example":"F054C951EB74443C93716CA714AB686E"
                    },
                    {
                        "name":"version",
                        "in":"path",
                        "description":"Study version path segment. Required. Example: \"1.0.0.1\".",
                        "required":true,
                        "schema":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"1.0.0.1"
                        },
                        "example":"1.0.0.1"
                    },
                    {
                        "name":"unscheduledVisits",
                        "in":"query",
                        "description":"Whether to include unscheduled visit or not.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "default":"include"
                        },
                        "example":"include"
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                                    }
                                },
                                "examples":{
                                    "successResponse":{
                                        "description":"successResponse",
                                        "value":{
                                            "result":{
                                                "id":"6D3A9B2E5C1F4A77B22D5E9F1A8C3344",
                                                "name":"Baseline",
                                                "day":1
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "deprecated":true,
                "x-internal-id":"ec-designer-svc-rest-v7.0-studies-{studyId}-versions-{version}-visitschedules-get",
                "x-filename-id":"ec-designer-svc-rest-v7.0-studies-studyid-versions-version-visitschedules-get"
            }
        },
        "/ec-coding-svc/rest/v1.0/studies/{studyId}/{mode}/verbatimTerms":{
            "get":{
                "tags":[
                    "Coding/Verbatim Terms/Get list of verbatim terms to code"
                ],
                "summary":"v1.0",
                "description":"Retrieves the list of verbatim terms to be coded with datafilter, bookmark and number of records needed.",
                "operationId":"getValuesToCode",
                "parameters":[
                    {
                        "name":"startingTargetItem",
                        "in":"query",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"maxTargetItems",
                        "in":"query",
                        "schema":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    {
                        "name":"bookMark",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    },
                    {
                        "name":"dataFilter",
                        "in":"query",
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/AutoCodeResp"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/AutoCodeResp"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-verbatimTerms-get",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-verbatimterms-get"
            }
        },
        "/ec-coding-svc/rest/v1.0/studies/{studyId}/{mode}/codedValues":{
            "put":{
                "tags":[
                    "Coding/Verbatim Terms/Update status of created queries or discrepancies"
                ],
                "summary":"v1.0",
                "description":"Updates coded verbatim terms back in forms.",
                "operationId":"updateCodedValues",
                "requestBody":{
                    "content":{
                        "application/xml":{
                            "schema":{
                                "$ref":"#/components/schemas/PutCodingDataReq"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/AutoCodeResp"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/AutoCodeResp"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-codedValues-put",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-codedvalues-put"
            }
        },
        "/ec-coding-svc/rest/v1.0/studies/{studyId}/{mode}/query":{
            "put":{
                "tags":[
                    "Coding/Query Resource/Update status of created queries or discrepancies"
                ],
                "summary":"v1.0",
                "description":"Updates the status of Central Coding created queries or discrepancies. Allowed statuses are open, close, delete.",
                "operationId":"updateCodedValues_1",
                "requestBody":{
                    "description":"Query update request with status, revision and discrepancy ID.",
                    "content":{
                        "application/xml":{
                            "schema":{
                                "$ref":"#/components/schemas/UpdateRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/UpdateResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/UpdateResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-query-put",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-query-put"
            },
            "post":{
                "tags":[
                    "Coding/Query Resource/Create queries or discrepancies"
                ],
                "summary":"v1.0",
                "description":"Creates Central Coding queries or discrepancies. Allowed status is open.",
                "operationId":"createQuery",
                "requestBody":{
                    "description":"Query issue request with status, revision and discrepancy ID.",
                    "content":{
                        "application/xml":{
                            "schema":{
                                "$ref":"#/components/schemas/IssueRequest"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/IssueResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/IssueResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-query-post",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-query-post"
            }
        },
        "/ec-coding-svc/rest/v1.0/studies/{studyId}/{mode}/query/transaction":{
            "get":{
                "tags":[
                    "Coding/Query Resource/Get query details on a verbatim term from Clinical One"
                ],
                "summary":"v1.0",
                "description":"Retrieves query details using transaction ID from Central Coding.",
                "operationId":"getQueryDetails",
                "parameters":[
                    {
                        "name":"transactionId",
                        "in":"query",
                        "description":"Query update request with status, revision and discrepancy ID.",
                        "required":true,
                        "schema":{
                            "type":"string"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/DetailByTransactionIdResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/DetailByTransactionIdResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-query-transaction-get",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-query-transaction-get"
            }
        },
        "/ec-coding-svc/rest/v1.0/studies/{studyId}/{mode}/query/discrepancy":{
            "post":{
                "tags":[
                    "Coding/Query Resource/Get query details by query ID or discrepancy ID and revision number"
                ],
                "summary":"v1.0",
                "description":"Retrieves details of a query raised in Central Coding using discrepancy ID and revision number.",
                "operationId":"queryHistoryDetailsByDiscrepancyId",
                "requestBody":{
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/DiscrepancyListRequest"
                            }
                        }
                    }
                },
                "responses":{
                    "200":{
                        "description":"Success",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "type":"array",
                                    "items":{
                                        "$ref":"#/components/schemas/HistoryByGuidResponse"
                                    }
                                }
                            }
                        }
                    },
                    "400":{
                        "description":"Bad Request",
                        "content":{
                            "application/xml":{
                                "schema":{
                                    "$ref":"#/components/schemas/HistoryByGuidResponse"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-coding-svc-rest-v1.0-studies-{studyId}-{mode}-query-discrepancy-post",
                "x-filename-id":"ec-coding-svc-rest-v1.0-studies-studyid-mode-query-discrepancy-post"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments":{
            "post":{
                "tags":[
                    "Comments/Add comment or reply to an object"
                ],
                "summary":"V1.0",
                "description":"Adds a comment or reply to an object's comment section.",
                "operationId":"createComment_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"The comment to add.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CommentsDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CommentDto"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-post",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-post"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/{commentId}":{
            "put":{
                "tags":[
                    "Comments/Update comment"
                ],
                "summary":"V1.0",
                "description":"Updates a particular comment or reply. Updates either its content or marks it as resolved.",
                "operationId":"updateComment_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"commentId",
                        "in":"path",
                        "description":"The object ID associated to the comment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"The comment to update.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CommentsDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CommentDto"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-{commentId}-put",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-commentid-put"
            },
            "delete":{
                "tags":[
                    "Comments/Delete comment or reply"
                ],
                "summary":"V1.0",
                "description":"Deletes a comment or a reply from an object or comment chain.",
                "operationId":"deleteComment_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"commentId",
                        "in":"path",
                        "description":"The object ID associated to the comment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation."
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-{commentId}-delete",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-commentid-delete"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/objects/{objectId}":{
            "get":{
                "tags":[
                    "Comments/Get all comments for an object"
                ],
                "summary":"V1.0",
                "description":"Retrieves all comments and replies for a particular object.",
                "operationId":"getAllCommentsByObjectId_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"objectId",
                        "in":"path",
                        "description":"The object ID associated to the comment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CommentDto"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-objects-{objectId}-get",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-objects-objectid-get"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/objects":{
            "post":{
                "tags":[
                    "Comments/Post comment or reply"
                ],
                "summary":"V1.0",
                "description":"Posts a comment or reply on a specific object.",
                "operationId":"getAllCommentsByObjectIds_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"The comment to post.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/CommentDto"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-objects-post",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-objects-post"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/objects/{objectId}/unreadCount":{
            "get":{
                "tags":[
                    "Comments/Get unread comments count for an object"
                ],
                "summary":"V1.0",
                "description":"Retrieves unread comments and replies count for a particular object.",
                "operationId":"getUnreadCommentsCountByObjectId_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    {
                        "name":"objectId",
                        "in":"path",
                        "description":"The object ID associated to the comment.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"integer",
                                    "format":"int32"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-objects-{objectId}-unreadCount-get",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-objects-objectid-unreadcount-get"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/objects/unreadCount":{
            "post":{
                "tags":[
                    "Comments/Get unread comments count for a list of objects"
                ],
                "summary":"V1.0",
                "description":"Retrieves unread comments count and replies for a list of objects.",
                "operationId":"getUnreadCommentsCountByObjectIds_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"The object ID associated to the comment.",
                    "content":{
                        "*/*":{
                            "schema":{
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"integer",
                                    "format":"int32"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-objects-unreadCount-post",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-objects-unreadcount-post"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/markAsRead":{
            "post":{
                "tags":[
                    "Comments/Mark comments as read for a user"
                ],
                "summary":"V1.0",
                "description":"Marks comments as read for the given user.",
                "operationId":"markAsRead_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of comments which need to be marked as read",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CommentsReadDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"integer",
                                    "format":"int32"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-markAsRead-post",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-markasread-post"
            }
        },
        "/ec-comment-svc/rest/v1.0/studies/{studyId}/comments/markAsUnRead":{
            "post":{
                "tags":[
                    "Comments/Mark comments as unread for a user"
                ],
                "summary":"V1.0",
                "description":"Marks comments as unread for the given user.",
                "operationId":"markAsUnRead_1",
                "parameters":[
                    {
                        "name":"studyId",
                        "in":"path",
                        "description":"Study ID. Example: F054C951EB74443C93716CA714AB686E.",
                        "required":true,
                        "schema":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                ],
                "requestBody":{
                    "description":"List of comments which need to be marked as unread",
                    "content":{
                        "*/*":{
                            "schema":{
                                "$ref":"#/components/schemas/CommentsReadDtoV1"
                            }
                        }
                    },
                    "required":true
                },
                "responses":{
                    "200":{
                        "description":"Successful operation.",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "type":"integer",
                                    "format":"int32"
                                }
                            }
                        }
                    },
                    "500":{
                        "description":"Error",
                        "content":{
                            "application/json":{
                                "schema":{
                                    "$ref":"#/components/schemas/ErrorResponseData"
                                }
                            }
                        }
                    }
                },
                "x-internal-id":"ec-comment-svc-rest-v1.0-studies-{studyId}-comments-markAsUnRead-post",
                "x-filename-id":"ec-comment-svc-rest-v1.0-studies-studyid-comments-markasunread-post"
            }
        }
    },
    "components":{
        "schemas":{
            "JobStatusEntry":{
                "required":[
                    "jobId",
                    "jobStatus",
                    "ruleId"
                ],
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"E4C2D1B7A8F9465FB1E2A3C4D5879E10"
                    },
                    "jobId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule execution job. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"91F4E249F44C4C14A372EE30CEA6B7A8"
                    },
                    "jobStatus":{
                        "maxLength":64,
                        "minLength":4,
                        "type":"string",
                        "description":"Execution outcome for an individual rule job. Allowed values: Running (job currently executing), Success (job completed without errors), Failed (job exited because of an error), Cancelled (job was cancelled before completion), Completed with errors (job finished but produced warnings), Pending (job waiting to start), Rule is not in publish state (rule not promoted to the target mode), Rule is invalid (rule failed validation), Rule is disabled (rule disabled for the selected mode), Rule doesn't exist (referenced rule is missing), Failed to cancel job (service could not cancel the job), Skipped because subject is locked (subject lock prevented execution).",
                        "example":"Success",
                        "enum":[
                            "Running",
                            "Success",
                            "Failed",
                            "Cancelled",
                            "Completed with errors",
                            "Pending",
                            "Rule is not in publish state",
                            "Rule is invalid",
                            "Rule is disabled",
                            "Rule doesn't exist",
                            "Failed to cancel job",
                            "Skipped because subject is locked"
                        ]
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":1,
                        "type":"string",
                        "description":"Rule display name associated with the job execution.",
                        "example":"onesection - create query with form submit dates"
                    },
                    "jobStartDate":{
                        "maxLength":23,
                        "minLength":23,
                        "pattern":"^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}$",
                        "type":"string",
                        "description":"Job start timestamp formatted as yyyy-MM-dd HH:mm:ss.SSS in the service timezone.",
                        "example":"2025-09-07 19:12:08.747"
                    },
                    "groupJobId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the batch job that orchestrated this individual execution. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"589F499D700340DE866C8EF3ACCE1547"
                    }
                },
                "description":"Single rule execution job status entry.",
                "example":{
                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                    "jobStatus":"Success",
                    "ruleName":"onesection - create query with form submit dates",
                    "jobStartDate":"2025-09-07 19:12:08.747",
                    "groupJobId":"F8491962C1574F0A89195560670B59E8"
                }
            },
            "JobStatusResponse":{
                "required":[
                    "errorMessage"
                ],
                "type":"object",
                "properties":{
                    "jobStatus":{
                        "type":"array",
                        "description":"Array of job status entries returned by the rule execution service. Allowed job status values: Running, Success, Failed, Cancelled, Completed with errors, Pending, Rule is not in publish state, Rule is invalid, Rule is disabled, Rule doesn't exist, Failed to cancel job, Skipped because subject is locked.",
                        "example":[
                            {
                                "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                "jobStatus":"Success",
                                "ruleName":"onesection - create query with form submit dates",
                                "jobStartDate":"2025-09-07 19:12:08.747",
                                "groupJobId":"F8491962C1574F0A89195560670B59E8"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/JobStatusEntry"
                        }
                    },
                    "errorMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Overall outcome for the job status request. Provide \"Success\" when all jobs were evaluated successfully; otherwise supply a concise explanation of the failure.",
                        "example":"Success"
                    }
                },
                "description":"Response payload returned by rule job status endpoints."
            },
            "RuleIdsTO":{
                "title":"Rule IDs Object",
                "type":"object",
                "properties":{
                    "ruleIds":{
                        "type":"array",
                        "description":"Ordered collection of rule identifiers to include. Provide between one and five hundred values.",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[0-9A-F]{32}$",
                            "type":"string",
                            "description":"32-character uppercase hexadecimal rendering of a rule UUID. Dashes and lowercase letters are rejected.",
                            "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                        }
                    }
                },
                "description":"Object containing a list of Rule IDs"
            },
            "RuleIdsRequest":{
                "type":"object",
                "properties":{
                    "ruleIds":{
                        "type":"array",
                        "description":"Ordered collection of rule identifiers to include. Provide between one and five hundred values.",
                        "example":[
                            "0E1A63683F884B13A3E7BEE9CA4FF1EA",
                            "DBF2C278385E4AF4BA4FBF2AA76D194F"
                        ],
                        "items":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "description":"Rule UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                            "example":"E4C2D1B7A8F9465FB1E2A3C4D5879E10"
                        }
                    }
                },
                "description":"List of rule identifiers supplied to the re-execution APIs."
            },
            "RuleHistoryEntry":{
                "required":[
                    "jobId",
                    "ruleId"
                ],
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"704A7178208D44BC9AD52556B18933C3"
                    },
                    "jobId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule execution job. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"0E2428167F66445BAB544C7CDD884E87"
                    },
                    "jobStatus":{
                        "maxLength":64,
                        "minLength":4,
                        "type":"string",
                        "description":"Execution outcome for an individual rule job. Allowed values: Running (job currently executing), Success (job completed without errors), Failed (job exited because of an error), Cancelled (job was cancelled before completion), Completed with errors (job finished but produced warnings), Pending (job waiting to start), Rule is not in publish state (rule not promoted to the target mode), Rule is invalid (rule failed validation), Rule is disabled (rule disabled for the selected mode), Rule doesn't exist (referenced rule is missing), Failed to cancel job (service could not cancel the job), Skipped because subject is locked (subject lock prevented execution).",
                        "example":"Success",
                        "enum":[
                            "Running",
                            "Success",
                            "Failed",
                            "Cancelled",
                            "Completed with errors",
                            "Pending",
                            "Rule is not in publish state",
                            "Rule is invalid",
                            "Rule is disabled",
                            "Rule doesn't exist",
                            "Failed to cancel job",
                            "Skipped because subject is locked"
                        ]
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":1,
                        "type":"string",
                        "description":"Rule display name associated with the historical job execution.",
                        "example":"screening - create query with form submit dates"
                    },
                    "jobStartDate":{
                        "maxLength":23,
                        "minLength":23,
                        "pattern":"^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}$",
                        "type":"string",
                        "description":"Job start timestamp formatted as yyyy-MM-dd HH:mm:ss.SSS in the service timezone.",
                        "example":"2025-09-07 19:08:07.437"
                    },
                    "userId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the user that initiated the rule execution. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"0000000000000000000000000000000A"
                    },
                    "countPassedSubjects":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of subjects for which the rule passed. Negative values are not allowed.",
                        "format":"int32",
                        "example":1
                    },
                    "countFailedSubjects":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of subjects for which the rule failed. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    }
                },
                "description":"Individual rule re-run history entry.",
                "example":{
                    "ruleId":"704A7178208D44BC9AD52556B18933C3",
                    "jobId":"0E2428167F66445BAB544C7CDD884E87",
                    "jobStatus":"Success",
                    "ruleName":"screening - create query with form submit dates",
                    "jobStartDate":"2025-09-07 19:08:07.437",
                    "userId":"0000000000000000000000000000000A",
                    "countPassedSubjects":1,
                    "countFailedSubjects":0
                }
            },
            "RuleHistoryResponse":{
                "required":[
                    "status"
                ],
                "type":"object",
                "properties":{
                    "ruleHistory":{
                        "type":"array",
                        "description":"Collection of rule history entries returned for the provided rule identifier.",
                        "example":[
                            {
                                "ruleId":"704A7178208D44BC9AD52556B18933C3",
                                "jobId":"0E2428167F66445BAB544C7CDD884E87",
                                "jobStatus":"Success",
                                "ruleName":"screening - create query with form submit dates",
                                "jobStartDate":"2025-09-07 19:08:07.437",
                                "userId":"0000000000000000000000000000000A",
                                "countPassedSubjects":1,
                                "countFailedSubjects":0
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleHistoryEntry"
                        }
                    },
                    "status":{
                        "maxLength":32,
                        "minLength":4,
                        "type":"string",
                        "description":"High-level status for the history request. Values: SUCCESS (history retrieved successfully), VALIDATION_ERROR (request failed validation), NOT_FOUND (no matching history records), SERVER_ERROR (unexpected service failure).",
                        "example":"SUCCESS",
                        "enum":[
                            "SUCCESS",
                            "VALIDATION_ERROR",
                            "NOT_FOUND",
                            "SERVER_ERROR"
                        ]
                    },
                    "statusDetail":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Additional detail about the rule history status. Null when the request succeeds without warnings.",
                        "nullable":true,
                        "example":"Rule execution job not found for the supplied identifier."
                    }
                },
                "description":"Envelope returned when fetching rule history by rule identifier."
            },
            "JobStatusEntryV2":{
                "required":[
                    "jobId",
                    "jobStatus",
                    "ruleId"
                ],
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"E4C2D1B7A8F9465FB1E2A3C4D5879E10"
                    },
                    "jobId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the rule execution job. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"91F4E249F44C4C14A372EE30CEA6B7A8"
                    },
                    "jobStatus":{
                        "maxLength":64,
                        "minLength":4,
                        "type":"string",
                        "description":"Execution outcome for an individual rule job. Allowed values: Running (job currently executing), Success (job completed without errors), Failed (job exited because of an error), Cancelled (job was cancelled before completion), Completed with errors (job finished but produced warnings), Pending (job waiting to start), Rule is not in publish state (rule not promoted to the target mode), Rule is invalid (rule failed validation), Rule is disabled (rule disabled for the selected mode), Rule doesn't exist (referenced rule is missing), Failed to cancel job (service could not cancel the job), Skipped because subject is locked (subject lock prevented execution).",
                        "example":"Success",
                        "enum":[
                            "Running",
                            "Success",
                            "Failed",
                            "Cancelled",
                            "Completed with errors",
                            "Pending",
                            "Rule is not in publish state",
                            "Rule is invalid",
                            "Rule is disabled",
                            "Rule doesn't exist",
                            "Failed to cancel job",
                            "Skipped because subject is locked"
                        ]
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":1,
                        "type":"string",
                        "description":"Rule display name associated with the job execution.",
                        "example":"onesection - create query with form submit dates"
                    },
                    "jobStartDate":{
                        "maxLength":23,
                        "minLength":23,
                        "pattern":"^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}\\.\\d{3}$",
                        "type":"string",
                        "description":"Job start timestamp formatted as yyyy-MM-dd HH:mm:ss.SSS in the service timezone.",
                        "example":"2025-09-07 19:12:08.747"
                    },
                    "groupJobId":{
                        "maxLength":36,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier for the batch job that orchestrated this individual execution. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"589F499D700340DE866C8EF3ACCE1547"
                    }
                },
                "description":"Single rule execution job status entry (version 2.0).",
                "example":{
                    "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                    "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                    "jobStatus":"Success",
                    "ruleName":"onesection - create query with form submit dates",
                    "jobStartDate":"2025-09-07 19:12:08.747",
                    "groupJobId":"F8491962C1574F0A89195560670B59E8"
                }
            },
            "JobStatusResponseV2":{
                "required":[
                    "errorMessage"
                ],
                "type":"object",
                "properties":{
                    "jobStatus":{
                        "type":"array",
                        "description":"Array of job status entries returned by the rule execution service. Allowed job status values: Running, Success, Failed, Cancelled, Completed with errors, Pending, Rule is not in publish state, Rule is invalid, Rule is disabled, Rule doesn't exist, Failed to cancel job, Skipped because subject is locked.",
                        "example":[
                            {
                                "ruleId":"DBF2C278385E4AF4BA4FBF2AA76D194F",
                                "jobId":"91F4E249F44C4C14A372EE30CEA6B7A8",
                                "jobStatus":"Success",
                                "ruleName":"onesection - create query with form submit dates",
                                "jobStartDate":"2025-09-07 19:12:08.747",
                                "groupJobId":"F8491962C1574F0A89195560670B59E8"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/JobStatusEntryV2"
                        }
                    },
                    "errorMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Overall outcome for the job status request. Provide \"Success\" when all jobs were evaluated successfully; otherwise supply a concise explanation of the failure.",
                        "example":"Success"
                    }
                },
                "description":"Response payload returned by rule job status endpoints in version 2.0."
            },
            "RuleIdsRequestV2":{
                "type":"object",
                "properties":{
                    "ruleIds":{
                        "type":"array",
                        "description":"Ordered collection of rule identifiers to include. Provide between one and five hundred values.",
                        "example":[
                            "0E1A63683F884B13A3E7BEE9CA4FF1EA",
                            "DBF2C278385E4AF4BA4FBF2AA76D194F"
                        ],
                        "items":{
                            "maxLength":36,
                            "minLength":32,
                            "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "description":"Rule UUID. Accepts either a compact 32-character hexadecimal value or a hyphenated 36-character UUID.",
                            "example":"E4C2D1B7A8F9465FB1E2A3C4D5879E10"
                        }
                    }
                },
                "description":"List of rule identifiers supplied to version 2.0 re-execution APIs."
            },
            "DataElementValidationDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element given in format of UUID.",
                        "example":"64C57ED1076F47078C8E5AD537244989"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C5E90E4184BC4205978759A808245E98"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"9A201C440D40426080C825762206D64B"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"12197E724A1C47C8A740153E5948AB19"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"F7F805CA51B545BFB5808EF7952ED597"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":2
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int32",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "isSubjectLocked":{
                        "type":"boolean",
                        "description":"Whether the subject is locked for this record.",
                        "example":false
                    },
                    "isItemLocked":{
                        "type":"boolean",
                        "description":"Whether the item is locked for this record.",
                        "example":true
                    },
                    "isParentLocked":{
                        "type":"boolean",
                        "description":"Whether the parent is locked for this record.",
                        "example":false
                    },
                    "isItemFrozen":{
                        "type":"boolean",
                        "description":"Whether the item is frozen for this record.",
                        "example":true
                    }
                },
                "description":"Representing validation result/status for a specific data element instance, including lock and repeat status information."
            },
            "ErrorResponseData":{
                "type":"object",
                "properties":{
                    "errorCode":{
                        "type":"string"
                    },
                    "errorMessage":{
                        "type":"string"
                    },
                    "details":{
                        "type":"object"
                    }
                }
            },
            "RestResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"object"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "RestResponseListDataElementValidationDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementValidationDto"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElement":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string)  for the data element.",
                        "example":"B58C5C21BFC94E1384D0F4C6BA7566F3"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Date when the transaction for this element started.",
                        "example":"2023-01-20"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Date when the transaction for this element ended.",
                        "example":"2023-01-21"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study.",
                        "example":"Study Alpha"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABD123EFC6784123BBAA1122CCDDEE44"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"360E6122F84A43CAAF70E3BECC471A7C"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"4FB2D38F8F9644D2B3BE08B815A8FF1A"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int64",
                        "example":0
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "itemId":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"E8EB947A8B684C8B8A30C6070A65BD76"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"D340A21830F6465C8466A2B42EF370D5"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Third-party system or vendor code, if imported.",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw string value for the data element (as entered/captured).",
                        "example":"102.1"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Unit of measurement for value field (e.g. mg, cm).",
                        "example":"mg"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"C9E86AF896F04FBB82FB755666DA6B58"
                    },
                    "itemR":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"example result_R"
                    },
                    "itemF":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"example free-field"
                    },
                    "itemType":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Type/category of the item.",
                        "example":"NUMERIC"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"FFBC9E118C4C48FDB77A50A1CDD28AA9"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"Start time (timestamp) for the property version.",
                        "format":"date-time",
                        "example":"2025-01-01T13:10:00Z"
                    },
                    "dataEventType":{
                        "type":"string",
                        "description":"Event occurs when a form is restored.",
                        "example":"FORM_RESTORED"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"D3C9A4B5E6F78123456789ABCDEF1234"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Indicates if the field is locked.values applicable LOCKED, NEVER_LOCKED, UNLOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Date/time when lock was applied.",
                        "format":"date-time",
                        "example":"2025-05-20T10:30:00Z"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Visit status for this data element.",
                        "example":"INPROGRESS",
                        "enum":[
                            "NEW",
                            "COMPLETE",
                            "COMPLETE_ERR",
                            "INPROGRESS",
                            "INCOMPLETE",
                            "INCOMPLETE_ERR",
                            "SKIPPED",
                            "UNDO_SKIP",
                            "NOT_STARTED"
                        ]
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Date when the visit started.",
                        "example":"2025-05-19"
                    },
                    "isSafetyTrigger":{
                        "type":"boolean",
                        "description":"Indicates if this triggers a safety-related workflow.",
                        "example":false
                    },
                    "isSafetyDefaultSelected":{
                        "type":"boolean",
                        "description":"Indicates if this safety field is default-selected.",
                        "example":true
                    },
                    "dataflagValue":{
                        "type":"string",
                        "description":"data flag applied, values which are applicable Not Done, Not Applicable, Unknown",
                        "example":"Not Done"
                    },
                    "documentId":{
                        "type":"string",
                        "description":"Unique identifier of the associated source document (hex UUID, 32-character uppercase), enabling traceability between the data element and its original supporting document or file.",
                        "example":"26C7C2DF6B2546E6BBA8331738FACD1E"
                    },
                    "validationRules":{
                        "type":"array",
                        "description":"Validation rules applied to this data element.",
                        "items":{
                            "$ref":"#/components/schemas/ValidationRuleDto"
                        }
                    }
                },
                "description":"Represents a data element as captured/stored for a subject during a study, including repeat and validation info."
            },
            "MultipleDataElementRequest":{
                "required":[
                    "dataElements"
                ],
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"The list of data elements to validate.",
                        "items":{
                            "$ref":"#/components/schemas/DataElement"
                        }
                    }
                },
                "description":"Request DTO with a list of DataElement objects for multifield data validation."
            },
            "ValidationRuleDto":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) for the validation rule.",
                        "example":"45B982CDC4604AF5A354AAAF7BEEB93B"
                    },
                    "queryId":{
                        "type":"string",
                        "description":"Query identifier (UUID, 32-character uppercase hexadecimal string) generated by the validation rule.",
                        "example":"45B982CDC4604AF5A354AAAF7BEEB93B"
                    },
                    "queryStatus":{
                        "type":"string",
                        "description":"Status of the query associated with this rule and values can be Candidate, Answered, Closed, Opened, Deleted",
                        "example":"Opened"
                    }
                },
                "description":"Validation rule details associated with a specific data element."
            },
            "TwoSectionAndRepeatingFormValidationDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"64C57ED1076F47078C8E5AD537244989"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"64C57ED1076F47078C8E5AD537244989"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"64C57ED1076F47078C8E5AD537244989"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    },
                    "innerRepeatNum":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeatNum":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "isSubjectLocked":{
                        "type":"boolean",
                        "description":"Field representing the status of whether the Subject is locked or not.",
                        "example":true
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Status showing subject has locked data",
                        "example":true
                    },
                    "hasFrozenData":{
                        "type":"boolean",
                        "description":"Status showing subject has frozen data",
                        "example":true
                    }
                }
            },
            "VisitStartDateValidationDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"A1B2C3D4E5F60718293A4BCCFA7EE829"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B1ABA3F2E29F4EE193AB6A5DEEC1B5CA"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":5
                    },
                    "visitStartDateLocked":{
                        "type":"boolean",
                        "description":"Whether the visit start date is locked.",
                        "example":true
                    },
                    "visitLocked":{
                        "type":"boolean",
                        "description":"Whether the visit is locked.",
                        "example":false
                    }
                },
                "description":"Includes subjectId, eventId, eventInstanceNum, and boolean results indicating whether the visit and the visit start date are locked"
            },
            "RestResponseListVisitStartDateValidationDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitStartDateValidationDto"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "MultipleVisitRequest":{
                "required":[
                    "visits"
                ],
                "type":"object",
                "properties":{
                    "visits":{
                        "type":"array",
                        "description":"The list of visit objects to validate.",
                        "items":{
                            "$ref":"#/components/schemas/VisitsDTO1"
                        }
                    }
                },
                "description":"Request DTO with a list of VisitsDTO objects for validating visit start dates across multiple visits."
            },
            "VisitsDTO1":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"D27DB9E0AFE349D7980683CF55A33883"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Takes eventId and eventInstanceNum to uniquely reference a visit instance"
            },
            "CoreSignVerifyRequestDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int64",
                        "example":0
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    }
                },
                "description":"DTO for a single data element to be signed/unverified as part of a bulk request."
            },
            "SignVerifyRequestDto":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the operation, if supplied. Accepted values are Change for encoding, Incorrect Subject, Investigator Correction, Transcription Error, Other.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Any extra comment for the action when Other is selected in reason.",
                        "example":"The data required is missing."
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of core sign/verify target elements.",
                        "items":{
                            "$ref":"#/components/schemas/CoreSignVerifyRequestDto"
                        }
                    }
                },
                "description":"Request for bulk unsign or unverify operations for a specific event/subject.",
                "xml":{
                    "name":"signVerifyRequest"
                }
            },
            "UnFreezeRequestDT02":{
                "type":"object",
                "properties":{
                    "reasonForChange":{
                        "type":"string",
                        "description":"A short description explaining the reason for the unfreeze action.",
                        "example":"Data Corrected"
                    },
                    "comment":{
                        "type":"string",
                        "description":"A comment explaining the unfreeze action.",
                        "example":"Requesting unfreeze due to updated laboratory data."
                    }
                },
                "description":"DTO for unfreezing a data element with reason and comment.",
                "xml":{
                    "name":"unfreezeRequest"
                }
            },
            "UnFreezeRequestVSD":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "comment":{
                        "type":"string",
                        "description":"A short comment explaining for the unfreeze action when Other is selected in reasonForChange",
                        "example":"comment"
                    },
                    "reasonForChange":{
                        "type":"string",
                        "description":"A short description explaining the reason for the unfreeze action. Accepted values are Change for encoding, Incorrect Subject, Investigator Correction, Transcription Error, Other.",
                        "example":"Other"
                    }
                },
                "description":"Superclass for unfreeze requests, contains the reason for unfreezing.",
                "xml":{
                    "name":"UnFreezeRequestVSD"
                }
            },
            "BulkActionDTO":{
                "title":"BulkActionDTO",
                "type":"object",
                "properties":{
                    "filters":{
                        "$ref":"#/components/schemas/SubjectsVisitScheduleRequestV3"
                    },
                    "subjectIds":{
                        "type":"array",
                        "description":"List of Subject Ids. For visit lock/unlock in UUID format",
                        "format":"UUID",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of Subject Ids. For visit lock/unlock in UUID format",
                            "format":"uuid"
                        }
                    },
                    "visitIds":{
                        "type":"array",
                        "description":"List of visits mandatory for visit lock/unlock in UUID format",
                        "items":{
                            "$ref":"#/components/schemas/VisitsDTO1"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "description":"reason for making current change",
                        "example":"other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"comment for visit/subject unlock",
                        "example":"adding lists of other visits"
                    }
                },
                "description":"Information for bulk action"
            },
            "SubjectsVisitScheduleRequestV3":{
                "type":"object",
                "properties":{
                    "sites":{
                        "type":"array",
                        "description":"List of site identifiers to scope the search",
                        "example":[
                            "D3C9A4B5E6F78123456789ABCDEF1234",
                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of site identifiers to scope the search",
                            "format":"uuid"
                        }
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of results to return",
                        "format":"int32",
                        "example":25
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination",
                        "format":"int32",
                        "example":0
                    },
                    "order":{
                        "type":"string",
                        "description":"Sort order for results",
                        "example":"asc"
                    },
                    "reviewStatus":{
                        "type":"string",
                        "description":"Review status filter applied to subjects. Values can be noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify, all, signedandverified, frozen ",
                        "example":"all"
                    },
                    "subjectStates":{
                        "type":"array",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                        "example":[
                            "Auto_Screen_Failed"
                        ],
                        "items":{
                            "type":"string",
                            "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                            "example":"[\"Auto_Screen_Failed\"]"
                        }
                    },
                    "exactSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for exact match in subject search which will be applied on subject number",
                        "example":[
                            "1001",
                            "SMITH"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for exact match in subject search which will be applied on subject number",
                            "example":"[\"1001\",\"SMITH\"]"
                        }
                    },
                    "containsSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for contains match in subject search which will be applied on subject number",
                        "example":[
                            "100",
                            "SMI"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for contains match in subject search which will be applied on subject number",
                            "example":"[\"100\",\"SMI\"]"
                        }
                    },
                    "nextVisitOnly":{
                        "type":"boolean",
                        "description":"When true, only the next scheduled visit is returned per subject",
                        "example":false
                    },
                    "notStarted":{
                        "type":"boolean",
                        "description":"When true, include only subjects that have not started",
                        "example":false
                    },
                    "safetyCaseStatus":{
                        "type":"string",
                        "description":"Indicates the safety case status filter. values can be SUBMITTED, CREATED, MODIFIED, SUBMIT_FAILED, CANCEL_FAILED, CANCELLED, DISMISSED, ACCEPTED, REJECTED, TRANSFER_FAILED, ALL.",
                        "example":"ALL"
                    },
                    "dmViewReviewStatus":{
                        "type":"array",
                        "description":"Review status for data management view.The acceptable values are: noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify.",
                        "example":[
                            "readytoverify"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Review status for data management view.The acceptable values are: noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify.",
                            "example":"[\"readytoverify\"]"
                        }
                    }
                },
                "description":"DTO for specifying filter and sorting options when scheduling visits for multiple subjects (bulk operations)."
            },
            "DataActionsDTO":{
                "type":"object",
                "properties":{
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"8877665544332211AABBCCDDEEFF0011"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for a data action given in UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"E1F2D3C4B5A697887766554433221100"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"integer",
                        "example":2
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "format":"integer",
                        "example":3
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the data action.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments about the action.",
                        "example":"Lock applied due to protocol deviation"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"C9F84A1D5C7E42A8B9F56321A4B8D721"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":2
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"ABCDEFABCDEF1234567890ABCDEF1234"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int64",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "action":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateAction":{
                        "type":"string",
                        "description":"Action performed on visit start date LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"UNLOCKED"
                    }
                },
                "description":"DTO representing details of a data action and locking operations."
            },
            "RestResponseListDataActionsDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataActionsDTO"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "ItemsLockRequest":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"680F2514D67889ABCDEF112233ABCDEF"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"CA12B34DEA56B789C1789EFEDEE10988"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"12ABCD3421345678BACE1122CCFEDD11"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":2
                    }
                },
                "description":"Request element for locking/unlocking a specific item within a subject's visit."
            },
            "SubjectVisitsItemsLockRequest":{
                "type":"object",
                "properties":{
                    "visitItems":{
                        "type":"array",
                        "description":"List of ItemsLockRequest objects for each subject/visit/item to lock.",
                        "items":{
                            "$ref":"#/components/schemas/ItemsLockRequest"
                        }
                    }
                },
                "description":"Request payload for batch lock/unlock operations on subject visits/items."
            },
            "SubjectWithLockedDataDto":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.",
                        "format":"uuid",
                        "example":[
                            "A1B23C45D67E89F123456789ABCDEF12",
                            "B2C34D56E78F90A123456789ABCDEF34"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"DTO representing a response with a list of subject IDs who have locked data."
            },
            "RestResponseSubjectWithLockedDataDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectWithLockedDataDto"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "VisitLockDetails":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BA62DB18A9E347B899743D46853CEDCA"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"D3AE48BD29FC4E379BC94AB8265A72CF"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "lockStatus":{
                        "type":"string",
                        "description":"Lock status for this visit. applicable values are LOCKED, UNLOCKED",
                        "example":"LOCKED"
                    },
                    "lockStatusTime":{
                        "type":"string",
                        "description":"Timestamp when current lock status became effective.",
                        "format":"date-time",
                        "example":"2023-10-15T18:25:43Z"
                    },
                    "visitStartDateLockStatus":{
                        "type":"string",
                        "description":"Lock status for the visit start date. applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockStatusTime":{
                        "type":"string",
                        "description":"Timestamp when visitStartDateLockStatus was set.",
                        "format":"date-time",
                        "example":"2023-10-15T18:25:43Z"
                    }
                },
                "description":"DTO containing lock status details for a visit, including subject, event, lock statuses, and related timestamps."
            },
            "RestResponseVisitLockDetails":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/VisitLockDetails"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementRequestDTO":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BB112233445566778899AABBCCDDEEFF"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"EEFF00112233445566778899AABBCCDD"
                    }
                },
                "description":"DTO specifying a data elements (form, form section, item, or repeat) to be locked or unlocked in a visit."
            },
            "LockDTO":{
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABD123EFC6784123BBAA1122CCDDEE44"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABD123EFC6784123BBAA1122CCDDEE44"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "lockVisitStartDate":{
                        "type":"string",
                        "description":"Start date for the locked visit.",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of data elements to lock.",
                        "items":{
                            "$ref":"#/components/schemas/DataElementRequestDTO"
                        }
                    }
                },
                "description":"DTO used to specify the parameters for locking visit elements for a subject/event/site."
            },
            "SubjectVisitsFormsItemsDTO":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"F5F6EA48B9D04C6F8C657CFA5A20EC53"
                    },
                    "events":{
                        "type":"array",
                        "description":"List of visit/form/item objects for the subject in UUID format.",
                        "items":{
                            "$ref":"#/components/schemas/VisitFormsItemsDTO"
                        }
                    }
                },
                "description":"DTO representing a subject and the list of events (visits/forms/items) to be locked."
            },
            "SubjectVisitsItemsResponseDTO":{
                "type":"object",
                "properties":{
                    "processedObjects":{
                        "type":"array",
                        "description":"List of successfully processed subject/visit/form/item objects.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsFormsItemsDTO"
                        }
                    },
                    "failedObjects":{
                        "type":"array",
                        "description":"List of subject/visit/form/item objects which failed to process.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsFormsItemsDTO"
                        }
                    },
                    "exceptions":{
                        "type":"array",
                        "description":"Exceptions or error messages for failed objects.",
                        "example":[
                            "Event not found for subject 18DFFBDF2523489AAF3DE9D6CA60B7F2"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Exceptions or error messages for failed objects.",
                            "example":"[\"Event not found for subject 18DFFBDF2523489AAF3DE9D6CA60B7F2\"]"
                        }
                    }
                },
                "description":"Response DTO for bulk lock operation, includes processed and failed objects"
            },
            "VisitFormsItemsDTO":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BCAF12ED87549BA59F7A43AB6A77C1E2"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of data element DTOs indicating forms/items under the visit.",
                        "items":{
                            "$ref":"#/components/schemas/DataElementRequestDTO"
                        }
                    }
                },
                "description":"DTO for event (visit) details including forms and items to be locked."
            },
            "ZKUnlockDto":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"b123fe17aac4410b9ab0137e6c88981a"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"91d1b34ed1904d8499844159776b2fd7"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for requesting this unlock.",
                        "example":"Other."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comment or context for the unlock request.",
                        "example":"Unlocking all visits except main subject lock due to CRA request."
                    }
                },
                "description":"Unlock DTO for unlocking all visits/items for a subject, except subject-level. All fields are optional."
            },
            "UnlockDTO":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"DDEEFF112233445566778899AABBCC00"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"CCBBAA99887766554433221100FFEEDD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"0112233445566778899AABBCCDDEEFF0"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":2
                    },
                    "lockVisitStartDate":{
                        "type":"string",
                        "description":"Visit start date for the unlock operation.",
                        "example":"2023-12-01T12:00:00Z"
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of Elements to unlock",
                        "items":{
                            "$ref":"#/components/schemas/UnlockElements"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason information for why the unlock operation is being performed.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments about the unlock operation.",
                        "example":"Unlocked due to query resolution"
                    }
                },
                "description":"DTO representing unlock operation for elements/subjects/visits."
            },
            "UnlockElements":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"ABCDEFAB1234567890ABCDEFAB123456"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7890ABCDEFAB1234DEFABC1234567890"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"EFAB1234ABCDEF907890ABCDEFAB1234"
                    }
                },
                "description":"DTO describing a single data element to unlock, such as form, form section, item, or repeat."
            },
            "ReasonCommentRequest":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Incorrect entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Removing incorrect data captured by mistake"
                    }
                },
                "description":"Reason and comment to justify operation."
            },
            "SignConfigEligibilityResponseDTO":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the sign config eligibility record",
                        "example":"4F3A7FD6A91E4A5FAB1EA98387E82B6B"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2023-08-10T00:00:00.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-08-10T00:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"9AAECDD92E3F41C6AFD2B8FF1DD9CF22"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"integer",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "format":"integer",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"The reason for the current change.",
                        "example":"Other."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Administrative comment regarding eligibility.",
                        "example":"Included after manual review."
                    },
                    "configId":{
                        "type":"string",
                        "description":"Signature configuration identifier (UUID, 32-character uppercase hexadecimal string).",
                        "example":"4E005942732C417D9B47C6ACBB3ACD65"
                    },
                    "requiredOn":{
                        "type":"string",
                        "description":"Indicates what element the eligibility is required on  SUBJECT, FORM, CASEBOOK.",
                        "example":"FORM"
                    },
                    "affidavitCodeValue":{
                        "type":"string",
                        "description":"Code value for the affidavit if applicable.",
                        "example":"Electronic Signature Affidavit"
                    },
                    "requiredBy":{
                        "type":"array",
                        "description":"List of String of UUID(UUID, 32-character uppercase hexadecimal string) of user id roles  or entities that require the eligibility.",
                        "example":[
                            "A1B23C45D67E89F123456789ABCDEF12",
                            "B2C34D56E78F90A123456789ABCDEF34"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of String of UUID(UUID, 32-character uppercase hexadecimal string) of user id roles  or entities that require the eligibility.",
                            "example":"[\"A1B23C45D67E89F123456789ABCDEF12\",\"B2C34D56E78F90A123456789ABCDEF34\"]"
                        }
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Unique number representing subject within the study.",
                        "example":"SUBJ1067"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D27DB9E0AFE349D7980683CF55A33883"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"360E6122F84A43CAAF70E3BECC471A7C"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":2
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"4FB2D38F8F9644D2B3BE08B815A8FF1A"
                    },
                    "status":{
                        "type":"string",
                        "description":"Status associated with the eligibility and values can be readyToSign, signed",
                        "example":"readyToSign"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "actionStatus":{
                        "type":"string",
                        "description":"Current action status for the eligibility can view, sign.",
                        "example":"view"
                    },
                    "dueDays":{
                        "type":"integer",
                        "description":"Number of days the action is due.",
                        "format":"int32",
                        "example":3
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Title of the associated form.",
                        "example":"Informed Consent"
                    },
                    "visitTitle":{
                        "type":"string",
                        "description":"Title of the associated clinical visit.",
                        "example":"Visit 1"
                    }
                },
                "description":"containing detailed sign configuration eligibility information for a subject, form, and visit."
            },
            "SignInfoDTO":{
                "type":"object",
                "properties":{
                    "visits":{
                        "type":"array",
                        "description":"List of visits for eligibility.",
                        "items":{
                            "$ref":"#/components/schemas/VisitsDTO1"
                        }
                    }
                },
                "description":"DTO containing list of visits for bulk sign eligibility request."
            },
            "SignInfoRequestDTO":{
                "type":"object",
                "properties":{
                    "signInfoRequest":{
                        "$ref":"#/components/schemas/SignInfoDTO"
                    }
                },
                "description":"Request body DTO for retrieving sign eligibility details for multiple subjects and visits."
            },
            "DataElementDto13":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source timestamp for this data element version.",
                        "format":"date-time",
                        "example":"2024-03-15T10:22:11Z"
                    }
                },
                "description":"Represents a data element that is eligible for the clear data operation at the requested scope"
            },
            "ClearDataCheckRequestDto":{
                "required":[
                    "eventId",
                    "studyVersion",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"F1C29B36F5D64B1B95F4BDBBCEA41234"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"A1C29B36F5D64B1B95F4BDBBCEA4FF11"
                    },
                    "repeatSectionFormNumber":{
                        "type":"integer",
                        "description":"Repeat section form number, if applicable.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":3
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"C1C29B36F5D64B1B95F4BDBBCEA48EEE"
                    }
                },
                "description":"For checking eligibility to clear data for a set of data elements.",
                "example":{
                    "studyVersion":"2.0.0.38",
                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                    "eventId":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12",
                    "eventInstanceNum":2,
                    "formId":"F1C29B36F5D64B1B95F4BDBBCEA41234",
                    "formSectionId":"A1C29B36F5D64B1B95F4BDBBCEA4FF11",
                    "repeatSectionFormNumber":1,
                    "repeatSequenceNumber":3,
                    "itemId":"C1C29B36F5D64B1B95F4BDBBCEA48EEE"
                }
            },
            "SignVerifyFreezeDTOv20":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the Sign/Verify/Freeze record in UUID format",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-02T17:30:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":100
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"reason to make this change",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments if provided",
                        "example":"Data discrepancy observed and clarified"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "signed":{
                        "type":"string",
                        "description":"Signed status can be of SIGNED, UNSIGNED, NEVER_SIGNED, PARTIAL_SIGNED ",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "verify":{
                        "type":"string",
                        "description":"Verify status can be UNVERIFIED, VERIFIED, NEVER_VERIFIED, VERIFY_REQUIRED",
                        "example":"VERIFIED"
                    },
                    "freeze":{
                        "type":"string",
                        "description":"Freeze status can be of FROZEN, UNFROZEN, NEVER_FROZEN",
                        "example":"FROZEN"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    }
                },
                "description":"DTO representing signature and freeze information for a data element in a study."
            },
            "SdvItemSelectionResponse":{
                "type":"object",
                "properties":{
                    "sdvSelectionNatureEnum":{
                        "type":"string",
                        "description":"Nature of SDV selection for the item result may containg OPTIONAL_CRITICAL, IRRELEVANT, OLD,OBLIGATORY, OPTIONAL, IRRELEVANT_OLD.",
                        "example":"OPTIONAL_CRITICAL"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    }
                },
                "description":"DTO representing selected SDV items for subject/event/form context."
            },
            "UnsignUnverifyResponse":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"string",
                        "description":"List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.",
                        "format":"UUID",
                        "example":"[\"2C3F40649C654D0F995A7FDBBCEA4FAB\"]"
                    }
                }
            },
            "UnsignUnverifyRequest":{
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.",
                        "example":[
                            "6D5E607D3E644F1DB8FFC4BCCEA48FFE",
                            "2A2E107D3E644F1DB8FFC4BCCEA48ABC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of Unique Identifier(UUID, 32-character uppercase hexadecimal string) representing Subjects.",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the unsign/unverify action.",
                        "example":"Audit requirement for unsigning"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments for the operation.",
                        "example":"Investigator request for subject data change"
                    }
                },
                "description":"DTO to request the unsign and/or unverify operations on one or more subjects.",
                "example":{
                    "subjects":[
                        "6D5E607D3E644F1DB8FFC4BCCEA48FFE",
                        "2A2E107D3E644F1DB8FFC4BCCEA48ABC"
                    ],
                    "reason":"Audit requirement for unsigning",
                    "comment":"Investigator request for subject data change"
                }
            },
            "SignConfiguration":{
                "required":[
                    "configName",
                    "requiredOn",
                    "targetSet"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the persisted signature configuration.",
                        "format":"UUID",
                        "example":"11223344556677889900AABBCCDDEEFF"
                    },
                    "configName":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Name/title for the signature configuration.",
                        "example":"Archive Visit Config"
                    },
                    "requiredOn":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Level at which signature is required.",
                        "example":"FORM",
                        "enum":[
                            "CASEBOOK",
                            "VISIT",
                            "FORM"
                        ]
                    },
                    "affidavitCodeValue":{
                        "type":"string",
                        "description":"Affidavit code value associated with the signature requirement.",
                        "example":"Electronic Signature Affidavit"
                    },
                    "requiredBy":{
                        "type":"string",
                        "description":"Delimited UUID string indicating users required to sign in (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"99887766554433221100AABBCCDDEEFF"
                    },
                    "targetSet":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Indicator if a target date/condition is set (Y or N).",
                        "example":"Y"
                    },
                    "targetDate":{
                        "type":"integer",
                        "description":"Target date for signature as integer.",
                        "format":"int64",
                        "example":3
                    },
                    "targetAfter":{
                        "type":"string",
                        "description":"Event or milestone after which target is to be achieved. values can be start, completion.",
                        "example":"start"
                    },
                    "emailReminder":{
                        "type":"string",
                        "description":"Indicates if email reminders are active ('Y' or 'N').",
                        "example":"Y"
                    },
                    "requiredOnForms":{
                        "type":"string",
                        "description":"Delimited string of form UUIDs to which config applies.",
                        "example":"AABBCCDD11223344556677889900EEFF"
                    },
                    "requiredOnVisits":{
                        "type":"string",
                        "description":"Delimited string of visit UUIDs (UUID, 32-character uppercase hexadecimal string) to which config applies.",
                        "format":"UUID",
                        "example":"FFEEDDCCBBAA99887766554433221100"
                    },
                    "triggerQuestion":{
                        "type":"string",
                        "description":"UUID (UUID, 32-character uppercase hexadecimal string) of the trigger question for conditional rules.",
                        "format":"UUID",
                        "example":"55AA44BB33CC22DD11EEFF0011223344"
                    },
                    "triggerAnswer":{
                        "type":"string",
                        "description":"String or delimited string of answers that act as trigger.",
                        "example":"No"
                    }
                },
                "description":"Entity model representing persisted signature configuration in the database. Properties include forms/visits, settings, lifecycle, and audit info."
            },
            "SignatureConfigurationDTO":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the signature configuration in UUID format.",
                        "format":"UUID",
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID(UUID, 32-character uppercase hexadecimal string) that performed the operation in UUID format.",
                        "example":"00112233445566778899AABBCCDDEEFF"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "format":"int32",
                        "example":1
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the configuration or operation.",
                        "example":"Other."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments about this signature configuration.",
                        "example":"Added new signature step for visit."
                    },
                    "configName":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"A user-friendly name for the signature configuration, used to distinguish it from other configurations.",
                        "example":"Final Visit Sign Config"
                    },
                    "requiredOn":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Level at which signature is required.",
                        "example":"FORM",
                        "enum":[
                            "CASEBOOK",
                            "VISIT",
                            "FORM"
                        ]
                    },
                    "affidavitCodeValue":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Affidavit code for the configuration.",
                        "example":"Electronic Signature Affidavit"
                    },
                    "requiredBy":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of user IDs (UUID, 32-character uppercase hexadecimal string) required to sign.",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs (UUID, 32-character uppercase hexadecimal string) required to sign.",
                            "format":"uuid"
                        }
                    },
                    "targetSet":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Indicator if target is set ('Y' or 'N').",
                        "example":"Y"
                    },
                    "targetDate":{
                        "type":"integer",
                        "description":"Target date for signature as integer.",
                        "format":"int64",
                        "example":2
                    },
                    "targetAfter":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Event after which the target is considered achieved.",
                        "example":"COMPLETION",
                        "enum":[
                            "COMPLETION",
                            "START"
                        ]
                    },
                    "emailReminder":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Indicator to send email reminder ('Y' or 'N').",
                        "example":"N"
                    },
                    "requiredOnForms":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of form IDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                        "format":"UUID",
                        "example":[
                            "A1B2C3D4E5F607182736454647484950"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of form IDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                            "format":"uuid"
                        }
                    },
                    "requiredOnVisits":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of visit IDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                        "format":"UUID",
                        "example":[
                            "5A6B7C8D9E0F10293847560123456789"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit IDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                            "format":"uuid"
                        }
                    },
                    "triggerQuestion":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the trigger question for conditional rules.",
                        "example":"55AA44BB33CC22DD11EEFF0011223344"
                    }
                },
                "description":"Represents the configuration for electronic signatures for a study, including the required forms, visits, users, and rules."
            },
            "RestResponseListSignatureConfigurationDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SignatureConfigurationDTO"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "RestResponseSignatureConfigurationDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SignatureConfigurationDTO"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SignatureConfigurationReqDto":{
                "type":"object",
                "properties":{
                    "configName":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the signature configuration.",
                        "example":"Final Visit Sign Config"
                    },
                    "requiredOn":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Level at which signature is required.",
                        "example":"FORM",
                        "enum":[
                            "CASEBOOK",
                            "VISIT",
                            "FORM"
                        ]
                    },
                    "affidavitCodeValue":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Affidavit code associated with this configuration.",
                        "example":"Electronic Signature Affidavit"
                    },
                    "requiredBy":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of user IDs(UUID, 32-character uppercase hexadecimal string) who are required to sign.",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs(UUID, 32-character uppercase hexadecimal string) who are required to sign.",
                            "format":"uuid"
                        }
                    },
                    "targetSet":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Indicator if a target is set ('Y' or 'N').",
                        "example":"Y"
                    },
                    "targetDate":{
                        "type":"integer",
                        "description":"Target date for signature as integer.",
                        "format":"int64",
                        "example":3
                    },
                    "targetAfter":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Event after which the target is achieved.",
                        "example":"COMPLETION",
                        "enum":[
                            "COMPLETION",
                            "START"
                        ]
                    },
                    "emailReminder":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Indicator for sending email reminders ('Y' or 'N').",
                        "example":"N"
                    },
                    "requiredOnForms":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of form UUIDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                        "example":[
                            "A1B2C3D4E5F607182736454647484950"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of form UUIDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                            "format":"uuid"
                        }
                    },
                    "requiredOnVisits":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of visit UUIDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                        "example":[
                            "5A6B7C8D9E0F10293847560123456789"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit UUIDs(UUID, 32-character uppercase hexadecimal string) required to sign.",
                            "format":"uuid"
                        }
                    },
                    "triggerQuestion":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the trigger question for conditional signatures.",
                        "example":"66778899AABBCCDDEEFF001122334455"
                    },
                    "triggerAnswer":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"List of trigger answers used for conditional signatures.",
                        "example":[
                            "Yes"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of trigger answers used for conditional signatures.",
                            "example":"[\"Yes\"]"
                        }
                    }
                },
                "description":"Request payload for saving a new signature configuration. Specifies forms, visits, users, triggers, and other settings for electronic signatures."
            },
            "SignatureConfigurationRequestDTO":{
                "type":"object",
                "properties":{
                    "signConfiguration":{
                        "$ref":"#/components/schemas/SignatureConfigurationDTO"
                    }
                },
                "description":"Request payload for updating an existing signature configuration. Contains a single SignatureConfigurationDTO object representing all configuration properties to update."
            },
            "SignEligibilitySummaryResponse":{
                "type":"object",
                "properties":{
                    "due":{
                        "type":"integer",
                        "description":"Number of signature evaluations that are due.",
                        "format":"int64",
                        "example":10
                    },
                    "overdue":{
                        "type":"integer",
                        "description":"Number of overdue signature evaluations.",
                        "format":"int64",
                        "example":5
                    }
                },
                "description":"Object representing summary of signature eligibility, including number of due and overdue items."
            },
            "ClearDataCheckResponse":{
                "type":"object",
                "properties":{
                    "itemEligible":{
                        "type":"boolean",
                        "description":"Whether the item is eligible for data clearance.",
                        "example":true
                    },
                    "validationAt":{
                        "type":"string",
                        "description":"Validation context or hierarchy where checked, for example  ITEM, SUBJECT, VISIT.",
                        "example":"SUBJECT"
                    },
                    "itemEmpty":{
                        "type":"boolean",
                        "description":"Whether item is currently empty.",
                        "example":false
                    },
                    "itemReadOnly":{
                        "type":"boolean",
                        "description":"Is the item currently read-only?",
                        "example":false
                    },
                    "itemHidden":{
                        "type":"boolean",
                        "description":"Whether the item is hidden in the UI.",
                        "example":false
                    },
                    "itemLocked":{
                        "type":"boolean",
                        "description":"Whether the item is currently locked.",
                        "example":false
                    },
                    "itemFrozen":{
                        "type":"boolean",
                        "description":"Whether the item is frozen (cannot be changed).",
                        "example":false
                    },
                    "itemUnFrozen":{
                        "type":"boolean",
                        "description":"Whether the item was unfrozen since initial freeze.",
                        "example":true
                    },
                    "itemInfo":{
                        "$ref":"#/components/schemas/ItemInfo"
                    },
                    "childHidden":{
                        "type":"boolean",
                        "description":"Indicates if any child item is hidden.",
                        "example":false
                    },
                    "childReadOnly":{
                        "type":"boolean",
                        "description":"Indicates if any child item is read-only.",
                        "example":false
                    },
                    "childLocked":{
                        "type":"boolean",
                        "description":"Indicates if any child item is locked.",
                        "example":false
                    },
                    "childFrozen":{
                        "type":"boolean",
                        "description":"Indicates if any child item is frozen.",
                        "example":false
                    },
                    "childUnFrozen":{
                        "type":"boolean",
                        "description":"Indicates if a child was unfrozen.",
                        "example":true
                    },
                    "childInFutureVisit":{
                        "type":"boolean",
                        "description":"Whether any child is part of a visit not yet occurred.",
                        "example":false
                    },
                    "childInFutureForm":{
                        "type":"boolean",
                        "description":"Whether any child is part of a form not yet active.",
                        "example":false
                    },
                    "childVisits":{
                        "type":"array",
                        "description":"List of info for each child visit object.",
                        "items":{
                            "$ref":"#/components/schemas/ItemInfo"
                        }
                    },
                    "childForms":{
                        "type":"array",
                        "description":"List of info for each child form object.",
                        "items":{
                            "$ref":"#/components/schemas/ItemInfo"
                        }
                    },
                    "childSections":{
                        "type":"array",
                        "description":"List of info for child sections (if any).",
                        "items":{
                            "$ref":"#/components/schemas/ItemInfo"
                        }
                    },
                    "childQuestions":{
                        "type":"array",
                        "description":"List of info for any child question items.",
                        "items":{
                            "$ref":"#/components/schemas/ItemInfo"
                        }
                    },
                    "grandParent":{
                        "type":"boolean",
                        "description":"Whether this parent item is a grandparent in the hierarchy.",
                        "example":false
                    },
                    "formAssociated":{
                        "type":"boolean",
                        "description":"Whether the item is associated to a form.",
                        "example":true
                    }
                },
                "description":"Response to clear data eligibility check request, containing eligibility status and detailed item/child/descendant info."
            },
            "ItemInfo":{
                "type":"object",
                "properties":{
                    "type":{
                        "type":"string",
                        "description":"Type of the child object: VISIT, FORM, SECTION, or QUESTION.",
                        "example":"VISIT"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "formName":{
                        "type":"string",
                        "description":"Name of the form.",
                        "example":"Physical Exam"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "itemName":{
                        "type":"string",
                        "description":"Name of the child item or question.",
                        "example":"Is patient fasting?"
                    }
                },
                "description":"List of info for any child question items."
            },
            "ClearDataCheckRequestDto2":{
                "required":[
                    "eventId",
                    "studyVersion",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "value":{
                        "maxItems":4000,
                        "minItems":0,
                        "type":"array",
                        "description":"A list of values to check for eligibility to clear.",
                        "example":[
                            "PASS",
                            "MISSING"
                        ],
                        "items":{
                            "type":"string",
                            "description":"A list of values to check for eligibility to clear.",
                            "example":"[\"PASS\",\"MISSING\"]"
                        }
                    },
                    "scope":{
                        "type":"string",
                        "description":"scope type can ITEM/VSD",
                        "example":"ITEM"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"F1C29B36F5D64B1B95F4BDBBCEA41234"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"A1C29B36F5D64B1B95F4BDBBCEA4FF11"
                    },
                    "repeatSectionFormNumber":{
                        "type":"integer",
                        "description":"Repeat section form number, if applicable.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":3
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"C1C29B36F5D64B1B95F4BDBBCEA48EEE"
                    }
                },
                "description":"DTO for checking eligibility to clear data for a set of data elements.",
                "example":"{\n  \"studyVersion\": \"2.0.0.38\",\n  \"subjectId\": \"1BC29B36F5D64B1B95F4BDBBCEA481BE\",\n  \"eventId\": \"ABCDEF12ABCDEF12ABCDEF12ABCDEF12\",\n  \"eventInstanceNum\": 2,\n  \"formId\": \"F1C29B36F5D64B1B95F4BDBBCEA41234\",\n  \"formSectionId\": \"A1C29B36F5D64B1B95F4BDBBCEA4FF11\",\n  \"repeatSectionFormNumber\": 1,\n  \"repeatSequenceNumber\": 3,\n  \"itemId\": \"C1C29B36F5D64B1B95F4BDBBCEA48EEE\",\n  \"value\": \"[ \"PASS\", \"MISSING\" ]\",\n  \"scope\": \"ITEM\"\n}"
            },
            "UnSignUnVerifyRequestDto":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the operation, if supplied. Accepted values are Change for encoding, Incorrect Subject, Investigator Correction, Transcription Error, Other.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Any extra comment for the action when Other is selected in reason.",
                        "example":"The data required is missing."
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of core sign/verify target elements.",
                        "items":{
                            "$ref":"#/components/schemas/CoreSignVerifyRequestDto"
                        }
                    },
                    "unverifyVisitStartDate":{
                        "type":"boolean",
                        "description":"Parameter to determine whether we should unverify visit date. Allowed values:  true/false",
                        "example":true
                    },
                    "unsignVisitStartDate":{
                        "type":"boolean",
                        "description":"Parameter to determine whether we should unverify visit date. Allowed values:  true/false",
                        "example":false
                    },
                    "clearVisitStartDate":{
                        "type":"boolean",
                        "description":"Parameter to determine whether we should unverify/unsign visit date as clear operation. Allowed values:  true/false",
                        "example":true
                    }
                },
                "xml":{
                    "name":"signVerifyRequest"
                }
            },
            "DataActionsDTO2":{
                "type":"object",
                "properties":{
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"8877665544332211AABBCCDDEEFF0011"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for a data action given in UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"E1F2D3C4B5A697887766554433221100"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"integer",
                        "example":2
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "format":"integer",
                        "example":3
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the data action.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments about the action.",
                        "example":"Lock applied due to protocol deviation"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"C9F84A1D5C7E42A8B9F56321A4B8D721"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"3EFD49D47C96428C9AAE2FDDE2A32D23"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":2
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"ABCDEFABCDEF1234567890ABCDEF1234"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Form repeat number if applicable.",
                        "format":"int64",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "action":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateAction":{
                        "type":"string",
                        "description":"Action performed on visit start date LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"UNLOCKED"
                    },
                    "subjectLockStatus":{
                        "type":"string",
                        "description":"Lock status of the subject for the action, can be of LOCKED, UNLOCKED.",
                        "example":"LOCKED"
                    }
                },
                "description":"DTO representing details of a data action in API v3, including lock status at subject level."
            },
            "RestResponseListDataActionsDTO2":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataActionsDTO2"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "FormItemSummaryDtoV1":{
                "title":"FormItemSummaryDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "subItemIds":{
                        "title":"Sub item ids",
                        "type":"string",
                        "description":"List of sub question ids",
                        "format":"uuid"
                    }
                },
                "description":"Reduced form item properties"
            },
            "FormSummaryDTOV1":{
                "title":"FormSummaryDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemSummaryDtoV1"
                        }
                    }
                },
                "description":"Reduced form properties"
            },
            "FileUploadRequest":{
                "required":[
                    "fileName",
                    "mode",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"Random name for bucket where file uploaded",
                        "example":"1A73BC4FE4954AE4AC50DDF9729F80BE"
                    },
                    "mode":{
                        "type":"string",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "example":"test, active, or training"
                    },
                    "fileName":{
                        "type":"string",
                        "description":"File name",
                        "example":"File1001"
                    },
                    "contentType":{
                        "type":"string",
                        "description":"File content type.",
                        "example":"image/png"
                    }
                },
                "description":"Logo upload request details.",
                "example":{
                    "name":"1A73BC4FE4954AE4AC50DDF9729F80BE",
                    "mode":"design",
                    "fileName":"study-logo.png",
                    "contentType":"image/png"
                }
            },
            "FormChoiceItemDtov17":{
                "title":"FormChoiceItemDto v17.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov17"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov17"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov17":{
                "title":"FormCopySourceDto v17.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov17":{
                "title":"FormDatetimeItemDto v17.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            },
                            "allowFutureDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow future date",
                                "format":"int32",
                                "example":1
                            }
                        }
                    }
                ]
            },
            "FormDtoWithStudyVersion":{
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov19"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov19"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo File Name"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version of the study in which form belongs",
                        "example":"1.0.0.1"
                    },
                    "baseStudyVersion":{
                        "type":"string",
                        "description":"Base Study version of the study from which the form is requested.",
                        "example":"1.0.0.1"
                    }
                }
            },
            "FormExistingDataItemDtoV17":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form existing data item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "codeName":{
                                "type":"string",
                                "description":"Codelist name for existing data, must be a value from ExistingDataLabels codelist",
                                "example":"EDLSite"
                            },
                            "codeValue":{
                                "type":"string",
                                "description":"Codelist value specifying existing data, must be a value from codelist defined in codeName",
                                "example":"SiteName"
                            }
                        }
                    }
                ]
            },
            "FormInstructionalTextItemDtov17":{
                "title":"FormInstructionalTextItem v17.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Instructional information about the form or question",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "instructionalText":{
                                "type":"string",
                                "description":"Instructional information about the form or question",
                                "example":"Complete all parts of the form"
                            }
                        }
                    }
                ]
            },
            "FormItemAdvancedPropDtov17":{
                "title":"From Item Advanced Property v17.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov17":{
                "title":"From Item Advanced Property Rule v17.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov17":{
                "title":"From Item Advanced Property With Parent v17.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"parent object ID",
                        "format":"uuid"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                        }
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov17":{
                "title":"FormItemDto v17.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov17"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov17"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov17",
                        "numeric":"#/components/schemas/FormNumberItemDtov17",
                        "measurement":"#/components/schemas/FormNumberItemDtov17",
                        "text":"#/components/schemas/FormTextItemDtov17",
                        "choice":"#/components/schemas/FormChoiceItemDtov17",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov17",
                        "table":"#/components/schemas/FormTableItemDtov17",
                        "section":"#/components/schemas/FormSectionalItemDtov17",
                        "label":"#/components/schemas/FormInstructionalTextItemDtov17",
                        "existingData":"#/components/schemas/FormExistingDataItemDtoV17"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormSectionalItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormInstructionalTextItemDtov17"
                    },
                    {
                        "$ref":"#/components/schemas/FormExistingDataItemDtoV17"
                    }
                ]
            },
            "FormLabelItemDto":{
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov21"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov21"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            },
                            "codelistType":{
                                "type":"string",
                                "description":"Form items field to indicate dynamic or static variant of the codelist mapped to item. ",
                                "enum":[
                                    "STATIC, DYNAMIC"
                                ]
                            },
                            "codelistId":{
                                "type":"string",
                                "description":"ID of the codelist used in the question ",
                                "format":"uuid"
                            },
                            "codelistLang":{
                                "type":"string",
                                "description":"Language of the codelist used in the question ",
                                "example":"en-US"
                            }
                        }
                    }
                ]
            },
            "FormLinkFromDtov17":{
                "title":"FormLinkFromDto v17.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov17"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent Assigned Visits",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov17"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov17":{
                "title":"FormNumberItemDto v17.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov17":{
                "title":"FormOptionDto v17.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov17":{
                "title":"FormQuestionGroupItemDto v17.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    }
                ]
            },
            "FormSectionalItemDtov17":{
                "title":"FormSectionalItemDto v17.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Section Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    }
                ]
            },
            "FormTableItemDtov17":{
                "title":"FormTableItemDto v17.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov17":{
                "title":"FormTextItemDto v17.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov17"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "E2BR3ItemAdvancedPropDtov1":{
                "title":"E2BR3ItemAdvancedPropDto v1.0",
                "type":"object",
                "properties":{
                    "mandatory":{
                        "type":"boolean"
                    },
                    "order":{
                        "type":"string"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/E2BR3ItemAdvancedPropDtov1"
                        }
                    },
                    "id":{
                        "type":"string",
                        "description":"Advanced property id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Advanced property type, mapped to the ECD_EXTENDED_PROPERTIES.RESPONSE_MAP_JSON column 'valueType' field",
                        "example":"Dropdown"
                    },
                    "name":{
                        "type":"string",
                        "description":"Advanced property name, mapped to the ECD_EXTENDED_PROPERTIES.PROPERTY_NAME column",
                        "example":"RolloverQuestion"
                    },
                    "value":{
                        "type":"string",
                        "description":"Advanced property value of studyId",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Advanced property label in UI, i.e. studyName",
                        "example":"Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtoV7"
                        }
                    },
                    "parentObjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "parentObjectLevel":{
                        "type":"string"
                    },
                    "parentObjectLabel":{
                        "type":"string"
                    }
                },
                "description":"E2B3 Mapping Details Information"
            },
            "FormItemAdvancedPropRuleDtoV7":{
                "title":"From Item Advanced Property Rule v7.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"Answer for Rollover"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECD_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECD_CODELISTITEM.OBJECT_DESCRIPTION",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "EHRCategoryItemDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "categoryId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "categoryCode":{
                        "type":"string"
                    },
                    "categoryLabel":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "label":{
                        "type":"string"
                    },
                    "clCodeName":{
                        "type":"string"
                    },
                    "clCodeLabel":{
                        "type":"string"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/EHRCategoryItemDto"
                        }
                    },
                    "attributes":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/EHRCategoryItemDto"
                        }
                    }
                }
            },
            "LabNormalFormDtoV1":{
                "title":"LabNormalFormDto v1.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form Id",
                        "format":"uuid"
                    },
                    "items":{
                        "title":"LabNormalItemDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Item Id",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "formId":{
                                "type":"string",
                                "description":"Form Id",
                                "format":"uuid"
                            },
                            "format":{
                                "type":"string",
                                "description":"Date Format",
                                "example":"dd-MMM-yyyy"
                            },
                            "labNormalsTag":{
                                "type":"string",
                                "description":"labNormalsTag",
                                "example":"Race"
                            },
                            "options":{
                                "title":"FormOptionDto v17.0",
                                "type":"object",
                                "properties":{
                                    "label":{
                                        "maxLength":4000,
                                        "minLength":1,
                                        "type":"string",
                                        "description":"Form choice selectbox label for a one specific choice.",
                                        "example":"Female"
                                    },
                                    "value":{
                                        "maxLength":4000,
                                        "minLength":1,
                                        "type":"string",
                                        "description":"Form choice selectbox value for a one specific choice.",
                                        "example":"1"
                                    },
                                    "clCode":{
                                        "type":"string",
                                        "description":"Codelist code for a one specific choice.",
                                        "example":"1"
                                    },
                                    "clDescription":{
                                        "maxLength":4000,
                                        "minLength":1,
                                        "type":"string",
                                        "description":"Codelist description for a one specific choice.",
                                        "example":"1"
                                    },
                                    "clValue":{
                                        "type":"string",
                                        "description":"Codelist value for a one specific choice.",
                                        "example":"1"
                                    }
                                },
                                "description":"Form choice item option details"
                            }
                        },
                        "description":"Item tagged with labNormalTag Details"
                    }
                },
                "description":"LabNormal Form Detail Information"
            },
            "LabNormalFormItemsDtoV1":{
                "title":"LabNormalFormItemsDto v1.0",
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string",
                        "description":"Study Version",
                        "example":"1.0.0.1"
                    },
                    "forms":{
                        "title":"LabNormalFormDto v1.0",
                        "type":"object",
                        "properties":{
                            "formId":{
                                "type":"string",
                                "description":"Form Id",
                                "format":"uuid"
                            },
                            "items":{
                                "title":"LabNormalItemDto v1.0",
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "type":"string",
                                        "description":"Item Id",
                                        "format":"uuid"
                                    },
                                    "refname":{
                                        "type":"string",
                                        "description":"Form refname",
                                        "example":"FORM_01"
                                    },
                                    "formId":{
                                        "type":"string",
                                        "description":"Form Id",
                                        "format":"uuid"
                                    },
                                    "format":{
                                        "type":"string",
                                        "description":"Date Format",
                                        "example":"dd-MMM-yyyy"
                                    },
                                    "labNormalsTag":{
                                        "type":"string",
                                        "description":"labNormalsTag",
                                        "example":"Race"
                                    },
                                    "options":{
                                        "title":"FormOptionDto v17.0",
                                        "type":"object",
                                        "properties":{
                                            "label":{
                                                "maxLength":4000,
                                                "minLength":1,
                                                "type":"string",
                                                "description":"Form choice selectbox label for a one specific choice.",
                                                "example":"Female"
                                            },
                                            "value":{
                                                "maxLength":4000,
                                                "minLength":1,
                                                "type":"string",
                                                "description":"Form choice selectbox value for a one specific choice.",
                                                "example":"1"
                                            },
                                            "clCode":{
                                                "type":"string",
                                                "description":"Codelist code for a one specific choice.",
                                                "example":"1"
                                            },
                                            "clDescription":{
                                                "maxLength":4000,
                                                "minLength":1,
                                                "type":"string",
                                                "description":"Codelist description for a one specific choice.",
                                                "example":"1"
                                            },
                                            "clValue":{
                                                "type":"string",
                                                "description":"Codelist value for a one specific choice.",
                                                "example":"1"
                                            }
                                        },
                                        "description":"Form choice item option details"
                                    }
                                },
                                "description":"Item tagged with labNormalTag Details"
                            }
                        },
                        "description":"LabNormal Form Detail Information"
                    }
                },
                "description":"LabNormal Form Items Detail Information"
            },
            "LabNormalItemDtoV1":{
                "title":"LabNormalItemDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Item Id",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Id",
                        "format":"uuid"
                    },
                    "format":{
                        "type":"string",
                        "description":"Date Format",
                        "example":"dd-MMM-yyyy"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"labNormalsTag",
                        "example":"Race"
                    },
                    "options":{
                        "title":"FormOptionDto v17.0",
                        "type":"object",
                        "properties":{
                            "label":{
                                "maxLength":4000,
                                "minLength":1,
                                "type":"string",
                                "description":"Form choice selectbox label for a one specific choice.",
                                "example":"Female"
                            },
                            "value":{
                                "maxLength":4000,
                                "minLength":1,
                                "type":"string",
                                "description":"Form choice selectbox value for a one specific choice.",
                                "example":"1"
                            },
                            "clCode":{
                                "type":"string",
                                "description":"Codelist code for a one specific choice.",
                                "example":"1"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":1,
                                "type":"string",
                                "description":"Codelist description for a one specific choice.",
                                "example":"1"
                            },
                            "clValue":{
                                "type":"string",
                                "description":"Codelist value for a one specific choice.",
                                "example":"1"
                            }
                        },
                        "description":"Form choice item option details"
                    }
                },
                "description":"Item tagged with labNormalTag Details"
            },
            "StudyVersionFormDtoV1":{
                "required":[
                    "formId",
                    "studyId",
                    "version"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    }
                }
            },
            "FormItemSummaryInfoDtov1":{
                "title":"FormItemSummaryInfoDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item UUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "subItemIds":{
                        "title":"Sub item ids",
                        "type":"string",
                        "description":"List of sub question ids",
                        "format":"uuid"
                    },
                    "precision":{
                        "type":"integer",
                        "description":"Number value precision",
                        "format":"int32",
                        "example":1
                    },
                    "units":{
                        "type":"string",
                        "description":"Units of measure",
                        "example":"kg"
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    }
                },
                "description":"Reduced form item properties"
            },
            "FormSummaryInfov1":{
                "title":"FormSummaryInfoDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemSummaryInfoDtov1"
                        }
                    }
                },
                "description":"Reduced form properties"
            },
            "FormChoiceItemDtov18":{
                "title":"FormChoiceItemDto v18.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov18"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov18"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov18":{
                "title":"FormCopySourceDto v18.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov18":{
                "title":"FormDatetimeItemDto v18.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            },
                            "allowFutureDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow future date",
                                "format":"int32",
                                "example":1
                            }
                        }
                    }
                ]
            },
            "FormDtov18":{
                "title":"FormDto v18.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov18"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov18"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov18"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov18"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov18"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo File Name"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    }
                },
                "description":"Form Info"
            },
            "FormExistingDataItemDtoV18":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form existing data item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "codeName":{
                                "type":"string",
                                "description":"Codelist name for existing data, must be a value from ExistingDataLabels codelist",
                                "example":"EDLSite"
                            },
                            "codeValue":{
                                "type":"string",
                                "description":"Codelist value specifying existing data, must be a value from codelist defined in codeName",
                                "example":"SiteName"
                            }
                        }
                    }
                ]
            },
            "FormInstructionalTextItemDtov18":{
                "title":"FormInstructionalTextItem v18.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Instructional information about the form or question",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "instructionalText":{
                                "type":"string",
                                "description":"Instructional information about the form or question",
                                "example":"Complete all parts of the form"
                            }
                        }
                    }
                ]
            },
            "FormItemAdvancedPropDtov18":{
                "title":"From Item Advanced Property v18.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov18"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov18":{
                "title":"From Item Advanced Property Rule v18.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov18":{
                "title":"From Item Advanced Property With Parent v18.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"parent object ID",
                        "format":"uuid"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov18"
                        }
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov18":{
                "title":"FormItemDto v18.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov18"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov18"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov18",
                        "numeric":"#/components/schemas/FormNumberItemDtov18",
                        "measurement":"#/components/schemas/FormNumberItemDtov18",
                        "text":"#/components/schemas/FormTextItemDtov18",
                        "choice":"#/components/schemas/FormChoiceItemDtov18",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov18",
                        "table":"#/components/schemas/FormTableItemDtov18",
                        "section":"#/components/schemas/FormSectionalItemDtov18",
                        "label":"#/components/schemas/FormInstructionalTextItemDtov18",
                        "existingData":"#/components/schemas/FormExistingDataItemDtoV18"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormSectionalItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormInstructionalTextItemDtov18"
                    },
                    {
                        "$ref":"#/components/schemas/FormExistingDataItemDtoV18"
                    }
                ]
            },
            "FormLinkFromDtov18":{
                "title":"FormLinkFromDto v18.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov18"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent Assigned Visits",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov18"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov18":{
                "title":"FormNumberItemDto v18.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov18":{
                "title":"FormOptionDto v18.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov18":{
                "title":"FormQuestionGroupItemDto v18.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    }
                ]
            },
            "FormSectionalItemDtov18":{
                "title":"FormSectionalItemDto v18.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Section Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    }
                ]
            },
            "FormTableItemDtov18":{
                "title":"FormTableItemDto v18.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov18":{
                "title":"FormTextItemDto v18.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov18"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "StratumItemDtoV1":{
                "title":"StratumItemDto v1.0",
                "type":"object",
                "properties":{
                    "itemId":{
                        "type":"string",
                        "description":"Stratum Item Id",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Id",
                        "format":"uuid"
                    },
                    "itemRefName":{
                        "type":"string",
                        "description":"Item Ref Code",
                        "example":"TEXT"
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"SAS Variable",
                        "example":"Text"
                    }
                },
                "description":"Stratum Item Detail Information"
            },
            "StratumVisitDtoV1":{
                "title":"StratumVisitDto v1.0",
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit Id",
                        "format":"uuid"
                    },
                    "items":{
                        "title":"StratumItemDto v1.0",
                        "type":"object",
                        "properties":{
                            "itemId":{
                                "type":"string",
                                "description":"Stratum Item Id",
                                "format":"uuid"
                            },
                            "formId":{
                                "type":"string",
                                "description":"Form Id",
                                "format":"uuid"
                            },
                            "itemRefName":{
                                "type":"string",
                                "description":"Item Ref Code",
                                "example":"TEXT"
                            },
                            "sasVariable":{
                                "type":"string",
                                "description":"SAS Variable",
                                "example":"Text"
                            }
                        },
                        "description":"Stratum Item Detail Information"
                    }
                },
                "description":"Stratum Visit Detail Information"
            },
            "StratumVisitItemsDtoV1":{
                "title":"StratumVisitItemsDto v1.0",
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string",
                        "description":"Study Version",
                        "example":"1.0.0.1"
                    },
                    "strata":{
                        "title":"StratumVisitDto v1.0",
                        "type":"object",
                        "properties":{
                            "visitId":{
                                "type":"string",
                                "description":"Visit Id",
                                "format":"uuid"
                            },
                            "items":{
                                "title":"StratumItemDto v1.0",
                                "type":"object",
                                "properties":{
                                    "itemId":{
                                        "type":"string",
                                        "description":"Stratum Item Id",
                                        "format":"uuid"
                                    },
                                    "formId":{
                                        "type":"string",
                                        "description":"Form Id",
                                        "format":"uuid"
                                    },
                                    "itemRefName":{
                                        "type":"string",
                                        "description":"Item Ref Code",
                                        "example":"TEXT"
                                    },
                                    "sasVariable":{
                                        "type":"string",
                                        "description":"SAS Variable",
                                        "example":"Text"
                                    }
                                },
                                "description":"Stratum Item Detail Information"
                            }
                        },
                        "description":"Stratum Visit Detail Information"
                    }
                },
                "description":"Stratum Visit Items Detail Information"
            },
            "StudyVersionVisitDtoV9":{
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                }
            },
            "FormItemAdvancedPropDtoV7":{
                "title":"From Item Advanced Property v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Advanced property id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Advanced property type, mapped to the ECD_EXTENDED_PROPERTIES.RESPONSE_MAP_JSON column 'valueType' field",
                        "example":"Dropdown"
                    },
                    "name":{
                        "type":"string",
                        "description":"Advanced property name, mapped to the ECD_EXTENDED_PROPERTIES.PROPERTY_NAME column",
                        "example":"RolloverQuestion"
                    },
                    "value":{
                        "type":"string",
                        "description":"Advanced property value of studyId",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Advanced property label in UI, i.e. studyName",
                        "example":"Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtoV7"
                        }
                    },
                    "parentObjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "parentObjectLevel":{
                        "type":"string"
                    },
                    "parentObjectLabel":{
                        "type":"string"
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemWithActionsDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "actions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    }
                }
            },
            "FormWithItemsActionsDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemWithActionsDto"
                        }
                    }
                }
            },
            "StudyVisitsWithFormItemActionsDto":{
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsWithFormItemActionsDto"
                        }
                    }
                }
            },
            "VisitsWithFormItemActionsDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "forms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormWithItemsActionsDto"
                        }
                    }
                }
            },
            "FormsEhrMappingDtoV1":{
                "title":"FormsEhrMappingDto v1.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "ItemsEhrMappingDto":{
                        "title":"ItemsEhrMappingDto v1.0",
                        "type":"object",
                        "properties":{
                            "itemId":{
                                "type":"string",
                                "description":"Item GUID",
                                "format":"uuid"
                            },
                            "FormItemAdvancedPropDto":{
                                "title":"From Item Advanced Property v17.0",
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "type":"string",
                                        "description":"Extended Property ID",
                                        "format":"uuid"
                                    },
                                    "name":{
                                        "maxLength":255,
                                        "minLength":1,
                                        "type":"string",
                                        "description":"Advanced property name",
                                        "example":"RolloverQuestionStudyId"
                                    },
                                    "value":{
                                        "maxLength":2048,
                                        "minLength":1,
                                        "type":"string",
                                        "description":"Advanced property value. For example, rollover study UUID",
                                        "example":"B1B8327AFAA6412287106192AB5984EF"
                                    },
                                    "label":{
                                        "type":"string",
                                        "description":"Rollover study name",
                                        "example":"Rollover Study BT-31"
                                    },
                                    "rules":{
                                        "type":"array",
                                        "items":{
                                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                                        }
                                    }
                                },
                                "description":"Form Item Advanced Property"
                            }
                        },
                        "description":"Information about EhrMappings of form item"
                    }
                },
                "description":"Information about EhrMappings of items of the form"
            },
            "ItemsEhrMappingDtoV1":{
                "title":"ItemsEhrMappingDto v1.0",
                "type":"object",
                "properties":{
                    "itemId":{
                        "type":"string",
                        "description":"Item GUID",
                        "format":"uuid"
                    },
                    "FormItemAdvancedPropDto":{
                        "title":"From Item Advanced Property v17.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Extended Property ID",
                                "format":"uuid"
                            },
                            "name":{
                                "maxLength":255,
                                "minLength":1,
                                "type":"string",
                                "description":"Advanced property name",
                                "example":"RolloverQuestionStudyId"
                            },
                            "value":{
                                "maxLength":2048,
                                "minLength":1,
                                "type":"string",
                                "description":"Advanced property value. For example, rollover study UUID",
                                "example":"B1B8327AFAA6412287106192AB5984EF"
                            },
                            "label":{
                                "type":"string",
                                "description":"Rollover study name",
                                "example":"Rollover Study BT-31"
                            },
                            "rules":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                                }
                            }
                        },
                        "description":"Form Item Advanced Property"
                    }
                },
                "description":"Information about EhrMappings of form item"
            },
            "VisitFormsEhrMappingDtoV1":{
                "title":"VisitFormsEhrMappingDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "FormsEhrMappingDto":{
                        "title":"FormsEhrMappingDto v1.0",
                        "type":"object",
                        "properties":{
                            "formId":{
                                "type":"string",
                                "description":"Form GUID",
                                "format":"uuid"
                            },
                            "ItemsEhrMappingDto":{
                                "title":"ItemsEhrMappingDto v1.0",
                                "type":"object",
                                "properties":{
                                    "itemId":{
                                        "type":"string",
                                        "description":"Item GUID",
                                        "format":"uuid"
                                    },
                                    "FormItemAdvancedPropDto":{
                                        "title":"From Item Advanced Property v17.0",
                                        "type":"object",
                                        "properties":{
                                            "id":{
                                                "type":"string",
                                                "description":"Extended Property ID",
                                                "format":"uuid"
                                            },
                                            "name":{
                                                "maxLength":255,
                                                "minLength":1,
                                                "type":"string",
                                                "description":"Advanced property name",
                                                "example":"RolloverQuestionStudyId"
                                            },
                                            "value":{
                                                "maxLength":2048,
                                                "minLength":1,
                                                "type":"string",
                                                "description":"Advanced property value. For example, rollover study UUID",
                                                "example":"B1B8327AFAA6412287106192AB5984EF"
                                            },
                                            "label":{
                                                "type":"string",
                                                "description":"Rollover study name",
                                                "example":"Rollover Study BT-31"
                                            },
                                            "rules":{
                                                "type":"array",
                                                "items":{
                                                    "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                                                }
                                            }
                                        },
                                        "description":"Form Item Advanced Property"
                                    }
                                },
                                "description":"Information about EhrMappings of form item"
                            }
                        },
                        "description":"Information about EhrMappings of items of the form"
                    }
                },
                "description":"Information about EhrMappings of items of the forms associated with a visit"
            },
            "VisitsFormsEhrMappingDtoV1":{
                "title":"VisitsFormsEhrMappingDto v1.0",
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "title":"String",
                        "type":"string",
                        "description":"study version."
                    },
                    "VisitFormsEhrMappingDto":{
                        "title":"VisitFormsEhrMappingDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Visit GUID",
                                "format":"uuid"
                            },
                            "FormsEhrMappingDto":{
                                "title":"FormsEhrMappingDto v1.0",
                                "type":"object",
                                "properties":{
                                    "formId":{
                                        "type":"string",
                                        "description":"Form GUID",
                                        "format":"uuid"
                                    },
                                    "ItemsEhrMappingDto":{
                                        "title":"ItemsEhrMappingDto v1.0",
                                        "type":"object",
                                        "properties":{
                                            "itemId":{
                                                "type":"string",
                                                "description":"Item GUID",
                                                "format":"uuid"
                                            },
                                            "FormItemAdvancedPropDto":{
                                                "title":"From Item Advanced Property v17.0",
                                                "type":"object",
                                                "properties":{
                                                    "id":{
                                                        "type":"string",
                                                        "description":"Extended Property ID",
                                                        "format":"uuid"
                                                    },
                                                    "name":{
                                                        "maxLength":255,
                                                        "minLength":1,
                                                        "type":"string",
                                                        "description":"Advanced property name",
                                                        "example":"RolloverQuestionStudyId"
                                                    },
                                                    "value":{
                                                        "maxLength":2048,
                                                        "minLength":1,
                                                        "type":"string",
                                                        "description":"Advanced property value. For example, rollover study UUID",
                                                        "example":"B1B8327AFAA6412287106192AB5984EF"
                                                    },
                                                    "label":{
                                                        "type":"string",
                                                        "description":"Rollover study name",
                                                        "example":"Rollover Study BT-31"
                                                    },
                                                    "rules":{
                                                        "type":"array",
                                                        "items":{
                                                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov17"
                                                        }
                                                    }
                                                },
                                                "description":"Form Item Advanced Property"
                                            }
                                        },
                                        "description":"Information about EhrMappings of form item"
                                    }
                                },
                                "description":"Information about EhrMappings of items of the form"
                            }
                        },
                        "description":"Information about EhrMappings of items of the forms associated with a visit"
                    }
                },
                "description":"Information about EhrMappings of items of the forms associated with visits of requested study version"
            },
            "FormItemSummaryDTOV2":{
                "title":"FormItemSummaryDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "subItemIds":{
                        "title":"Sub item ids",
                        "type":"string",
                        "description":"List of sub question ids",
                        "format":"uuid"
                    }
                },
                "description":"Reduced form item properties"
            },
            "FormSummaryFlatDtoV2":{
                "title":"FormSummaryDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemSummaryDTOV2"
                        }
                    }
                },
                "description":"Reduced form properties"
            },
            "VisitSummaryWithFormIdsDto":{
                "required":[
                    "branchCycleCount",
                    "branchStartCycle",
                    "isDispensed",
                    "sdvRequired",
                    "shortName",
                    "studyVersion",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "visitSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "branchTier":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "branchIndex":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string"
                    },
                    "shortName":{
                        "type":"string"
                    },
                    "fullName":{
                        "type":"string"
                    },
                    "eventType":{
                        "type":"string"
                    },
                    "branchId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "branchTitle":{
                        "type":"string"
                    },
                    "branchShortName":{
                        "type":"string"
                    },
                    "branchIsCycle":{
                        "type":"boolean"
                    },
                    "branchStartCycle":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "branchCycleCount":{
                        "type":"number"
                    },
                    "isDispensed":{
                        "type":"boolean"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "formIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "VisitsFormsSummaryDto":{
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitSummaryWithFormIdsDto"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormSummaryFlatDtoV2"
                        }
                    }
                }
            },
            "FormChoiceItemDtov19":{
                "title":"FormChoiceItemDto v19.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov19"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov19":{
                "title":"FormCopySourceDto v19.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov19":{
                "title":"FormDatetimeItemDto v19.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            },
                            "allowFutureDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow future date",
                                "format":"int32",
                                "example":1
                            }
                        }
                    }
                ]
            },
            "FormDtov19":{
                "title":"FormDto v19.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov19"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov19"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo File Name"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    }
                },
                "description":"Form Info"
            },
            "FormExistingDataItemDtov19":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form existing data item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "codeName":{
                                "type":"string",
                                "description":"Codelist name for existing data, must be a value from ExistingDataLabels codelist",
                                "example":"EDLSite"
                            },
                            "codeValue":{
                                "type":"string",
                                "description":"Codelist value specifying existing data, must be a value from codelist defined in codeName",
                                "example":"SiteName"
                            }
                        }
                    }
                ]
            },
            "FormFileUploadItemDto":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    }
                ]
            },
            "FormInstructionalTextItemDtov19":{
                "title":"FormInstructionalTextItem v19.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Instructional information about the form or question",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "instructionalText":{
                                "type":"string",
                                "description":"Instructional information about the form or question",
                                "example":"Complete all parts of the form"
                            }
                        }
                    }
                ]
            },
            "FormItemAdvancedPropDtov19":{
                "title":"From Item Advanced Property v19.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov19"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov19":{
                "title":"From Item Advanced Property Rule v19.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov19":{
                "title":"From Item Advanced Property With Parent v19.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"parent object ID",
                        "format":"uuid"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov19"
                        }
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov19":{
                "title":"FormItemDto v19.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov19"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov19"
                        }
                    },
                    "requiredScreening":{
                        "type":"boolean",
                        "description":"Form items tagged as screening will are used as the minimum data collected on a Screening Event.",
                        "example":false
                    },
                    "requiredRandomization":{
                        "type":"boolean",
                        "description":"Form items tagged as randomization will are used as the minimum data collected on a Randomization Event.",
                        "example":false
                    },
                    "requiredDispensation":{
                        "type":"boolean",
                        "description":"Form items tagged as dispensation will are used as the minimum data collected on a Dispensation Event.",
                        "example":false
                    },
                    "requiredForCaseCreate":{
                        "type":"boolean",
                        "description":"Form items tagged as required for case create are mandatory as the minimum data collected on a Safety Case collection.",
                        "example":false
                    },
                    "triggerFollowupCase":{
                        "type":"boolean",
                        "description":"Form items tagged as trigger followup case are having safety rules enabled for safety rules creation.",
                        "example":false
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    },
                    "e2br3Mapping":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov19"
                        }
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov19",
                        "numeric":"#/components/schemas/FormNumberItemDtov19",
                        "measurement":"#/components/schemas/FormNumberItemDtov19",
                        "text":"#/components/schemas/FormTextItemDtov19",
                        "choice":"#/components/schemas/FormChoiceItemDtov19",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov19",
                        "table":"#/components/schemas/FormTableItemDtov19",
                        "section":"#/components/schemas/FormSectionalItemDtov19",
                        "label":"#/components/schemas/FormInstructionalTextItemDtov19",
                        "existingData":"#/components/schemas/FormExistingDataItemDtov19",
                        "fileUpload":"#/components/schemas/FormFileUploadItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormSectionalItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormInstructionalTextItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormExistingDataItemDtov19"
                    },
                    {
                        "$ref":"#/components/schemas/FormFileUploadItemDto"
                    }
                ]
            },
            "FormLinkFromDtov19":{
                "title":"FormLinkFromDto v19.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent Assigned Visits",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov19":{
                "title":"FormNumberItemDto v19.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov19":{
                "title":"FormOptionDto v19.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    },
                    "clItemId":{
                        "type":"string",
                        "description":"Codelist item id for a one specific choice.",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item option hidden?",
                        "example":false
                    },
                    "optionSeq":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice sequence value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov19":{
                "title":"FormQuestionGroupItemDto v19.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    }
                ]
            },
            "FormSectionalItemDtov19":{
                "title":"FormSectionalItemDto v19.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Section Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    }
                ]
            },
            "FormTableItemDtov19":{
                "title":"FormTableItemDto v19.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov19":{
                "title":"FormTextItemDto v19.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov19"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtov21":{
                "title":"FormChoiceItemDto v21.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov21"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov21"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            },
                            "codelistType":{
                                "type":"string",
                                "description":"Form items field to indicate dynamic or static variant of the codelist mapped to item. ",
                                "enum":[
                                    "STATIC, DYNAMIC"
                                ]
                            },
                            "codelistId":{
                                "type":"string",
                                "description":"ID of the codelist used in the question ",
                                "format":"uuid"
                            },
                            "codelistLang":{
                                "type":"string",
                                "description":"Language of the codelist used in the question ",
                                "example":"en-US"
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov21":{
                "title":"FormCopySourceDto v21.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Source form ID (UUID).",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Source study ID (UUID).",
                        "format":"uuid"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Source study title.",
                        "example":"Study-s1"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Source version start timestamp.",
                        "format":"date-time",
                        "example":"2025-04-30T09:24:15Z"
                    },
                    "rules":{
                        "type":"boolean",
                        "description":"Indicates whether rules were copied from the source form.",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information",
                "example":{
                    "studyId":"B1B8327AFAA6412287106192AB5984EF",
                    "studyTitle":"Study-s1",
                    "formId":"B1B8327AFAA6412287106192AB5984EA",
                    "versionStart":"2025-04-30T09:24:15Z",
                    "rules":false
                }
            },
            "FormDatetimeItemDtov21":{
                "title":"FormDatetimeItemDto v21.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            },
                            "allowFutureDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow future date",
                                "format":"int32",
                                "example":1
                            }
                        }
                    }
                ]
            },
            "FormDtov21":{
                "title":"FormDto v21.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form ID (UUID).",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov21"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form item definitions.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "formId":"B1B8327AFAA6412287106192AB5984EA",
                                "questionType":"numeric",
                                "questionLabel":"Age",
                                "refname":"AGE_01",
                                "required":true,
                                "sdvRequired":"NEVER"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov21"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form version start timestamp.",
                        "format":"date-time",
                        "example":"2025-04-30T09:24:15Z"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"Forms linked to this form.",
                        "example":[
                            {
                                "formId":"B1B8327AFAA6412287106192AB5984EF",
                                "items":[
                                    "B1B8327AFAA6412287106192AB5984EA"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov21"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"Dynamic parent dependencies from forms on the same visit.",
                        "example":[
                            {
                                "formId":"B1B8327AFAA6412287106192AB5984EF",
                                "items":[
                                    {
                                        "id":"B1B8327AFAA6412287106192AB5984EA",
                                        "label":"PARENT_ITEM"
                                    }
                                ],
                                "parentAssignedVisits":[
                                    {
                                        "id":"B1B8327AFAA6412287106192AB5984EB",
                                        "label":"VISIT_1"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov21"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"Branch-cycle details describing visits where this form is displayed.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"VISIT_1"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov21"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list.",
                        "example":[
                            "SCREENING",
                            "BASELINE"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list.",
                            "example":"[\"SCREENING\",\"BASELINE\"]"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo file name.",
                        "example":"study-logo.png"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    }
                },
                "description":"Form Info"
            },
            "FormExistingDataItemDtov21":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form existing data item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "codeName":{
                                "type":"string",
                                "description":"Codelist name for existing data, must be a value from ExistingDataLabels codelist",
                                "example":"EDLSite"
                            },
                            "codeValue":{
                                "type":"string",
                                "description":"Codelist value specifying existing data, must be a value from codelist defined in codeName",
                                "example":"SiteName"
                            }
                        }
                    }
                ]
            },
            "FormFileUploadItemDtov21":{
                "title":"FormFileUploadItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form File Upload Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    }
                ]
            },
            "FormInstructionalTextItemDtov21":{
                "title":"FormInstructionalTextItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Instructional Text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "instructionalText":{
                                "type":"string",
                                "description":"Instructional text content",
                                "example":"Please fill this form carefully"
                            }
                        }
                    }
                ]
            },
            "FormItemAdvancedPropDtov21":{
                "title":"FormItemAdvancedPropDto v21.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended property ID (UUID).",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Advanced property type.",
                        "example":"RolloverQuestion"
                    },
                    "name":{
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "description":"Advanced property rules list.",
                        "example":[
                            {
                                "name":"RolloverQuestionAnswer",
                                "value":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"Yes"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov21"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov21":{
                "title":"FormItemAdvancedPropRuleDto v21.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"Rule name.",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"Rule value.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rule label.",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov21":{
                "title":"From Item Advanced Property With Parent v21.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended property ID (UUID).",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Advanced property type.",
                        "example":"RolloverQuestion"
                    },
                    "name":{
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "description":"Advanced property rules list.",
                        "example":[
                            {
                                "name":"RolloverQuestionAnswer",
                                "value":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"Yes"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov21"
                        }
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent object ID (UUID).",
                        "format":"uuid"
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov21":{
                "title":"FormItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form item ID (UUID).",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form ID (UUID).",
                        "format":"uuid"
                    },
                    "visitIds":{
                        "type":"array",
                        "description":"Visits associated",
                        "format":"List<UUID>",
                        "example":"[B1B8327AFAA6412287106192AB5984EF, B1B8327AFAA6412287106192AB5984EA]",
                        "items":{
                            "type":"string",
                            "description":"Visits associated",
                            "format":"uuid"
                        }
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32",
                        "example":3
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item ID (UUID).",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov21"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "description":"Data classification entries.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "type":"DATA_CLASSIFICATION",
                                "name":"CLASSIFICATION_ID",
                                "value":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"Confidential"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov21"
                        }
                    },
                    "requiredScreening":{
                        "type":"boolean",
                        "description":"Form items tagged as screening will are used as the minimum data collected on a Screening Event.",
                        "example":false
                    },
                    "requiredRandomization":{
                        "type":"boolean",
                        "description":"Form items tagged as randomization will are used as the minimum data collected on a Randomization Event.",
                        "example":false
                    },
                    "requiredDispensation":{
                        "type":"boolean",
                        "description":"Form items tagged as dispensation will are used as the minimum data collected on a Dispensation Event.",
                        "example":false
                    },
                    "requiredForCaseCreate":{
                        "type":"boolean",
                        "description":"Form items tagged as required for case create are mandatory as the minimum data collected on a Safety Case collection.",
                        "example":false
                    },
                    "triggerFollowupCase":{
                        "type":"boolean",
                        "description":"Form items tagged as trigger followup case are having safety rules enabled for safety rules creation.",
                        "example":false
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    },
                    "e2br3Mapping":{
                        "type":"array",
                        "description":"E2B R3 mapping entries.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "type":"E2BR3",
                                "name":"E2B_FIELD",
                                "value":"PATIENT_AGE",
                                "label":"Patient Age"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov21"
                        }
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov21",
                        "numeric":"#/components/schemas/FormNumberItemDtov21",
                        "measurement":"#/components/schemas/FormNumberItemDtov21",
                        "text":"#/components/schemas/FormTextItemDtov21",
                        "choice":"#/components/schemas/FormChoiceItemDtov21",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov21",
                        "table":"#/components/schemas/FormTableItemDtov21",
                        "section":"#/components/schemas/FormSectionalItemDtov21",
                        "label":"#/components/schemas/FormInstructionalTextItemDtov21",
                        "existingData":"#/components/schemas/FormExistingDataItemDtov21",
                        "fileUpload":"#/components/schemas/FormFileUploadItemDtov21"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormSectionalItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormInstructionalTextItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormExistingDataItemDtov21"
                    },
                    {
                        "$ref":"#/components/schemas/FormFileUploadItemDtov21"
                    }
                ]
            },
            "FormLinkFromDtov21":{
                "title":"FormLinkFromDto v21.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form ID (UUID).",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Linked parent item details.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"PARENT_ITEM"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov21"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent assigned visit details.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"VISIT_1"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov21"
                        }
                    }
                },
                "description":"Linked From Form Details",
                "example":[
                    {
                        "formId":"B1B8327AFAA6412287106192AB5984EF",
                        "items":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EA",
                                "label":"PARENT_ITEM"
                            }
                        ],
                        "parentAssignedVisits":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EB",
                                "label":"VISIT_1"
                            }
                        ]
                    }
                ]
            },
            "FormNumberItemDtov21":{
                "title":"FormNumberItemDto v21.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov21":{
                "title":"FormOptionDto v21.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    },
                    "clItemId":{
                        "type":"string",
                        "description":"Codelist item id for a one specific choice.",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item option hidden?",
                        "example":false
                    },
                    "optionSeq":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice sequence value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov21":{
                "title":"FormQuestionGroupItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov21"
                                }
                            }
                        }
                    }
                ]
            },
            "FormSectionalItemDtov21":{
                "title":"FormSectionalItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Sectional Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    }
                ]
            },
            "FormTableItemDtov21":{
                "title":"FormTableItemDto v21.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov21":{
                "title":"FormTextItemDto v21.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov21"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "LockObjectDetailsDtoV4":{
                "title":"LockObjectDetailsDto v4.0",
                "type":"object",
                "properties":{
                    "visitObjects":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"object",
                            "additionalProperties":{
                                "$ref":"#/components/schemas/LockObjectVersionDetailsDtoV4"
                            },
                            "description":"Locked visit object details."
                        },
                        "description":"Locked visit object details."
                    }
                },
                "description":"Information about all the locked objects."
            },
            "LockObjectVersionDetailsDtoV4":{
                "title":"LockObjectVersionDetailsDtoV4",
                "type":"object",
                "properties":{
                    "visitDetails":{
                        "$ref":"#/components/schemas/VisitDtoV9"
                    }
                },
                "description":"Information about all the locked objects in a version"
            },
            "VisitDtoV9":{
                "title":"VisitDto v9.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "branchTitle":{
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design."
            },
            "LockObjectDtoV4":{
                "title":"LockObjectDto V4.0",
                "required":[
                    "objectId",
                    "objectLockVersion",
                    "objectType"
                ],
                "type":"object",
                "properties":{
                    "objectId":{
                        "type":"string",
                        "description":"Object ID",
                        "format":"uuid"
                    },
                    "objectType":{
                        "title":"ObjectType",
                        "type":"string",
                        "description":"Object type",
                        "example":"form",
                        "enum":[
                            "form",
                            "visit"
                        ]
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent Object ID",
                        "format":"uuid"
                    },
                    "objectLockVersion":{
                        "title":"ObjectLockVersion",
                        "type":"string",
                        "description":"Object lock version",
                        "example":"1.0.0.1"
                    },
                    "objectLockDate":{
                        "type":"string",
                        "description":"Object Lock Date",
                        "format":"date-time"
                    }
                },
                "description":"Lock Object details"
            },
            "LockObjectDtoV5":{
                "required":[
                    "objectId",
                    "objectLockVersion",
                    "objectType"
                ],
                "type":"object",
                "properties":{
                    "objectId":{
                        "type":"string",
                        "description":"Object ID",
                        "format":"uuid"
                    },
                    "objectType":{
                        "title":"ObjectType",
                        "type":"string",
                        "description":"Object type",
                        "example":"form",
                        "enum":[
                            "form",
                            "visit"
                        ]
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent Object ID",
                        "format":"uuid"
                    },
                    "objectLockVersion":{
                        "title":"ObjectLockVersion",
                        "type":"string",
                        "description":"Object lock version",
                        "example":"1.0.0.1"
                    },
                    "objectLockDate":{
                        "type":"string",
                        "description":"Object Lock Date",
                        "format":"date-time"
                    }
                }
            },
            "LibraryHistoryDtoV1":{
                "title":"LibraryHistoryDtoV1.0",
                "type":"object",
                "properties":{
                    "libraryId":{
                        "title":"Library ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "lastModifiedDate":{
                        "title":"Last modified date",
                        "type":"string",
                        "description":"Date and time when the resource was last modified.",
                        "format":"date-time",
                        "example":"2022-08-30T07:59:46.901Z"
                    },
                    "libraryVersion":{
                        "title":"Library version",
                        "type":"string",
                        "description":"Version identifier of the library.",
                        "example":"1.0"
                    },
                    "status":{
                        "title":"Status",
                        "type":"string",
                        "description":"Status of the resource.",
                        "example":"DRAFT"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Unique user identifier (UUID) representing the investigator or system user who modified or interacted with the subject record",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "userName":{
                        "title":"User name",
                        "type":"string",
                        "description":"Name of the user that performed the modification.",
                        "example":"John Doe"
                    }
                },
                "description":"Information about the history of library modifications."
            },
            "LibraryKitsDtoV1":{
                "title":"LibraryKitsDtoV1.0",
                "type":"object",
                "properties":{
                    "trialSupplyType":{
                        "title":"Trial supply type",
                        "type":"string",
                        "description":"Trial supply type of the kit.",
                        "example":"BOTTLE"
                    },
                    "storageSetting":{
                        "title":"Storage setting",
                        "type":"string",
                        "description":"Storage setting of the kit.",
                        "example":"REFRIGERATED",
                        "enum":[
                            "AMBIENT",
                            "REFRIGERATED",
                            "FROZEN"
                        ]
                    },
                    "libraryKitId":{
                        "title":"Library kit ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library kit.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "poolingId":{
                        "title":"Pooling ID",
                        "type":"string",
                        "description":"Pooling identifier for the kit.",
                        "format":"string",
                        "example":"BPAF"
                    },
                    "kitDescription":{
                        "title":"Kit description",
                        "type":"string",
                        "description":"Description of the kit.",
                        "format":"string",
                        "example":"Placebo"
                    },
                    "unitsPerKit":{
                        "title":"Units per kit",
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"double",
                        "example":5
                    },
                    "status":{
                        "title":"Status",
                        "type":"string",
                        "description":"Status of the resource.",
                        "example":"DRAFT",
                        "enum":[
                            "DRAFT",
                            "APPROVED",
                            "ARCHIVED",
                            "PUBLISHED"
                        ]
                    }
                },
                "description":"Information about library kits."
            },
            "LibraryDtoV1":{
                "title":"LibraryDtoV1.0",
                "type":"object",
                "properties":{
                    "libraryId":{
                        "title":"Library ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectId":{
                        "title":"Object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectType":{
                        "title":"Object type",
                        "type":"string",
                        "description":"Type of the underlying object.",
                        "example":"FORM"
                    },
                    "objectGroup":{
                        "title":"Object group",
                        "type":"string",
                        "description":"Object group or title.",
                        "example":"Demography"
                    },
                    "libraryVersion":{
                        "title":"Library version",
                        "type":"string",
                        "description":"Version identifier of the library.",
                        "example":"1.0"
                    },
                    "status":{
                        "title":"Status",
                        "type":"string",
                        "description":"Status of the resource.",
                        "example":"DRAFT"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Description of the library object.",
                        "example":"Advanced demography form"
                    },
                    "tags":{
                        "title":"Tags",
                        "type":"string",
                        "description":"Comma-separated tags associated with the library object.",
                        "example":"LIB"
                    },
                    "studyId":{
                        "title":"Study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersion":{
                        "title":"Study version",
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    }
                },
                "description":"Information about a library object."
            },
            "LibraryCopyObjectDtoV1":{
                "title":"LibraryCopyObjectDtoV1.0",
                "type":"object",
                "properties":{
                    "objectId":{
                        "title":"Object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyId":{
                        "title":"Study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersion":{
                        "title":"Study version",
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "studyType":{
                        "title":"Study type",
                        "type":"string",
                        "description":"Type of the study.",
                        "example":"LIBRARY"
                    },
                    "sourceObjectId":{
                        "title":"Source object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the source object used for copy.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "sourceStudyVersion":{
                        "title":"Source study version",
                        "type":"string",
                        "description":"Version identifier of the source study used for copy.",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyId":{
                        "title":"Source study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the source study used for copy.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "sourceStudyType":{
                        "title":"Source study type",
                        "type":"string",
                        "description":"Type of the source study used for copy.",
                        "example":"LIBRARY"
                    },
                    "objectType":{
                        "title":"Object type",
                        "type":"string",
                        "description":"Type of the underlying object.",
                        "example":"FORM"
                    },
                    "objectGroup":{
                        "title":"Object group",
                        "type":"string",
                        "description":"Object group or title.",
                        "example":"Demography"
                    }
                },
                "description":"Information about a library object copy request."
            },
            "LibraryUsesDtoV1":{
                "title":"LibraryUsesDtoV1.0",
                "type":"object",
                "properties":{
                    "libraryId":{
                        "title":"Library ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectId":{
                        "title":"Object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectType":{
                        "title":"Object type",
                        "type":"string",
                        "description":"Type of the underlying object.",
                        "example":"FORM"
                    },
                    "studyType":{
                        "title":"Study type",
                        "type":"string",
                        "description":"Type of the study.",
                        "example":"LIBRARY"
                    },
                    "studyId":{
                        "title":"Study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersion":{
                        "title":"Study version",
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    }
                },
                "description":"Information about how a library object is used in studies."
            },
            "LibraryCopyObjectDtoV2":{
                "title":"LibraryCopyObjectDtoV2.0",
                "type":"object",
                "properties":{
                    "associatedForm":{
                        "type":"boolean"
                    },
                    "objectId":{
                        "title":"Object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyId":{
                        "title":"Study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersion":{
                        "title":"Study version",
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "studyType":{
                        "title":"Study type",
                        "type":"string",
                        "description":"Type of the study.",
                        "example":"LIBRARY"
                    },
                    "sourceObjectId":{
                        "title":"Source object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the source object used for copy.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "sourceStudyVersion":{
                        "title":"Source study version",
                        "type":"string",
                        "description":"Version identifier of the source study used for copy.",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyId":{
                        "title":"Source study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the source study used for copy.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "sourceStudyType":{
                        "title":"Source study type",
                        "type":"string",
                        "description":"Type of the source study used for copy.",
                        "example":"LIBRARY"
                    },
                    "objectType":{
                        "title":"Object type",
                        "type":"string",
                        "description":"Type of the underlying object.",
                        "example":"FORM"
                    },
                    "objectGroup":{
                        "title":"Object group",
                        "type":"string",
                        "description":"Object group or title.",
                        "example":"Demography"
                    },
                    "isAssociatedForm":{
                        "title":"Is associated form",
                        "type":"boolean",
                        "description":"Indicates whether the form is associated.",
                        "example":true
                    }
                },
                "description":"Information about a library object copy request."
            },
            "LibraryUsesDtoV2":{
                "title":"LibraryUsesDtoV2.0",
                "type":"object",
                "properties":{
                    "libraryId":{
                        "title":"Library ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the library object.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectId":{
                        "title":"Object ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying object (for example, forms or rules).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "objectType":{
                        "title":"Object type",
                        "type":"string",
                        "description":"Type of the underlying object.",
                        "example":"FORM"
                    },
                    "studyType":{
                        "title":"Study type",
                        "type":"string",
                        "description":"Type of the study.",
                        "example":"LIBRARY"
                    },
                    "studyId":{
                        "title":"Study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the study.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersion":{
                        "title":"Study version",
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "versionStart":{
                        "title":"Version start",
                        "type":"string",
                        "description":"Uses version start timestamp.",
                        "format":"date-time",
                        "example":"2023-08-30T07:59:46.901Z"
                    },
                    "relationType":{
                        "title":"Relation type",
                        "type":"string",
                        "description":"Relationship type describing how the library object is used.",
                        "example":"LIBRARY_ROOT",
                        "enum":[
                            "LIBRARY_ROOT, IMPORT_FROM_LIBRARY, IMPORT_FROM_LIBRARY_MODIFIED"
                        ]
                    },
                    "librarySourceStudyId":{
                        "title":"Library source study ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of source study where the library was created.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Information about how a library object is used in studies."
            },
            "Error details DTO":{
                "type":"object",
                "properties":{
                    "errorCode":{
                        "type":"string",
                        "description":"Machine-readable error code that identifies the failure.",
                        "readOnly":true,
                        "example":"QRY-5000"
                    },
                    "errorMessage":{
                        "type":"string",
                        "description":"Human-readable explanation describing why the request failed.",
                        "readOnly":true,
                        "example":"Unexpected server error."
                    },
                    "details":{
                        "$ref":"#/components/schemas/QueryRestErrorDetail"
                    }
                },
                "description":"Standard structure used to describe errors returned by Query APIs.",
                "example":{
                    "errorCode":"QRY-5000",
                    "errorMessage":"Unexpected server error.",
                    "details":{
                        "requestId":"3b3b8f31-87a3-4dd2-8b9d-21d0c93ef27a",
                        "supportCode":"QRY-5000",
                        "hint":"Retry request after verifying the study mode."
                    }
                }
            },
            "QueryRestErrorDetail":{
                "type":"object",
                "properties":{
                    "requestId":{
                        "type":"string",
                        "description":"Unique identifier that can be supplied to Oracle Support when troubleshooting.",
                        "example":"3b3b8f31-87a3-4dd2-8b9d-21d0c93ef27a"
                    },
                    "supportCode":{
                        "type":"string",
                        "description":"Support or incident code associated with the error source.",
                        "example":"QRY-5000"
                    },
                    "hint":{
                        "type":"string",
                        "description":"Client-facing guidance that clarifies how to resolve or retry the request.",
                        "example":"Retry request after verifying the study mode."
                    }
                },
                "description":"Context object returned when additional error metadata is available.",
                "readOnly":true,
                "example":{
                    "requestId":"3b3b8f31-87a3-4dd2-8b9d-21d0c93ef27a",
                    "supportCode":"QRY-5000",
                    "hint":"Retry request"
                }
            },
            "StudyOpenQueryCountDTO":{
                "title":"StudyOpenQueryCountDTO v1.0",
                "type":"object",
                "properties":{
                    "opened":{
                        "type":"integer",
                        "description":"Number of queries currently in the Open state. Negative values are not allowed.",
                        "format":"int32",
                        "example":2
                    },
                    "answered":{
                        "type":"integer",
                        "description":"Number of queries currently in the Answered state. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    },
                    "closed":{
                        "type":"integer",
                        "description":"Number of queries currently in the Closed state. Negative values are not allowed.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Payload containing open, answered, and closed query totals for a single study.",
                "example":{
                    "opened":3,
                    "answered":1,
                    "closed":2
                }
            },
            "StudyOpenQueryCountRespDTO":{
                "title":"StudyOpenQueryCountRespDTO v1.0",
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Overall execution status. Value is success when result is populated and failed when errorData is returned.",
                        "readOnly":true,
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/StudyOpenQueryCountDTO"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/Error details DTO"
                    },
                    "version":{
                        "type":"string",
                        "description":"Semantic version of the response envelope.",
                        "readOnly":true,
                        "example":"1"
                    }
                },
                "description":"Envelope that returns open, answered, and closed query totals for a study."
            },
            "StudyQueryCountDTO":{
                "title":"StudyQueryCountDTO v1.0",
                "type":"object",
                "properties":{
                    "candidate":{
                        "type":"integer",
                        "description":"Number of queries currently in the Candidate state. Negative values are not allowed.",
                        "format":"int32",
                        "example":1
                    },
                    "opened":{
                        "type":"integer",
                        "description":"Number of queries currently in the Open state. Negative values are not allowed.",
                        "format":"int32",
                        "example":2
                    },
                    "answered":{
                        "type":"integer",
                        "description":"Number of queries currently in the Answered state. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    },
                    "deleted":{
                        "type":"integer",
                        "description":"Number of queries currently in the Deleted state. Negative values are not allowed.",
                        "format":"int32",
                        "example":4
                    },
                    "closed":{
                        "type":"integer",
                        "description":"Number of queries currently in the Closed state. Negative values are not allowed.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Payload containing lifecycle totals for queries within a study.",
                "example":{
                    "candidate":1,
                    "opened":3,
                    "answered":2,
                    "deleted":0,
                    "closed":4
                }
            },
            "StudyQueryCountRespDTO":{
                "title":"StudyQueryCountRespDTO v1.0",
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Overall execution status. Value is success when result is populated and failed when errorData is returned.",
                        "readOnly":true,
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/StudyQueryCountDTO"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/Error details DTO"
                    },
                    "version":{
                        "type":"string",
                        "description":"Semantic version of the response envelope.",
                        "readOnly":true,
                        "example":"1"
                    }
                },
                "description":"Envelope that returns lifecycle totals for queries within a study."
            },
            "Response DTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Overall execution status. Value is success when result is populated and failed when errorData is returned.",
                        "readOnly":true,
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "type":"object",
                        "description":"Result payload returned when status equals success.",
                        "example":{
                            "opened":3,
                            "answered":1,
                            "closed":2
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/Error details DTO"
                    },
                    "version":{
                        "type":"string",
                        "description":"Semantic version of the response envelope.",
                        "readOnly":true,
                        "example":"1"
                    }
                },
                "description":"Base envelope returned by Query APIs. Use the status field to determine whether result or errorData is populated.",
                "example":"{\\n  \\\"status\\\": \\\"success\\\",\\n  \\\"result\\\": {\\n    \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n    \\\"state\\\": \\\"Answered\\\"\\n  },\\n  \\\"errorData\\\": null,\\n  \\\"version\\\": \\\"1\\\"\\n}"
            },
            "PaginationParamDTO":{
                "type":"object",
                "properties":{
                    "orderasc":{
                        "type":"boolean"
                    },
                    "limit":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "offset":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "QueryManagementRequestDTO":{
                "type":"object",
                "properties":{
                    "paginationParam":{
                        "$ref":"#/components/schemas/PaginationParamDTO"
                    },
                    "lastUpdated":{
                        "type":"string"
                    },
                    "queryType":{
                        "type":"string"
                    },
                    "assignedRoleId":{
                        "type":"string"
                    },
                    "subjectIdList":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "siteIdList":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "searchStr":{
                        "type":"string"
                    },
                    "queryGridView":{
                        "type":"string"
                    },
                    "queryCreatedBy":{
                        "type":"string"
                    },
                    "queryByID":{
                        "type":"string"
                    },
                    "queryByAge":{
                        "type":"string"
                    },
                    "queryClosedBy":{
                        "type":"string"
                    },
                    "creatorStudyRoleId":{
                        "type":"string"
                    },
                    "closedStudyRoleId":{
                        "type":"string"
                    },
                    "formIdList":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "visitIdList":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "queryState":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "currentRecord":{
                        "type":"string"
                    },
                    "ruleTypeId":{
                        "type":"string"
                    },
                    "isToDo":{
                        "type":"boolean"
                    }
                },
                "description":"Compared to v1.0, this v2.0 request adds role-based filters, rule type selection, and pagination guards so query management lists can be retrieved with a single call.",
                "example":"{\\n  \\\"paginationParam\\\": {\\n    \\\"offset\\\": 0,\\n    \\\"limit\\\": 25,\\n    \\\"orderasc\\\": false\\n  },\\n  \\\"queryState\\\": [\\\"Answered\\\", \\\"Candidate\\\", \\\"Opened\\\"],\\n  \\\"currentRecord\\\": \\\"1\\\",\\n  \\\"subjectIdList\\\": [\\\"C7A97B54EB144646A5E9322A81C42C2F\\\", \\\"762744769B0E4E40B6A74691179BC578\\\"],\\n  \\\"siteIdList\\\": [\\\"CB9BBB0767114F599FE75616223D6665\\\"],\\n  \\\"queryByAge\\\": \\\"-7\\\",\\n  \\\"queryType\\\": \\\"All\\\",\\n  \\\"formIdList\\\": [],\\n  \\\"visitIdList\\\": []\\n}"
            },
            "Query DTO":{
                "required":[
                    "studyRoles"
                ],
                "type":"object",
                "properties":{
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role identifiers to assign. Provide between 1 and 50 values.",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "9F8435D105BD49CC9A31DF94A2AF1F01"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role identifiers to assign. Provide between 1 and 50 values.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request for assignupdate Query API",
                "example":"{\\n  \\\"studyRoles\\\": [\\\"6AF54DB79B764662B685D68C52AB0B84\\\", \\\"9F8435D105BD49CC9A31DF94A2AF1F01\\\"]\\n}"
            },
            "Field":{
                "required":[
                    "fieldName",
                    "fieldType",
                    "fieldValueList"
                ],
                "type":"object",
                "properties":{
                    "fieldName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Field name to evaluate. Examples include STUDYID, SITEID, ruleState, and dateRange.",
                        "example":"ruleState"
                    },
                    "fieldType":{
                        "maxLength":16,
                        "minLength":4,
                        "type":"string",
                        "description":"Field value classification. Use list for enumerations, date for calendar values, date-time for timestamps, number for numeric filters, string for textual filters, or boolean for true/false.",
                        "example":"list",
                        "enum":[
                            "list",
                            "date",
                            "date-time",
                            "number",
                            "string",
                            "boolean"
                        ]
                    },
                    "fieldSequence":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence/order of the field. Provide a non-negative integer.",
                        "format":"int32",
                        "example":1
                    },
                    "fieldValueList":{
                        "type":"array",
                        "description":"List of values for the Field. Provide GUIDs for identifier filters or literal values for textual filters.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "maxLength":256,
                            "minLength":1,
                            "type":"string",
                            "example":"publish"
                        }
                    }
                },
                "description":"Generic representation of a report filter. Each entry specifies the field to evaluate, its data type, and the values to use when filtering.",
                "example":{
                    "fieldName":"ruleState",
                    "fieldType":"list",
                    "fieldSequence":1,
                    "fieldValueList":[
                        "approved"
                    ]
                }
            },
            "SearchSpecs":{
                "title":"SearchSpecs",
                "type":"object",
                "properties":{
                    "limit":{
                        "maximum":5000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records to display per page. Provide a value between 1 and 5000 inclusive. Negative numbers are not accepted.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter. Provide a zero or positive value.",
                        "format":"int32",
                        "example":5
                    },
                    "fieldSpecsList":{
                        "type":"array",
                        "description":"Field Specification List. Each element describes a single filter applied to the report.",
                        "example":[
                            {
                                "fieldName":"ruleState",
                                "fieldType":"list",
                                "fieldSequence":1,
                                "fieldValueList":[
                                    "approved"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/Field"
                        }
                    }
                },
                "description":"Request body passing search specs like limit, offset and list of fields"
            },
            "QueryDetailsParamDTO":{
                "type":"object",
                "properties":{
                    "paginationParam":{
                        "$ref":"#/components/schemas/PaginationParamDTO"
                    },
                    "subjectId":{
                        "type":"string"
                    },
                    "siteId":{
                        "type":"string"
                    },
                    "visitId":{
                        "type":"string"
                    },
                    "eventId":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string"
                    },
                    "dataElementId":{
                        "type":"string"
                    },
                    "states":{
                        "uniqueItems":true,
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "eventInstanceNumber":{
                        "type":"string"
                    },
                    "formInstanceNumber":{
                        "type":"string"
                    },
                    "itemId":{
                        "type":"string"
                    },
                    "currentRecord":{
                        "type":"string"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat form sequence number. Negative values are rejected.",
                        "format":"int64",
                        "example":1
                    },
                    "propertyType":{
                        "type":"string"
                    },
                    "propertyName":{
                        "maxLength":256,
                        "minLength":1,
                        "type":"string"
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role identifiers applied to the query.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy identifier. Negative values are rejected.",
                        "format":"int64",
                        "example":123456789
                    }
                }
            },
            "QueryDTOv9Response":{
                "title":"QueryDTO Version 9",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query unique identifier. Value must be a 32 to 36 character hexadecimal GUID.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments captured during open, candidate, or close operations.",
                        "example":"Query comment example here.."
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state. Allowed values: Candidate (new discrepancy awaiting triage), Opened (active discrepancy requiring action), Answered (site responded awaiting review), Closed (resolved discrepancy), Deleted (removed during workflow).",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Closed",
                            "Deleted"
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique GUID.",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element unique GUID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element version start timestamp in ISO-8601 format.",
                        "format":"date-time",
                        "example":"2026-01-15T10:05:30Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique GUID.",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating form. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site unique GUID.",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique GUID.",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating event. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"Study role assignments returned after update.",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy identifier sourced from Data Capture. Negative values are rejected.",
                        "format":"int64",
                        "example":123456789
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat form sequence number. Negative values are rejected.",
                        "format":"int64",
                        "example":1
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object version. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item unique GUID.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"Property name associated with the query when Data Capture properties are involved. Example: visit.",
                        "example":"visit"
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Property type classification. Allowed values: visit (query anchored to visit details), visitStartDate (query anchored to the visit start date).",
                        "example":"visit",
                        "enum":[
                            "visit",
                            "visitStartDate"
                        ]
                    },
                    "ruleId":{
                        "type":"string",
                        "description":"Rule unique GUID for queries created by rule.",
                        "format":"uuid"
                    },
                    "isQueryCreator":{
                        "type":"boolean",
                        "description":"Indicates if the authenticated user created the query (true or false).",
                        "example":true
                    }
                },
                "description":"Information returned from updating/inserting query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 6,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"discrepancyId\\\": 123456789,\\n  \\\"repeatFormNumber\\\": 1,\\n  \\\"propertyName\\\": \\\"visit\\\",\\n  \\\"propertyType\\\": \\\"visitStartDate\\\",\\n  \\\"ruleId\\\": \\\"0E1F4EDBB97943F0B2DE8C6C5AA31234\\\",\\n  \\\"isQueryCreator\\\": true,\\n  \\\"studyRoles\\\": [{\\\"studyRoleId\\\": \\\"6AF54DB79B764662B685D68C52AB0B84\\\", \\\"studyRoleName\\\": \\\"CRA\\\"}]\\n}"
            },
            "QueryStudyRoleDTOv6":{
                "type":"object",
                "properties":{
                    "studyRoleId":{
                        "type":"string",
                        "description":"Study role of the user performing the query operation",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string",
                        "description":"Study role name of the user performing the query operation",
                        "example":"CRA"
                    }
                }
            },
            "QueryAssignUpdateRequest":{
                "required":[
                    "studyRoles"
                ],
                "type":"object",
                "properties":{
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role identifiers to assign.",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "comment":{
                        "type":"string",
                        "description":"Review comment recorded during assignment.",
                        "example":"Reassigning to CRA for follow-up."
                    }
                },
                "description":"Request payload for query assign update v10 API."
            },
            "QueryDTOv9":{
                "title":"QueryDTO Version 9",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query unique identifier. Value must be a 32 to 36 character hexadecimal GUID.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments captured during open, candidate, or close operations.",
                        "example":"Query comment example here.."
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique GUID.",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element unique GUID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element version start timestamp in ISO-8601 format.",
                        "format":"date-time",
                        "example":"2026-01-15T10:05:30Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique GUID.",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating form. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site unique GUID.",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique GUID.",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating event. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role identifiers assigned to the query.",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy identifier sourced from Data Capture. Negative values are rejected.",
                        "format":"int64",
                        "example":123456789
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat form sequence number. Negative values are rejected.",
                        "format":"int64",
                        "example":1
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object version. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item unique GUID.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"Property name associated with the query when Data Capture properties are involved. Example: visit.",
                        "example":"visit"
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Property type classification. Allowed values: visit (query anchored to visit details), visitStartDate (query anchored to the visit start date).",
                        "example":"visit",
                        "enum":[
                            "visit",
                            "visitStartDate"
                        ]
                    },
                    "userDisplayName":{
                        "type":"string",
                        "description":"First and last name of the query creator or last modifier.",
                        "example":"John Doe"
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [\\\"6AF54DB79B764662B685D68C52AB0B84\\\"],\\n  \\\"discrepancyId\\\": 123456789,\\n  \\\"propertyName\\\": \\\"visit\\\",\\n  \\\"propertyType\\\": \\\"visitStartDate\\\",\\n  \\\"userDisplayName\\\": \\\"Jane QueryAuthor\\\"\\n}"
            },
            "QueryCountResults":{
                "title":"QueryCountResults v2.0",
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Operation status. Allowed values: success, failed.",
                        "example":"success"
                    },
                    "version":{
                        "type":"string",
                        "description":"Schema version of the response wrapper.",
                        "example":"2"
                    },
                    "errorData":{
                        "type":"string",
                        "description":"Optional error payload when status is failed.",
                        "example":"null"
                    },
                    "result":{
                        "type":"array",
                        "description":"Query count detail rows",
                        "items":{
                            "$ref":"#/components/schemas/QueryCountResults Entry"
                        }
                    }
                },
                "description":"Query Count result payload",
                "example":{
                    "status":"success",
                    "version":"2",
                    "errorData":null,
                    "result":[
                        {
                            "subjectName":"TestSite1184",
                            "subjectId":"762744769B0E4E40B6A74691179BC578",
                            "eventId":"3B95322B15144E4397B30305EB33E871",
                            "eventInstanceNumber":null,
                            "candidate":0,
                            "opened":1,
                            "answered":0,
                            "deleted":0,
                            "closed":0,
                            "totalQueries":1
                        }
                    ]
                }
            },
            "QueryCountResults Entry":{
                "title":"QueryCountResults Entry v2.0",
                "type":"object",
                "properties":{
                    "subjectName":{
                        "type":"string",
                        "description":"Subject display name",
                        "example":"TestSite1184"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique identifier",
                        "example":"762744769B0E4E40B6A74691179BC578"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique identifier",
                        "example":"3B95322B15144E4397B30305EB33E871"
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "description":"Event instance (repeat) number",
                        "format":"int32",
                        "example":1
                    },
                    "answered":{
                        "type":"integer",
                        "description":"Answered query count for the subject/event combination",
                        "format":"int32",
                        "example":0
                    },
                    "candidate":{
                        "type":"integer",
                        "description":"Candidate query count for the subject/event combination",
                        "format":"int32",
                        "example":0
                    },
                    "opened":{
                        "type":"integer",
                        "description":"Open query count for the subject/event combination",
                        "format":"int32",
                        "example":1
                    },
                    "deleted":{
                        "type":"integer",
                        "description":"Deleted query count for the subject/event combination",
                        "format":"int32",
                        "example":0
                    },
                    "closed":{
                        "type":"integer",
                        "description":"Closed query count for the subject/event combination",
                        "format":"int32",
                        "example":0
                    },
                    "totalQueries":{
                        "type":"integer",
                        "description":"Total queries for the provided state filters",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Query Count result payload entry",
                "example":{
                    "subjectName":"TestSite1184",
                    "subjectId":"762744769B0E4E40B6A74691179BC578",
                    "eventId":"3B95322B15144E4397B30305EB33E871",
                    "eventInstanceNumber":null,
                    "candidate":0,
                    "opened":1,
                    "answered":0,
                    "deleted":0,
                    "closed":0,
                    "totalQueries":1
                }
            },
            "OpenQueryCountPostDTO":{
                "title":"OpenQueryCountPostDTO v2.0",
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject identifiers to evaluate.",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject identifiers to evaluate.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Open query count request payload."
            },
            "QueryCountPostDTO":{
                "title":"QueryCountPostDTO v2.0",
                "required":[
                    "states",
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject identifiers to evaluate.",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject identifiers to evaluate.",
                            "format":"uuid"
                        }
                    },
                    "states":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of query states to include in the count. Allowed values: Candidate, Opened, Answered, Deleted, Closed.",
                        "example":[
                            "Opened",
                            "Answered",
                            "Candidate"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of query states to include in the count. Allowed values: Candidate, Opened, Answered, Deleted, Closed.",
                            "example":"[\"Opened\",\"Answered\",\"Candidate\"]"
                        }
                    }
                },
                "description":"Query count request payload."
            },
            "QueryDTOv2":{
                "title":"QueryDTO Version 2",
                "required":[
                    "dataElementId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query unique GUID generated by the service.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments.",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state. Candidate = query created but not yet opened; Opened = action required; Answered = awaiting review; Deleted = removed from workflow; Closed = finalised.",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Deleted",
                            "Closed"
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique GUID.",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element unique GUID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element version start timestamp.",
                        "format":"date-time",
                        "example":"2026-01-15T10:05:30Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique GUID.",
                        "format":"uuid"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site unique GUID.",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique GUID.",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "minimum":0,
                        "exclusiveMinimum":false,
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating event. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0\\n}"
            },
            "QueryDTOv3":{
                "title":"QueryDTO Version 3",
                "required":[
                    "dataElementId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0\\n}"
            },
            "QueryTabDTOV3":{
                "title":"QueryTabDTO Version 3",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp when this version of the query became active.",
                        "format":"date-time",
                        "example":"2024-04-02T17:33:03.958Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Timestamp when this version of the query ended. Null indicates the version is current.",
                        "format":"date-time",
                        "example":"2024-04-02T17:35:13.333Z"
                    },
                    "ruleId":{
                        "type":"string",
                        "description":"Rule unique GUID.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments supplied by the responder.",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state. Candidate = query created but not yet opened; Opened = action required; Answered = awaiting review; Deleted = removed from workflow; Closed = finalised.",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Deleted",
                            "Closed"
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique GUID.",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element unique GUID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element version start date-time.",
                        "format":"date-time",
                        "example":"2024-04-02T17:33:03.958Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique GUID.",
                        "format":"uuid"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site unique GUID.",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique GUID.",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object version number. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item unique GUID.",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type applied to the record. CREATED = new record inserted; UPDATED = record changed; REMOVED = record deleted or inactivated.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "UPDATED",
                            "REMOVED"
                        ]
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason provided for the last operation.",
                        "example":"Study roles assignment change"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number used when the record was stored. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":1
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Study subject number.",
                        "example":"site12"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comment about the operation.",
                        "example":"site12"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User unique GUID.",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch unique GUID.",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"Study role unique GUID.",
                        "format":"uuid"
                    },
                    "creatorStudyRoleId":{
                        "type":"string",
                        "description":"Creator study role unique GUID.",
                        "format":"uuid"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat form number. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Unique discrepancy identifier. Negative values are rejected.",
                        "format":"int64",
                        "example":123456789
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Property Type of Query",
                        "example":"visit"
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"Property Name of Query",
                        "example":"visitStartDate"
                    },
                    "userName":{
                        "type":"string",
                        "description":"User Name for the Query operation",
                        "example":"system"
                    }
                },
                "description":"Table of query information"
            },
            "QueryDTOv4":{
                "title":"QueryDTO Version 4",
                "required":[
                    "dataElementId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID generated by the service.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "type":"string",
                        "description":"Query comments provided when updating the query.",
                        "example":"Reopening query after data correction."
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state. Candidate = query created but not yet opened; Opened = action required; Answered = awaiting review; Closed = resolved; Deleted = removed from workflow.",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Closed",
                            "Deleted"
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element version start timestamp in ISO-8601 format.",
                        "format":"date-time",
                        "example":"2026-01-15T10:05:30Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating event. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating form. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":0
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the object version number used for optimistic locking. Negative values are rejected.",
                        "format":"bigdecimal",
                        "example":1
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 1\\n}"
            },
            "QueryDTOv5":{
                "title":"QueryDTO Version 5",
                "required":[
                    "dataElementId",
                    "eventId",
                    "formId",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query unique identifier generated by the service.",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "type":"string",
                        "description":"Query comment captured when creating or updating the query.",
                        "example":"Query reopened after visit start date correction."
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state. Candidate = query created but not yet opened; Opened = active action required; Answered = site responded; Closed = sponsor closed; Deleted = removed from workflow.",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Closed",
                            "Deleted"
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique identifier associated with the query.",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element unique identifier.",
                        "format":"uuid"
                    },
                    "dataElementVersionStart":{
                        "type":"string",
                        "description":"Timestamp when the referenced data element version started (ISO-8601).",
                        "format":"date-time",
                        "example":"2026-01-15T10:05:30Z"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique identifier.",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Repeat sequence number (0, 1, 2, ...) of the form. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site unique identifier that owns the subject.",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event unique identifier for the visit.",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Repeat sequence number (0, 1, 2, ...) of the visit. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Optimistic locking number (0, 1, 2, ...) maintained by the service. Negative values are rejected.",
                        "format":"int64",
                        "example":2
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item unique identifier referenced by the query.",
                        "format":"uuid"
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Property classification associated with the query. visit = visit-level property metadata returned by validation rules.",
                        "example":"visit",
                        "enum":[
                            "visit"
                        ]
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"Specific property name derived from the propertyType. visitStartDate = captured visit start date discrepancy.",
                        "example":"visitStartDate"
                    }
                },
                "description":"Information for creating or updating a manual query in v5.0. Compared to v4.0, this schema preserves propertyType/propertyName metadata produced by validation rules.",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 2,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"propertyType\\\": \\\"visit\\\",\\n  \\\"propertyName\\\": \\\"visitStartDate\\\"\\n}"
            },
            "CommentDetailsDTO":{
                "type":"object",
                "properties":{
                    "state":{
                        "type":"string",
                        "description":"Query state for the comment entry. Candidate = query created but not yet opened; Opened = action required; Answered = awaiting review; Closed = resolved; Deleted = removed from workflow.",
                        "example":"Opened",
                        "enum":[
                            "Candidate",
                            "Opened",
                            "Answered",
                            "Closed",
                            "Deleted"
                        ]
                    },
                    "queryComment":{
                        "type":"string",
                        "description":"Comment text recorded for the query state transition.",
                        "example":"Query remains open pending site response."
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp when the comment became effective.",
                        "format":"date-time",
                        "example":"2024-03-14T09:15:30Z"
                    },
                    "value":{
                        "type":"string",
                        "description":"Optional value associated with the comment.",
                        "example":"Visit data validated."
                    },
                    "userInfo":{
                        "$ref":"#/components/schemas/DisplayUserDto"
                    }
                },
                "description":"A list of comments associated with the query"
            },
            "DisplayUserDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the user.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"User's first name.",
                        "example":"Alice"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name.",
                        "example":"Brown"
                    },
                    "userName":{
                        "type":"string",
                        "description":"User's login name.",
                        "example":"alicebrown"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"User's email address.",
                        "example":"alice.brown@email.com"
                    }
                },
                "description":"User details including name, username, and email address."
            },
            "QueryDetailsDTOV6Resp":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectName":{
                        "type":"string"
                    },
                    "visitName":{
                        "type":"string"
                    },
                    "formName":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "ruleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemName":{
                        "type":"string"
                    },
                    "comments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CommentDetailsDTO"
                        }
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "formInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "studyRoles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "queryModAllowedByUser":{
                        "type":"boolean"
                    },
                    "userCanCloseQuery":{
                        "type":"boolean"
                    }
                }
            },
            "QueryDTOv6":{
                "title":"QueryDTO Version 6",
                "required":[
                    "eventId",
                    "formId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study roles ids",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study roles ids",
                            "format":"uuid"
                        }
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object Version Number",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Unique GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 3,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [\\\"6AF54DB79B764662B685D68C52AB0B84\\\"]\\n}"
            },
            "QueryDTOv7":{
                "title":"QueryDTO Version 7",
                "required":[
                    "eventId",
                    "formId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study roles ids",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study roles ids",
                            "format":"uuid"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy Id",
                        "format":"int64",
                        "example":123456789
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object Version Number",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Unique GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 4,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [\\\"6AF54DB79B764662B685D68C52AB0B84\\\"],\\n  \\\"discrepancyId\\\": 123456789\\n}"
            },
            "QueryDTOv6Resp":{
                "required":[
                    "eventId",
                    "formId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object Version Number",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Unique GUID",
                        "format":"uuid"
                    },
                    "creatorStudyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "isQueryCreator":{
                        "type":"boolean"
                    }
                },
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 3,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [{\\\"studyRoleId\\\": \\\"6AF54DB79B764662B685D68C52AB0B84\\\", \\\"studyRoleName\\\": \\\"CRA\\\"}],\\n  \\\"creatorStudyRoleId\\\": \\\"9F8435D105BD49CC9A31DF94A2AF1F01\\\",\\n  \\\"isQueryCreator\\\": true\\n}"
            },
            "QueryDetailsDTOv7Resp":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectName":{
                        "type":"string"
                    },
                    "visitName":{
                        "type":"string"
                    },
                    "formName":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "ruleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemName":{
                        "type":"string"
                    },
                    "comments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CommentDetailsDTO"
                        }
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "formInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "studyRoles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "queryModAllowedByUser":{
                        "type":"boolean"
                    },
                    "userCanCloseQuery":{
                        "type":"boolean"
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy Id",
                        "format":"int64",
                        "example":123456789
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "userCanAnswerQuery":{
                        "type":"boolean"
                    }
                }
            },
            "QueryDTOv7Resp":{
                "required":[
                    "eventId",
                    "formId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy Id",
                        "format":"int64",
                        "example":123456789
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object Version Number",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Unique GUID",
                        "format":"uuid"
                    },
                    "creatorStudyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "isQueryCreator":{
                        "type":"boolean"
                    }
                },
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 4,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [{\\\"studyRoleId\\\": \\\"6AF54DB79B764662B685D68C52AB0B84\\\", \\\"studyRoleName\\\": \\\"CRA\\\"}],\\n  \\\"discrepancyId\\\": 123456789\\n}"
            },
            "QueryDetailsDTOv8Resp":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectName":{
                        "type":"string"
                    },
                    "visitName":{
                        "type":"string"
                    },
                    "formName":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "ruleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemName":{
                        "type":"string"
                    },
                    "comments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CommentDetailsDTO"
                        }
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "formInstanceNumber":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "studyRoles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "queryModAllowedByUser":{
                        "type":"boolean"
                    },
                    "userCanCloseQuery":{
                        "type":"boolean"
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy Id",
                        "format":"int64",
                        "example":123456789
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "userCanAnswerQuery":{
                        "type":"boolean"
                    },
                    "repeatFormNumber":{
                        "type":"integer"
                    }
                }
            },
            "QueryDTOv8":{
                "title":"QueryDTO Version 8",
                "required":[
                    "eventId",
                    "formId",
                    "queryComment",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query Unique GUID",
                        "format":"uuid"
                    },
                    "queryComment":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Query comments",
                        "example":"Comment"
                    },
                    "state":{
                        "type":"string",
                        "description":"Query state",
                        "example":"Opened"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject Unique GUID",
                        "format":"uuid"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Data element Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Data element Version Start",
                        "format":"date-time"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating form",
                        "example":0
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site Unique GUID",
                        "format":"uuid"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Event Unique GUID",
                        "format":"uuid"
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of repeating event",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study roles ids",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study roles ids",
                            "format":"uuid"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy Id",
                        "format":"int64",
                        "example":123456789
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat Form Number"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object Version Number",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Unique GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information for creating/editing query",
                "example":"{\\n  \\\"id\\\": \\\"AE33A9096BF548BBB29A96E399E9FBBB\\\",\\n  \\\"queryComment\\\": \\\"Visit date clarification required.\\\",\\n  \\\"state\\\": \\\"Opened\\\",\\n  \\\"subjectId\\\": \\\"762744769B0E4E40B6A74691179BC578\\\",\\n  \\\"dataElementId\\\": \\\"583A45DD0A1C46F88D7842D76CAF9A59\\\",\\n  \\\"dataElementVersionStart\\\": \\\"2026-01-15T10:05:30Z\\\",\\n  \\\"formId\\\": \\\"680E0FB01F1B4CCB990C333563FAEE80\\\",\\n  \\\"siteId\\\": \\\"CB9BBB0767114F599FE75616223D6665\\\",\\n  \\\"eventId\\\": \\\"3B95322B15144E4397B30305EB33E871\\\",\\n  \\\"eventInstanceNumber\\\": 0,\\n  \\\"formInstanceNumber\\\": 0,\\n  \\\"objectVersionNumber\\\": 5,\\n  \\\"itemId\\\": \\\"42738D18833E45C29D9CDEABBB2247FE\\\",\\n  \\\"studyRoles\\\": [\\\"6AF54DB79B764662B685D68C52AB0B84\\\"],\\n  \\\"discrepancyId\\\": 123456789,\\n  \\\"repeatFormNumber\\\": 1\\n}"
            },
            "QueryDetailsDTOv9Resp":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Query unique identifier. Value must be a 32 to 36 character hexadecimal GUID.",
                        "format":"uuid"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Subject unique GUID.",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form unique GUID.",
                        "format":"uuid"
                    },
                    "formInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating form. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "eventInstanceNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of the repeating event. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"Study role assignments returned after update.",
                        "items":{
                            "$ref":"#/components/schemas/QueryStudyRoleDTOv6"
                        }
                    },
                    "discrepancyId":{
                        "type":"integer",
                        "description":"Discrepancy identifier sourced from Data Capture. Negative values are rejected.",
                        "format":"int64",
                        "example":123456789
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Repeat form sequence number. Negative values are rejected.",
                        "format":"int64",
                        "example":1
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Sequence number (0, 1, 2, ...) of object version. Negative values are rejected.",
                        "format":"int64",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item unique GUID.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"The name of the property associated with the query",
                        "example":"visitStartDatev"
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"The type of property associated with the query",
                        "example":"visit"
                    },
                    "ruleId":{
                        "type":"string",
                        "description":"The ID of the rule associated with the query",
                        "format":"uuid"
                    },
                    "isQueryCreator":{
                        "type":"boolean",
                        "description":"Indicates if the authenticated user created the query (true or false).",
                        "example":true
                    },
                    "subjectName":{
                        "type":"string",
                        "description":"The name of the subject associated with the query",
                        "example":"John Doe"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"The name of the visit associated with the query",
                        "example":"Visit 1"
                    },
                    "formName":{
                        "type":"string",
                        "description":"The name of the form associated with the query",
                        "example":"Form 1"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"The ID of the visit associated with the query",
                        "format":"uuid",
                        "example":"123e4567-e89b-12d3-a456-426655440000"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"The version of the study associated with the query",
                        "example":"1.0"
                    },
                    "itemName":{
                        "type":"string",
                        "description":"The name of the item associated with the query",
                        "example":"Item 1"
                    },
                    "comments":{
                        "type":"array",
                        "description":"A list of comments associated with the query",
                        "items":{
                            "$ref":"#/components/schemas/CommentDetailsDTO"
                        }
                    },
                    "queryModAllowedByUser":{
                        "type":"boolean",
                        "description":"Indicates whether the user is allowed to modify the query",
                        "example":true
                    },
                    "userCanCloseQuery":{
                        "type":"boolean",
                        "description":"Indicates whether the user can close the query",
                        "example":true
                    },
                    "userCanAnswerQuery":{
                        "type":"boolean",
                        "description":"Indicates whether the user can answer the query",
                        "example":true
                    }
                }
            },
            "RTIntDetailsDto":{
                "type":"object",
                "properties":{
                    "jobId":{
                        "type":"string",
                        "description":"Identifier of the job responsible for processing the data sent to Digital Gateway through the web service request"
                    },
                    "inputId":{
                        "type":"string",
                        "description":"Identifier for the record in the database corresponding to the data being sent, this will be used for tracking purposes only"
                    },
                    "realTimeId":{
                        "type":"string",
                        "description":"Configuration identifier of the integration in Digital Gateway responsible for processing the data sent through the web service request",
                        "example":"IbIvrsIntegration"
                    },
                    "message":{
                        "type":"string"
                    }
                }
            },
            "DGErrorResponseData":{
                "type":"object",
                "properties":{
                    "errorCode":{
                        "type":"string"
                    },
                    "errorMessage":{
                        "type":"string"
                    },
                    "details":{
                        "type":"object"
                    },
                    "remediation":{
                        "type":"string"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "siteId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string"
                    },
                    "correlationId":{
                        "type":"string"
                    },
                    "correlationName":{
                        "type":"string"
                    }
                }
            },
            "IbIntInputDataDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "inputData":{
                        "type":"string"
                    },
                    "timeQualifier":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyName":{
                        "type":"string"
                    },
                    "integrationType":{
                        "type":"string"
                    },
                    "classifier":{
                        "type":"string"
                    },
                    "inputQualifier":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "ibIntegrationType":{
                        "type":"string",
                        "description":"Integration types supported by Digital Gateway Builder for real-time integration",
                        "example":"IbIvrsIntegration",
                        "enum":[
                            "IbIvrsIntegration"
                        ]
                    },
                    "vendorName":{
                        "type":"string",
                        "description":"Name of the Vendor calling this webservice. This value must match with the vendor name used for the integration configured in Digital Gateway"
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Mode of the study for which the integration is configured in Digital Gateway"
                    },
                    "secretKey":{
                        "type":"string",
                        "description":"Name of the secret key configured in the secret store"
                    },
                    "userName":{
                        "type":"string",
                        "description":"Username corresponding to the secret key"
                    },
                    "namespace":{
                        "type":"string"
                    }
                }
            },
            "AuthResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Indicates request success (\"success\") or failure (\"failure\").",
                        "format":"none",
                        "example":"success"
                    },
                    "result":{
                        "type":"object",
                        "description":"Result data of the API response; actual type depends on the API",
                        "example":null
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version of the response schema.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Generic API response wrapper containing result, error data, response version and status."
            },
            "ModeRightsDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"Name of the mode.",
                        "example":"Test"
                    },
                    "rights":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"Set of authorization rights for the user in this mode.",
                        "example":[
                            "CodeListGet",
                            "StudyDesignReportPost"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Set of authorization rights for the user in this mode.",
                            "example":"[\"CodeListGet\",\"StudyDesignReportPost\"]"
                        }
                    }
                },
                "description":"Represents a set of rights for a user in a specific study mode.",
                "example":{
                    "mode":"test",
                    "rights":[
                        "UpdateRecipe",
                        "CodeListGet"
                    ]
                }
            },
            "StudyModeRightsDto":{
                "type":"object",
                "properties":{
                    "studyid":{
                        "type":"string",
                        "description":"Unique study identifier",
                        "example":"A1B2C3D4E5F67890123456789ABCDEF0"
                    },
                    "modeRights":{
                        "type":"object",
                        "properties":{
                            "mode":{
                                "type":"string",
                                "description":"Name of the mode.",
                                "example":"Test"
                            },
                            "rights":{
                                "uniqueItems":true,
                                "type":"array",
                                "description":"Set of authorization rights for the user in this mode.",
                                "example":[
                                    "CodeListGet",
                                    "StudyDesignReportPost"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"Set of authorization rights for the user in this mode.",
                                    "example":"[\"CodeListGet\",\"StudyDesignReportPost\"]"
                                }
                            }
                        },
                        "description":"Represents a set of rights for a user in a specific study mode.",
                        "example":{
                            "mode":"test",
                            "rights":[
                                "UpdateRecipe",
                                "CodeListGet"
                            ]
                        }
                    }
                },
                "description":"Represents rights available for a user per study and per mode. Contains the study ID and a list of rights for each available mode for the study."
            },
            "DepotsListDto":{
                "type":"object",
                "properties":{
                    "allDepots":{
                        "type":"boolean",
                        "description":"Indicates if the user has access to all depots in the study.",
                        "example":true
                    },
                    "associatedDepots":{
                        "type":"array",
                        "description":"A list of UUIDs identifying depots assigned to the user.",
                        "example":[
                            "6E697AEB85A24A22B38C70495A0A5C48",
                            "6E697AEB85A24A22B38C70495A0A5C49"
                        ],
                        "items":{
                            "type":"string",
                            "description":"A list of UUIDs identifying depots assigned to the user.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"DTO containing the set of depot UUIDs assigned to the user in a study/mode context."
            },
            "SitesListDto":{
                "title":"SitesListDto",
                "type":"object",
                "properties":{
                    "allSites":{
                        "type":"boolean",
                        "description":"Indicates if the user has access to all sites in the study.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"array",
                        "description":"A list of UUIDs identifying sites assigned to the user.",
                        "example":[
                            "6E697AEB85A24A22B38C70495A0A5C48",
                            "4E9523BF795D4FE4AB9BF1EF8A340FAB"
                        ],
                        "items":{
                            "type":"string",
                            "description":"A list of UUIDs identifying sites assigned to the user.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"DTO containing the set of site UUIDs assigned to the user in a study/mode context."
            },
            "StudyAndModesDto":{
                "title":"StudyAndModesDto v1.0",
                "type":"object",
                "properties":{
                    "studyid":{
                        "type":"string",
                        "description":"Unique identifier for the study",
                        "format":"uuid"
                    },
                    "modes":{
                        "type":"array",
                        "description":"List of user assignment modes in the study",
                        "example":[
                            "active",
                            "test"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user assignment modes in the study",
                            "example":"[\"active\",\"test\"]"
                        }
                    }
                },
                "description":"Details of a study including the unique UUID and the assignment modes for the user."
            },
            "UserInfoDto":{
                "type":"object",
                "properties":{
                    "firstName":{
                        "type":"string",
                        "description":"First name of the user.",
                        "example":"Alice"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"Last name of the user.",
                        "example":"Smith"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"Email address of the user.",
                        "format":"email",
                        "example":"alice.smith@example.com"
                    },
                    "globalRights":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"Set of global rights for the user.",
                        "example":[
                            "StudyStatePost",
                            "OrsSiteShipmentPost"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Set of global rights for the user.",
                            "example":"[\"StudyStatePost\",\"OrsSiteShipmentPost\"]"
                        }
                    }
                },
                "description":"User information (v1): identity and rights."
            },
            "UserAttributesDto":{
                "type":"object",
                "properties":{
                    "key":{
                        "type":"string",
                        "description":"The attribute key name",
                        "example":"Locale"
                    },
                    "value":{
                        "type":"string",
                        "description":"The value of the attribute",
                        "example":"en-US"
                    }
                },
                "description":"Key-value pair for user attribute",
                "example":{
                    "key":"Locale",
                    "value":"en-US"
                }
            },
            "UserInfoDtoV3":{
                "type":"object",
                "properties":{
                    "firstName":{
                        "type":"string",
                        "description":"User's first name",
                        "example":"Eve"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name",
                        "example":"Johnson"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"User's email address",
                        "format":"email",
                        "example":"eve.johnson@example.com"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User identifier.",
                        "format":"uuid"
                    },
                    "globalRights":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"Set of user's global rights",
                        "example":[
                            "Lab Get",
                            "Rule Designer"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Set of user's global rights",
                            "example":"[\"Lab Get\",\"Rule Designer\"]"
                        }
                    },
                    "userAttributes":{
                        "type":"object",
                        "properties":{
                            "key":{
                                "type":"string",
                                "description":"The attribute key name",
                                "example":"Locale"
                            },
                            "value":{
                                "type":"string",
                                "description":"The value of the attribute",
                                "example":"en-US"
                            }
                        },
                        "description":"Key-value pair for user attribute",
                        "example":{
                            "key":"Locale",
                            "value":"en-US"
                        }
                    }
                },
                "description":"User information (v3): All user info including attributes and global rights.",
                "example":{
                    "firstName":"Eve",
                    "lastName":"Johnson",
                    "emailAddress":"eve.johnson@example.com",
                    "userId":"EC026DEDC88723C3E053EB944C645812",
                    "globalRights":[
                        "UpdateRecipe",
                        "OrsSiteShipmentPost"
                    ],
                    "userAttributes":[
                        {
                            "key":"Locale",
                            "value":"en-US"
                        },
                        {
                            "key":"TimeZone",
                            "value":"Europe/Paris"
                        }
                    ]
                }
            },
            "DataClassificationStudyLevelDto":{
                "required":[
                    "dataClassificationId",
                    "dataClassificationName",
                    "studyRoleId"
                ],
                "type":"object",
                "properties":{
                    "dataClassificationId":{
                        "type":"string",
                        "description":"Unique identifier for the Data Classification.",
                        "example":"C94C507E21544840A8C17B1031305D7E"
                    },
                    "dataClassificationName":{
                        "type":"string",
                        "description":"Name of the Data Classification.",
                        "example":"Adjudication Data"
                    },
                    "dataClassificationNameLabel":{
                        "type":"string",
                        "description":"Localized label for the Data Classification's name.",
                        "example":"Adjudication Data"
                    },
                    "dataClassificationDesc":{
                        "type":"string",
                        "description":"Description of the Data Classification.",
                        "example":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints"
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"List of classification levels (e.g. SITE, DEPOT, STUDY).",
                        "example":"[\"SITE\",\"DEPOT\"]"
                    },
                    "dataClassificationDescLabel":{
                        "type":"string",
                        "description":"Localized label for the Data Classification's description.",
                        "example":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"Unique identifier for the associated study role.",
                        "example":"7F4E9071608843F4A9F67B297672B09E"
                    }
                },
                "description":"Extends DataClassificationDto to include information about the associated study role for data classification at the study level."
            },
            "DataClassificationDto":{
                "required":[
                    "dataClassificationId",
                    "dataClassificationName"
                ],
                "type":"object",
                "properties":{
                    "dataClassificationId":{
                        "type":"string",
                        "description":"DataClassification ID",
                        "format":"uuid"
                    },
                    "dataClassificationName":{
                        "type":"string",
                        "description":"DataClassification name",
                        "format":"String",
                        "example":"Adjudication Data"
                    },
                    "dataClassificationNameLabel":{
                        "type":"string",
                        "description":"DataClassification translated name",
                        "format":"String",
                        "example":"Adjudication Data"
                    },
                    "dataClassificationDesc":{
                        "type":"string",
                        "description":"DataClassification description",
                        "format":"String",
                        "example":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints"
                    },
                    "dataClassificationDescLabel":{
                        "type":"string",
                        "description":"DataClassification translated description",
                        "format":"String",
                        "example":"Data findings collected by an adjudicator from adjudication events or safety and efficacy clinical endpoints"
                    },
                    "dataClassificationLevel":{
                        "title":"dataClassificationLevel",
                        "type":"string",
                        "description":"DataClassification levels"
                    }
                }
            },
            "DataClassificationStudyRolesDto":{
                "required":[
                    "dataClassificationId",
                    "dataClassificationLevel",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleStatus"
                ],
                "type":"object",
                "properties":{
                    "studyRoleId":{
                        "type":"string",
                        "description":"Unique identifier for the study role.",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"Rule Designer"
                    },
                    "studyRoleStatus":{
                        "type":"string",
                        "description":"Status of the study role (e.g., ACTIVE, INACTIVE).",
                        "example":"ACTIVE"
                    },
                    "dataClassificationId":{
                        "type":"string",
                        "description":"Unique identifier of the data classification object associated with this study role.",
                        "format":"uuid"
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Classification levels applied for this role.",
                        "example":"[\"SITE\",\"DEPOT\"]"
                    }
                },
                "description":"Represents a mapping between a study role and its associated data classification including the assigned classification level(s)."
            },
            "DataClassificationIdsDto":{
                "required":[
                    "dataClassifications"
                ],
                "type":"object",
                "properties":{
                    "dataClassifications":{
                        "type":"array",
                        "description":"list of data classifications Unique GUIDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"list of data classifications Unique GUIDs",
                            "format":"uuid"
                        }
                    }
                },
                "description":"List of DataClassification UUIDs as part of a request payload.",
                "example":{
                    "dataClassifications":[
                        "938D23FA6B7241CCA41BD627E5DB60DA",
                        "699EF3745FC545589F186D2198F3C65E"
                    ]
                }
            },
            "DataClassificationIdLevelDto":{
                "required":[
                    "dataClassificationId",
                    "dataClassificationLevel"
                ],
                "type":"object",
                "properties":{
                    "dataClassificationId":{
                        "type":"string",
                        "description":"Unique identifier for the Data Classification.",
                        "example":"899E66BCE1D8471F96F58A396C416E0D"
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"List of classification levels assigned to the data classification.",
                        "example":"[\"SITE\",\"DEPOT\"]"
                    }
                },
                "description":"DTO for Data Classification with specific levels per classification."
            },
            "DisplayRightPropertiesDto":{
                "required":[
                    "displayName"
                ],
                "type":"object",
                "properties":{
                    "displayName":{
                        "type":"string",
                        "description":"The display name of the right",
                        "example":"Can view data"
                    }
                },
                "description":"DTO describing the properties of a user right assigned to a role.",
                "example":{
                    "displayName":"Can view data"
                }
            },
            "DisplayRoleRightsDto":{
                "required":[
                    "roleCategory",
                    "roleId",
                    "roleName"
                ],
                "type":"object",
                "properties":{
                    "roleId":{
                        "type":"string",
                        "description":"Unique identifier for the role",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"The display name of the role",
                        "example":"Data Reviewer"
                    },
                    "roleCategory":{
                        "type":"string",
                        "description":"Category of the role",
                        "example":"User"
                    },
                    "rights":{
                        "required":[
                            "displayName"
                        ],
                        "type":"object",
                        "properties":{
                            "displayName":{
                                "type":"string",
                                "description":"The display name of the right",
                                "example":"Can view data"
                            }
                        },
                        "description":"DTO describing the properties of a user right assigned to a role.",
                        "example":{
                            "displayName":"Can view data"
                        }
                    }
                },
                "description":"DTO representing a role and all rights assigned to that role.",
                "example":{
                    "roleId":"2BC29B36F5D64B1B95F4BDBBCEA420BE",
                    "roleName":"Data Reviewer",
                    "roleCategory":"User",
                    "rights":[
                        {
                            "rightId":"3DE7AA90C7244F13AAA8002164D88E79",
                            "rightName":"View Data",
                            "rightType":"READ",
                            "granted":true
                        }
                    ]
                }
            },
            "DisplayCategoryDto":{
                "required":[
                    "category"
                ],
                "type":"object",
                "properties":{
                    "category":{
                        "type":"string",
                        "description":"The name of the category grouping rights",
                        "example":"Data Entry"
                    },
                    "rights":{
                        "required":[
                            "displayName",
                            "selected"
                        ],
                        "type":"object",
                        "properties":{
                            "displayName":{
                                "type":"string",
                                "description":"Display name of the right",
                                "example":"Edit Forms"
                            },
                            "selected":{
                                "type":"boolean",
                                "description":"Indicates if the right is selected (assigned) for this user/role",
                                "example":true
                            }
                        },
                        "description":"DTO representing a right (permission) and whether it is selected for a user or role.",
                        "example":{
                            "displayName":"Edit Forms",
                            "selected":true
                        }
                    }
                },
                "description":"DTO representing a category grouping of rights for a role.",
                "example":{
                    "category":"Data Entry",
                    "rights":[
                        {
                            "rightId":"A37EA9D55B0B43A1A36657A4094662A3",
                            "rightName":"Edit Forms",
                            "rightType":"WRITE",
                            "granted":true
                        }
                    ]
                }
            },
            "DisplayRightDto":{
                "required":[
                    "displayName",
                    "selected"
                ],
                "type":"object",
                "properties":{
                    "displayName":{
                        "type":"string",
                        "description":"Display name of the right",
                        "example":"Edit Forms"
                    },
                    "selected":{
                        "type":"boolean",
                        "description":"Indicates if the right is selected (assigned) for this user/role",
                        "example":true
                    }
                },
                "description":"DTO representing a right (permission) and whether it is selected for a user or role.",
                "example":{
                    "displayName":"Edit Forms",
                    "selected":true
                }
            },
            "SDFShortInfo":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the site, depot, or facility (UUID, 32-character uppercase hex as string).",
                        "example":"9FF4B6B23C864E1F9E9007A8816DBB27"
                    },
                    "name":{
                        "type":"string",
                        "description":"Human-readable label for the site, depot, or facility entry.",
                        "example":"Depot Alpha"
                    }
                },
                "description":"Short information for a Site/Depot/Facility???used for listing and selection responses. Includes unique id and logical name."
            },
            "DisplayStudyUserRolesDto":{
                "type":"object",
                "properties":{
                    "roleType":{
                        "type":"string",
                        "description":"Type or category of the role for the user within a study (such as INVESTIGATOR, VIEWER, etc).",
                        "example":"design"
                    },
                    "roles":{
                        "type":"array",
                        "description":"List of role objects (actual schema depends on the use context, typically a DTO representing role details).",
                        "example":[
                            {
                                "roleId":"D0F183DC273340CEA7AFDCB93A5B3D4B",
                                "roleName":"Assign Site to a Study"
                            },
                            {
                                "roleId":"9ED1AE19B0B04188B8A70A8D8374F315",
                                "roleName":"View Library Objects"
                            }
                        ],
                        "items":{
                            "type":"object",
                            "description":"List of role objects (actual schema depends on the use context, typically a DTO representing role details).",
                            "example":[
                                {
                                    "roleId":"D0F183DC273340CEA7AFDCB93A5B3D4B",
                                    "roleName":"Assign Site to a Study"
                                },
                                {
                                    "roleId":"9ED1AE19B0B04188B8A70A8D8374F315",
                                    "roleName":"View Library Objects"
                                }
                            ]
                        }
                    }
                },
                "description":"Describes user roles within a study, indicating the type/category and a list of role objects assigned (typically study role details).",
                "example":"{\n  \"roleType\": \"design\",\n  \"roles\": [\n    {\n      \"roleId\": \"D0F183DC273340CEA7AFDCB93A5B3D4B\",\n      \"roleName\": \"Assign Site to a Study\",\n    },\n    {\n      \"roleId\": \"9ED1AE19B0B04188B8A70A8D8374F315\",\n      \"roleName\": \"View Library Objects\",\n    }\n  ]\n}"
            },
            "RespUserBasicInfo":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"User unique identifier (32-character uppercase hexadecimal UUID).",
                        "example":"B19DEFBA82754F709E142FB8A13D2120"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"Given/first name of the user.",
                        "example":"Divya"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"Family/last name of the user.",
                        "example":"Menon"
                    },
                    "userName":{
                        "type":"string",
                        "description":"Unique system username for login or display.",
                        "example":"divya.menon"
                    }
                }
            },
            "DisplayUserListDto":{
                "type":"object",
                "properties":{
                    "usersFound":{
                        "type":"integer",
                        "description":"The total number of users found matching the query.",
                        "format":"int32",
                        "example":2
                    },
                    "firstUserReturned":{
                        "type":"integer",
                        "description":"Index of the first user returned in this page.",
                        "format":"int32",
                        "example":1
                    },
                    "usersReturned":{
                        "type":"integer",
                        "description":"How many users are present in this response.",
                        "format":"int32",
                        "example":2
                    },
                    "users":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier for the user.",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "firstName":{
                                "type":"string",
                                "description":"User's first name.",
                                "example":"Alice"
                            },
                            "lastName":{
                                "type":"string",
                                "description":"User's last name.",
                                "example":"Brown"
                            },
                            "userName":{
                                "type":"string",
                                "description":"User's login name.",
                                "example":"alicebrown"
                            },
                            "emailAddress":{
                                "type":"string",
                                "description":"User's email address.",
                                "example":"alice.brown@email.com"
                            }
                        },
                        "description":"User details including name, username, and email address.",
                        "example":[
                            {
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "firstName":"Alice",
                                "lastName":"Brown",
                                "userName":"alicebrown",
                                "emailAddress":"alice.brown@email.com"
                            }
                        ]
                    }
                },
                "description":"Paginated result set of users for a global role."
            },
            "DisplayStudyRoleDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique study role ID (32-character uppercase hexadecimal UUID).",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                },
                "description":"Single study role assignment in a mode. Includes primary ID, display label, and version validity dates (inherited from DisplayAuthBaseDto).",
                "example":[
                    {
                        "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                        "studyRoleName":"Investigator",
                        "versionStart":"2021-07-01T00:00:00.000Z",
                        "versionEnd":"2024-01-31T23:59:59.000Z"
                    }
                ]
            },
            "DisplayStudyUserStudyRolesDto":{
                "title":"DisplayStudyUserStudyRolesDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "firstName":{
                        "type":"string"
                    },
                    "lastName":{
                        "type":"string"
                    },
                    "userName":{
                        "type":"string"
                    },
                    "email":{
                        "type":"string"
                    },
                    "studyRole":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DisplayStudyRoleDtoV2"
                        }
                    }
                },
                "description":"Authorized User Info"
            },
            "DisplayStudyUserStudyRolesListDto":{
                "type":"object",
                "properties":{
                    "usersFound":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "users":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DisplayStudyUserStudyRolesDto"
                        }
                    }
                }
            },
            "UserIdsReq":{
                "type":"object",
                "properties":{
                    "userIds":{
                        "type":"array",
                        "description":"List of user IDs for which roles or study access is requested.",
                        "format":"uuid",
                        "example":[
                            "11223344AABBCCDD11223344AABBCCDD",
                            "FFEEDDCCBBAA99887766554433221100"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs for which roles or study access is requested.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Payload listing userIds for which study roles are to be fetched.",
                "example":{
                    "userIds":[
                        "11223344AABBCCDD11223344AABBCCDD",
                        "FFEEDDCCBBAA99887766554433221100"
                    ]
                }
            },
            "StudyRolesIdsReq":{
                "required":[
                    "studyRoleIds"
                ],
                "type":"object",
                "properties":{
                    "siteIds":{
                        "type":"array",
                        "description":"Optional list of site IDs to further restrict or filter the results.",
                        "example":[
                            "F3183B73D07340CAB883B592E27C8E56",
                            "ECBDC5486B63400E9F1DE56E470C7U8F"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Optional list of site IDs to further restrict or filter the results.",
                            "example":"[\"F3183B73D07340CAB883B592E27C8E56\",\"ECBDC5486B63400E9F1DE56E470C7U8F\"]"
                        }
                    },
                    "studyRoleIds":{
                        "type":"array",
                        "description":"List of study role IDs for which users are to be fetched.",
                        "format":"uuid",
                        "example":[
                            "F3183B73D07340CAB883B592E27C8E58",
                            "ECBDC5486B63400E9F1DE56E470C7B8F"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role IDs for which users are to be fetched.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Payload listing studyRoleIds and siteIds for which users are to be queried/filtered.",
                "example":{
                    "studyRoleIds":[
                        "F3183B73D07340CAB883B592E27C8E58",
                        "ECBDC5486B63400E9F1DE56E470C7B8F"
                    ],
                    "siteIds":[
                        "SiteA",
                        "SiteB"
                    ]
                }
            },
            "DisplayDepotNamesListDto":{
                "type":"object",
                "properties":{
                    "allDepots":{
                        "type":"boolean",
                        "description":"Flag indicating if the user has access to all depots within the study.",
                        "example":false
                    },
                    "associatedDepots":{
                        "type":"array",
                        "description":"List of associated depot names for the user.",
                        "example":[
                            "DepotA"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of associated depot names for the user.",
                            "example":"[\"DepotA\"]"
                        }
                    }
                },
                "description":"Represents a set of depot access information for the user within a study, including all-depots flag and associated depot names.",
                "example":{
                    "allDepots":false,
                    "associatedDepots":[
                        "DepotA"
                    ]
                }
            },
            "DisplaySiteNamesListDto":{
                "type":"object",
                "properties":{
                    "allSites":{
                        "type":"boolean",
                        "description":"Flag indicating if the user has access to all sites within the study.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"array",
                        "description":"List of associated site names for the user.",
                        "example":[
                            "SiteA",
                            "SiteB"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of associated site names for the user.",
                            "example":"[\"SiteA\",\"SiteB\"]"
                        }
                    }
                },
                "description":"Represents a set of site access information for the user within a study, including all-sites flag and associated site names.",
                "example":{
                    "allSites":false,
                    "associatedSites":[
                        "SiteA",
                        "SiteB"
                    ]
                }
            },
            "DisplayStudyUserDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the user within the study.",
                        "format":"uuid"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"User's first name.",
                        "example":"John"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name.",
                        "example":"Doe"
                    },
                    "email":{
                        "type":"string",
                        "description":"User's email address.",
                        "format":"email",
                        "example":"studyuser@example.com"
                    },
                    "phone":{
                        "type":"string",
                        "description":"User's phone number.",
                        "example":"+1-222-333-4444"
                    },
                    "userName":{
                        "type":"string",
                        "description":"Username used for authentication.",
                        "example":"jdoe"
                    },
                    "lastAccess":{
                        "type":"string",
                        "description":"Timestamp (ISO8601/Z) when user last accessed the study.",
                        "format":"date-time",
                        "example":"2022-06-20T13:51:51Z"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "description":"Effective start date for user's study access (ISO8601/Z).",
                        "format":"date-time",
                        "example":"2021-01-17T01:00:00Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"Effective end date for user's study access (ISO8601/Z).",
                        "format":"date-time",
                        "example":"2025-01-17T01:00:00Z"
                    },
                    "roles":{
                        "type":"array",
                        "description":"Roles assigned to the user within the study.",
                        "example":[
                            "Rule Designer",
                            "Site User"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Roles assigned to the user within the study.",
                            "example":"[\"Rule Designer\",\"Site User\"]"
                        }
                    },
                    "sites":{
                        "$ref":"#/components/schemas/DisplaySiteNamesListDto"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/DisplayDepotNamesListDto"
                    }
                },
                "description":"Version 2: Extends DisplayStudyUserDto to include user email and phone information.",
                "example":{
                    "id":"7DC8B36EA5C04E1F9D11C0E5F3FFF789",
                    "firstName":"Jane",
                    "lastName":"Smith",
                    "userName":"jsmith",
                    "lastAccess":"2023-12-19T12:42:11.000Z",
                    "effectiveStart":"2021-06-11T10:00:00.000Z",
                    "effectiveEnd":"2025-09-21T10:00:00.000Z",
                    "roles":[
                        "Site User",
                        "Rule Designer"
                    ],
                    "sites":{
                        "allSites":false,
                        "associatedSites":[
                            "7DC8B36EA5C04E1F9D11C0E5F3FFF780",
                            "6DC8B36EA5C04E1F9D11C0E5F3FFF789"
                        ]
                    },
                    "depots":{
                        "allDepots":false,
                        "associatedDepots":[
                            "7DC8B36EA5W04E1F9D11C0E5F3FFF789"
                        ]
                    },
                    "email":"studyuser@example.com",
                    "phone":"+1-222-333-4444"
                }
            },
            "DisplayDepotDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Depot unique identifier (32-character uppercase hexadecimal UUID).",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Name/label for the assigned depot.",
                        "example":"VaultDepot1"
                    },
                    "roleName":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                },
                "description":"Represents a single depot facility mapped to the user/mode assignment. UUID is always uppercase.",
                "example":[
                    {
                        "depotId":"7A01356CE45847A0B2B4E5D7DDA18942",
                        "name":"Vault"
                    }
                ]
            },
            "DisplayDepotsListDtoV2":{
                "type":"object",
                "properties":{
                    "allDepots":{
                        "type":"boolean",
                        "description":"Global depot mapping: if true, all depots are assigned to this user/mode.",
                        "example":true
                    },
                    "associatedDepots":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Depot unique identifier (32-character uppercase hexadecimal UUID).",
                                "format":"uuid"
                            },
                            "depotName":{
                                "type":"string",
                                "description":"Name/label for the assigned depot.",
                                "example":"VaultDepot1"
                            },
                            "roleName":{
                                "type":"string",
                                "writeOnly":true
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2020-06-17T10:15:30Z"
                            },
                            "versionEnd":{
                                "type":"string",
                                "description":"End date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2025-06-17T10:15:30Z"
                            }
                        },
                        "description":"Represents a single depot facility mapped to the user/mode assignment. UUID is always uppercase.",
                        "example":[
                            {
                                "depotId":"7A01356CE45847A0B2B4E5D7DDA18942",
                                "name":"Vault"
                            }
                        ]
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                },
                "description":"Collection representing the set of depots mapped for a user/mode. Includes global/all flag and list of detailed depot associations.",
                "example":{
                    "allDepots":true,
                    "names":[
                    ]
                }
            },
            "DisplaySiteDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Site unique identifier (32-character uppercase hexadecimal UUID).",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Human-readable name for the assigned site.",
                        "example":"Site123"
                    },
                    "roleName":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                },
                "description":"Represents a single site mapped to user/mode assignments. UUID is always uppercase.",
                "example":[
                    {
                        "siteId":"2BC6B6F87E774B24A20C769C2B80B7F5",
                        "name":"SiteA"
                    }
                ]
            },
            "DisplaySitesListDtoV2":{
                "type":"object",
                "properties":{
                    "allSites":{
                        "type":"boolean",
                        "description":"Global site mapping: if true, all sites are assigned to this user/mode.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Site unique identifier (32-character uppercase hexadecimal UUID).",
                                "format":"uuid"
                            },
                            "siteName":{
                                "type":"string",
                                "description":"Human-readable name for the assigned site.",
                                "example":"Site123"
                            },
                            "roleName":{
                                "type":"string",
                                "writeOnly":true
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2020-06-17T10:15:30Z"
                            },
                            "versionEnd":{
                                "type":"string",
                                "description":"End date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2025-06-17T10:15:30Z"
                            }
                        },
                        "description":"Represents a single site mapped to user/mode assignments. UUID is always uppercase.",
                        "example":[
                            {
                                "siteId":"2BC6B6F87E774B24A20C769C2B80B7F5",
                                "name":"SiteA"
                            }
                        ]
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                },
                "description":"Collection representing the set of sites mapped for a user/mode. Includes global/all flag and list of detailed site associations.",
                "example":{
                    "allSites":false,
                    "siteIds":[
                        "21F6B67B398A4977A19964FF7B7A68FD"
                    ]
                }
            },
            "DisplayStudyUserDtoV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"User's unique ID.",
                        "format":"uuid"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"First name of the user.",
                        "example":"Priya"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"Last name of the user.",
                        "example":"Sundaram"
                    },
                    "email":{
                        "type":"string",
                        "description":"Primary email address for the user.",
                        "example":"priya.sundaram@examplemail.com"
                    },
                    "phone":{
                        "type":"string",
                        "description":"Phone or contact information for the user.",
                        "example":"+1-404-505-6060"
                    },
                    "userName":{
                        "type":"string",
                        "description":"Login username for the user.",
                        "example":"psundaram"
                    },
                    "lastAccess":{
                        "type":"string",
                        "description":"Date and time of user's last access (ISO 8601).",
                        "format":"date-time",
                        "example":"2023-08-08T12:00:00Z"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "description":"Effective start date for the user's study assignment (ISO 8601).",
                        "format":"date-time",
                        "example":"2021-06-01T00:00:00Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"Effective end date for the user's study assignment (ISO 8601).",
                        "format":"date-time",
                        "example":"2024-05-31T23:59:59Z"
                    },
                    "modes":{
                        "type":"object",
                        "properties":{
                            "modeName":{
                                "type":"string",
                                "description":"Study mode for these assignments (e.g., active, training, etc.)",
                                "example":"active"
                            },
                            "roles":{
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "type":"string",
                                        "description":"Unique role ID",
                                        "example":"F0DEEFCB66A14C2AA0699165055A38C1"
                                    },
                                    "roleName":{
                                        "type":"string",
                                        "description":"Display name for this application or system role.",
                                        "example":"Data Manager"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "description":"Start date for the object's version validity. ISO 8601 format.",
                                        "format":"date-time",
                                        "example":"2020-06-17T10:15:30Z"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "description":"End date for the object's version validity. ISO 8601 format.",
                                        "format":"date-time",
                                        "example":"2025-06-17T10:15:30Z"
                                    },
                                    "studyRoleId":{
                                        "type":"string",
                                        "description":"If present, the mapped studyRoleId for this user/type.",
                                        "example":"23FF2AE2F25746B993190A489ED09727"
                                    }
                                },
                                "description":"User role assignment within a study mode. Contains role reference, display label, and (if set) a mapped studyRoleId. UUIDs are always uppercase.",
                                "example":[
                                    {
                                        "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                        "roleName":"Data Manager"
                                    }
                                ]
                            },
                            "studyRole":{
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "type":"string",
                                        "description":"Unique study role ID (32-character uppercase hexadecimal UUID).",
                                        "format":"uuid"
                                    },
                                    "roleName":{
                                        "type":"string"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "description":"Start date for the object's version validity. ISO 8601 format.",
                                        "format":"date-time",
                                        "example":"2020-06-17T10:15:30Z"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "description":"End date for the object's version validity. ISO 8601 format.",
                                        "format":"date-time",
                                        "example":"2025-06-17T10:15:30Z"
                                    }
                                },
                                "description":"Single study role assignment in a mode. Includes primary ID, display label, and version validity dates (inherited from DisplayAuthBaseDto).",
                                "example":[
                                    {
                                        "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                        "studyRoleName":"Investigator",
                                        "versionStart":"2021-07-01T00:00:00.000Z",
                                        "versionEnd":"2024-01-31T23:59:59.000Z"
                                    }
                                ]
                            },
                            "sites":{
                                "$ref":"#/components/schemas/DisplaySitesListDtoV2"
                            },
                            "depots":{
                                "$ref":"#/components/schemas/DisplayDepotsListDtoV2"
                            }
                        },
                        "description":"All assignment information for a user in a given mode (e.g., active, training) including roles, study roles, mapped sites and mapped depots. This object is a key part of user-level responses.",
                        "example":[
                            {
                                "modeName":"active",
                                "roles":[
                                    {
                                        "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                        "roleName":"Data Manager"
                                    }
                                ],
                                "studyRole":[
                                    {
                                        "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                        "studyRoleName":"Investigator",
                                        "versionStart":"2021-07-01T00:00:00.000Z",
                                        "versionEnd":"2024-01-31T23:59:59.000Z"
                                    }
                                ],
                                "sites":{
                                    "allSites":false,
                                    "siteIds":[
                                        "21F6B67B398A4977A19964FF7B7A68FD"
                                    ]
                                },
                                "depots":{
                                    "allDepots":true,
                                    "names":[
                                    ]
                                }
                            }
                        ]
                    }
                },
                "description":"Full representation of a user returned in the study-users APIs. Covers all identifiers, contact, temporal, and role/mode/assignment details. See the 'modes' property for full expansion of all site/role/depot assignments.",
                "example":[
                    {
                        "id":"B29BC40C838C42C5972D35880BEBB403",
                        "firstName":"Alice",
                        "lastName":"Lee",
                        "userName":"alice.lee",
                        "email":"alice.lee@fakemail.org",
                        "phone":"+1-101-202-3030",
                        "lastAccess":"2024-02-14T18:00:00.000Z",
                        "effectiveStart":"2023-01-01T00:00:00.000Z",
                        "effectiveEnd":"2025-12-31T23:59:59.000Z",
                        "modes":[
                            {
                                "modeName":"active",
                                "roles":[
                                    {
                                        "id":"AABBCCDDEEFF112233445566778899AA",
                                        "roleName":"Site Coordinator"
                                    }
                                ],
                                "studyRole":[
                                    {
                                        "id":"D0F1E2C3B4A5968775CCEE8855229966",
                                        "studyRoleName":"Monitor",
                                        "versionStart":"2021-01-01T00:00:00.000Z",
                                        "versionEnd":"2024-12-31T23:59:59.000Z"
                                    }
                                ],
                                "sites":{
                                    "allSites":false,
                                    "siteIds":[
                                        "817F1E2B3D4C5678A1928833BFA40721"
                                    ]
                                },
                                "depots":{
                                    "allDepots":false,
                                    "names":[
                                        "DepotZ"
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            "DisplayStudyUserListDtoV3":{
                "type":"object",
                "properties":{
                    "usersFound":{
                        "type":"integer",
                        "description":"Total count of users matching the filter or query.",
                        "format":"int32",
                        "example":2
                    },
                    "firstUserReturned":{
                        "type":"integer",
                        "description":"Index of the first user returned in this page (1-based).",
                        "format":"int32",
                        "example":1
                    },
                    "usersReturned":{
                        "type":"integer",
                        "description":"Count of user entries included in this result slice.",
                        "format":"int32",
                        "example":2
                    },
                    "users":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"User's unique ID.",
                                "format":"uuid"
                            },
                            "firstName":{
                                "type":"string",
                                "description":"First name of the user.",
                                "example":"Priya"
                            },
                            "lastName":{
                                "type":"string",
                                "description":"Last name of the user.",
                                "example":"Sundaram"
                            },
                            "email":{
                                "type":"string",
                                "description":"Primary email address for the user.",
                                "example":"priya.sundaram@examplemail.com"
                            },
                            "phone":{
                                "type":"string",
                                "description":"Phone or contact information for the user.",
                                "example":"+1-404-505-6060"
                            },
                            "userName":{
                                "type":"string",
                                "description":"Login username for the user.",
                                "example":"psundaram"
                            },
                            "lastAccess":{
                                "type":"string",
                                "description":"Date and time of user's last access (ISO 8601).",
                                "format":"date-time",
                                "example":"2023-08-08T12:00:00Z"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "description":"Effective start date for the user's study assignment (ISO 8601).",
                                "format":"date-time",
                                "example":"2021-06-01T00:00:00Z"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "description":"Effective end date for the user's study assignment (ISO 8601).",
                                "format":"date-time",
                                "example":"2024-05-31T23:59:59Z"
                            },
                            "modes":{
                                "type":"object",
                                "properties":{
                                    "modeName":{
                                        "type":"string",
                                        "description":"Study mode for these assignments (e.g., active, training, etc.)",
                                        "example":"active"
                                    },
                                    "roles":{
                                        "type":"object",
                                        "properties":{
                                            "id":{
                                                "type":"string",
                                                "description":"Unique role ID",
                                                "example":"F0DEEFCB66A14C2AA0699165055A38C1"
                                            },
                                            "roleName":{
                                                "type":"string",
                                                "description":"Display name for this application or system role.",
                                                "example":"Data Manager"
                                            },
                                            "versionStart":{
                                                "type":"string",
                                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                                "format":"date-time",
                                                "example":"2020-06-17T10:15:30Z"
                                            },
                                            "versionEnd":{
                                                "type":"string",
                                                "description":"End date for the object's version validity. ISO 8601 format.",
                                                "format":"date-time",
                                                "example":"2025-06-17T10:15:30Z"
                                            },
                                            "studyRoleId":{
                                                "type":"string",
                                                "description":"If present, the mapped studyRoleId for this user/type.",
                                                "example":"23FF2AE2F25746B993190A489ED09727"
                                            }
                                        },
                                        "description":"User role assignment within a study mode. Contains role reference, display label, and (if set) a mapped studyRoleId. UUIDs are always uppercase.",
                                        "example":[
                                            {
                                                "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                                "roleName":"Data Manager"
                                            }
                                        ]
                                    },
                                    "studyRole":{
                                        "type":"object",
                                        "properties":{
                                            "id":{
                                                "type":"string",
                                                "description":"Unique study role ID (32-character uppercase hexadecimal UUID).",
                                                "format":"uuid"
                                            },
                                            "roleName":{
                                                "type":"string"
                                            },
                                            "versionStart":{
                                                "type":"string",
                                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                                "format":"date-time",
                                                "example":"2020-06-17T10:15:30Z"
                                            },
                                            "versionEnd":{
                                                "type":"string",
                                                "description":"End date for the object's version validity. ISO 8601 format.",
                                                "format":"date-time",
                                                "example":"2025-06-17T10:15:30Z"
                                            }
                                        },
                                        "description":"Single study role assignment in a mode. Includes primary ID, display label, and version validity dates (inherited from DisplayAuthBaseDto).",
                                        "example":[
                                            {
                                                "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                                "studyRoleName":"Investigator",
                                                "versionStart":"2021-07-01T00:00:00.000Z",
                                                "versionEnd":"2024-01-31T23:59:59.000Z"
                                            }
                                        ]
                                    },
                                    "sites":{
                                        "$ref":"#/components/schemas/DisplaySitesListDtoV2"
                                    },
                                    "depots":{
                                        "$ref":"#/components/schemas/DisplayDepotsListDtoV2"
                                    }
                                },
                                "description":"All assignment information for a user in a given mode (e.g., active, training) including roles, study roles, mapped sites and mapped depots. This object is a key part of user-level responses.",
                                "example":[
                                    {
                                        "modeName":"active",
                                        "roles":[
                                            {
                                                "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                                "roleName":"Data Manager"
                                            }
                                        ],
                                        "studyRole":[
                                            {
                                                "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                                "studyRoleName":"Investigator",
                                                "versionStart":"2021-07-01T00:00:00.000Z",
                                                "versionEnd":"2024-01-31T23:59:59.000Z"
                                            }
                                        ],
                                        "sites":{
                                            "allSites":false,
                                            "siteIds":[
                                                "21F6B67B398A4977A19964FF7B7A68FD"
                                            ]
                                        },
                                        "depots":{
                                            "allDepots":true,
                                            "names":[
                                            ]
                                        }
                                    }
                                ]
                            }
                        },
                        "description":"Full representation of a user returned in the study-users APIs. Covers all identifiers, contact, temporal, and role/mode/assignment details. See the 'modes' property for full expansion of all site/role/depot assignments.",
                        "example":[
                            {
                                "id":"B29BC40C838C42C5972D35880BEBB403",
                                "firstName":"Alice",
                                "lastName":"Lee",
                                "userName":"alice.lee",
                                "email":"alice.lee@fakemail.org",
                                "phone":"+1-101-202-3030",
                                "lastAccess":"2024-02-14T18:00:00.000Z",
                                "effectiveStart":"2023-01-01T00:00:00.000Z",
                                "effectiveEnd":"2025-12-31T23:59:59.000Z",
                                "modes":[
                                    {
                                        "modeName":"active",
                                        "roles":[
                                            {
                                                "id":"AABBCCDDEEFF112233445566778899AA",
                                                "roleName":"Site Coordinator"
                                            }
                                        ],
                                        "studyRole":[
                                            {
                                                "id":"D0F1E2C3B4A5968775CCEE8855229966",
                                                "studyRoleName":"Monitor",
                                                "versionStart":"2021-01-01T00:00:00.000Z",
                                                "versionEnd":"2024-12-31T23:59:59.000Z"
                                            }
                                        ],
                                        "sites":{
                                            "allSites":false,
                                            "siteIds":[
                                                "817F1E2B3D4C5678A1928833BFA40721"
                                            ]
                                        },
                                        "depots":{
                                            "allDepots":false,
                                            "names":[
                                                "DepotZ"
                                            ]
                                        }
                                    }
                                ]
                            }
                        ]
                    }
                },
                "description":"Paginated and detailed response object representing a list of study users, including overall count and returned slice, for API v4 and similar endpoints. Each user entry is deeply expanded, including all modes, role assignments, sites, and depots, as required by downstream consumers."
            },
            "DisplayUserModeRoleListDtoV3":{
                "type":"object",
                "properties":{
                    "modeName":{
                        "type":"string",
                        "description":"Study mode for these assignments (e.g., active, training, etc.)",
                        "example":"active"
                    },
                    "roles":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique role ID",
                                "example":"F0DEEFCB66A14C2AA0699165055A38C1"
                            },
                            "roleName":{
                                "type":"string",
                                "description":"Display name for this application or system role.",
                                "example":"Data Manager"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2020-06-17T10:15:30Z"
                            },
                            "versionEnd":{
                                "type":"string",
                                "description":"End date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2025-06-17T10:15:30Z"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "description":"If present, the mapped studyRoleId for this user/type.",
                                "example":"23FF2AE2F25746B993190A489ED09727"
                            }
                        },
                        "description":"User role assignment within a study mode. Contains role reference, display label, and (if set) a mapped studyRoleId. UUIDs are always uppercase.",
                        "example":[
                            {
                                "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                "roleName":"Data Manager"
                            }
                        ]
                    },
                    "studyRole":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique study role ID (32-character uppercase hexadecimal UUID).",
                                "format":"uuid"
                            },
                            "roleName":{
                                "type":"string"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2020-06-17T10:15:30Z"
                            },
                            "versionEnd":{
                                "type":"string",
                                "description":"End date for the object's version validity. ISO 8601 format.",
                                "format":"date-time",
                                "example":"2025-06-17T10:15:30Z"
                            }
                        },
                        "description":"Single study role assignment in a mode. Includes primary ID, display label, and version validity dates (inherited from DisplayAuthBaseDto).",
                        "example":[
                            {
                                "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                "studyRoleName":"Investigator",
                                "versionStart":"2021-07-01T00:00:00.000Z",
                                "versionEnd":"2024-01-31T23:59:59.000Z"
                            }
                        ]
                    },
                    "sites":{
                        "$ref":"#/components/schemas/DisplaySitesListDtoV2"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/DisplayDepotsListDtoV2"
                    }
                },
                "description":"All assignment information for a user in a given mode (e.g., active, training) including roles, study roles, mapped sites and mapped depots. This object is a key part of user-level responses.",
                "example":[
                    {
                        "modeName":"active",
                        "roles":[
                            {
                                "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                                "roleName":"Data Manager"
                            }
                        ],
                        "studyRole":[
                            {
                                "id":"1A9CF1A460CD440CA62B6F9EA258F968",
                                "studyRoleName":"Investigator",
                                "versionStart":"2021-07-01T00:00:00.000Z",
                                "versionEnd":"2024-01-31T23:59:59.000Z"
                            }
                        ],
                        "sites":{
                            "allSites":false,
                            "siteIds":[
                                "21F6B67B398A4977A19964FF7B7A68FD"
                            ]
                        },
                        "depots":{
                            "allDepots":true,
                            "names":[
                            ]
                        }
                    }
                ]
            },
            "DisplayUserRoleDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique role ID",
                        "example":"F0DEEFCB66A14C2AA0699165055A38C1"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"Display name for this application or system role.",
                        "example":"Data Manager"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"If present, the mapped studyRoleId for this user/type.",
                        "example":"23FF2AE2F25746B993190A489ED09727"
                    }
                },
                "description":"User role assignment within a study mode. Contains role reference, display label, and (if set) a mapped studyRoleId. UUIDs are always uppercase.",
                "example":[
                    {
                        "id":"F0DEEFCB66A14C2AA0699165055A38C1",
                        "roleName":"Data Manager"
                    }
                ]
            },
            "RqstUsersSearchSpecificationsDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"Study mode for the search",
                        "example":"active"
                    },
                    "sites":{
                        "$ref":"#/components/schemas/sites"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/depots"
                    },
                    "userStatus":{
                        "type":"string",
                        "description":"User status for filtering",
                        "example":"Inactive"
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role UUIDs",
                        "example":[
                            "AF73A2EEA90B4E9394CE6CB40B5BC66E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role UUIDs",
                            "format":"uuid"
                        }
                    },
                    "studyRoleTypes":{
                        "type":"array",
                        "description":"List of study role types",
                        "example":[
                            "PrincipalInvestigator"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role types",
                            "example":"[\"PrincipalInvestigator\"]"
                        }
                    },
                    "searchString":{
                        "type":"string",
                        "description":"Free text to search/filter users",
                        "example":"site, US"
                    },
                    "sortBy":{
                        "type":"string",
                        "description":"Result sort column",
                        "example":"lastName"
                    },
                    "sortOrder":{
                        "type":"string",
                        "description":"Sort order, ascending/descending",
                        "example":"asc"
                    }
                }
            },
            "depots":{
                "type":"object",
                "properties":{
                    "allDepots":{
                        "type":"boolean"
                    },
                    "depotIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Depots data to filter the users",
                "example":{
                    "names":[
                        "DepotA"
                    ]
                }
            },
            "sites":{
                "type":"object",
                "properties":{
                    "allSites":{
                        "type":"boolean"
                    },
                    "siteIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Sites data to filter the users",
                "example":{
                    "ids":[
                        "123F0B1426C11EE90C31234567890AAA"
                    ]
                }
            },
            "RoleIdDto":{
                "required":[
                    "roleId"
                ],
                "type":"object",
                "properties":{
                    "roleId":{
                        "type":"string",
                        "description":"Unique identifier for the role.",
                        "format":"uuid"
                    }
                },
                "description":"Simple DTO containing only the role's unique identifier.",
                "example":{
                    "roleId":"078123AF1E024F7C8D0053D74A11AEC3"
                }
            },
            "StudyRolePostDto":{
                "required":[
                    "roleList",
                    "studyRoleName",
                    "studyRoleType"
                ],
                "type":"object",
                "properties":{
                    "studyRoleName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"SITE_COORDINATOR"
                    },
                    "studyRoleDesc":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Description of the study role.",
                        "example":"Can manage subject and site data."
                    },
                    "studyRoleType":{
                        "type":"string",
                        "description":"Type of the study role.",
                        "example":"SITE"
                    },
                    "studyRoleStatus":{
                        "type":"string",
                        "description":"Status of the study role.",
                        "example":"ACTIVE"
                    },
                    "studyRoleCreationType":{
                        "type":"string",
                        "description":"Indicates how the study role was created.",
                        "example":"MANUAL"
                    },
                    "roleList":{
                        "$ref":"#/components/schemas/RoleIdDto"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for creating or updating this study role.",
                        "example":"Configured at initial setup."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments about the study role.",
                        "example":"Primary coordinator assignment for site."
                    }
                },
                "description":"DTO to create a new study role with requested settings and related roles.",
                "example":{
                    "studyRoleName":"SITE_COORDINATOR",
                    "studyRoleDesc":"Can manage subject and site data.",
                    "studyRoleType":"SITE",
                    "studyRoleStatus":"ACTIVE",
                    "studyRoleCreationType":"MANUAL",
                    "roleList":[
                        {
                            "roleId":"C2F3B799BCED4C868E668A002A3F30F3"
                        }
                    ],
                    "reason":"Configured at initial setup.",
                    "comment":"Primary coordinator assignment for site."
                }
            },
            "RoleObjectNumDto":{
                "required":[
                    "objectVersionNumber",
                    "roleId"
                ],
                "type":"object",
                "properties":{
                    "roleId":{
                        "type":"string",
                        "description":"Unique identifier for the role.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Current object version number for the role.",
                        "example":1
                    }
                },
                "description":"Represents a role reference along with its object version number.",
                "example":{
                    "roleId":"ED123C41A2304E21850F4A2B92FED971",
                    "objectVersionNumber":1
                }
            },
            "StudyRoleDto":{
                "required":[
                    "roleList",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleType"
                ],
                "type":"object",
                "properties":{
                    "studyRoleId":{
                        "type":"string",
                        "description":"Unique identifier for this study role.",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"SITE_VIEWER"
                    },
                    "studyRoleDesc":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Description of the study role.",
                        "example":"A role allowing access to all site-specific data."
                    },
                    "studyRoleType":{
                        "type":"string",
                        "description":"Type of the study role.",
                        "example":"SITE"
                    },
                    "studyRoleCreationType":{
                        "type":"string",
                        "description":"How the study role was created (e.g., MANUAL, AUTO).",
                        "example":"MANUAL"
                    },
                    "roleList":{
                        "$ref":"#/components/schemas/RoleObjectNumDto"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for assigning or modifying this study role.",
                        "example":"Initial assignment."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments about the study role.",
                        "example":"This group was created as part of baseline configuration."
                    }
                },
                "description":"Describes a study role with its associated details and constituent roles.",
                "example":{
                    "studyRoleId":"6D84A3F9D41E4BB8B5FC99A27DCC2B9B",
                    "studyRoleName":"SITE_VIEWER",
                    "studyRoleDesc":"A role allowing access to all site-specific data.",
                    "studyRoleType":"SITE",
                    "studyRoleCreationType":"MANUAL",
                    "roleList":[
                        {
                            "roleId":"ED123C41A2304E21850F4A2B92FED971",
                            "objectVersionNumber":1
                        }
                    ],
                    "reason":"Initial assignment.",
                    "comment":"This group was created as part of baseline configuration."
                }
            },
            "DisplayRightDtoV2":{
                "required":[
                    "id",
                    "rightName"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The unique identifier for the right.",
                        "format":"uuid"
                    },
                    "rightName":{
                        "type":"string",
                        "description":"The name of the right.",
                        "example":"ACCESS_SUBJECT_DATA"
                    }
                },
                "description":"A right associated with a role. Contains the unique identifier and name of the right.",
                "example":{
                    "id":"A8C7B83378261E99F4A6823F43A6063B",
                    "rightName":"ACCESS_SUBJECT_DATA"
                }
            },
            "DisplayRoleWithRightsDto":{
                "required":[
                    "id",
                    "roleCategory",
                    "roleName"
                ],
                "type":"object",
                "properties":{
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "example":3
                    },
                    "selected":{
                        "type":"boolean",
                        "description":"Indicates if this role is selected.",
                        "example":true
                    },
                    "rights":{
                        "required":[
                            "id",
                            "rightName"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"The unique identifier for the right.",
                                "format":"uuid"
                            },
                            "rightName":{
                                "type":"string",
                                "description":"The name of the right.",
                                "example":"ACCESS_SUBJECT_DATA"
                            }
                        },
                        "description":"A right associated with a role. Contains the unique identifier and name of the right.",
                        "example":{
                            "id":"A8C7B83378261E99F4A6823F43A6063B",
                            "rightName":"ACCESS_SUBJECT_DATA"
                        }
                    },
                    "id":{
                        "type":"string",
                        "description":"The unique identifier for the role.",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"Name of the role.",
                        "example":"Rule Designer"
                    },
                    "roleCategory":{
                        "type":"string",
                        "description":"Category to which the role belongs.",
                        "example":"STUDY_SPECIFIC"
                    },
                    "roleSubCategory":{
                        "type":"string",
                        "description":"Sub-category for this role.",
                        "example":"LEAD"
                    },
                    "unblinded":{
                        "type":"string",
                        "description":"Whether the role is unblinded ('YES' or 'NO').",
                        "example":"YES"
                    }
                },
                "description":"Represents a role with associated rights and additional attributes.",
                "example":{
                    "id":"D2FEB81D0E364B22B2EE172CD220A1D1",
                    "roleName":"Rule Designer",
                    "roleCategory":"STUDY_SPECIFIC",
                    "roleSubCategory":"LEAD",
                    "unblinded":"YES",
                    "objectVersionNumber":3,
                    "selected":true,
                    "rights":[
                        {
                            "id":"A8C7B83378261E99F4A6823F43A6063B",
                            "rightName":"ACCESS_SUBJECT_DATA"
                        }
                    ]
                }
            },
            "DisplayStudyRightPropertiesDto":{
                "required":[
                    "displayName",
                    "rightName"
                ],
                "type":"object",
                "properties":{
                    "displayName":{
                        "type":"string",
                        "description":"Human-readable name for this right.",
                        "example":"Create shipments to DDF"
                    },
                    "rightName":{
                        "type":"string",
                        "description":"Right name identifier.",
                        "example":"OrsSiteShipmentPost"
                    }
                },
                "description":"DTO for right display information including human-readable name and identifier.",
                "example":[
                    {
                        "displayName":"Create shipments to DDF",
                        "rightName":"OrsSiteShipmentPost"
                    }
                ]
            },
            "DisplayStudyRoleRightsDto":{
                "required":[
                    "activeStatus",
                    "rights",
                    "roleCategory",
                    "roleId",
                    "roleName",
                    "roleType"
                ],
                "type":"object",
                "properties":{
                    "roleId":{
                        "type":"string",
                        "description":"Unique identifier for the study role.",
                        "example":"B748C913E61B4B18A9B5D80F349BC8FD"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"Site User"
                    },
                    "roleCategory":{
                        "type":"string",
                        "description":"Category of the study role (e.g., SITE_SPECIFIC, STUDY_SPECIFIC).",
                        "example":"Site"
                    },
                    "activeStatus":{
                        "type":"string",
                        "description":"Active status of the study role.",
                        "example":"Active"
                    },
                    "roleType":{
                        "type":"string",
                        "description":"Type of the role",
                        "example":"Runtime"
                    },
                    "rights":{
                        "required":[
                            "displayName",
                            "rightName"
                        ],
                        "type":"object",
                        "properties":{
                            "displayName":{
                                "type":"string",
                                "description":"Human-readable name for this right.",
                                "example":"Create shipments to DDF"
                            },
                            "rightName":{
                                "type":"string",
                                "description":"Right name identifier.",
                                "example":"OrsSiteShipmentPost"
                            }
                        },
                        "description":"DTO for right display information including human-readable name and identifier.",
                        "example":[
                            {
                                "displayName":"Create shipments to DDF",
                                "rightName":"OrsSiteShipmentPost"
                            }
                        ]
                    }
                },
                "description":"Represents a study role with rights details for display."
            },
            "StudyRoleDtoParams":{
                "title":"StudyRoleDtoParams",
                "required":[
                    "studyRoleCreationType",
                    "studyRoleDesc",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleStatus",
                    "studyRoleType"
                ],
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"Unique identifier for the study role.",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"MONITOR"
                    },
                    "studyRoleDesc":{
                        "type":"string",
                        "description":"Description of the study role.",
                        "example":"Monitor role grants viewing and edit capabilities."
                    },
                    "studyRoleType":{
                        "type":"string",
                        "description":"Type of the study role (e.g., SITE, STUDY).",
                        "example":"SITE"
                    },
                    "studyRoleStatus":{
                        "type":"string",
                        "description":"Current status of the study role (e.g., ACTIVE, INACTIVE).",
                        "example":"ACTIVE"
                    },
                    "studyRoleCreationType":{
                        "type":"string",
                        "description":"Method used to create the study role (e.g., MANUAL, AUTO).",
                        "example":"AUTO"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study identifier, if applicable.",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "description":"Role identifier, if relevant.",
                        "format":"uuid"
                    }
                },
                "description":"Parameters for a study role, including inherited version validity."
            },
            "RqstCreateBulkUsersDto":{
                "type":"object",
                "properties":{
                    "isFederatedUser":{
                        "type":"boolean",
                        "description":"True if the users are federated users.",
                        "example":true
                    },
                    "isTrainingModeUpload":{
                        "type":"boolean",
                        "description":"True if the users are part of a training mode upload.",
                        "example":false
                    },
                    "comment":{
                        "type":"string",
                        "description":"Optional comment for the bulk user creation.",
                        "example":"Bulk upload of new investigators"
                    },
                    "users":{
                        "$ref":"#/components/schemas/UploadUserDetails"
                    }
                }
            },
            "UploadUserDetails":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the user.",
                        "format":"uuid"
                    },
                    "idcsId":{
                        "type":"string",
                        "description":"IDCS identifier if federated.",
                        "format":"uuid"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"User's first name.",
                        "example":"John"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name.",
                        "example":"Smith"
                    },
                    "userName":{
                        "type":"string",
                        "description":"User's login name.",
                        "example":"jsmith"
                    },
                    "emailId":{
                        "type":"string",
                        "description":"User's email address.",
                        "example":"john.smith@email.com"
                    },
                    "role":{
                        "type":"string",
                        "description":"Assigned user role.",
                        "example":"SiteAdmin"
                    },
                    "sites":{
                        "type":"string",
                        "description":"Comma separated list of associated site names.",
                        "example":"SiteA,SiteB"
                    },
                    "depots":{
                        "type":"string",
                        "description":"Comma separated list of associated depots.",
                        "example":"DepotA"
                    },
                    "startDate":{
                        "type":"string",
                        "description":"Start date of user assignment in ISO format.",
                        "format":"date"
                    },
                    "endDate":{
                        "type":"string",
                        "description":"End date of user assignment in ISO format.",
                        "format":"date"
                    }
                },
                "description":"Details required for a single user in a bulk upload.",
                "example":{
                    "id":"F6B4E947CA41478DBE30CEF0A823BC43",
                    "idcsId":"D196BD697CB34E169A7D8E465AB8B2F5",
                    "firstName":"John",
                    "lastName":"Smith",
                    "userName":"jsmith",
                    "emailId":"john.smith@email.com",
                    "role":"SiteAdmin",
                    "sites":"SiteA,SiteB",
                    "depots":"DepotA",
                    "startDate":"2025-12-31T00:00:00.000Z",
                    "endDate":"3099-12-31T00:00:00.000Z"
                }
            },
            "BulkUsersUploadDetailsDto":{
                "type":"object",
                "properties":{
                    "isFederatedUser":{
                        "type":"boolean",
                        "description":"True if the users are federated users.",
                        "example":true
                    },
                    "isTrainingModeUpload":{
                        "type":"boolean",
                        "description":"True if the users are part of a training mode upload.",
                        "example":false
                    },
                    "comment":{
                        "type":"string",
                        "description":"Optional comment for the bulk user creation.",
                        "example":"Bulk upload of new investigators"
                    },
                    "users":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier for the user.",
                                "format":"uuid"
                            },
                            "idcsId":{
                                "type":"string",
                                "description":"IDCS identifier if federated.",
                                "format":"uuid"
                            },
                            "firstName":{
                                "type":"string",
                                "description":"User's first name.",
                                "example":"John"
                            },
                            "lastName":{
                                "type":"string",
                                "description":"User's last name.",
                                "example":"Smith"
                            },
                            "userName":{
                                "type":"string",
                                "description":"User's login name.",
                                "example":"jsmith"
                            },
                            "emailId":{
                                "type":"string",
                                "description":"User's email address.",
                                "example":"john.smith@email.com"
                            },
                            "role":{
                                "type":"string",
                                "description":"Assigned user role.",
                                "example":"SiteAdmin"
                            },
                            "sites":{
                                "type":"string",
                                "description":"Comma separated list of associated site names.",
                                "example":"SiteA,SiteB"
                            },
                            "depots":{
                                "type":"string",
                                "description":"Comma separated list of associated depots.",
                                "example":"DepotA"
                            },
                            "startDate":{
                                "type":"string",
                                "description":"Start date of user assignment in ISO format.",
                                "format":"date"
                            },
                            "endDate":{
                                "type":"string",
                                "description":"End date of user assignment in ISO format.",
                                "format":"date"
                            }
                        },
                        "description":"Details required for a single user in a bulk upload.",
                        "example":{
                            "id":"F6B4E947CA41478DBE30CEF0A823BC43",
                            "idcsId":"D196BD697CB34E169A7D8E465AB8B2F5",
                            "firstName":"John",
                            "lastName":"Smith",
                            "userName":"jsmith",
                            "emailId":"john.smith@email.com",
                            "role":"SiteAdmin",
                            "sites":"SiteA,SiteB",
                            "depots":"DepotA",
                            "startDate":"2025-12-31T00:00:00.000Z",
                            "endDate":"3099-12-31T00:00:00.000Z"
                        }
                    }
                },
                "description":"Payload for uploading a batch of users, including user details and bulk flags."
            },
            "DisplayUserDto2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the user.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"User's first name.",
                        "example":"Alice"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name.",
                        "example":"Brown"
                    },
                    "userName":{
                        "type":"string",
                        "description":"User's login name.",
                        "example":"alicebrown"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"User's email address.",
                        "example":"alice.brown@email.com"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp for when this version of the user record started.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Timestamp for when this version of the user record ended.",
                        "format":"date-time",
                        "example":"2024-01-01T10:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Type of operation performed (e.g., CREATE, UPDATE, DELETE).",
                        "example":"CREATE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Version number for the user object.",
                        "format":"double",
                        "example":2
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Version number for the software.",
                        "format":"double",
                        "example":1.5
                    }
                },
                "description":"User details extending DisplayUserDto with versioning and auditing fields."
            },
            "RqstUpdateBulkUsersEffectiveDatesDto":{
                "type":"object",
                "properties":{
                    "userIds":{
                        "type":"array",
                        "description":"List of user UUIDs to update.",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "21E0C8A2C11045A584ADEA8760F72E58"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user UUIDs to update.",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Whether to update all users matching userSearchSpecs.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "description":"Effective start date/time for the selected user assignments.",
                        "format":"date-time",
                        "example":"2024-01-01T08:00:00Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"Effective end date/time for the selected user assignments.",
                        "format":"date-time",
                        "example":"2025-12-31T17:30:00Z"
                    }
                }
            },
            "UsersSearchSpecificationsDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"Study mode for the search",
                        "example":"active"
                    },
                    "sites":{
                        "$ref":"#/components/schemas/sites"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/depots"
                    },
                    "userStatus":{
                        "type":"string",
                        "description":"User status for filtering",
                        "example":"Inactive"
                    },
                    "studyRoles":{
                        "type":"array",
                        "description":"List of study role UUIDs",
                        "example":[
                            "AF73A2EEA90B4E9394CE6CB40B5BC66E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role UUIDs",
                            "format":"uuid"
                        }
                    },
                    "studyRoleTypes":{
                        "type":"array",
                        "description":"List of study role types",
                        "example":[
                            "PrincipalInvestigator"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role types",
                            "example":"[\"PrincipalInvestigator\"]"
                        }
                    },
                    "searchString":{
                        "type":"string",
                        "description":"Free text to search/filter users",
                        "example":"site, US"
                    },
                    "sortBy":{
                        "type":"string",
                        "description":"Result sort column",
                        "example":"lastName"
                    },
                    "sortOrder":{
                        "type":"string",
                        "description":"Sort order, ascending/descending",
                        "example":"asc"
                    }
                },
                "description":"Search/filter specifications for selecting users during bulk role/effective/site updates."
            },
            "BulkUsersEffectiveDatesUpdateDetailsDto":{
                "type":"object",
                "properties":{
                    "userIds":{
                        "type":"array",
                        "description":"List of user IDs to update (if bulk selection not by query)",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "2ABC8A2C11045A584ADEA8760F72B114"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs to update (if bulk selection not by query)",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Flag indicating if operation should apply to all users found by userSearchSpecs. If true, all users matching the search will be updated; otherwise, only those explicitly listed in userIds.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "description":"Effective start date/time to set (in ISO 8601 format).",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"Effective end date/time to set (in ISO 8601 format).",
                        "format":"date-time",
                        "example":"2024-12-31T23:59:59Z"
                    }
                },
                "description":"Request payload for performing bulk update of effective start/end dates for a set of users in a study. Selection of users may be done by explicit userId, allUsers, or the userSearchSpecs criteria. All date-times use ISO 8601 string format."
            },
            "RqstUpdateBulkUsersRoleDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"The role assignment mode (e.g. active, expired)",
                        "example":"active"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"The study role UUID to assign.",
                        "format":"uuid"
                    },
                    "userIds":{
                        "type":"array",
                        "description":"List of user UUIDs to update.",
                        "example":[
                            "21E0C8A2C11045A584ADEA8760F72E58",
                            "F6B4E947CA41478DBE30CEF0A823BC43"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user UUIDs to update.",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Whether to apply the update to all users.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    }
                }
            },
            "BulkUsersRoleUpdateDetailsDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"The study mode for role update (e.g., active, design, training, etc).",
                        "example":"active"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"Study role ID to assign",
                        "example":"F3183B73D07340CAB883B592E27C8E58"
                    },
                    "userIds":{
                        "type":"array",
                        "description":"List of user IDs to update.",
                        "format":"uuid",
                        "example":[
                            "A9C3EDCB5A7E4CA3AF9E1A981187B2CB",
                            "E439B8E7C1D24B2C9EFAE3C9378F009A"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs to update.",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Flag indicating if operation should apply to all users matching userSearchSpecs. If true, all users resulting from the filter will be updated; otherwise, only those explicitly listed in userIds.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    }
                },
                "description":"Request payload for performing bulk role assignments or updates for a set of users in a study. Selection of users may be done by explicit userId, allUsers, or the userSearchSpecs criteria."
            },
            "RqstUpdateBulkUsersSitesDto":{
                "required":[
                    "modeName"
                ],
                "type":"object",
                "properties":{
                    "modeName":{
                        "type":"string",
                        "description":"Mode name for the site update.",
                        "example":"active"
                    },
                    "userIds":{
                        "type":"array",
                        "description":"List of user UUIDs to update.",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "21E0C8A2C11045A584ADEA8760F72E58"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user UUIDs to update.",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Whether to apply to all users matching userSearchSpecs.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    },
                    "allSites":{
                        "type":"boolean",
                        "description":"Whether to update all sites for the selected users.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"array",
                        "description":"List of associated site UUIDs.",
                        "example":[
                            "666666D084BB4680AC08AEF5DC8B0EE9",
                            "88888814875B45D5B700987A23A823E2"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of associated site UUIDs.",
                            "format":"uuid"
                        }
                    }
                }
            },
            "BulkUsersSitesUpdateDetailsDto":{
                "required":[
                    "modeName"
                ],
                "type":"object",
                "properties":{
                    "modeName":{
                        "type":"string",
                        "description":"Name of the study mode (e.g., active, design, etc) for which site association is applied.",
                        "example":"active"
                    },
                    "userIds":{
                        "type":"array",
                        "description":"List of user IDs to update sites for.",
                        "example":[
                            "54B6FD8C920E4D19A259C4A9C7033A85",
                            "BC2A5EEDA88F4791A4B5B7F83D1F8317"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of user IDs to update sites for.",
                            "format":"uuid"
                        }
                    },
                    "allUsers":{
                        "type":"boolean",
                        "description":"Flag stating if all users found by userSearchSpecs should be included. If true, applies to all; if false, applies to userIds only.",
                        "example":false
                    },
                    "userSearchSpecs":{
                        "$ref":"#/components/schemas/UsersSearchSpecificationsDto"
                    },
                    "allSites":{
                        "type":"boolean",
                        "description":"If true, associate all current/future sites with users; if false, uses provided associatedSites.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"array",
                        "description":"List of site UUIDs to be associated with users.",
                        "format":"uuid",
                        "example":[
                            "764620086A994885B67EDD158E3EA3D1",
                            "3F786850E387550FDAB836ED7E6DC881"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of site UUIDs to be associated with users.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request payload for performing bulk site associations or updates for a set of users in a study. Selection may be made by explicit userIds, allUsers, or via the userSearchSpecs filter. Site associations can be provided explicitly (associatedSites) or set globally via allSites."
            },
            "DisplayGlobalRoleDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the global role.",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"The name of the role.",
                        "example":"Approve Library Objects"
                    },
                    "rights":{
                        "type":"array",
                        "description":"List of rights related to the global role.",
                        "example":[
                            "READ",
                            "WRITE"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of rights related to the global role.",
                            "example":"[\"READ\",\"WRITE\"]"
                        }
                    }
                },
                "description":"Represents a global role with its ID, name, and related rights.",
                "example":{
                    "id":"07968CA58DAF356CAF7BCD708ADCB159",
                    "roleName":"Approve Library Objects",
                    "rights":[
                        "READ",
                        "WRITE"
                    ]
                }
            },
            "DisplayUserRoleDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this user-role association.",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"Name of the role assigned to the user.",
                        "example":"STUDY_MANAGER"
                    }
                },
                "description":"Associates a user with a global role.",
                "example":{
                    "id":"A519EF3C2B73455390CFF812AFF61519",
                    "roleName":"STUDY_MANAGER"
                }
            },
            "UserInfoDtoV2":{
                "type":"object",
                "properties":{
                    "firstName":{
                        "type":"string",
                        "description":"First name of the user.",
                        "example":"Jane"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"Last name of the user.",
                        "example":"Doe"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"Email address of the user.",
                        "format":"email",
                        "example":"jane.doe@example.com"
                    },
                    "globalRights":{
                        "uniqueItems":true,
                        "type":"array",
                        "description":"Global rights assigned to the user.",
                        "example":[
                            "OrsSiteShipmentPost",
                            "UpdateRecipe"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Global rights assigned to the user.",
                            "example":"[\"OrsSiteShipmentPost\",\"UpdateRecipe\"]"
                        }
                    },
                    "userId":{
                        "type":"string",
                        "description":"User identifier.",
                        "example":"A1234567890B1234567890C12345678E"
                    },
                    "userAttributes":{
                        "type":"object",
                        "properties":{
                            "key":{
                                "type":"string",
                                "description":"The attribute key name",
                                "example":"Locale"
                            },
                            "value":{
                                "type":"string",
                                "description":"The value of the attribute",
                                "example":"en-US"
                            }
                        },
                        "description":"Key-value pair for user attribute",
                        "example":{
                            "key":"Locale",
                            "value":"en-US"
                        }
                    }
                },
                "description":"User information with rights and attributes"
            },
            "DisplayUserDtoV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the user.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "firstName":{
                        "type":"string",
                        "description":"User's first name.",
                        "example":"Alice"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"User's last name.",
                        "example":"Brown"
                    },
                    "userName":{
                        "type":"string",
                        "description":"User's login name.",
                        "example":"alicebrown"
                    },
                    "emailAddress":{
                        "type":"string",
                        "description":"User's email address.",
                        "example":"alice.brown@email.com"
                    },
                    "workPhone":{
                        "type":"string",
                        "description":"Work phone number for the user.",
                        "example":"+1-808-555-1357"
                    },
                    "externalId":{
                        "type":"string",
                        "description":"External identifier for the user (from source system).",
                        "example":"EXT123456"
                    },
                    "isSystemUser":{
                        "type":"boolean",
                        "description":"Indicates if this is a system user.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp for when this version of the user record started.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Timestamp for when this version of the user record ended.",
                        "format":"date-time",
                        "example":"2024-01-01T10:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Type of operation performed (e.g., CREATE, UPDATE, DELETE).",
                        "example":"CREATE"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Alternate user UUID for versioning and reference.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Version number for the user object.",
                        "format":"double",
                        "example":2
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Version number for the software.",
                        "format":"double",
                        "example":1.5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for last update/change to user.",
                        "example":"User promoted to admin"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Free comment regarding the user or change.",
                        "example":"Initial bulk upload"
                    }
                },
                "description":"Authorized User Info with extended attributes, audit and versioning. Extends DisplayUserDto2."
            },
            "RoleDtoParamsV3":{
                "required":[
                    "id",
                    "roleCategory",
                    "roleName",
                    "roleType"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the application role.",
                        "format":"uuid"
                    },
                    "rightId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"Human-readable role name.",
                        "example":"VIEWER"
                    },
                    "roleType":{
                        "type":"string",
                        "description":"Type of the role (e.g., Application, Study, Global).",
                        "example":"Application"
                    },
                    "roleCategory":{
                        "type":"string",
                        "description":"Business category of the role.",
                        "example":"Study"
                    },
                    "roleSubCategory":{
                        "type":"string"
                    },
                    "unblinded":{
                        "type":"string",
                        "description":"Indicates if the role is unblinded (Y/N).",
                        "example":"Y"
                    },
                    "roleSeq":{
                        "type":"number",
                        "description":"Role sequence/order in assignment.",
                        "format":"int32",
                        "example":1
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    }
                },
                "description":"Represents an application role and its assignment attributes, including identifiers and display information.",
                "example":{
                    "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                    "roleName":"Site User",
                    "roleType":"Application",
                    "roleCategory":"Study",
                    "roleSeq":1,
                    "unblinded":"Y"
                }
            },
            "DisplayRoleDtoV2":{
                "required":[
                    "id",
                    "objectVersionNumber",
                    "roleCategory",
                    "roleName",
                    "roleType"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the user role",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "roleName":{
                        "type":"string",
                        "description":"The display name of the role",
                        "example":"Monitor"
                    },
                    "roleType":{
                        "type":"string",
                        "description":"Type of the role (e.g., Runtime, Design)",
                        "example":"Runtime"
                    },
                    "roleCategory":{
                        "type":"string",
                        "description":"Category of the role",
                        "example":"Sponsor"
                    },
                    "roleSubCategory":{
                        "type":"string",
                        "description":"Sub category of the role if available",
                        "example":"Central"
                    },
                    "unblinded":{
                        "type":"string",
                        "description":"Indicates if the role is unblinded (true/false)",
                        "example":"true"
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Version number for optimistic locking",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Represents a user role in v2 with additional details."
            },
            "StudyRoleDtoParamsV2":{
                "required":[
                    "studyRoleCreationType",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleStatus",
                    "studyRoleType"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this entity.",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"UUID for the study role.",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string",
                        "description":"Name of the study role.",
                        "example":"MONITOR"
                    },
                    "studyRoleDesc":{
                        "type":"string",
                        "description":"Optional description for this study role.",
                        "example":"Monitor role grants viewing and edit capabilities."
                    },
                    "studyRoleType":{
                        "type":"string",
                        "description":"Type (e.g., SITE, STUDY) for this study role.",
                        "example":"SITE"
                    },
                    "studyRoleStatus":{
                        "type":"string",
                        "description":"Status string for this role (ACTIVE, INACTIVE, etc).",
                        "example":"ACTIVE"
                    },
                    "studyRoleCreationType":{
                        "type":"string",
                        "description":"Role creation method (e.g., MANUAL, AUTO).",
                        "example":"AUTO"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"UUID of the study this relates to.",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "description":"Related role UUID, if available.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Date/time of this version's start (ISO 8601).",
                        "format":"date-time",
                        "example":"2021-01-01T00:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Date/time this version was replaced (ISO 8601).",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"The operation that caused this change (CREATE, UPDATE, DELETE).",
                        "example":"UPDATE"
                    },
                    "userId":{
                        "type":"string",
                        "description":"UUID of the user responsible for this change.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Version of the role object.",
                        "example":9
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Version of the Clinical One software.",
                        "example":4
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the change.",
                        "example":"Role name changed due to protocol amendment."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments relevant to this change.",
                        "example":"Role was updated by system admin."
                    },
                    "studyRoleVersion":{
                        "type":"string",
                        "description":"Version string for this study role entity.",
                        "example":"v2.2"
                    }
                },
                "description":"V2: Parameters for a study role, reflecting all entity and version metadata for audit and tracking.",
                "example":{
                    "id":"648C2FC0EA7E4F5B925F7A4FABCFFF04",
                    "studyRoleId":"B931A89223C2425EAF9574EBA59455CF",
                    "studyRoleName":"MONITOR",
                    "studyRoleDesc":"Monitor role grants viewing and edit capabilities.",
                    "studyRoleType":"SITE",
                    "studyRoleStatus":"ACTIVE",
                    "studyRoleCreationType":"AUTO",
                    "studyId":"37F6B1958D4B4C42A1F5D3B148651073",
                    "roleId":"E622F2E99B2740C785A927B16A5BDA1A",
                    "versionStart":"2021-01-01T00:00:00.000Z",
                    "versionEnd":"2023-12-31T23:59:59.000Z",
                    "operationType":"UPDATE",
                    "userId":"C2C1C99E3EF74650B989F2C53177B29E",
                    "objectVersionNumber":9,
                    "softwareVersionNumber":4,
                    "reason":"Role name changed due to protocol amendment.",
                    "comment":"Role was updated by system admin.",
                    "studyRoleVersion":"v2.2"
                }
            },
            "DisplayDepotDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the depot.",
                        "example":"CEE624A4E7EB43059C6AEC24673A288B"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Name of the depot.",
                        "example":"DepotA"
                    }
                },
                "description":"Represents a clinical depot.",
                "example":{
                    "id":"CEE624A4E7EB43059C6AEC24673A288B",
                    "depotName":"DepotA"
                }
            },
            "DisplayDepotsListDto":{
                "type":"object",
                "properties":{
                    "allDepots":{
                        "type":"boolean",
                        "description":"Whether all depots are associated.",
                        "example":false
                    },
                    "associatedDepots":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier for the depot.",
                                "example":"CEE624A4E7EB43059C6AEC24673A288B"
                            },
                            "depotName":{
                                "type":"string",
                                "description":"Name of the depot.",
                                "example":"DepotA"
                            }
                        },
                        "description":"Represents a clinical depot.",
                        "example":{
                            "id":"CEE624A4E7EB43059C6AEC24673A288B",
                            "depotName":"DepotA"
                        }
                    }
                },
                "description":"List of depots assigned to a user.",
                "example":{
                    "allDepots":false,
                    "associatedDepots":[
                        {
                            "id":"CEE624A4E7EB43059C6AEC24673A288B",
                            "depotName":"DepotA"
                        }
                    ]
                }
            },
            "DisplaySiteDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the site.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Name of the site.",
                        "example":"SiteA"
                    },
                    "roleName":{
                        "type":"string",
                        "writeOnly":true
                    }
                },
                "description":"Represents a clinical trial site.",
                "example":{
                    "id":"946E7D36031941CCA39CD2B2CFF2899B",
                    "siteName":"SiteA"
                }
            },
            "DisplaySitesListDto":{
                "type":"object",
                "properties":{
                    "allSites":{
                        "type":"boolean",
                        "description":"Whether all sites are associated.",
                        "example":false
                    },
                    "associatedSites":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier for the site.",
                                "format":"uuid"
                            },
                            "siteName":{
                                "type":"string",
                                "description":"Name of the site.",
                                "example":"SiteA"
                            },
                            "roleName":{
                                "type":"string",
                                "writeOnly":true
                            }
                        },
                        "description":"Represents a clinical trial site.",
                        "example":{
                            "id":"946E7D36031941CCA39CD2B2CFF2899B",
                            "siteName":"SiteA"
                        }
                    }
                },
                "description":"List of sites assigned to a user.",
                "example":{
                    "allSites":false,
                    "associatedSites":[
                        {
                            "id":"946E7D36031941CCA39CD2B2CFF2899B",
                            "siteName":"SiteA"
                        },
                        {
                            "id":"FE8925CFA8A74193A2E8D8326E7FEA88",
                            "siteName":"SiteB"
                        }
                    ]
                }
            },
            "DisplayStudyRoleDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the study role.",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    }
                },
                "description":"Represents a study-level role for a user.",
                "example":{
                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                    "studyRoleName":"LEAD_INVESTIGATOR"
                }
            },
            "DisplayUserModeRoleListDtoV2":{
                "type":"object",
                "properties":{
                    "modeName":{
                        "type":"string",
                        "description":"The mode the user is assigned to within a study (e.g., active, design, test, training).",
                        "example":"active"
                    },
                    "roles":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier for this user-role association.",
                                "format":"uuid"
                            },
                            "roleName":{
                                "type":"string",
                                "description":"Name of the role assigned to the user.",
                                "example":"STUDY_MANAGER"
                            }
                        },
                        "description":"Associates a user with a global role.",
                        "example":{
                            "id":"A519EF3C2B73455390CFF812AFF61519",
                            "roleName":"STUDY_MANAGER"
                        }
                    },
                    "studyRole":{
                        "$ref":"#/components/schemas/DisplayStudyRoleDto"
                    },
                    "sites":{
                        "$ref":"#/components/schemas/DisplaySitesListDto"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/DisplayDepotsListDto"
                    }
                },
                "description":"Represents a user mode assignment with site, role and depot details.",
                "example":{
                    "modeName":"active",
                    "roles":[
                        {
                            "id":"F7A0E5390A1F43A9AF5346EB88AC921A",
                            "roleName":"Rule Designer"
                        },
                        {
                            "id":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                            "roleName":"Site User"
                        }
                    ],
                    "studyRole":{
                        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                        "studyRoleName":"LEAD_INVESTIGATOR"
                    },
                    "sites":{
                        "allSites":false,
                        "associatedSites":[
                            {
                                "id":"946E7D36031941CCA39CD2B2CFF2899B",
                                "siteName":"SiteA"
                            },
                            {
                                "id":"FE8925CFA8A74193A2E8D8326E7FEA88",
                                "siteName":"SiteB"
                            }
                        ]
                    },
                    "depots":{
                        "allDepots":false,
                        "associatedDepots":[
                            {
                                "id":"CEE624A4E7EB43059C6AEC24673A288B",
                                "depotName":"DepotA"
                            }
                        ]
                    }
                }
            },
            "DisplayUserStudyModeRoleListDtoV2":{
                "type":"object",
                "properties":{
                    "effectiveStart":{
                        "type":"string",
                        "description":"The effective start date-time for this user-study association.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"The effective end date-time for this user-study association.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    },
                    "modes":{
                        "type":"object",
                        "properties":{
                            "modeName":{
                                "type":"string",
                                "description":"The mode the user is assigned to within a study (e.g., active, design, test, training).",
                                "example":"active"
                            },
                            "roles":{
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "type":"string",
                                        "description":"Unique identifier for this user-role association.",
                                        "format":"uuid"
                                    },
                                    "roleName":{
                                        "type":"string",
                                        "description":"Name of the role assigned to the user.",
                                        "example":"STUDY_MANAGER"
                                    }
                                },
                                "description":"Associates a user with a global role.",
                                "example":{
                                    "id":"A519EF3C2B73455390CFF812AFF61519",
                                    "roleName":"STUDY_MANAGER"
                                }
                            },
                            "studyRole":{
                                "$ref":"#/components/schemas/DisplayStudyRoleDto"
                            },
                            "sites":{
                                "$ref":"#/components/schemas/DisplaySitesListDto"
                            },
                            "depots":{
                                "$ref":"#/components/schemas/DisplayDepotsListDto"
                            }
                        },
                        "description":"Represents a user mode assignment with site, role and depot details.",
                        "example":{
                            "modeName":"active",
                            "roles":[
                                {
                                    "id":"F7A0E5390A1F43A9AF5346EB88AC921A",
                                    "roleName":"Rule Designer"
                                },
                                {
                                    "id":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                    "roleName":"Site User"
                                }
                            ],
                            "studyRole":{
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "studyRoleName":"LEAD_INVESTIGATOR"
                            },
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    {
                                        "id":"946E7D36031941CCA39CD2B2CFF2899B",
                                        "siteName":"SiteA"
                                    },
                                    {
                                        "id":"FE8925CFA8A74193A2E8D8326E7FEA88",
                                        "siteName":"SiteB"
                                    }
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    {
                                        "id":"CEE624A4E7EB43059C6AEC24673A288B",
                                        "depotName":"DepotA"
                                    }
                                ]
                            }
                        }
                    }
                },
                "description":"Represents a user's study mode roles with effective period and modes.",
                "example":{
                    "effectiveStart":"2020-06-17T10:15:30.000Z",
                    "effectiveEnd":"2025-06-17T10:15:30.000Z",
                    "modes":[
                        {
                            "modeName":"active",
                            "roles":[
                                {
                                    "id":"F7A0E5390A1F43A9AF5346EB88AC921A",
                                    "roleName":"Rule Designer"
                                },
                                {
                                    "id":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                    "roleName":"Site User"
                                }
                            ],
                            "studyRole":{
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "studyRoleName":"LEAD_INVESTIGATOR"
                            },
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    {
                                        "id":"946E7D36031941CCA39CD2B2CFF2899B",
                                        "siteName":"SiteA"
                                    },
                                    {
                                        "id":"FE8925CFA8A74193A2E8D8326E7FEA88",
                                        "siteName":"SiteB"
                                    }
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    {
                                        "id":"CEE624A4E7EB43059C6AEC24673A288B",
                                        "depotName":"DepotA"
                                    }
                                ]
                            }
                        }
                    ]
                }
            },
            "UpdateUserModeRoleListDtoV2":{
                "required":[
                    "modeName"
                ],
                "type":"object",
                "properties":{
                    "modeName":{
                        "type":"string",
                        "description":"The mode the user is assigned to within a study (e.g., active, design, test, training).",
                        "example":"active"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"ID of the study role for user assignment.",
                        "format":"uuid"
                    },
                    "sites":{
                        "$ref":"#/components/schemas/SitesListDto"
                    },
                    "depots":{
                        "$ref":"#/components/schemas/DepotsListDto"
                    }
                },
                "description":"Update details for a user mode assignment in request payload.",
                "example":{
                    "modeName":"active",
                    "studyRoleId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                    "sites":{
                        "allSites":false,
                        "associatedSites":[
                            "946E7D36031941CCA39CD2B2CFF2899B",
                            "FE8925CFA8A74193A2E8D8326E7FEA88"
                        ]
                    },
                    "depots":{
                        "allDepots":false,
                        "associatedDepots":[
                            "CEE624A4E7EB43059C6AEC24673A288B"
                        ]
                    }
                }
            },
            "UpdateUserStudyModeRoleListDtoV2":{
                "required":[
                    "effectiveEnd",
                    "effectiveStart",
                    "modes"
                ],
                "type":"object",
                "properties":{
                    "effectiveStart":{
                        "type":"string",
                        "description":"The effective start date-time for this user-study role update.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"The effective end date-time for this user-study role update.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    },
                    "modes":{
                        "required":[
                            "modeName"
                        ],
                        "type":"object",
                        "properties":{
                            "modeName":{
                                "type":"string",
                                "description":"The mode the user is assigned to within a study (e.g., active, design, test, training).",
                                "example":"active"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "description":"ID of the study role for user assignment.",
                                "format":"uuid"
                            },
                            "sites":{
                                "$ref":"#/components/schemas/SitesListDto"
                            },
                            "depots":{
                                "$ref":"#/components/schemas/DepotsListDto"
                            }
                        },
                        "description":"Update details for a user mode assignment in request payload.",
                        "example":{
                            "modeName":"active",
                            "studyRoleId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    "946E7D36031941CCA39CD2B2CFF2899B",
                                    "FE8925CFA8A74193A2E8D8326E7FEA88"
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    "CEE624A4E7EB43059C6AEC24673A288B"
                                ]
                            }
                        }
                    }
                },
                "description":"Request payload to update user study mode roles.",
                "example":{
                    "effectiveStart":"2020-06-17T10:15:30.000Z",
                    "effectiveEnd":"2025-06-17T10:15:30.000Z",
                    "modes":[
                        {
                            "modeName":"active",
                            "studyRoleId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    "946E7D36031941CCA39CD2B2CFF2899B",
                                    "FE8925CFA8A74193A2E8D8326E7FEA88"
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    "CEE624A4E7EB43059C6AEC24673A288B"
                                ]
                            }
                        }
                    ]
                }
            },
            "DisplayGlobalRoleUserDtoV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "firstName":{
                        "type":"string"
                    },
                    "lastName":{
                        "type":"string"
                    },
                    "userName":{
                        "type":"string"
                    },
                    "lastAccess":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "globalroles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DisplayUserRoleDtoV2"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2020-06-17T10:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date for the object's version validity. ISO 8601 format.",
                        "format":"date-time",
                        "example":"2025-06-17T10:15:30Z"
                    }
                }
            },
            "DisplayGlobalRoleUserListDtoV2":{
                "type":"object",
                "properties":{
                    "usersFound":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "firstUserReturned":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "usersReturned":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "globalusers":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DisplayGlobalRoleUserDtoV2"
                        }
                    }
                }
            },
            "DisplayRoleDto":{
                "required":[
                    "id",
                    "objectVersionNumber",
                    "roleCategory",
                    "roleCategoryLabel",
                    "roleName",
                    "roleNameLabel",
                    "roleSubCategoryLabel",
                    "roleType"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    },
                    "roleType":{
                        "type":"string"
                    },
                    "roleCategory":{
                        "type":"string"
                    },
                    "roleSubCategory":{
                        "type":"string"
                    },
                    "unblinded":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "roleNameLabel":{
                        "type":"string"
                    },
                    "roleCategoryLabel":{
                        "type":"string"
                    },
                    "roleSubCategoryLabel":{
                        "type":"string"
                    }
                }
            },
            "RespDisplayRoleDto":{
                "required":[
                    "id",
                    "objectVersionNumber",
                    "roleCategory",
                    "roleCategoryLabel",
                    "roleName",
                    "roleNameLabel",
                    "roleSubCategoryLabel",
                    "roleType"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    },
                    "roleType":{
                        "type":"string"
                    },
                    "roleCategory":{
                        "type":"string"
                    },
                    "roleSubCategory":{
                        "type":"string"
                    },
                    "unblinded":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "roleNameLabel":{
                        "type":"string"
                    },
                    "roleCategoryLabel":{
                        "type":"string"
                    },
                    "roleSubCategoryLabel":{
                        "type":"string"
                    }
                }
            },
            "DisplayStudyUserListDtoV2":{
                "title":"DisplayStudyUserListDtoV2",
                "type":"object",
                "properties":{
                    "usersFound":{
                        "type":"integer",
                        "description":"The total number of users found matching the query.",
                        "format":"int32",
                        "example":2
                    },
                    "firstUserReturned":{
                        "type":"integer",
                        "description":"Index of the first user returned in this page.",
                        "format":"int32",
                        "example":1
                    },
                    "usersReturned":{
                        "type":"integer",
                        "description":"How many users are present in this response.",
                        "format":"int32",
                        "example":2
                    },
                    "users":{
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier of the user within the study.",
                                "format":"uuid"
                            },
                            "firstName":{
                                "type":"string",
                                "description":"User's first name.",
                                "example":"John"
                            },
                            "lastName":{
                                "type":"string",
                                "description":"User's last name.",
                                "example":"Doe"
                            },
                            "email":{
                                "type":"string",
                                "description":"User's email address.",
                                "format":"email",
                                "example":"studyuser@example.com"
                            },
                            "phone":{
                                "type":"string",
                                "description":"User's phone number.",
                                "example":"+1-222-333-4444"
                            },
                            "userName":{
                                "type":"string",
                                "description":"Username used for authentication.",
                                "example":"jdoe"
                            },
                            "lastAccess":{
                                "type":"string",
                                "description":"Timestamp (ISO8601/Z) when user last accessed the study.",
                                "format":"date-time",
                                "example":"2022-06-20T13:51:51Z"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "description":"Effective start date for user's study access (ISO8601/Z).",
                                "format":"date-time",
                                "example":"2021-01-17T01:00:00Z"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "description":"Effective end date for user's study access (ISO8601/Z).",
                                "format":"date-time",
                                "example":"2025-01-17T01:00:00Z"
                            },
                            "roles":{
                                "type":"array",
                                "description":"Roles assigned to the user within the study.",
                                "example":[
                                    "Rule Designer",
                                    "Site User"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"Roles assigned to the user within the study.",
                                    "example":"[\"Rule Designer\",\"Site User\"]"
                                }
                            },
                            "sites":{
                                "$ref":"#/components/schemas/DisplaySiteNamesListDto"
                            },
                            "depots":{
                                "$ref":"#/components/schemas/DisplayDepotNamesListDto"
                            }
                        },
                        "description":"Version 2: Extends DisplayStudyUserDto to include user email and phone information.",
                        "example":{
                            "id":"7DC8B36EA5C04E1F9D11C0E5F3FFF789",
                            "firstName":"Jane",
                            "lastName":"Smith",
                            "userName":"jsmith",
                            "lastAccess":"2023-12-19T12:42:11.000Z",
                            "effectiveStart":"2021-06-11T10:00:00.000Z",
                            "effectiveEnd":"2025-09-21T10:00:00.000Z",
                            "roles":[
                                "Site User",
                                "Rule Designer"
                            ],
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    "7DC8B36EA5C04E1F9D11C0E5F3FFF780",
                                    "6DC8B36EA5C04E1F9D11C0E5F3FFF789"
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    "7DC8B36EA5W04E1F9D11C0E5F3FFF789"
                                ]
                            },
                            "email":"studyuser@example.com",
                            "phone":"+1-222-333-4444"
                        }
                    }
                },
                "description":"Contains list of users information"
            },
            "RespStudyRoleDtoParams":{
                "required":[
                    "studyRoleCreationType",
                    "studyRoleDesc",
                    "studyRoleDescLabel",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleNameLabel",
                    "studyRoleStatus",
                    "studyRoleType",
                    "studyRoleTypeLabel"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string"
                    },
                    "studyRoleDesc":{
                        "type":"string"
                    },
                    "studyRoleType":{
                        "type":"string"
                    },
                    "studyRoleStatus":{
                        "type":"string"
                    },
                    "studyRoleNameLabel":{
                        "type":"string"
                    },
                    "studyRoleDescLabel":{
                        "type":"string"
                    },
                    "studyRoleTypeLabel":{
                        "type":"string"
                    },
                    "studyRoleCreationType":{
                        "type":"string"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "studyRoleVersion":{
                        "type":"string"
                    },
                    "roles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RoleDtoParams"
                        }
                    }
                }
            },
            "RoleDtoParams":{
                "required":[
                    "roleCategory",
                    "roleCategoryLabel",
                    "roleId",
                    "roleName",
                    "roleNameLabel",
                    "roleType",
                    "roleTypeLabel"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "rightId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    },
                    "roleType":{
                        "type":"string"
                    },
                    "roleCategory":{
                        "type":"string"
                    },
                    "roleSubCategory":{
                        "type":"string"
                    },
                    "roleNameLabel":{
                        "type":"string"
                    },
                    "roleTypeLabel":{
                        "type":"string"
                    },
                    "roleCategoryLabel":{
                        "type":"string"
                    },
                    "roleSubCategoryLabel":{
                        "type":"string"
                    },
                    "unblinded":{
                        "type":"string"
                    },
                    "roleSeq":{
                        "type":"number"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    }
                }
            },
            "DisplayModeDto":{
                "type":"object",
                "properties":{
                    "modeId":{
                        "type":"string",
                        "description":"Unique identifier for the mode.",
                        "format":"uuid"
                    },
                    "modeName":{
                        "type":"string",
                        "description":"Display name of the mode (e.g., active, design, test, training).",
                        "example":"active"
                    },
                    "modeType":{
                        "type":"string",
                        "description":"Type of the mode.",
                        "example":"main"
                    },
                    "modeSeq":{
                        "type":"number",
                        "description":"Sequence/order number of the mode.",
                        "format":"int32",
                        "example":1
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start date/time for this particular mode version.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End date/time for this particular mode version.",
                        "format":"date-time",
                        "example":"2024-01-01T09:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type (add, update, delete).",
                        "example":"add"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User identifier who performed the operation.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version tracking number.",
                        "format":"int32",
                        "example":2
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version for this mode definition.",
                        "format":"int32",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for operation or mode change.",
                        "example":"Scheduled migration"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Free-text comment for the mode assignment.",
                        "example":"Automatically assigned at user creation."
                    }
                },
                "description":"Represents a study assignment mode, including metadata and display attributes.",
                "example":{
                    "modeId":"CFA1426E4B9646299E692D9403AC5019",
                    "modeName":"active",
                    "modeType":"main",
                    "modeSeq":1,
                    "versionStart":"2023-01-01T09:00:00.000Z",
                    "versionEnd":"2024-01-01T09:00:00.000Z",
                    "operationType":"add",
                    "userId":"BE2376BB5B0D469EBFA78DE98D954327",
                    "objectVersionNumber":2,
                    "softwareVersionNumber":3,
                    "reason":"Scheduled migration",
                    "comment":"Automatically assigned at user creation."
                }
            },
            "DisplayUserModeStudyRolesListDtoV3":{
                "type":"object",
                "properties":{
                    "mode":{
                        "$ref":"#/components/schemas/DisplayModeDto"
                    },
                    "studyRoles":{
                        "required":[
                            "studyRoleCreationType",
                            "studyRoleDesc",
                            "studyRoleId",
                            "studyRoleName",
                            "studyRoleStatus",
                            "studyRoleType"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "type":"string",
                                "description":"The study to which the role assignment applies.",
                                "format":"uuid"
                            },
                            "authorizedUserId":{
                                "type":"string",
                                "description":"User ID of person being granted the study role.",
                                "format":"uuid"
                            },
                            "modeId":{
                                "type":"string",
                                "description":"The study assignment mode for this role.",
                                "format":"uuid"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "description":"Unique identifier for the study role assigned.",
                                "format":"uuid"
                            },
                            "roleId":{
                                "type":"string",
                                "description":"Application role ID (if applicable).",
                                "format":"uuid"
                            },
                            "studyRoleName":{
                                "type":"string",
                                "description":"Display name of the study role.",
                                "example":"LEAD_INVESTIGATOR"
                            },
                            "studyRoleDesc":{
                                "type":"string",
                                "description":"Description of the study role.",
                                "example":"Main PI for the study"
                            },
                            "studyRoleType":{
                                "type":"string",
                                "description":"Type of the study role.",
                                "example":"Primary"
                            },
                            "studyRoleStatus":{
                                "type":"string",
                                "description":"Current status of the study role.",
                                "example":"ENABLED"
                            },
                            "studyRoleCreationType":{
                                "type":"string",
                                "description":"Creation type for the study role.",
                                "example":"auto"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "description":"Start timestamp for when the study role is effective.",
                                "format":"date-time",
                                "example":"2021-05-01T08:30:00Z"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "description":"End timestamp for when the study role is no longer effective.",
                                "format":"date-time",
                                "example":"2025-01-01T08:30:00Z"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start version timestamp for this study role definition.",
                                "format":"date-time",
                                "example":"2021-04-01T08:30:00Z"
                            },
                            "versionEnd":{
                                "type":"string",
                                "description":"End version timestamp for this study role definition.",
                                "format":"date-time",
                                "example":"2026-01-01T08:30:00Z"
                            },
                            "operationType":{
                                "type":"string",
                                "description":"The operation performed on the study role record.",
                                "example":"add"
                            },
                            "userId":{
                                "type":"string",
                                "description":"User executing the operation.",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number",
                                "description":"Version control for the object.",
                                "format":"int32",
                                "example":1
                            },
                            "softwareVersionNumber":{
                                "type":"number",
                                "description":"Software schema version for the study role.",
                                "format":"int32",
                                "example":2
                            },
                            "reason":{
                                "type":"string",
                                "description":"Reason for the study role assignment.",
                                "example":"Initial study role assignment"
                            },
                            "comment":{
                                "type":"string",
                                "description":"Additional details or comments.",
                                "example":"Added due to auto-enrollment"
                            },
                            "studyRoleVersion":{
                                "type":"string",
                                "description":"Business/version tag for this study role.",
                                "example":"v3.5"
                            },
                            "roles":{
                                "required":[
                                    "id",
                                    "roleCategory",
                                    "roleName",
                                    "roleType"
                                ],
                                "type":"object",
                                "properties":{
                                    "studyId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "authorizedUserId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "modeId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyRoleId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "id":{
                                        "type":"string",
                                        "description":"Unique identifier of the application role.",
                                        "format":"uuid"
                                    },
                                    "rightId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "roleName":{
                                        "type":"string",
                                        "description":"Human-readable role name.",
                                        "example":"VIEWER"
                                    },
                                    "roleType":{
                                        "type":"string",
                                        "description":"Type of the role (e.g., Application, Study, Global).",
                                        "example":"Application"
                                    },
                                    "roleCategory":{
                                        "type":"string",
                                        "description":"Business category of the role.",
                                        "example":"Study"
                                    },
                                    "roleSubCategory":{
                                        "type":"string"
                                    },
                                    "unblinded":{
                                        "type":"string",
                                        "description":"Indicates if the role is unblinded (Y/N).",
                                        "example":"Y"
                                    },
                                    "roleSeq":{
                                        "type":"number",
                                        "description":"Role sequence/order in assignment.",
                                        "format":"int32",
                                        "example":1
                                    },
                                    "effectiveStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "effectiveEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "operationType":{
                                        "type":"string"
                                    },
                                    "userId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "objectVersionNumber":{
                                        "type":"number"
                                    },
                                    "softwareVersionNumber":{
                                        "type":"number"
                                    },
                                    "reason":{
                                        "type":"string"
                                    },
                                    "comment":{
                                        "type":"string"
                                    }
                                },
                                "description":"Represents an application role and its assignment attributes, including identifiers and display information.",
                                "example":{
                                    "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                                    "roleName":"Site User",
                                    "roleType":"Application",
                                    "roleCategory":"Study",
                                    "roleSeq":1,
                                    "unblinded":"Y"
                                }
                            }
                        },
                        "description":"Study role assignment details for a user, including all attributes and versioning for v3 API.",
                        "example":{
                            "studyId":"C66E641816EF4E2798AFFEEDD8D5B1E8",
                            "authorizedUserId":"A6706B7CC5904EF79F9D5AE35668D175",
                            "modeId":"4A3EDAA8292245C6AA01D8975A7D46E1",
                            "studyRoleId":"68B1C4F7CA2E7C90AFA8B5D8F18A5B4F",
                            "roleId":"5E40DF7E44E74FED91B1565DCF4FBC8A",
                            "studyRoleName":"LEAD_INVESTIGATOR",
                            "studyRoleDesc":"Main PI for the study",
                            "studyRoleType":"Primary",
                            "studyRoleStatus":"ENABLED",
                            "studyRoleCreationType":"auto",
                            "effectiveStart":"2021-05-01T08:30:00.000Z",
                            "effectiveEnd":"2025-01-01T08:30:00.000Z",
                            "versionStart":"2021-04-01T08:30:00.000Z",
                            "versionEnd":"2026-01-01T08:30:00.000Z",
                            "operationType":"add",
                            "userId":"24BADE98851C492A8C5D29DD8F9B1E36",
                            "objectVersionNumber":1,
                            "softwareVersionNumber":2,
                            "reason":"Initial study role assignment",
                            "comment":"Added due to auto-enrollment",
                            "studyRoleVersion":"v3.5",
                            "roles":[
                                {
                                    "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                                    "roleName":"Site User"
                                }
                            ]
                        }
                    },
                    "roles":{
                        "required":[
                            "id",
                            "roleCategory",
                            "roleName",
                            "roleType"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "modeId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier of the application role.",
                                "format":"uuid"
                            },
                            "rightId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "roleName":{
                                "type":"string",
                                "description":"Human-readable role name.",
                                "example":"VIEWER"
                            },
                            "roleType":{
                                "type":"string",
                                "description":"Type of the role (e.g., Application, Study, Global).",
                                "example":"Application"
                            },
                            "roleCategory":{
                                "type":"string",
                                "description":"Business category of the role.",
                                "example":"Study"
                            },
                            "roleSubCategory":{
                                "type":"string"
                            },
                            "unblinded":{
                                "type":"string",
                                "description":"Indicates if the role is unblinded (Y/N).",
                                "example":"Y"
                            },
                            "roleSeq":{
                                "type":"number",
                                "description":"Role sequence/order in assignment.",
                                "format":"int32",
                                "example":1
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents an application role and its assignment attributes, including identifiers and display information.",
                        "example":{
                            "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                            "roleName":"Site User",
                            "roleType":"Application",
                            "roleCategory":"Study",
                            "roleSeq":1,
                            "unblinded":"Y"
                        }
                    },
                    "sites":{
                        "type":"object",
                        "properties":{
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "mode":{
                                "type":"string"
                            },
                            "nameSeq":{
                                "type":"number"
                            },
                            "name":{
                                "type":"string",
                                "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                "example":"associatedSites"
                            },
                            "value":{
                                "type":"string",
                                "description":"ID or logical value mapped to this property.",
                                "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents a user's mapping to sites or depots for a study/mode.",
                        "example":{
                            "name":"associatedSites",
                            "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                            "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                            "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                            "mode":"active"
                        }
                    },
                    "depots":{
                        "type":"object",
                        "properties":{
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "mode":{
                                "type":"string"
                            },
                            "nameSeq":{
                                "type":"number"
                            },
                            "name":{
                                "type":"string",
                                "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                "example":"associatedSites"
                            },
                            "value":{
                                "type":"string",
                                "description":"ID or logical value mapped to this property.",
                                "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents a user's mapping to sites or depots for a study/mode.",
                        "example":{
                            "name":"associatedSites",
                            "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                            "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                            "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                            "mode":"active"
                        }
                    }
                },
                "description":"Represents a user's mode assignment in v3, including roles, study roles, sites and depots.",
                "example":{
                    "mode":{
                        "modeId":"CFA1426E4B9646299E692D9403AC5019",
                        "modeName":"active",
                        "modeType":"main",
                        "modeSeq":1,
                        "versionStart":"2023-01-01T09:00:00.000Z",
                        "versionEnd":"2024-01-01T09:00:00.000Z",
                        "operationType":"add",
                        "userId":"BE2376BB5B0D469EBFA78DE98D954327",
                        "objectVersionNumber":2,
                        "softwareVersionNumber":3,
                        "reason":"Scheduled migration",
                        "comment":"Automatically assigned at user creation."
                    },
                    "studyRoles":[
                        {
                            "studyId":"C66E641816EF4E2798AFFEEDD8D5B1E8",
                            "authorizedUserId":"A6706B7CC5904EF79F9D5AE35668D175",
                            "modeId":"4A3EDAA8292245C6AA01D8975A7D46E1",
                            "studyRoleId":"68B1C4F7CA2E7C90AFA8B5D8F18A5B4F",
                            "roleId":"5E40DF7E44E74FED91B1565DCF4FBC8A",
                            "studyRoleName":"LEAD_INVESTIGATOR",
                            "studyRoleDesc":"Main PI for the study",
                            "studyRoleType":"Primary",
                            "studyRoleStatus":"ENABLED",
                            "studyRoleCreationType":"auto",
                            "effectiveStart":"2021-05-01T08:30:00.000Z",
                            "effectiveEnd":"2025-01-01T08:30:00.000Z",
                            "versionStart":"2021-04-01T08:30:00.000Z",
                            "versionEnd":"2026-01-01T08:30:00.000Z",
                            "operationType":"add",
                            "userId":"24BADE98851C492A8C5D29DD8F9B1E36",
                            "objectVersionNumber":1,
                            "softwareVersionNumber":2,
                            "reason":"Initial study role assignment",
                            "comment":"Added due to auto-enrollment",
                            "studyRoleVersion":"v3.5",
                            "roles":[
                                {
                                    "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                                    "roleName":"Site User",
                                    "roleType":"Application",
                                    "roleCategory":"Study",
                                    "roleSeq":1,
                                    "unblinded":"Y"
                                }
                            ]
                        }
                    ],
                    "roles":[
                        {
                            "id":"7D96866A5B1A43388B780C6D15E27ACD",
                            "roleName":"MONITOR",
                            "roleType":"Application",
                            "roleCategory":"Monitor",
                            "roleSeq":2,
                            "unblinded":"N"
                        }
                    ],
                    "sites":[
                        {
                            "name":"associatedSites",
                            "value":"90C93FDF399E4DED99A0B7EF4E189C32"
                        },
                        {
                            "name":"associatedSites",
                            "value":"8188DBB5B5A9486B9767ED7263DA626E"
                        },
                        {
                            "name":"allSites",
                            "value":"false"
                        }
                    ],
                    "depots":[
                        {
                            "name":"associatedDepots",
                            "value":"BD561E1A5BD748FFA3505A2B2E493C3A"
                        },
                        {
                            "name":"allDepots",
                            "value":"false"
                        }
                    ]
                }
            },
            "DisplayUserSitesDepotsDto":{
                "type":"object",
                "properties":{
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "mode":{
                        "type":"string"
                    },
                    "nameSeq":{
                        "type":"number"
                    },
                    "name":{
                        "type":"string",
                        "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                        "example":"associatedSites"
                    },
                    "value":{
                        "type":"string",
                        "description":"ID or logical value mapped to this property.",
                        "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    }
                },
                "description":"Represents a user's mapping to sites or depots for a study/mode.",
                "example":{
                    "name":"associatedSites",
                    "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                    "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                    "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                    "mode":"active"
                }
            },
            "StudyRoleDtoParamsV3":{
                "required":[
                    "studyRoleCreationType",
                    "studyRoleDesc",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleStatus",
                    "studyRoleType"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"The study to which the role assignment applies.",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "description":"User ID of person being granted the study role.",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "description":"The study assignment mode for this role.",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "description":"Unique identifier for the study role assigned.",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "description":"Application role ID (if applicable).",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string",
                        "description":"Display name of the study role.",
                        "example":"LEAD_INVESTIGATOR"
                    },
                    "studyRoleDesc":{
                        "type":"string",
                        "description":"Description of the study role.",
                        "example":"Main PI for the study"
                    },
                    "studyRoleType":{
                        "type":"string",
                        "description":"Type of the study role.",
                        "example":"Primary"
                    },
                    "studyRoleStatus":{
                        "type":"string",
                        "description":"Current status of the study role.",
                        "example":"ENABLED"
                    },
                    "studyRoleCreationType":{
                        "type":"string",
                        "description":"Creation type for the study role.",
                        "example":"auto"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "description":"Start timestamp for when the study role is effective.",
                        "format":"date-time",
                        "example":"2021-05-01T08:30:00Z"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "description":"End timestamp for when the study role is no longer effective.",
                        "format":"date-time",
                        "example":"2025-01-01T08:30:00Z"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start version timestamp for this study role definition.",
                        "format":"date-time",
                        "example":"2021-04-01T08:30:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End version timestamp for this study role definition.",
                        "format":"date-time",
                        "example":"2026-01-01T08:30:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"The operation performed on the study role record.",
                        "example":"add"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User executing the operation.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Version control for the object.",
                        "format":"int32",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software schema version for the study role.",
                        "format":"int32",
                        "example":2
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the study role assignment.",
                        "example":"Initial study role assignment"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional details or comments.",
                        "example":"Added due to auto-enrollment"
                    },
                    "studyRoleVersion":{
                        "type":"string",
                        "description":"Business/version tag for this study role.",
                        "example":"v3.5"
                    },
                    "roles":{
                        "required":[
                            "id",
                            "roleCategory",
                            "roleName",
                            "roleType"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "modeId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier of the application role.",
                                "format":"uuid"
                            },
                            "rightId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "roleName":{
                                "type":"string",
                                "description":"Human-readable role name.",
                                "example":"VIEWER"
                            },
                            "roleType":{
                                "type":"string",
                                "description":"Type of the role (e.g., Application, Study, Global).",
                                "example":"Application"
                            },
                            "roleCategory":{
                                "type":"string",
                                "description":"Business category of the role.",
                                "example":"Study"
                            },
                            "roleSubCategory":{
                                "type":"string"
                            },
                            "unblinded":{
                                "type":"string",
                                "description":"Indicates if the role is unblinded (Y/N).",
                                "example":"Y"
                            },
                            "roleSeq":{
                                "type":"number",
                                "description":"Role sequence/order in assignment.",
                                "format":"int32",
                                "example":1
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents an application role and its assignment attributes, including identifiers and display information.",
                        "example":{
                            "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                            "roleName":"Site User",
                            "roleType":"Application",
                            "roleCategory":"Study",
                            "roleSeq":1,
                            "unblinded":"Y"
                        }
                    }
                },
                "description":"Study role assignment details for a user, including all attributes and versioning for v3 API.",
                "example":{
                    "studyId":"C66E641816EF4E2798AFFEEDD8D5B1E8",
                    "authorizedUserId":"A6706B7CC5904EF79F9D5AE35668D175",
                    "modeId":"4A3EDAA8292245C6AA01D8975A7D46E1",
                    "studyRoleId":"68B1C4F7CA2E7C90AFA8B5D8F18A5B4F",
                    "roleId":"5E40DF7E44E74FED91B1565DCF4FBC8A",
                    "studyRoleName":"LEAD_INVESTIGATOR",
                    "studyRoleDesc":"Main PI for the study",
                    "studyRoleType":"Primary",
                    "studyRoleStatus":"ENABLED",
                    "studyRoleCreationType":"auto",
                    "effectiveStart":"2021-05-01T08:30:00.000Z",
                    "effectiveEnd":"2025-01-01T08:30:00.000Z",
                    "versionStart":"2021-04-01T08:30:00.000Z",
                    "versionEnd":"2026-01-01T08:30:00.000Z",
                    "operationType":"add",
                    "userId":"24BADE98851C492A8C5D29DD8F9B1E36",
                    "objectVersionNumber":1,
                    "softwareVersionNumber":2,
                    "reason":"Initial study role assignment",
                    "comment":"Added due to auto-enrollment",
                    "studyRoleVersion":"v3.5",
                    "roles":[
                        {
                            "id":"37EFDC494C944E58ADAC8DA952A2C60C",
                            "roleName":"Site User"
                        }
                    ]
                }
            },
            "DisplayUserStudyAccessDetails":{
                "type":"object",
                "properties":{
                    "lastAccess":{
                        "type":"string",
                        "description":"UTC ISO 8601 timestamp for when the user last accessed this study.",
                        "format":"date-time",
                        "example":"2024-10-26T18:41:00Z"
                    },
                    "userStudyModeDetails":{
                        "type":"object",
                        "properties":{
                            "mode":{
                                "$ref":"#/components/schemas/DisplayModeDto"
                            },
                            "studyRoles":{
                                "required":[
                                    "studyRoleCreationType",
                                    "studyRoleDesc",
                                    "studyRoleDescLabel",
                                    "studyRoleId",
                                    "studyRoleName",
                                    "studyRoleNameLabel",
                                    "studyRoleStatus",
                                    "studyRoleType",
                                    "studyRoleTypeLabel"
                                ],
                                "type":"object",
                                "properties":{
                                    "studyId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "authorizedUserId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "modeId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyRoleId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "roleId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyRoleName":{
                                        "type":"string"
                                    },
                                    "studyRoleDesc":{
                                        "type":"string"
                                    },
                                    "studyRoleType":{
                                        "type":"string"
                                    },
                                    "studyRoleStatus":{
                                        "type":"string"
                                    },
                                    "studyRoleNameLabel":{
                                        "type":"string"
                                    },
                                    "studyRoleDescLabel":{
                                        "type":"string"
                                    },
                                    "studyRoleTypeLabel":{
                                        "type":"string"
                                    },
                                    "studyRoleCreationType":{
                                        "type":"string"
                                    },
                                    "effectiveStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "effectiveEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "operationType":{
                                        "type":"string"
                                    },
                                    "userId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "objectVersionNumber":{
                                        "type":"number"
                                    },
                                    "softwareVersionNumber":{
                                        "type":"number"
                                    },
                                    "reason":{
                                        "type":"string"
                                    },
                                    "comment":{
                                        "type":"string"
                                    },
                                    "studyRoleVersion":{
                                        "type":"string"
                                    },
                                    "roles":{
                                        "type":"array",
                                        "items":{
                                            "$ref":"#/components/schemas/RoleDtoParams"
                                        }
                                    }
                                },
                                "description":"List of study-level roles assigned to this user in this mode."
                            },
                            "roles":{
                                "required":[
                                    "roleCategory",
                                    "roleCategoryLabel",
                                    "roleId",
                                    "roleName",
                                    "roleNameLabel",
                                    "roleType",
                                    "roleTypeLabel"
                                ],
                                "type":"object",
                                "properties":{
                                    "studyId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "authorizedUserId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "modeId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyRoleId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "roleId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "rightId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "roleName":{
                                        "type":"string"
                                    },
                                    "roleType":{
                                        "type":"string"
                                    },
                                    "roleCategory":{
                                        "type":"string"
                                    },
                                    "roleSubCategory":{
                                        "type":"string"
                                    },
                                    "roleNameLabel":{
                                        "type":"string"
                                    },
                                    "roleTypeLabel":{
                                        "type":"string"
                                    },
                                    "roleCategoryLabel":{
                                        "type":"string"
                                    },
                                    "roleSubCategoryLabel":{
                                        "type":"string"
                                    },
                                    "unblinded":{
                                        "type":"string"
                                    },
                                    "roleSeq":{
                                        "type":"number"
                                    },
                                    "effectiveStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "effectiveEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "operationType":{
                                        "type":"string"
                                    },
                                    "userId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "objectVersionNumber":{
                                        "type":"number"
                                    },
                                    "softwareVersionNumber":{
                                        "type":"number"
                                    },
                                    "reason":{
                                        "type":"string"
                                    },
                                    "comment":{
                                        "type":"string"
                                    }
                                },
                                "description":"List of global roles with ID and roleName, assigned to the user in this mode."
                            },
                            "sites":{
                                "type":"object",
                                "properties":{
                                    "authorizedUserId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "mode":{
                                        "type":"string"
                                    },
                                    "nameSeq":{
                                        "type":"number"
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                        "example":"associatedSites"
                                    },
                                    "value":{
                                        "type":"string",
                                        "description":"ID or logical value mapped to this property.",
                                        "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                                    },
                                    "effectiveStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "effectiveEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "operationType":{
                                        "type":"string"
                                    },
                                    "userId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "objectVersionNumber":{
                                        "type":"number"
                                    },
                                    "softwareVersionNumber":{
                                        "type":"number"
                                    },
                                    "reason":{
                                        "type":"string"
                                    },
                                    "comment":{
                                        "type":"string"
                                    }
                                },
                                "description":"Represents a user's mapping to sites or depots for a study/mode.",
                                "example":{
                                    "name":"associatedSites",
                                    "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                                    "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                                    "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                                    "mode":"active"
                                }
                            },
                            "depots":{
                                "type":"object",
                                "properties":{
                                    "authorizedUserId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "studyId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "mode":{
                                        "type":"string"
                                    },
                                    "nameSeq":{
                                        "type":"number"
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                        "example":"associatedSites"
                                    },
                                    "value":{
                                        "type":"string",
                                        "description":"ID or logical value mapped to this property.",
                                        "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                                    },
                                    "effectiveStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "effectiveEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionStart":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "versionEnd":{
                                        "type":"string",
                                        "format":"date-time"
                                    },
                                    "operationType":{
                                        "type":"string"
                                    },
                                    "userId":{
                                        "type":"string",
                                        "format":"uuid"
                                    },
                                    "objectVersionNumber":{
                                        "type":"number"
                                    },
                                    "softwareVersionNumber":{
                                        "type":"number"
                                    },
                                    "reason":{
                                        "type":"string"
                                    },
                                    "comment":{
                                        "type":"string"
                                    }
                                },
                                "description":"Represents a user's mapping to sites or depots for a study/mode.",
                                "example":{
                                    "name":"associatedSites",
                                    "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                                    "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                                    "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                                    "mode":"active"
                                }
                            }
                        },
                        "description":"Assignment and role details for a user in a specific study mode, including role, studyRole, sites, and depots assignments.",
                        "example":{
                            "mode":{
                                "modeName":"active",
                                "effectiveStart":"2021-01-01T00:00:00.000Z",
                                "effectiveEnd":"2026-01-01T00:00:00.000Z"
                            },
                            "studyRoles":[
                                {
                                    "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                    "studyRoleName":"LEAD_INVESTIGATOR"
                                }
                            ],
                            "roles":[
                                {
                                    "roleId":"A519EF3C2B73455390CFF812AFF61519",
                                    "roleName":"Rule Designer"
                                },
                                {
                                    "roleId":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                    "roleName":"Site User"
                                }
                            ],
                            "sites":[
                                {
                                    "allSites":false,
                                    "associatedSites":[
                                        "946E7D36031941CCA39CD2B2CFF2899B",
                                        "FE8925CFA8A74193A2E8D8326E7FEA88"
                                    ]
                                }
                            ],
                            "depots":[
                                {
                                    "allDepots":false,
                                    "associatedDepots":[
                                        "CEE624A4E7EB43059C6AEC24673A288B"
                                    ]
                                }
                            ]
                        }
                    }
                },
                "description":"Provides a user's last access timestamp and a list of their mode/role/site/depot assignments for a study.",
                "example":{
                    "lastAccess":"2024-10-26T18:41:00.000Z",
                    "userStudyModeDetails":[
                        {
                            "modeName":"active",
                            "effectiveStart":"2021-01-01T00:00:00.000Z",
                            "effectiveEnd":"2026-01-01T00:00:00.000Z",
                            "roles":[
                                {
                                    "roleId":"A519EF3C2B73455390CFF812AFF61519",
                                    "roleName":"Rule Designer"
                                },
                                {
                                    "roleId":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                                    "roleName":"Site User"
                                }
                            ],
                            "studyRole":{
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "studyRoleName":"LEAD_INVESTIGATOR"
                            },
                            "sites":{
                                "allSites":false,
                                "associatedSites":[
                                    "946E7D36031941CCA39CD2B2CFF2899B",
                                    "FE8925CFA8A74193A2E8D8326E7FEA88"
                                ]
                            },
                            "depots":{
                                "allDepots":false,
                                "associatedDepots":[
                                    "CEE624A4E7EB43059C6AEC24673A288B"
                                ]
                            }
                        }
                    ]
                }
            },
            "UserStudyModeDetails":{
                "type":"object",
                "properties":{
                    "mode":{
                        "$ref":"#/components/schemas/DisplayModeDto"
                    },
                    "studyRoles":{
                        "required":[
                            "studyRoleCreationType",
                            "studyRoleDesc",
                            "studyRoleDescLabel",
                            "studyRoleId",
                            "studyRoleName",
                            "studyRoleNameLabel",
                            "studyRoleStatus",
                            "studyRoleType",
                            "studyRoleTypeLabel"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "modeId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "roleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyRoleName":{
                                "type":"string"
                            },
                            "studyRoleDesc":{
                                "type":"string"
                            },
                            "studyRoleType":{
                                "type":"string"
                            },
                            "studyRoleStatus":{
                                "type":"string"
                            },
                            "studyRoleNameLabel":{
                                "type":"string"
                            },
                            "studyRoleDescLabel":{
                                "type":"string"
                            },
                            "studyRoleTypeLabel":{
                                "type":"string"
                            },
                            "studyRoleCreationType":{
                                "type":"string"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            },
                            "studyRoleVersion":{
                                "type":"string"
                            },
                            "roles":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/RoleDtoParams"
                                }
                            }
                        },
                        "description":"List of study-level roles assigned to this user in this mode."
                    },
                    "roles":{
                        "required":[
                            "roleCategory",
                            "roleCategoryLabel",
                            "roleId",
                            "roleName",
                            "roleNameLabel",
                            "roleType",
                            "roleTypeLabel"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "modeId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyRoleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "roleId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "rightId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "roleName":{
                                "type":"string"
                            },
                            "roleType":{
                                "type":"string"
                            },
                            "roleCategory":{
                                "type":"string"
                            },
                            "roleSubCategory":{
                                "type":"string"
                            },
                            "roleNameLabel":{
                                "type":"string"
                            },
                            "roleTypeLabel":{
                                "type":"string"
                            },
                            "roleCategoryLabel":{
                                "type":"string"
                            },
                            "roleSubCategoryLabel":{
                                "type":"string"
                            },
                            "unblinded":{
                                "type":"string"
                            },
                            "roleSeq":{
                                "type":"number"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"List of global roles with ID and roleName, assigned to the user in this mode."
                    },
                    "sites":{
                        "type":"object",
                        "properties":{
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "mode":{
                                "type":"string"
                            },
                            "nameSeq":{
                                "type":"number"
                            },
                            "name":{
                                "type":"string",
                                "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                "example":"associatedSites"
                            },
                            "value":{
                                "type":"string",
                                "description":"ID or logical value mapped to this property.",
                                "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents a user's mapping to sites or depots for a study/mode.",
                        "example":{
                            "name":"associatedSites",
                            "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                            "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                            "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                            "mode":"active"
                        }
                    },
                    "depots":{
                        "type":"object",
                        "properties":{
                            "authorizedUserId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "studyId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "mode":{
                                "type":"string"
                            },
                            "nameSeq":{
                                "type":"number"
                            },
                            "name":{
                                "type":"string",
                                "description":"Name for the mapping group (e.g., 'associatedSites', 'associatedDepots', 'allSites', 'allDepots').",
                                "example":"associatedSites"
                            },
                            "value":{
                                "type":"string",
                                "description":"ID or logical value mapped to this property.",
                                "example":"90C93FDF399E4DED99A0B7EF4E189C32"
                            },
                            "effectiveStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "effectiveEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "versionEnd":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "operationType":{
                                "type":"string"
                            },
                            "userId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "objectVersionNumber":{
                                "type":"number"
                            },
                            "softwareVersionNumber":{
                                "type":"number"
                            },
                            "reason":{
                                "type":"string"
                            },
                            "comment":{
                                "type":"string"
                            }
                        },
                        "description":"Represents a user's mapping to sites or depots for a study/mode.",
                        "example":{
                            "name":"associatedSites",
                            "value":"90C93FDF399E4DED99A0B7EF4E189C32",
                            "studyId":"45A27BCC19D741C58AF11698753BDE5A",
                            "authorizedUserId":"47C0B2D48F2544E6B848FB6923D9531F",
                            "mode":"active"
                        }
                    }
                },
                "description":"Assignment and role details for a user in a specific study mode, including role, studyRole, sites, and depots assignments.",
                "example":{
                    "mode":{
                        "modeName":"active",
                        "effectiveStart":"2021-01-01T00:00:00.000Z",
                        "effectiveEnd":"2026-01-01T00:00:00.000Z"
                    },
                    "studyRoles":[
                        {
                            "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "studyRoleName":"LEAD_INVESTIGATOR"
                        }
                    ],
                    "roles":[
                        {
                            "roleId":"A519EF3C2B73455390CFF812AFF61519",
                            "roleName":"Rule Designer"
                        },
                        {
                            "roleId":"EA0D45A19A6E45CDAAD5F2DB7BD4E104",
                            "roleName":"Site User"
                        }
                    ],
                    "sites":[
                        {
                            "allSites":false,
                            "associatedSites":[
                                "946E7D36031941CCA39CD2B2CFF2899B",
                                "FE8925CFA8A74193A2E8D8326E7FEA88"
                            ]
                        }
                    ],
                    "depots":[
                        {
                            "allDepots":false,
                            "associatedDepots":[
                                "CEE624A4E7EB43059C6AEC24673A288B"
                            ]
                        }
                    ]
                }
            },
            "roles":{
                "required":[
                    "roleCategory",
                    "roleCategoryLabel",
                    "roleId",
                    "roleName",
                    "roleNameLabel",
                    "roleType",
                    "roleTypeLabel"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "rightId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleName":{
                        "type":"string"
                    },
                    "roleType":{
                        "type":"string"
                    },
                    "roleCategory":{
                        "type":"string"
                    },
                    "roleSubCategory":{
                        "type":"string"
                    },
                    "roleNameLabel":{
                        "type":"string"
                    },
                    "roleTypeLabel":{
                        "type":"string"
                    },
                    "roleCategoryLabel":{
                        "type":"string"
                    },
                    "roleSubCategoryLabel":{
                        "type":"string"
                    },
                    "unblinded":{
                        "type":"string"
                    },
                    "roleSeq":{
                        "type":"number"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    }
                },
                "description":"List of global roles with ID and roleName, assigned to the user in this mode."
            },
            "studyRoles":{
                "required":[
                    "studyRoleCreationType",
                    "studyRoleDesc",
                    "studyRoleDescLabel",
                    "studyRoleId",
                    "studyRoleName",
                    "studyRoleNameLabel",
                    "studyRoleStatus",
                    "studyRoleType",
                    "studyRoleTypeLabel"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "authorizedUserId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "roleId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyRoleName":{
                        "type":"string"
                    },
                    "studyRoleDesc":{
                        "type":"string"
                    },
                    "studyRoleType":{
                        "type":"string"
                    },
                    "studyRoleStatus":{
                        "type":"string"
                    },
                    "studyRoleNameLabel":{
                        "type":"string"
                    },
                    "studyRoleDescLabel":{
                        "type":"string"
                    },
                    "studyRoleTypeLabel":{
                        "type":"string"
                    },
                    "studyRoleCreationType":{
                        "type":"string"
                    },
                    "effectiveStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "effectiveEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "studyRoleVersion":{
                        "type":"string"
                    },
                    "roles":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RoleDtoParams"
                        }
                    }
                },
                "description":"List of study-level roles assigned to this user in this mode."
            },
            "CodeListDto":{
                "type":"object",
                "properties":{
                    "codeName":{
                        "type":"string"
                    },
                    "codeType":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueDto"
                        }
                    }
                }
            },
            "CodeValueDto":{
                "type":"object",
                "properties":{
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "CodeListResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"object"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "Code":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start timestamp.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end timestamp.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "example":1
                    },
                    "optlock":{
                        "type":"string",
                        "description":"Optimistic lock timestamp.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the user.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for change.",
                        "example":"Updating codelist"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated description"
                    },
                    "codeName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist code name.",
                        "example":"AE_SEVERITY"
                    },
                    "codeType":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist code type.",
                        "example":"SYSTEM"
                    },
                    "codeLevel":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist code level.",
                        "example":"SYSTEM"
                    },
                    "parCodeName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent codelist code name.",
                        "example":"AE"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description.",
                        "example":"Severity of adverse event."
                    },
                    "tag":{
                        "maxLength":32767,
                        "minLength":1,
                        "type":"string",
                        "description":"Tag for the codelist.",
                        "example":"safety"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the codelist group.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "displayCodeName":{
                        "type":"string",
                        "description":"Display name for the codelist.",
                        "example":"AE Severity"
                    },
                    "canAddValues":{
                        "type":"boolean",
                        "description":"Whether values can be added.",
                        "example":true
                    },
                    "canHideValues":{
                        "type":"boolean",
                        "description":"Whether values can be hidden.",
                        "example":true
                    },
                    "customizable":{
                        "type":"boolean"
                    },
                    "tenantLevelOnly":{
                        "type":"boolean"
                    }
                }
            },
            "CodeListTO":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/Code"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValue"
                        }
                    }
                }
            },
            "CodeValue":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start timestamp.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end timestamp.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "example":1
                    },
                    "optlock":{
                        "type":"string",
                        "description":"Optimistic lock timestamp.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the user.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for change.",
                        "example":"Updating codelist values"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated label"
                    },
                    "codeId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the parent codelist code.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "locale":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Locale code.",
                        "example":"en"
                    },
                    "codeValue":{
                        "maxLength":32767,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist value.",
                        "example":"MILD"
                    },
                    "codeLabel":{
                        "maxLength":32767,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist value label.",
                        "example":"Mild"
                    },
                    "code":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist value code (legacy).",
                        "example":"MILD"
                    },
                    "sequence":{
                        "type":"number",
                        "description":"Display sequence.",
                        "example":1
                    },
                    "language":{
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Language code.",
                        "example":"en"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the codelist group.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Whether the value is hidden.",
                        "example":false
                    },
                    "customizationType":{
                        "type":"string",
                        "description":"Customization type.",
                        "example":"CUSTOM"
                    },
                    "loinc":{
                        "type":"string",
                        "description":"LOINC code.",
                        "example":"1234-5"
                    }
                }
            },
            "BaseCodeListDto":{
                "type":"object",
                "properties":{
                    "code":{
                        "type":"object"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "type":"object"
                        }
                    }
                }
            },
            "CodeListRequestV1":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV1"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV1"
                        }
                    }
                }
            },
            "CodeV1":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "optlock":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeName":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "codeType":{
                        "type":"string"
                    },
                    "codeLevel":{
                        "type":"string"
                    },
                    "parCodeName":{
                        "type":"string"
                    }
                }
            },
            "CodeValueV1":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"number"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "CodeListTagRequestV1":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV2"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV1"
                        }
                    }
                }
            },
            "CodeV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "optlock":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeName":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "codeType":{
                        "type":"string"
                    },
                    "codeLevel":{
                        "type":"string"
                    },
                    "parCodeName":{
                        "type":"string"
                    },
                    "tag":{
                        "type":"string"
                    }
                }
            },
            "EntityTag":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "weak":{
                        "type":"boolean"
                    }
                }
            },
            "Link":{
                "type":"object",
                "properties":{
                    "type":{
                        "type":"string"
                    },
                    "params":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"string"
                        }
                    },
                    "uri":{
                        "type":"string",
                        "format":"uri"
                    },
                    "title":{
                        "type":"string"
                    },
                    "uriBuilder":{
                        "$ref":"#/components/schemas/UriBuilder"
                    },
                    "rel":{
                        "type":"string"
                    },
                    "rels":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    }
                }
            },
            "MediaType":{
                "type":"object",
                "properties":{
                    "type":{
                        "type":"string"
                    },
                    "subtype":{
                        "type":"string"
                    },
                    "parameters":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"string"
                        }
                    },
                    "wildcardType":{
                        "type":"boolean"
                    },
                    "wildcardSubtype":{
                        "type":"boolean"
                    }
                }
            },
            "MultivaluedMapStringObject":{
                "type":"object",
                "properties":{
                    "empty":{
                        "type":"boolean"
                    }
                },
                "additionalProperties":{
                    "type":"array",
                    "items":{
                        "type":"object"
                    }
                }
            },
            "MultivaluedMapStringString":{
                "type":"object",
                "properties":{
                    "empty":{
                        "type":"boolean"
                    }
                },
                "additionalProperties":{
                    "type":"array",
                    "items":{
                        "type":"string"
                    }
                }
            },
            "NewCookie":{
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string"
                    },
                    "value":{
                        "type":"string"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "path":{
                        "type":"string"
                    },
                    "domain":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "maxAge":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "expiry":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "secure":{
                        "type":"boolean"
                    },
                    "httpOnly":{
                        "type":"boolean"
                    },
                    "sameSite":{
                        "type":"string",
                        "enum":[
                            "NONE",
                            "LAX",
                            "STRICT"
                        ]
                    }
                }
            },
            "Response":{
                "type":"object",
                "properties":{
                    "length":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "location":{
                        "type":"string",
                        "format":"uri"
                    },
                    "language":{
                        "type":"object",
                        "properties":{
                            "language":{
                                "type":"string"
                            },
                            "displayName":{
                                "type":"string"
                            },
                            "country":{
                                "type":"string"
                            },
                            "variant":{
                                "type":"string"
                            },
                            "script":{
                                "type":"string"
                            },
                            "unicodeLocaleAttributes":{
                                "uniqueItems":true,
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "unicodeLocaleKeys":{
                                "uniqueItems":true,
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "displayLanguage":{
                                "type":"string"
                            },
                            "displayScript":{
                                "type":"string"
                            },
                            "displayCountry":{
                                "type":"string"
                            },
                            "displayVariant":{
                                "type":"string"
                            },
                            "extensionKeys":{
                                "uniqueItems":true,
                                "type":"array",
                                "items":{
                                    "type":"string"
                                }
                            },
                            "iso3Language":{
                                "type":"string"
                            },
                            "iso3Country":{
                                "type":"string"
                            }
                        }
                    },
                    "date":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "metadata":{
                        "type":"object",
                        "properties":{
                            "empty":{
                                "type":"boolean"
                            }
                        },
                        "additionalProperties":{
                            "type":"array",
                            "items":{
                                "type":"object"
                            }
                        }
                    },
                    "status":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "entity":{
                        "type":"object"
                    },
                    "cookies":{
                        "type":"object",
                        "additionalProperties":{
                            "$ref":"#/components/schemas/NewCookie"
                        }
                    },
                    "links":{
                        "uniqueItems":true,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Link"
                        }
                    },
                    "statusInfo":{
                        "$ref":"#/components/schemas/StatusType"
                    },
                    "mediaType":{
                        "$ref":"#/components/schemas/MediaType"
                    },
                    "allowedMethods":{
                        "uniqueItems":true,
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "entityTag":{
                        "$ref":"#/components/schemas/EntityTag"
                    },
                    "stringHeaders":{
                        "type":"object",
                        "properties":{
                            "empty":{
                                "type":"boolean"
                            }
                        },
                        "additionalProperties":{
                            "type":"array",
                            "items":{
                                "type":"string"
                            }
                        }
                    },
                    "headers":{
                        "type":"object",
                        "properties":{
                            "empty":{
                                "type":"boolean"
                            }
                        },
                        "additionalProperties":{
                            "type":"array",
                            "items":{
                                "type":"object"
                            }
                        }
                    },
                    "closed":{
                        "type":"boolean"
                    }
                }
            },
            "StatusType":{
                "type":"object",
                "properties":{
                    "family":{
                        "type":"string",
                        "enum":[
                            "INFORMATIONAL",
                            "SUCCESSFUL",
                            "REDIRECTION",
                            "CLIENT_ERROR",
                            "SERVER_ERROR",
                            "OTHER"
                        ]
                    },
                    "statusCode":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "reasonPhrase":{
                        "type":"string"
                    }
                }
            },
            "UriBuilder":{
                "type":"object"
            },
            "CodeListGroupDto":{
                "title":"CodeListGroupDto",
                "type":"object",
                "properties":{
                    "codeGroupId":{
                        "type":"string",
                        "description":"Group GUID",
                        "format":"uuid"
                    },
                    "codeGroupName":{
                        "type":"string",
                        "description":"Name of the CodeList Group",
                        "example":"ABC Pharma"
                    }
                },
                "description":"Representation of CodeList Group"
            },
            "CodeListResponseCodeListGroupDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/CodeListGroupDto"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "CodeListResponseListCodeListGroupDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeListGroupDto"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "CodeListGroupRequest":{
                "title":"CodeListGroupRequest",
                "type":"object",
                "properties":{
                    "codeGroupName":{
                        "type":"string",
                        "description":"Name of the CodeList Group",
                        "example":"ABC Pharma"
                    }
                },
                "description":"Representation of CodeList Group"
            },
            "CodeListTagV1":{
                "type":"object",
                "properties":{
                    "codeId":{
                        "type":"string"
                    },
                    "tagName":{
                        "type":"string"
                    }
                }
            },
            "CodeValueV4":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "language":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"number"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean"
                    },
                    "customizationType":{
                        "type":"string"
                    },
                    "loinc":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "CodeV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "optlock":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeName":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "codeType":{
                        "type":"string"
                    },
                    "codeLevel":{
                        "type":"string"
                    },
                    "parCodeName":{
                        "type":"string"
                    },
                    "tag":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "displayCodeName":{
                        "type":"string"
                    },
                    "canAddValues":{
                        "type":"boolean"
                    },
                    "canHideValues":{
                        "type":"boolean"
                    },
                    "customizable":{
                        "type":"boolean"
                    },
                    "tenantLevelOnly":{
                        "type":"boolean"
                    }
                }
            },
            "CodeGroup":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start timestamp.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end timestamp.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "example":1
                    },
                    "optlock":{
                        "type":"string",
                        "description":"Optimistic lock timestamp.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the user.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for change.",
                        "example":"Updating code groups"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Renamed group"
                    },
                    "groupName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist group name.",
                        "example":"Default Group"
                    }
                }
            },
            "CodeListRequestV2":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV2"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV2"
                        }
                    }
                }
            },
            "CodeValueV2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "language":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"number"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "CodeListRequestV3":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV3"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV3"
                        }
                    }
                }
            },
            "CodeValueV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "language":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"number"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean"
                    },
                    "customizationType":{
                        "type":"string"
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "CodeListRequestV4":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV3"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV4"
                        }
                    }
                }
            },
            "CodeListRequestV5":{
                "type":"object",
                "properties":{
                    "code":{
                        "$ref":"#/components/schemas/CodeV3"
                    },
                    "values":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CodeValueV5"
                        }
                    }
                }
            },
            "CodeValueV5":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "codeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeValue":{
                        "type":"string"
                    },
                    "codeLabel":{
                        "type":"string"
                    },
                    "language":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"number"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeGroupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean"
                    },
                    "customizationType":{
                        "type":"string"
                    },
                    "loinc":{
                        "type":"string"
                    },
                    "modeSiteMappings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ModeSiteMappingTO"
                        }
                    },
                    "optLock":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "ModeSiteMappingTO":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string"
                    },
                    "sites":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SiteTO"
                        }
                    }
                }
            },
            "SiteTO":{
                "required":[
                    "siteId"
                ],
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "isAssociated":{
                        "type":"boolean"
                    }
                }
            },
            "DataElementDto":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    }
                },
                "description":"Base data element details including identity, study and subject context, values and metadata"
            },
            "DcsResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"object"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "ClearRequestDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Data correction"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Incorrect entry; clearing to re-enter"
                    },
                    "visits":{
                        "type":"array",
                        "description":"List of visit-level clear requests containing event, instance number and forms to clear",
                        "items":{
                            "$ref":"#/components/schemas/CoreClearVisitRequestDto"
                        }
                    }
                },
                "description":"Request to clear data elements for a subject at visit/form/item scope"
            },
            "CoreClearFormsRequestDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    }
                },
                "description":"Form-level clear request that identifies the form, repeats and optionally a specific item or section to clear"
            },
            "CoreClearVisitRequestDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "visitStartDateId":{
                        "type":"string",
                        "description":"Identifier of the Visit Start Date data element (UUID, 32-character uppercase hexadecimal string)",
                        "example":"DBCDEF1234567890ABCDEF1234567890"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of form-level clear requests to process in this visit",
                        "items":{
                            "$ref":"#/components/schemas/CoreClearFormsRequestDto"
                        }
                    }
                },
                "description":"Visit-level clear request that includes visit identifiers and the list of forms/items to clear"
            },
            "ClearFormsClearedDataDto10":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"Cleared data elements.",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto136"
                        }
                    },
                    "labs":{
                        "type":"array",
                        "description":"Cleared lab associations.",
                        "items":{
                            "$ref":"#/components/schemas/DCPropertyDto"
                        }
                    }
                },
                "description":"Cleared data section for clear form response."
            },
            "ClearFormsNotClearedDataDto10":{
                "type":"object",
                "properties":{
                    "itemId":{
                        "type":"string",
                        "description":"Item identifier that could not be cleared.",
                        "example":"itemId1"
                    },
                    "isItemLocked":{
                        "type":"boolean",
                        "description":"Indicates whether item is locked.",
                        "example":true
                    },
                    "hasChildFormOrVisitData":{
                        "type":"boolean",
                        "description":"Indicates whether item has child form/visit data.",
                        "example":true
                    },
                    "isItemClearBlockedBySameFormChild":{
                        "type":"boolean",
                        "description":"Indicates whether clear is blocked by same-form child data.",
                        "example":true
                    },
                    "isItemFrozen":{
                        "type":"boolean",
                        "description":"Indicates whether item is frozen.",
                        "example":true
                    },
                    "isItemUnfrozen":{
                        "type":"boolean",
                        "description":"Indicates whether item was unfrozen.",
                        "example":true
                    },
                    "isItemReadOnly":{
                        "type":"boolean",
                        "description":"Indicates whether item is read-only for user.",
                        "example":true
                    },
                    "isItemSafetyTrigger":{
                        "type":"boolean"
                    }
                },
                "description":"Represents an item that could not be cleared in clear form API."
            },
            "ClearFormsResponseDto10":{
                "type":"object",
                "properties":{
                    "clearedData":{
                        "$ref":"#/components/schemas/ClearFormsClearedDataDto10"
                    },
                    "notClearedData":{
                        "type":"array",
                        "description":"Data elements that could not be cleared.",
                        "items":{
                            "$ref":"#/components/schemas/ClearFormsNotClearedDataDto10"
                        }
                    },
                    "visits":{
                        "$ref":"#/components/schemas/Visits"
                    },
                    "formsStatus":{
                        "type":"array",
                        "description":"Form status summary after clear action.",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusResponseDto"
                        }
                    }
                },
                "description":"Response payload for clear form API."
            },
            "DCPropertyDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Data cleared by monitor"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Cleared due to verified lab correction"
                    }
                },
                "description":"Laboratory property details associated with a data element."
            },
            "DataElementDto136":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock state of the data element. Values LOCKED, UNLOCKED, NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"NEVER_LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "documentId":{
                        "type":"string",
                        "description":"Unique identifier of the associated source document (hex UUID, 32-character uppercase), enabling traceability between the data element and its original supporting document or file.",
                        "example":"A1B2C3D4E5F64789ABCDEF0123456789"
                    },
                    "documentVersion":{
                        "type":"number",
                        "description":"Version of the source or supporting document linked to this data element.",
                        "example":1
                    }
                },
                "description":"Data element DTO version 136"
            },
            "FormsStatusInnerRepeatDto":{
                "type":"object",
                "properties":{
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"IN_PROGRESS"
                    }
                },
                "description":"Inner repeat status for a specific outer repeat."
            },
            "FormsStatusOuterRepeatDto":{
                "type":"object",
                "properties":{
                    "innerRepeats":{
                        "type":"array",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusInnerRepeatDto"
                        }
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"IN_PROGRESS"
                    }
                },
                "description":"Outer repeat status with inner repeat entries."
            },
            "FormsStatusResponseDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"IN_PROGRESS"
                    },
                    "outerRepeats":{
                        "type":"array",
                        "description":"Outer repeat entries for this form",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusOuterRepeatDto"
                        }
                    }
                },
                "description":"Form status with outer repeat hierarchy."
            },
            "Visits":{
                "type":"object",
                "properties":{
                    "visitsStatus":{
                        "$ref":"#/components/schemas/VisitsStatusRuleTargetsDto7"
                    },
                    "refreshVisit":{
                        "type":"boolean",
                        "description":"Indicates whether the visit needs to be refreshed after the operation.",
                        "example":false
                    }
                },
                "description":"Visit status targets and refresh indicator."
            },
            "VisitsStatusRuleTargetsDto7":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "targets":{
                        "type":"array",
                        "description":"List of rule targets affected by this operation",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of rule targets affected by this operation",
                            "example":"[\"DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC\"]"
                        }
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    }
                },
                "description":"Visit status update response including visit action and inherited rule targets"
            },
            "ClearFormsFormRequestDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    }
                },
                "description":"Form-level payload for clear form API."
            },
            "ClearFormsRequestDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Change for encoding"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment"
                    },
                    "visits":{
                        "type":"array",
                        "description":"List of visit payloads for clear form operation.",
                        "items":{
                            "$ref":"#/components/schemas/ClearFormsVisitRequestDto"
                        }
                    }
                },
                "description":"Request payload for clearing form data."
            },
            "ClearFormsVisitRequestDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of forms to clear in this visit.",
                        "items":{
                            "$ref":"#/components/schemas/ClearFormsFormRequestDto"
                        }
                    }
                },
                "description":"Visit-level payload for clear form API."
            },
            "DataElementDto90":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    }
                },
                "description":"Intermediate data element version including version end timestamp, operation type, software version, item classification, and lineage identifiers"
            },
            "FormsAssociations":{
                "required":[
                    "associatedStudyVersion",
                    "srcStudyVersion"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"2F3C8B1BFE784C7E86E0B29899B13E3D"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A13F9C2E7B1D4F0A92CE31A4B6D9E8F1"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"9B7A13D4C2F84E1AA6D2E3F9BC18A457"
                    },
                    "srcEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"5D3AA89CE2B04729A1F1C7E62D9F44B2"
                    },
                    "srcEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "srcFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"C41E8B2D73A54F0C9AFE22D6A1138B90"
                    },
                    "srcRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "srcStudyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"5D3AA89CE2B04729A1F1C7E62D9F44B2"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"8AA41F6E5D9B4F1A94E3C7B22A6610EF"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedStudyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"E2C77AB91F58443DB89A1D99F2F44C33"
                    },
                    "srcFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "associatedFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C6E0C7D5A1F3428C8B8B6A77C5E9D4AB"
                    },
                    "srcRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "validationStatus":{
                        "type":"string",
                        "description":"Validation status for the association",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "type":"string",
                        "description":"Validation failure details, if any",
                        "example":"Target form not found"
                    }
                },
                "description":"Association between a source form and an associated form, including repeat and study version context"
            },
            "DataElementDto7":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                }
            },
            "DataElementDetails":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Data element locator containing subject, event, form and repeat context."
            },
            "MultipleDataElementsRequestDto":{
                "type":"object",
                "properties":{
                    "dataElementDetails":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDetails"
                        }
                    }
                }
            },
            "DataElementDto110":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    }
                }
            },
            "RepeatingDataElementDetails":{
                "required":[
                    "formId",
                    "itemId"
                ],
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A3F27C5D9B1E4D55A8E0C4F19A2D7F31"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"7C1E5AB4D9F648E4A93B21EF0A67C9D2"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"3F9D2A7C6E1B4C35B8D0F1239A45E8CD"
                    }
                },
                "description":"Identifiers to locate a specific data element for which repeating instances may exist"
            },
            "RepeatingMultipleDataElementsRequestDto":{
                "type":"object",
                "properties":{
                    "dataElementDetails":{
                        "type":"array",
                        "description":"List of data element identifiers for which repeating instances should be fetched",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingDataElementDetails"
                        }
                    }
                },
                "description":"Request payload containing a list of data element identifiers to fetch repeating instances"
            },
            "DataElementDto121":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"LOCK"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the data element. Acceptable Values are LOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Data element details including lock status, lock timestamp, and operation type."
            },
            "FormLockDto10":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "sectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Date and time when the form was locked",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    }
                },
                "description":"Lock details for a form instance"
            },
            "FormsAssociationsDto2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "srcFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "srcStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Data association update"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Updated association details"
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":1
                    },
                    "srcRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Associations between source and associated form sections including repeat numbers"
            },
            "VisitDataDto10":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto121"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormLockDto10"
                        }
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitLockDto"
                    }
                }
            },
            "VisitLockDto":{
                "type":"object",
                "properties":{
                    "lockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Date and time when the visit was locked.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Date and time when the visit start date was locked.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    }
                },
                "description":"Lock details for a visit, including visit start date lock information"
            },
            "DataElementRequestDto":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto"
                    }
                }
            },
            "Context2":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study",
                        "example":"DEMO_STUDY"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    }
                },
                "description":"Extended context including repeat sequence and repeat form number."
            },
            "CoreDataElementV4":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    }
                },
                "description":"Core data element payload (v4)."
            },
            "DataElementFormAssociationsReq":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form association operations associated with the data elements.",
                        "items":{
                            "$ref":"#/components/schemas/FormAssociationsDataElmntsReqDto1"
                        }
                    },
                    "context":{
                        "$ref":"#/components/schemas/Context2"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements to process for the given context.",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    }
                },
                "description":"Request payload combining context, data elements, and form association operations."
            },
            "FormAssociationsDataElmntsReqDto1":{
                "type":"object",
                "properties":{
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    }
                },
                "description":"Association details for a source item to a target form/visit"
            },
            "DataElementDto80":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Data element properties including property identifier and version start timestamp"
            },
            "DataElementsFormAssociationsDto":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements returned.",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto80"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations corresponding to data elements.",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto"
                        }
                    }
                },
                "description":"Response payload containing data elements and their form associations."
            },
            "FormsAssociationsDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "srcFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "srcRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "srcStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Data association update"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Updated association details"
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    }
                },
                "description":"Associations between source and target forms within visits and study versions"
            },
            "DcsResponseDataElementsFormAssociationsDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "Context3":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study",
                        "example":"DEMO_STUDY"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    }
                },
                "description":"Extended context including inner and outer repeat indices."
            },
            "CoreDataElementV6":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp from the data source when this element was generated.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    }
                },
                "description":"Core data element payload (v6)."
            },
            "DataElementsRequestDto6":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context3"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements to process for the given context.",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV6"
                        }
                    }
                },
                "description":"Request payload to create or update data elements with contextual information and the list of elements."
            },
            "Context":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the study",
                        "example":"DEMO_STUDY"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":1
                    }
                },
                "description":"Context information including study, subject, event, form, site and event instance."
            },
            "CoreDataElement":{
                "type":"object",
                "properties":{
                    "utcDateTimeValue":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "monthValue":{
                        "type":"integer"
                    },
                    "dayValue":{
                        "type":"integer"
                    },
                    "yearValue":{
                        "type":"integer"
                    },
                    "hourValue":{
                        "type":"integer"
                    },
                    "minuteValue":{
                        "type":"integer"
                    },
                    "secondValue":{
                        "type":"integer"
                    },
                    "validationStatus":{
                        "type":"string"
                    },
                    "validationFailure":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "transactionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "formSectionId":{
                        "type":"string"
                    },
                    "variableId":{
                        "type":"string"
                    },
                    "originatorId":{
                        "type":"string"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string"
                    },
                    "itemId":{
                        "type":"string"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string"
                    },
                    "measureUnit":{
                        "type":"string"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string"
                    },
                    "numValue":{
                        "type":"integer"
                    },
                    "floatValue":{
                        "type":"number"
                    }
                }
            },
            "DataElementsRequestDto":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context"
                    },
                    "dataElements":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElement"
                        }
                    }
                }
            },
            "DataElementRepeatingFormsReq":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context"
                    },
                    "repeatingForms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingFormsDataElementReqDto"
                        }
                    }
                }
            },
            "RepeatingFormsDataElementReqDto":{
                "type":"object",
                "properties":{
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of core data elements for this form instance",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    }
                },
                "description":"Request for repeating forms data element containing repeat sequence and associated data elements."
            },
            "FormAssociationsUpdateRespDto":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto"
                        }
                    }
                },
                "description":"Form associations update response"
            },
            "DcsResponseFormAssociationsUpdateRespDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/FormAssociationsUpdateRespDto"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "FormAssociationsUpdateDto":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Change for encoding"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Adding association for derived form copy"
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form association operations to apply to the source form instance",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto"
                        }
                    }
                },
                "description":"Request payload to update form associations for a source form instance"
            },
            "ChildInfoDto1":{
                "type":"object",
                "properties":{
                    "itemEligibleForClear":{
                        "type":"boolean",
                        "description":"Indicates if the item is eligible to be cleared",
                        "example":false
                    },
                    "childInFuture":{
                        "type":"boolean",
                        "description":"True if the child item belongs to a future visit instance",
                        "example":false
                    },
                    "childIsHidden":{
                        "type":"boolean",
                        "description":"True if the child item is hidden by rule or configuration",
                        "example":false
                    },
                    "childIsLocked":{
                        "type":"boolean",
                        "description":"True if the child item is locked",
                        "example":false
                    },
                    "childIsFrozen":{
                        "type":"boolean",
                        "description":"True if the child item is frozen",
                        "example":false
                    },
                    "childIsUnFrozen":{
                        "type":"boolean",
                        "description":"True if the child item is unfrozen",
                        "example":false
                    },
                    "childIsReadOnly":{
                        "type":"boolean",
                        "description":"True if the child item is read-only",
                        "example":false
                    },
                    "isGrandParent":{
                        "type":"boolean",
                        "description":"True if the item is a grandparent item in hierarchy",
                        "example":false
                    },
                    "formAssociated":{
                        "type":"boolean",
                        "description":"True if the item is associated with a form association",
                        "example":false
                    },
                    "childItems":{
                        "type":"array",
                        "description":"List of child items derived for the requested operation",
                        "items":{
                            "type":"object",
                            "description":"List of child items derived for the requested operation"
                        }
                    }
                },
                "description":"Child information flags and child items for a data element operation"
            },
            "DataElementDto12":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "DataElementDto11":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    }
                },
                "description":"Data element details for visit-level retrieval extending DataElementDto90 without form status"
            },
            "RuleConsolidatedResponseDto10":{
                "type":"object",
                "properties":{
                    "statusRepeatinginstances":{
                        "type":"string"
                    },
                    "resultRepeatinginstances":{
                        "type":"array",
                        "items":{
                            "type":"array",
                            "items":{
                                "$ref":"#/components/schemas/DataElementDto11"
                            }
                        }
                    },
                    "statusMultiple":{
                        "type":"string"
                    },
                    "resultMultiple":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto11"
                        }
                    }
                },
                "description":"Consolidated DC response containing results for repeatinginstances and multiple data element fetches."
            },
            "DcsResponseRuleConsolidatedResponseDto10":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/RuleConsolidatedResponseDto10"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementDetails30":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "repeatTwoSectionFormNumber":{
                        "type":"integer",
                        "description":"Repeat section form number, if applicable.",
                        "format":"int32",
                        "example":1
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "isPrevValue":{
                        "type":"boolean",
                        "description":"If true, indicates the request refers to previous value",
                        "example":false
                    }
                },
                "description":"Data element details (v3) including flag to indicate whether previous value is requested."
            },
            "RuleConsolidatedRequestDto10":{
                "type":"object",
                "properties":{
                    "repeatinginstances":{
                        "type":"array",
                        "description":"Input for repeatinginstances (equivalent to repeatinginstances endpoint).",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingDataElementDetails"
                        }
                    },
                    "multiple":{
                        "type":"array",
                        "description":"Input for multiple (equivalent to dataelements/multiple endpoint).",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDetails30"
                        }
                    }
                },
                "description":"Request payload for consolidated DC calls used by Rule Service."
            },
            "CoreDataElementV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Core data element payload (v3)."
            },
            "DataElementsRequestDto3":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context2"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements to process for the given context.",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV3"
                        }
                    }
                },
                "description":"Request payload to create or update data elements with contextual information and the list of elements."
            },
            "DataElementDto50":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                },
                "description":"Data element extension adding dataFlag identifier inherited by higher versions"
            },
            "DataElementsRequestDto4":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context2"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements to process for the given context.",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    }
                },
                "description":"Request payload for data elements used in multi-section forms, carrying context and a list of elements."
            },
            "DataElementDto8":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "ESignUrlDto":{
                "type":"object",
                "properties":{
                    "url":{
                        "type":"string",
                        "description":"Electronic signature URL.",
                        "format":"uri",
                        "example":"https://esign.example.com/process/7AB12CD3E4F5413C9BF46C56A9ED9B7A"
                    }
                },
                "description":"Electronic signature URL for the requested subject and organization."
            },
            "EnrollmentSetting":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the enrollment setting.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "groupTitle":{
                        "type":"string",
                        "description":"Title of the group receiving this setting.",
                        "example":"Cohort A"
                    },
                    "subjectLimit":{
                        "type":"integer",
                        "description":"Maximum number of subjects allowed in this group.",
                        "format":"int32",
                        "example":100
                    },
                    "notificationLimit":{
                        "type":"integer",
                        "description":"Notification threshold for approaching subject limit.",
                        "format":"int32",
                        "example":80
                    },
                    "description":{
                        "type":"string",
                        "description":"Brief description of the enrollment setting.",
                        "example":"Phase 1 - First cohort group"
                    },
                    "enableSetting":{
                        "type":"boolean",
                        "description":"Indicates if the enrollment setting is enabled.",
                        "example":true
                    }
                },
                "description":"Represents the persisted enrollment setting for a study group."
            },
            "EnrollmentGroupDto":{
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Title or description for the group criteria.",
                        "example":"Male subjects age 18-65"
                    },
                    "groupId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) for the group this criteria belongs to.",
                        "example":"BEEF11223344556677889900AABBCCDD"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"FORM1"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "criteriaType":{
                        "maxLength":16,
                        "minLength":0,
                        "type":"string",
                        "description":"Type of criteria applied Should match either numeric or choice.",
                        "example":"choice"
                    },
                    "startRange":{
                        "type":"number",
                        "description":"Lower bound for range-type group criteria.",
                        "format":"double",
                        "example":18
                    },
                    "endRange":{
                        "type":"number",
                        "description":"Upper bound for range-type group criteria.",
                        "format":"double",
                        "example":65
                    },
                    "choiceValue":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"List of choice value objects, if applicable for enumeration-type criteria.",
                        "example":"[{\"value\":\"1\",\"label\":\"Yes\"}]"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for this group criteria record.",
                        "example":"1234567890AABBCCDDEEFF1122334455"
                    }
                },
                "description":"DTO describing individual cohort/criteria group for enrollment settings."
            },
            "EnrollmentSettingDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) for this enrollment setting.",
                        "example":"AA11BB22CC33DD44EE55FF6677889900"
                    },
                    "groupTitle":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Title or label for the group.",
                        "example":"Test Group"
                    },
                    "enableSetting":{
                        "type":"boolean",
                        "description":"Whether this enrollment setting is enabled.",
                        "example":true
                    },
                    "subjectLimit":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of subjects permitted.",
                        "format":"int32",
                        "example":100
                    },
                    "notificationLimit":{
                        "maximum":100,
                        "minimum":0,
                        "type":"integer",
                        "description":"Notification threshold for subject count.",
                        "format":"int32",
                        "example":60
                    },
                    "description":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Description for this enrollment setting.",
                        "example":"This setting applies to test group."
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":2
                    },
                    "count":{
                        "type":"integer",
                        "description":"Count associated with this setting",
                        "format":"int32",
                        "example":1
                    },
                    "settingType":{
                        "type":"string",
                        "description":"Type of setting. It can be Scr_limit , Rand_limit",
                        "example":"Rand_limit"
                    },
                    "groupCriteria":{
                        "type":"object",
                        "properties":{
                            "title":{
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Title or description for the group criteria.",
                                "example":"Male subjects age 18-65"
                            },
                            "groupId":{
                                "type":"string",
                                "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) for the group this criteria belongs to.",
                                "example":"BEEF11223344556677889900AABBCCDD"
                            },
                            "visitId":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "formId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                                "example":"FORM1"
                            },
                            "itemId":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "criteriaType":{
                                "maxLength":16,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of criteria applied Should match either numeric or choice.",
                                "example":"choice"
                            },
                            "startRange":{
                                "type":"number",
                                "description":"Lower bound for range-type group criteria.",
                                "format":"double",
                                "example":18
                            },
                            "endRange":{
                                "type":"number",
                                "description":"Upper bound for range-type group criteria.",
                                "format":"double",
                                "example":65
                            },
                            "choiceValue":{
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"List of choice value objects, if applicable for enumeration-type criteria.",
                                "example":"[{\"value\":\"1\",\"label\":\"Yes\"}]"
                            },
                            "studyVersion":{
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"String representing the version of the study. Helps track changes in form or study design.",
                                "example":"1.0.0.0"
                            },
                            "objectVersionNumber":{
                                "type":"integer",
                                "description":"Audit trail field that represents the version number of the data.",
                                "format":"int32",
                                "example":1
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for this group criteria record.",
                                "example":"1234567890AABBCCDDEEFF1122334455"
                            }
                        },
                        "description":"DTO describing individual cohort/criteria group for enrollment settings."
                    }
                },
                "description":"DTO representing enrollment setting details, including associated group criteria."
            },
            "LabRequestDto":{
                "required":[
                    "eventId",
                    "formId",
                    "siteId",
                    "studyVersion",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"799EF3745FC545589F186D2198F3C65E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"899EF3745FC545589F186D2198F3C65E"
                    },
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"999EF3745FC545589F186D2198F3C65E"
                    }
                }
            },
            "DataElementDto6":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"Data element response with additional property linkage details"
            },
            "LabResponse":{
                "type":"object",
                "properties":{
                    "labnormalsStatus":{
                        "type":"array",
                        "description":"List of lab normals processing status codes resulting from validation and mapping",
                        "example":[
                            "SUCCESS"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of lab normals processing status codes resulting from validation and mapping",
                            "example":"[\"SUCCESS\"]"
                        }
                    },
                    "items":{
                        "type":"array",
                        "description":"List of data elements generated or updated for the lab normals request",
                        "example":[
                            {
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "versionStart":"2025-10-16T14:30:31.892Z",
                                "transactionStart":"2025-10-16T14:30:31.892Z",
                                "transactionEnd":"2025-10-16T14:35:00.000Z",
                                "validationStatus":"SUCCESS",
                                "validationFailure":null,
                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                "studyName":"STUDY-ABC",
                                "studyVersion":"21",
                                "subjectId":"10F75668189F422F9A461A315D211111",
                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                "formId":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                "repeatSequenceNumber":1,
                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                "vendorCode":"VENDOR1",
                                "value":"13.5",
                                "measureUnit":"g/dL",
                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                "numValue":13,
                                "floatValue":13.5,
                                "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                "monthValue":10,
                                "dayValue":16,
                                "yearValue":2025,
                                "hourValue":14,
                                "minuteValue":30,
                                "secondValue":31,
                                "reason":"Initial entry",
                                "comment":"Captured by device",
                                "objectVersionNumber":14,
                                "eventInstanceNum":1,
                                "targets":[
                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                ],
                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                "propertyVersionStart":"2025-10-16T14:30:31.892Z"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto6"
                        }
                    }
                },
                "description":"Response containing lab normals processing status and created/updated data elements for v1"
            },
            "LabUpdateRequestDto":{
                "required":[
                    "eventId",
                    "formId",
                    "reason",
                    "siteId",
                    "studyVersion",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"799EF3745FC545589F186D2198F3C65E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"899EF3745FC545589F186D2198F3C65E"
                    },
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"999EF3745FC545589F186D2198F3C65E"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Correction due to re-measurement"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Updated based on lab report 2023-02-10"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "DataElementWithTargets":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElement"
                    },
                    "targets":{
                        "type":"array",
                        "description":"List of display or rule targets associated with this data element",
                        "example":[
                            "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                            "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of display or rule targets associated with this data element",
                            "example":"[\"93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5\",\"93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7\"]"
                        }
                    },
                    "labs":{
                        "type":"array",
                        "description":"List of cleared laboratory property details related to the data element",
                        "items":{
                            "$ref":"#/components/schemas/DCPropertyDto"
                        }
                    }
                },
                "description":"Wrapper combining a DataElement with its display targets and related lab properties."
            },
            "LabResponseDTO":{
                "type":"object",
                "properties":{
                    "labnormalsStatus":{
                        "type":"array",
                        "description":"List of lab normals processing status codes resulting from validation and mapping.The value of status can be -DOB_MISSING, GENDER_MISSING, RACE_MISSING, DOB_NO_VALUE_CAPTURED, GENDER_NO_VALUE_CAPTURED, RACE_NO_VALUE_CAPTURED,DOB_INVALID_VALUE, MISSING_CODE_LABEL_FOR_UNIT, MISSING_CODE_LABEL_FOR_NORMAL_TEXT",
                        "example":[
                            "GENDER_MISSING"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of lab normals processing status codes resulting from validation and mapping.The value of status can be -DOB_MISSING, GENDER_MISSING, RACE_MISSING, DOB_NO_VALUE_CAPTURED, GENDER_NO_VALUE_CAPTURED, RACE_NO_VALUE_CAPTURED,DOB_INVALID_VALUE, MISSING_CODE_LABEL_FOR_UNIT, MISSING_CODE_LABEL_FOR_NORMAL_TEXT",
                            "example":"[\"GENDER_MISSING\"]"
                        }
                    },
                    "items":{
                        "type":"array",
                        "description":"List of data elements along with targets and associated cleared lab properties",
                        "items":{
                            "$ref":"#/components/schemas/DataElementWithTargets"
                        }
                    }
                },
                "description":"Service-level response containing lab normals processing status and data elements with targets and lab properties."
            },
            "PropertyDto1":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the property record.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Record version start timestamp.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Type/category of the property.",
                        "example":"CODING_PROPERTY"
                    },
                    "propertyKey":{
                        "type":"string",
                        "description":"Unique key name of the property.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyValue":{
                        "type":"string",
                        "description":"Value configured for the property.",
                        "example":"UTC"
                    },
                    "propertyAttr":{
                        "type":"string",
                        "description":"Additional attribute or data type for the property.",
                        "example":"{}"
                    },
                    "propertyStatus":{
                        "type":"string",
                        "description":" Status of the property.",
                        "example":"1"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the change in property value.",
                        "example":"Initial configuration"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments for the property update.",
                        "example":"Configured during study setup"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":300
                    }
                },
                "description":"Property Dto having fields which specify the unique property Id "
            },
            "DcsResponsePropertyDto1":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/PropertyDto1"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "PropertyRquestDto":{
                "required":[
                    "labId",
                    "reason"
                ],
                "type":"object",
                "properties":{
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"B1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Correction"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Updated after review"
                    }
                }
            },
            "LabResponseDto2":{
                "type":"object",
                "properties":{
                    "labnormalsStatus":{
                        "type":"array",
                        "description":"List of lab normals processing status codes resulting from validation and mapping.The value of status can be -DOB_MISSING, GENDER_MISSING, RACE_MISSING, DOB_NO_VALUE_CAPTURED, GENDER_NO_VALUE_CAPTURED, RACE_NO_VALUE_CAPTURED,DOB_INVALID_VALUE, MISSING_CODE_LABEL_FOR_UNIT, MISSING_CODE_LABEL_FOR_NORMAL_TEXT.",
                        "example":[
                            "GENDER_MISSING"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of lab normals processing status codes resulting from validation and mapping.The value of status can be -DOB_MISSING, GENDER_MISSING, RACE_MISSING, DOB_NO_VALUE_CAPTURED, GENDER_NO_VALUE_CAPTURED, RACE_NO_VALUE_CAPTURED,DOB_INVALID_VALUE, MISSING_CODE_LABEL_FOR_UNIT, MISSING_CODE_LABEL_FOR_NORMAL_TEXT.",
                            "example":"[\"GENDER_MISSING\"]"
                        }
                    },
                    "items":{
                        "type":"array",
                        "description":"List of data elements generated or updated for the lab normals request",
                        "example":[
                            {
                                "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "versionStart":"2025-10-16T14:30:31.892Z",
                                "transactionStart":"2025-10-16T14:30:31.892Z",
                                "transactionEnd":"2025-10-16T14:35:00.000Z",
                                "validationStatus":"SUCCESS",
                                "validationFailure":null,
                                "studyId":"ABCDEF1234567890ABCDEF1234567890",
                                "studyName":"STUDY-ABC",
                                "studyVersion":"1.0.0.3",
                                "subjectId":"10F75668189F422F9A461A315D211111",
                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                "formId":"C6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
                                "repeatSequenceNumber":1,
                                "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
                                "siteId":"ABCDEF1234567890ABCDEF1234567890",
                                "variableId":"0123456789ABCDEF0123456789ABCDEF",
                                "originatorId":"FEDCBA9876543210FEDCBA9876543210",
                                "vendorCode":"VENDOR1",
                                "value":"13.5",
                                "measureUnit":"g/dL",
                                "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
                                "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
                                "numValue":13,
                                "floatValue":13.5,
                                "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
                                "monthValue":10,
                                "dayValue":16,
                                "yearValue":2025,
                                "hourValue":14,
                                "minuteValue":30,
                                "secondValue":31,
                                "reason":"Initial entry",
                                "comment":"Captured by device",
                                "objectVersionNumber":14,
                                "eventInstanceNum":1,
                                "targets":[
                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
                                    "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
                                ],
                                "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "signedStatus":"SIGNED",
                                "verifiedStatus":"NOT_APPLICABLE",
                                "freezedStatus":"NOT_APPLICABLE",
                                "operationType":"MODIFIED",
                                "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                "propertyVersionStart":"2025-10-16T14:30:31.892Z",
                                "versionEnd":"2025-10-16T15:30:31.892Z",
                                "softwareVersionNumber":14,
                                "itemType":"TEXT",
                                "itemD":"DETAIL",
                                "itemF":"FLAG",
                                "itemR":"REASON",
                                "parentId":"ABCDEF1234567890ABCDEF1234567890",
                                "rootId":"1234567890ABCDEF1234567890ABCDEF",
                                "repeatFormNumber":2,
                                "innerRepeat":1,
                                "outerRepeat":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto12"
                        }
                    }
                },
                "description":"Response containing lab normals processing status and created/updated data elements"
            },
            "SafetyCasePutResponseDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the updated safety case.",
                        "example":"123E4567E89B12D3A456426655440000"
                    },
                    "externalSafetyCaseId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) External identifier for the safety case.",
                        "example":"345E4567E89B12D3A456426655440000"
                    },
                    "status":{
                        "type":"string",
                        "description":"Status of the safety case. Value as defined as CREATED, SUBMITTED, NOT_SUBMITTED, ALL, MODIFIED, SUBMIT_FAILED, CANCEL_FAILED, REJECTED, TRANSFER_FAILED, CANCELLED, ACCEPTED,DISMISSED .",
                        "example":"CREATED"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the status update.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments regarding the update.",
                        "example":"No further action required"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-07-01T10:20:30Z"
                    },
                    "lastSubmittedDate":{
                        "type":"string",
                        "description":"Last submission date/time related to the safety case.",
                        "format":"date-time",
                        "example":"2023-07-10T15:30:00Z"
                    }
                },
                "description":"Response object for SafetyCase update, providing status, identifiers and update information for the safety case."
            },
            "SafetyCaseRequestDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Status of the safety case. Value as defined as CREATED, SUBMITTED, NOT_SUBMITTED, ALL, MODIFIED, SUBMIT_FAILED, CANCEL_FAILED, REJECTED, TRANSFER_FAILED, CANCELLED, ACCEPTED,DISMISSED .",
                        "example":"CREATED"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the safety case status change.",
                        "example":"Missing information"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment for the safety case.",
                        "example":"Follow up with site on AE form"
                    },
                    "externalSafetyCaseId":{
                        "type":"string",
                        "description":"External identifier for the safety case, if available.",
                        "example":"12345"
                    }
                },
                "description":"Object holds request data for Safety Case update including status, reason for status change, comment, and the external safety case identifier."
            },
            "DataElementDto30":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Data element properties including event instance number extension"
            },
            "FreezeRequestDTO":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the operation, if supplied. Accepted values are Change for encoding, Incorrect Subject, Investigator Correction, Transcription Error, Other.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Any extra comment for the action when Other is selected in reason.",
                        "example":"The data required is missing."
                    },
                    "freezeVisitStartDate":{
                        "type":"boolean",
                        "description":"Target freeze status for the Visit Start Date. Allowed values: true/false",
                        "example":true
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of core sign/verify target elements.",
                        "items":{
                            "$ref":"#/components/schemas/CoreSignVerifyRequestDto"
                        }
                    }
                },
                "xml":{
                    "name":"signVerifyRequest"
                }
            },
            "SubjectVisitVerifyHistoryRequest":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject unique identifiers in UUID, 32-character uppercase hexadecimal string format to filter by",
                        "example":[
                            "5D5F9311C591424F852B99FD902E98A4",
                            "6D5F9311C591424F852B99FD902E98A4"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject unique identifiers in UUID, 32-character uppercase hexadecimal string format to filter by",
                            "format":"uuid"
                        }
                    },
                    "startDate":{
                        "type":"string",
                        "description":"Start date in dd-MMM-yyyy format",
                        "format":"date-time"
                    },
                    "endDate":{
                        "type":"string",
                        "description":"End date in dd-MMM-yyyy format",
                        "format":"date-time"
                    }
                },
                "description":"Request to fetch visit verify history for specified subjects within a date range. Dates must be provided in dd-MMM-yyyy format (Example- 01-Jan-2023)."
            },
            "SignVerifyDto":{
                "title":"SignVerifyDto v1",
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "eventId":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string"
                    },
                    "signed":{
                        "type":"string"
                    },
                    "verify":{
                        "type":"string"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer"
                    },
                    "itemId":{
                        "type":"string"
                    },
                    "eventInstanceNum":{
                        "type":"integer"
                    },
                    "studyVersion":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string"
                    }
                },
                "description":"sign or verify request"
            },
            "UnFreezeRequest":{
                "type":"object",
                "properties":{
                    "reasonForChange":{
                        "type":"string",
                        "description":"A short description explaining the reason for the unfreeze action.",
                        "example":"Data Corrected"
                    }
                },
                "description":"Superclass for unfreeze requests, contains the reason for unfreezing.",
                "example":{
                    "reasonForChange":"Data Corrected"
                },
                "xml":{
                    "name":"unfreezeRequest"
                }
            },
            "SignVerifyRequestDto2":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the operation, if supplied. Accepted values are Change for encoding, Incorrect Subject, Investigator Correction, Transcription Error, Other.",
                        "example":"Other"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Any extra comment for the action when Other is selected in reason.",
                        "example":"The data required is missing."
                    },
                    "elements":{
                        "type":"array",
                        "description":"List of core sign/verify target elements.",
                        "items":{
                            "$ref":"#/components/schemas/CoreSignVerifyRequestDto"
                        }
                    },
                    "verifyVisitStartDate":{
                        "type":"boolean",
                        "description":"Target verify status for the Visit Start Date. Allowed values: true/false",
                        "example":true
                    }
                },
                "xml":{
                    "name":"signVerifyRequest"
                }
            },
            "SDVGroupDto":{
                "required":[
                    "sdvGroupName"
                ],
                "type":"object",
                "properties":{
                    "sdvGroupName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Human readable name of the SDV group.",
                        "example":"StrategyTestSite"
                    },
                    "sdvGroupId":{
                        "type":"string",
                        "description":"ID of the Source Data Verification (SDV) group. The format is UUID, 32-character uppercase hexadecimal string.",
                        "example":"EFC64B3862FD4C85BB8DBEAE2AE26B13"
                    },
                    "sdvGroupKeyValPairs":{
                        "type":"array",
                        "description":"Key-value attributes that define SDV strategy behavior",
                        "items":{
                            "$ref":"#/components/schemas/SDVGroupKeyValDto"
                        }
                    }
                },
                "description":"Source Data Verification (SDV) group configuration and its attribute key-value pairs",
                "xml":{
                    "name":"signVerifyRequest"
                }
            },
            "SDVGroupKeyValDto":{
                "required":[
                    "attributeKey",
                    "attributeValue"
                ],
                "type":"object",
                "properties":{
                    "attributeKey":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Key for a configurable attribute associated with this SDV group. Values may be REMAINING_SUBJECTS_PERCENTAGE, REMAINING_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_COUNT.",
                        "example":"INITIAL_SUBJECTS_COUNT"
                    },
                    "attributeValue":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Value for a configurable attribute associated with this SDV group. The acceptable values are - All Questions, Critical Questions Only or it can be a number like 30.",
                        "example":"All Questions"
                    }
                },
                "description":"Key-value attribute for SDV group configuration"
            },
            "SDVGroupInfo":{
                "required":[
                    "attributeKey",
                    "attributeValue",
                    "sdvGroupName"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"9FCBB303F8D24A3FB7DABCACF7600629"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "attributeKey":{
                        "type":"string",
                        "description":"Key for a configurable attribute associated with this SDV group. Values may be REMAINING_SUBJECTS_PERCENTAGE, REMAINING_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_COUNT.",
                        "example":"INITIAL_SUBJECTS_COUNT"
                    },
                    "attributeValue":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Value for a configurable attribute associated with this SDV group. The acceptable values are - All Questions, Critical Questions Only or it can be a number like 30.",
                        "example":"20"
                    },
                    "sdvGroupName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Human readable name of the SDV group.",
                        "example":"StrategyTestSite"
                    },
                    "sdvGroupId":{
                        "type":"string",
                        "description":"ID of the Source Data Verification (SDV) group. The format is UUID, 32-character uppercase hexadecimal string.",
                        "example":"EFC64B3862FD4C85BB8DBEAE2AE26B13"
                    }
                },
                "description":"Represents Source Data Verification (SDV) group attribute entry with audit fields"
            },
            "SDVGroupRequest":{
                "required":[
                    "sdvGroupOldName"
                ],
                "type":"object",
                "properties":{
                    "sdvGroupOldName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Human readable name of the SDV group.",
                        "example":"TestSDV_GROUP1"
                    },
                    "sdvGroupNewName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Human readable name of the SDV group.",
                        "example":"TestSDV_GROUP1Updated"
                    },
                    "sdvGroupKeyValPairs":{
                        "type":"array",
                        "description":"List of SDV group attribute key/value pairs to update",
                        "items":{
                            "$ref":"#/components/schemas/SDVGroupKeyValDto"
                        }
                    }
                },
                "description":"Request to update SDV group attributes or rename the SDV group"
            },
            "SubjectDto1":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Base subject details including identity, demographics, study and site context, and state transitions"
            },
            "SubjectRequest1":{
                "type":"object",
                "properties":{
                    "SubjectDto":{
                        "$ref":"#/components/schemas/SubjectDto1"
                    }
                },
                "description":"Contains details related to subject"
            },
            "SubjectDto5":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject details extended with study origin and subject number site organization identifier"
            },
            "EnrollSubjectRequest":{
                "title":"EnrollSubjectRequest v1",
                "required":[
                    "fromStudyId",
                    "toStudyOrgId"
                ],
                "type":"object",
                "properties":{
                    "fromStudyId":{
                        "type":"string",
                        "description":"Originating Study Id (UUID, 32-char uppercase hex).",
                        "example":"367D03FD5B6146C08F874CE4A6E101F6"
                    },
                    "toStudyOrgId":{
                        "type":"string",
                        "description":"Target Site/Org Id where subject will enroll (UUID, 32-char uppercase hex).",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0010"
                    }
                },
                "description":"Enrollment Request for Rollover Studies; supplies all linkage context for subject enrollment or rollover."
            },
            "SubjectEventDto":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Base subject event details including event type and transfer identifier"
            },
            "SubjectNumberSelectionDTO":{
                "type":"object",
                "properties":{
                    "lastAssignedNumber":{
                        "type":"string",
                        "description":"Last assigned subject number",
                        "example":"SUBJ-1223"
                    },
                    "availableNumbers":{
                        "type":"array",
                        "description":"Available subject numbers",
                        "example":"SUBJ-1224",
                        "items":{
                            "type":"string",
                            "description":"Available subject numbers",
                            "example":"SUBJ-1224"
                        }
                    }
                },
                "description":"DTO for subject number selection, containing the last assigned number and a list of currently available subject numbers."
            },
            "DemographicStatusResponse":{
                "type":"object",
                "properties":{
                    "genderDataAvailable":{
                        "type":"boolean",
                        "description":"True if gender data is available for this subject.",
                        "example":true
                    },
                    "dobDataAvailable":{
                        "type":"boolean",
                        "description":"True if date of birth data is available for this subject.",
                        "example":false
                    },
                    "raceDataAvailable":{
                        "type":"boolean",
                        "description":"True if race data is available for this subject.",
                        "example":true
                    }
                },
                "description":"Response indicating whether demographic data (gender, date of birth, race) is available for a subject."
            },
            "SubjectOrgIdDto":{
                "title":"SubjectOrgIdDto v1",
                "type":"object",
                "properties":{
                    "orgId":{
                        "type":"string",
                        "description":"Site/Organization unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"OrgId used to generate subject number"
            },
            "RandomizationStatus":{
                "type":"object",
                "properties":{
                    "randomizationLimitReached":{
                        "type":"boolean",
                        "description":"Flag indicating if the randomization limit has been reached",
                        "example":true
                    },
                    "randomizationRestricted":{
                        "type":"boolean",
                        "description":"Flag indicating if randomization is restricted",
                        "example":false
                    }
                },
                "description":"Status indicating whether randomization is restricted or the randomization limit has been reached."
            },
            "SubjectSDVSelectionRequest":{
                "type":"object",
                "properties":{
                    "sites":{
                        "type":"array",
                        "description":"List of participating Site identifiers (UUID, 32-character uppercase hexadecimal strings).",
                        "example":[
                            "AA11BB22CC33DD44EE55FF6677889900",
                            "1234567890ABCDEF1234567890ABCDEF"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of participating Site identifiers (UUID, 32-character uppercase hexadecimal strings).",
                            "format":"uuid"
                        }
                    },
                    "startDate":{
                        "type":"string",
                        "description":"Start date for SDV selection in dd-MMM-yyyy pattern.",
                        "example":"01-JAN-2023"
                    },
                    "endDate":{
                        "type":"string",
                        "description":"End date for SDV selection in dd-MMM-yyyy pattern",
                        "example":"31-JAN-2023"
                    }
                },
                "description":"SDV subject selection request, providing list of site UUIDs and date range for SDV operation."
            },
            "SubjectSDVDto2":{
                "required":[
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp when the versioned SDV record began.",
                        "format":"date-time",
                        "example":"2025-08-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The timestamp when the versioned SDV record ended.",
                        "format":"date-time",
                        "example":"2025-08-31T18:00:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the SDV subject (UUID, 32-character uppercase hexadecimal string)",
                        "example":"22223333444455556666777788889999"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0204"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"FEDCBA1234567890FEDCBA1234567890"
                    },
                    "sdvSelectionStatus":{
                        "type":"string",
                        "description":"Source data verification selection status for the subject it can be NOT_SELECTED, INITIALCOUNT_SELECTED, POST_INITIALCOUNT_SELECTED.",
                        "example":"NOT_SELECTED"
                    }
                },
                "description":"Subject SDV details (version 2) with visit window timestamps."
            },
            "Address1":{
                "type":"object",
                "properties":{
                    "streetName":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Street name line.",
                                "example":"123 Main Street"
                            }
                        },
                        "description":"Street name component of a postal address."
                    },
                    "city":{
                        "$ref":"#/components/schemas/City1"
                    },
                    "stateProv":{
                        "$ref":"#/components/schemas/StateProv1"
                    },
                    "country":{
                        "$ref":"#/components/schemas/Country1"
                    },
                    "postalCode":{
                        "$ref":"#/components/schemas/PostalCode1"
                    },
                    "otherText":{
                        "$ref":"#/components/schemas/OtherText1"
                    }
                },
                "description":"Postal or location address for an ODM user or site, with support for street, city, state, country, and postal code."
            },
            "AdminData1":{
                "type":"object",
                "properties":{
                    "User":{
                        "type":"object",
                        "properties":{
                            "loginName":{
                                "$ref":"#/components/schemas/LoginName1"
                            },
                            "displayName":{
                                "$ref":"#/components/schemas/DisplayName1"
                            },
                            "fullName":{
                                "$ref":"#/components/schemas/FullName10"
                            },
                            "firstName":{
                                "$ref":"#/components/schemas/FirstName10"
                            },
                            "lastName":{
                                "$ref":"#/components/schemas/LastName10"
                            },
                            "organization":{
                                "$ref":"#/components/schemas/Organization10"
                            },
                            "address":{
                                "type":"object",
                                "properties":{
                                    "streetName":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Street name line.",
                                                "example":"123 Main Street"
                                            }
                                        },
                                        "description":"Street name component of a postal address."
                                    },
                                    "city":{
                                        "$ref":"#/components/schemas/City1"
                                    },
                                    "stateProv":{
                                        "$ref":"#/components/schemas/StateProv1"
                                    },
                                    "country":{
                                        "$ref":"#/components/schemas/Country1"
                                    },
                                    "postalCode":{
                                        "$ref":"#/components/schemas/PostalCode1"
                                    },
                                    "otherText":{
                                        "$ref":"#/components/schemas/OtherText1"
                                    }
                                },
                                "description":"Postal or location address for an ODM user or site, with support for street, city, state, country, and postal code."
                            },
                            "email":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Email address.",
                                        "example":"john.smith@email.com"
                                    }
                                },
                                "description":"Email address record for an ODM user."
                            },
                            "picture":{
                                "$ref":"#/components/schemas/Picture1"
                            },
                            "pager":{
                                "$ref":"#/components/schemas/Pager1"
                            },
                            "fax":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Fax number.",
                                        "example":"555-5678"
                                    }
                                },
                                "description":"Fax number/contact for an ODM User."
                            },
                            "phone":{
                                "type":"object",
                                "properties":{
                                    "Value":{
                                        "type":"string",
                                        "description":"Phone number.",
                                        "example":"555-9876"
                                    }
                                },
                                "description":"Phone number/contact entry for ODM User."
                            },
                            "locationRef":{
                                "type":"object",
                                "properties":{
                                    "LocationOID":{
                                        "type":"string",
                                        "description":"OID/ID for the associated location.",
                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                    }
                                },
                                "description":"Reference to a study/site location for an ODM User."
                            },
                            "certificate":{
                                "type":"object",
                                "properties":{
                                    "Value":{
                                        "type":"string",
                                        "description":"Certificate/credential identifier.",
                                        "example":"CERT123"
                                    }
                                },
                                "description":"Digital certificate or identity for an ODM User."
                            },
                            "userType":{
                                "type":"string",
                                "description":"Enumeration of possible user types/roles for ODM User.",
                                "enum":[
                                    "SPONSOR",
                                    "INVESTIGATOR",
                                    "LAB",
                                    "OTHER"
                                ]
                            },
                            "oid":{
                                "type":"string",
                                "description":"User OID value ",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"Represents a user in the ODM AdminData structure (site personnel, investigator, etc)."
                    },
                    "Location":{
                        "type":"object",
                        "properties":{
                            "metaDataVersionRef":{
                                "type":"object",
                                "properties":{
                                    "studyOID":{
                                        "type":"string",
                                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                                    },
                                    "metaDataVersionOID":{
                                        "type":"string",
                                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the metadata version.",
                                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF11"
                                    },
                                    "effectiveDate":{
                                        "type":"string",
                                        "description":"Effective date for this metadata version in YYYY-MM-DD format.",
                                        "example":"2025-01-31"
                                    },
                                    "effectiveDateTime":{
                                        "type":"string",
                                        "description":"Effective date and time for this metadata version in ISO-8601 format.",
                                        "example":"2025-01-31T10:15:30Z"
                                    }
                                },
                                "description":"Reference to a specific study metadata version with effective date information."
                            },
                            "name":{
                                "type":"string",
                                "description":"Name of the location.",
                                "example":"Main Site"
                            },
                            "locationType":{
                                "type":"string",
                                "description":"Type of location.",
                                "example":"OTHER",
                                "enum":[
                                    "SPONSOR",
                                    "SITE",
                                    "CRO",
                                    "LAB",
                                    "OTHER"
                                ]
                            },
                            "oid":{
                                "type":"string",
                                "description":"ID of the site or depot of the kit",
                                "example":"A8C41D8062A14FCC89EDA475C3E3AF12"
                            }
                        },
                        "description":"Represents a site or location entity within the ODM context."
                    },
                    "SignatureDef":{
                        "type":"object",
                        "properties":{
                            "group":{
                                "type":"string",
                                "description":"Signature group or category.",
                                "example":"INVESTIGATOR"
                            },
                            "type":{
                                "type":"string",
                                "description":"Signature type.",
                                "example":"DIGITAL"
                            },
                            "meaning":{
                                "$ref":"#/components/schemas/Meaning1"
                            },
                            "legalReason":{
                                "$ref":"#/components/schemas/LegalReason1"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            }
                        },
                        "description":"Definition of a signature including meaning, legal reason, and identifiers."
                    },
                    "StudyOID":{
                        "type":"string",
                        "description":"Study OID to which this admin data refers.",
                        "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                    }
                },
                "description":"ODM AdminData section: definition of users, locations, digital signatures, and study OID metadata."
            },
            "Alias1":{
                "type":"object",
                "properties":{
                    "Context":{
                        "type":"string",
                        "description":"Locale, region, or terminology context.",
                        "example":"US"
                    },
                    "Name":{
                        "type":"string",
                        "description":"Alternative or alias name for the unit in this context.",
                        "example":"mg per deciliter"
                    }
                },
                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
            },
            "Annotation2":{
                "type":"object",
                "properties":{
                    "comment":{
                        "$ref":"#/components/schemas/Comment2"
                    },
                    "flag":{
                        "type":"object",
                        "properties":{
                            "FlagValue":{
                                "$ref":"#/components/schemas/FlagValue1"
                            },
                            "FlagType":{
                                "$ref":"#/components/schemas/FlagType1"
                            }
                        },
                        "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                    },
                    "seqNum":{
                        "type":"integer",
                        "description":"Sequence number ordering annotations within the same context.",
                        "format":"int64",
                        "example":1
                    },
                    "transactionType":{
                        "type":"string",
                        "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                        "example":"INSERT"
                    },
                    "id":{
                        "type":"string",
                        "description":"Annotation identifier unique within the context.",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    }
                },
                "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
            },
            "Annotations1":{
                "type":"object",
                "properties":{
                    "annotation":{
                        "type":"array",
                        "description":"List of Annotation entries associated to the ODM structure.",
                        "items":{
                            "$ref":"#/components/schemas/Annotation2"
                        }
                    }
                },
                "description":"Container for a list of ODM Annotation entries."
            },
            "ArchiveLayout1":{
                "type":"object",
                "properties":{
                    "pdfFileName":{
                        "type":"string",
                        "description":"Name of the PDF file",
                        "example":"layout.pdf"
                    },
                    "presentationOID":{
                        "type":"string",
                        "description":"Presentation object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "oid":{
                        "type":"string",
                        "description":"ArchiveLayout object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Archive layout metadata for a form."
            },
            "ArchiveLayoutRef1":{
                "type":"object",
                "properties":{
                    "archiveLayoutOID":{
                        "type":"string",
                        "description":"Archive Layout OID",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Archive layout reference"
            },
            "AssociatedFormList1":{
                "type":"object",
                "properties":{
                    "auditTrail":{
                        "type":"array",
                        "description":"List of audit trail entries",
                        "items":{
                            "$ref":"#/components/schemas/AuditTrail1"
                        }
                    },
                    "formOID":{
                        "type":"string",
                        "description":"Form Identifier",
                        "example":"5ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29"
                    },
                    "formIndex":{
                        "type":"number",
                        "description":"Index of the form within the visit",
                        "example":1
                    },
                    "formName":{
                        "type":"string",
                        "description":"Human readable name of the form",
                        "example":"Medical History"
                    },
                    "visitOID":{
                        "type":"string",
                        "description":"Visit Identifier",
                        "example":"6ca47933-ab3c-4018-86c2-c6b77d2c5104.1_8_0_29"
                    },
                    "visitIndex":{
                        "type":"number",
                        "description":"Index of the visit within the schedule",
                        "example":1
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Human readable name of the visit",
                        "example":"Visit 1"
                    },
                    "deleted":{
                        "type":"boolean",
                        "description":"Indicates whether the associated form is deleted",
                        "example":false
                    },
                    "instanceNumber":{
                        "type":"integer",
                        "description":"Instance number of the unscheduled visit",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Associated form details including visit and audit metadata"
            },
            "Association11":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"array",
                        "description":"List of associated elements",
                        "example":[
                        ],
                        "items":{
                            "type":"object",
                            "description":"List of associated elements",
                            "example":[
                            ]
                        }
                    },
                    "studyOID":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2.0.0.39.222eabde-1b96-48f6-9d3b-6250880a2b09"
                    },
                    "metaDataVersionOID":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    }
                },
                "description":"Association between study and metadata version with embedded content"
            },
            "AuditRecord100":{
                "type":"object",
                "properties":{
                    "userRef":{
                        "$ref":"#/components/schemas/UserRef10"
                    },
                    "locationRef":{
                        "$ref":"#/components/schemas/LocationRef1"
                    },
                    "dateTimeStamp":{
                        "$ref":"#/components/schemas/DateTimeStamp1"
                    },
                    "reasonForChange":{
                        "$ref":"#/components/schemas/ReasonForChange1"
                    },
                    "sourceID":{
                        "$ref":"#/components/schemas/SourceID1"
                    },
                    "id":{
                        "type":"string",
                        "description":"Audit record identifier",
                        "format":"identifier",
                        "example":"AUD1"
                    }
                },
                "description":"Audit trail entry describing who performed a change, where it occurred, when it happened, and the justification."
            },
            "AuditRecords1":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "type":"array",
                        "description":"List of audit records associated with the subject or form.",
                        "items":{
                            "$ref":"#/components/schemas/AuditRecord100"
                        }
                    }
                },
                "description":"Container for a list of ODM audit record entries."
            },
            "AuditTrail1":{
                "type":"object",
                "properties":{
                    "dateTimeStamp":{
                        "type":"string",
                        "description":"Date and time of the change in ISO-8601 format",
                        "example":"2025-01-01T12:34:56Z"
                    },
                    "user":{
                        "type":"string",
                        "description":"User who performed the action",
                        "example":"john.doe"
                    },
                    "deleted":{
                        "type":"boolean",
                        "description":"Indicates whether the record was deleted as part of this change",
                        "example":false
                    },
                    "note":{
                        "type":"string",
                        "description":"Optional note associated with the change",
                        "example":"Correction applied"
                    }
                },
                "description":"Audit trail entry with timestamp, user, deletion status and note"
            },
            "BasicDefinitions10":{
                "type":"object",
                "properties":{
                    "MeasurementUnit":{
                        "type":"object",
                        "properties":{
                            "Symbol":{
                                "$ref":"#/components/schemas/Symbol10"
                            },
                            "Alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "Name":{
                                "type":"string",
                                "description":"Formal name of this measurement unit.",
                                "example":"mg/dL"
                            },
                            "OID":{
                                "type":"string",
                                "description":"Unique OID for this measurement unit. UUID uppercase hex.",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            }
                        },
                        "description":"A measurement unit reference used in study forms, such as mg/dL."
                    }
                },
                "description":"Root-level definitions for basic units and reference types in the ODM Study."
            },
            "CanonicalizationMethodType1":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"object",
                        "description":"Arbitrary content for CanonicalizationMethod child nodes."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Canonicalization algorithm URI.",
                        "example":"http://www.w3.org/TR/2001/REC-xml-c14n-20010315"
                    }
                },
                "description":"Canonicalization method definition per XML Digital Signature specification."
            },
            "Certificate":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Certificate/credential identifier.",
                        "example":"CERT123"
                    }
                },
                "description":"Digital certificate or identity for an ODM User."
            },
            "CheckValue1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Value to check in a range validation",
                        "example":"10"
                    }
                },
                "description":"A value used within a range validation."
            },
            "City1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"City name.",
                        "example":"San Francisco"
                    }
                },
                "description":"City component of a postal address."
            },
            "ClinicalData1":{
                "type":"object",
                "properties":{
                    "subjectData":{
                        "type":"array",
                        "description":"List of subject-level clinical data records",
                        "items":{
                            "$ref":"#/components/schemas/SubjectData1"
                        }
                    },
                    "auditRecords":{
                        "type":"array",
                        "description":"List of audit records associated with clinical data",
                        "items":{
                            "$ref":"#/components/schemas/AuditRecords1"
                        }
                    },
                    "Signatures":{
                        "type":"array",
                        "description":"List of digital signatures applied to the clinical data",
                        "items":{
                            "$ref":"#/components/schemas/Signatures1"
                        }
                    },
                    "Annotations":{
                        "type":"array",
                        "description":"List of annotations attached to the clinical data",
                        "items":{
                            "$ref":"#/components/schemas/Annotations1"
                        }
                    },
                    "StudyOID":{
                        "type":"string",
                        "description":"Study OID for which this clinical data applies",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "MetaDataVersionOID":{
                        "type":"string",
                        "description":"Metadata version OID associated with the study design",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"ODM ClinicalData section containing study OID, metadata version OID, and lists of subject data, audit records, signatures, and annotations."
            },
            "CodeList1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "externalCodeList":{
                        "$ref":"#/components/schemas/ExternalCodeList1"
                    },
                    "enumeratedItem":{
                        "type":"object",
                        "properties":{
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "codedValue":{
                                "type":"string",
                                "description":"Coded value",
                                "example":"M"
                            },
                            "rank":{
                                "type":"number",
                                "description":"Optional rank for ordering",
                                "example":1
                            },
                            "orderNumber":{
                                "type":"integer",
                                "description":"Order number within the code list",
                                "format":"int64",
                                "example":1
                            }
                        },
                        "description":"Enumerated item value with optional ordering and aliases."
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "name":{
                        "type":"string",
                        "description":"Code list name",
                        "example":"GENDER"
                    },
                    "dataType":{
                        "type":"string",
                        "description":"Code list data type",
                        "enum":[
                            "INTEGER",
                            "FLOAT",
                            "TEXT",
                            "STRING"
                        ]
                    },
                    "SASFormatName":{
                        "type":"string",
                        "description":"SAS format name for the code list",
                        "example":"BEST12."
                    },
                    "codeListItem":{
                        "type":"object",
                        "properties":{
                            "decode":{
                                "$ref":"#/components/schemas/Decode1"
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "codedValue":{
                                "type":"string",
                                "description":"Coded value",
                                "example":"M"
                            },
                            "orderNumber":{
                                "type":"integer",
                                "description":"Order number of this item",
                                "format":"int64",
                                "example":1
                            }
                        },
                        "description":"Represents a single code list item with decode and metadata."
                    },
                    "oid":{
                        "type":"string",
                        "description":"CodeList object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Code list definition including items or external mappings."
            },
            "CodeListItem1":{
                "type":"object",
                "properties":{
                    "decode":{
                        "$ref":"#/components/schemas/Decode1"
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "codedValue":{
                        "type":"string",
                        "description":"Coded value",
                        "example":"M"
                    },
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order number of this item",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Represents a single code list item with decode and metadata."
            },
            "CodeListRef1":{
                "type":"object",
                "properties":{
                    "codeListOID":{
                        "type":"string",
                        "description":"OID of the referenced code list",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Reference to a CodeList by its OID."
            },
            "Comment2":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Comment",
                        "example":"User-entered comment"
                    },
                    "sponsorOrSite":{
                        "type":"string",
                        "description":"Comment origin (Sponsor or Site)",
                        "example":"Site"
                    }
                },
                "description":"Comment DTO"
            },
            "ConditionDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "formalExpression":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Formal expression for validation",
                                "example":"@AGE > 18"
                            },
                            "context":{
                                "type":"string",
                                "description":"Context or language for expression",
                                "example":"XPath"
                            }
                        },
                        "description":"Formal expression used for validation."
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "name":{
                        "type":"string",
                        "description":"Condition name",
                        "example":"AgeGreaterThan18"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Condition object identifier",
                        "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                    }
                },
                "description":"Condition definition containing formal expressions and metadata."
            },
            "Country1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Country code or name.",
                        "example":"US"
                    }
                },
                "description":"Country component of a postal address."
            },
            "CryptoBindingManifest10":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Base64-encoded manifest payload.",
                        "example":"VGhpcyBpcyBhIG1hbmlmZXN0IHBheWxvYWQ="
                    }
                },
                "description":"Cryptographic binding manifest that ties the signature to the signed payload."
            },
            "DateTimeStamp1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Raw date/time value",
                        "example":"2025-10-29T14:54:09"
                    },
                    "formattedValue":{
                        "type":"string",
                        "description":"Human-readable formatted date/time value",
                        "example":"29-Oct-2025 20:24:09 India Time ( Asia/Kolkata )"
                    }
                },
                "description":"Date/time stamp value with formatted representation."
            },
            "Decode1":{
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Text value for this locale/language.",
                                "example":"gender"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code for this translation, e.g. 'en'.",
                                "example":"null"
                            }
                        },
                        "description":"A localizable or translated representation of a symbol, label, or similar text element."
                    }
                },
                "description":"Decoded text for a code list item with translations."
            },
            "Description10":{
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Text value for this locale/language.",
                                "example":"gender"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code for this translation, e.g. 'en'.",
                                "example":"null"
                            }
                        },
                        "description":"A localizable or translated representation of a symbol, label, or similar text element."
                    }
                },
                "description":"Description DTO having information on the translated text"
            },
            "DigestMethodType1":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"object",
                        "description":"Optional content/parameters for the DigestMethod."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Digest algorithm URI.",
                        "example":"http://www.w3.org/2001/04/xmlenc#sha256"
                    }
                },
                "description":"Digest method definition and optional parameters for computing the message digest in XML Digital Signatures."
            },
            "DisplayName1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Value for the display name of the user.",
                        "example":"Dr. J. Smith"
                    }
                },
                "description":"Human-readable display name for the ODM User."
            },
            "Email1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Email address.",
                        "example":"john.smith@email.com"
                    }
                },
                "description":"Email address record for an ODM user."
            },
            "EnumeratedItem1":{
                "type":"object",
                "properties":{
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "codedValue":{
                        "type":"string",
                        "description":"Coded value",
                        "example":"M"
                    },
                    "rank":{
                        "type":"number",
                        "description":"Optional rank for ordering",
                        "example":1
                    },
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order number within the code list",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Enumerated item value with optional ordering and aliases."
            },
            "ErrorMessage1":{
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Text value for this locale/language.",
                                "example":"gender"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code for this translation, e.g. 'en'.",
                                "example":"null"
                            }
                        },
                        "description":"A localizable or translated representation of a symbol, label, or similar text element."
                    }
                },
                "description":"Error message details for validation failures."
            },
            "ExternalCodeList1":{
                "type":"object",
                "properties":{
                    "href":{
                        "type":"string",
                        "description":"Hyperlink reference to the external code list",
                        "example":"https://example.com/codelist/CL001"
                    },
                    "ref":{
                        "type":"string",
                        "description":"Reference identifier within the external system",
                        "example":"CL001"
                    },
                    "dictionary":{
                        "type":"string",
                        "description":"External dictionary name",
                        "example":"MedDRA"
                    },
                    "version":{
                        "type":"string",
                        "description":"External dictionary version",
                        "example":"24.0"
                    }
                },
                "description":"Reference to an external dictionary-based code list."
            },
            "ExternalQuestion1":{
                "type":"object",
                "properties":{
                    "code":{
                        "type":"string",
                        "description":"External question code",
                        "example":"QCODE123"
                    },
                    "dictionary":{
                        "type":"string",
                        "description":"Source dictionary name",
                        "example":"MedDRA"
                    },
                    "version":{
                        "type":"string",
                        "description":"Dictionary version",
                        "example":"24.0"
                    }
                },
                "description":"External question reference details."
            },
            "Fax1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Fax number.",
                        "example":"555-5678"
                    }
                },
                "description":"Fax number/contact for an ODM User."
            },
            "FirstName10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Given name of the user.",
                        "example":"John"
                    }
                },
                "description":"User's first name."
            },
            "Flag1":{
                "type":"object",
                "properties":{
                    "FlagValue":{
                        "$ref":"#/components/schemas/FlagValue1"
                    },
                    "FlagType":{
                        "$ref":"#/components/schemas/FlagType1"
                    }
                },
                "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
            },
            "FlagType1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Flag display value",
                        "example":"Y"
                    },
                    "codeListOID":{
                        "type":"string",
                        "description":"CodeList OID",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Flag type",
                "example":{
                    "flagOID":"QUERY"
                }
            },
            "FlagValue1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Flag value",
                        "example":"Y"
                    },
                    "codeListOID":{
                        "type":"string",
                        "description":"CodeList OID",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Flag value",
                "example":{
                    "value":"Review"
                }
            },
            "FormData10":{
                "type":"object",
                "properties":{
                    "AuditRecord":{
                        "$ref":"#/components/schemas/AuditRecord100"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature1"
                    },
                    "archiveLayoutRef":{
                        "$ref":"#/components/schemas/ArchiveLayoutRef1"
                    },
                    "Annotation":{
                        "type":"array",
                        "description":"Annotations (queries, notes, flags) for this form.",
                        "items":{
                            "$ref":"#/components/schemas/Annotation2"
                        }
                    },
                    "ItemGroupData":{
                        "type":"array",
                        "description":"Groups of item data contained in this form.",
                        "items":{
                            "$ref":"#/components/schemas/ItemGroupData1"
                        }
                    },
                    "FormOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the form definition.",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "FormRepeatKey":{
                        "type":"string",
                        "description":"Repeat key when the same form occurs multiple times within an event.",
                        "example":"1"
                    },
                    "TransactionType":{
                        "type":"string",
                        "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                        "example":"Update"
                    },
                    "Status":{
                        "type":"string",
                        "description":"High-level status of the form (e.g., In Progress, Completed).",
                        "example":"Completed"
                    },
                    "TitleAddendum":{
                        "type":"string",
                        "description":"Additional title information for display.",
                        "example":"Follow-up Visit"
                    },
                    "FormStatus":{
                        "type":"string",
                        "description":"System-specific form status.",
                        "example":"LOCKED"
                    },
                    "NotDoneValue":{
                        "type":"string",
                        "description":"Reason/value indicating form was not performed.",
                        "example":"SUBJECT_UNAVAILABLE"
                    },
                    "Signatures":{
                        "$ref":"#/components/schemas/Signatures1"
                    }
                },
                "description":"Data captured for a single form within a study event, including items, annotations, signatures, and status."
            },
            "FormDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "itemGroupRef":{
                        "type":"array",
                        "description":"Item group references for this form",
                        "items":{
                            "$ref":"#/components/schemas/ItemGroupRef1"
                        }
                    },
                    "archiveLayout":{
                        "type":"array",
                        "description":"Archive layouts defined for this form",
                        "items":{
                            "$ref":"#/components/schemas/ArchiveLayout1"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases for the form",
                        "items":{
                            "$ref":"#/components/schemas/Alias1"
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Form name",
                        "example":"Demographics"
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Whether the form is repeating",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "hasIPR":{
                        "type":"boolean",
                        "description":"Indicates IPR exists for the form",
                        "example":true
                    },
                    "note":{
                        "type":"string",
                        "description":"Additional note for the form",
                        "example":"Requires supervisor review"
                    },
                    "revisionDate":{
                        "type":"string",
                        "description":"Form revision date",
                        "example":"2023-01-01"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Form object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "id":{
                        "type":"string",
                        "description":"Form identifier",
                        "example":"9B9B96B684BA4822B98BFA612A070251"
                    }
                },
                "description":"Form definition containing item group references, archive layouts and metadata."
            },
            "FormHeader1":{
                "type":"object",
                "properties":{
                    "itemset":{
                        "type":"string",
                        "description":"Indicates whether this header represents an itemset.",
                        "example":"false"
                    },
                    "itemsetHeader":{
                        "type":"string",
                        "description":"Optional label or identifier for the itemset header.",
                        "example":"Vital Signs Panel"
                    },
                    "name":{
                        "type":"string",
                        "description":"Human-readable form name.",
                        "example":"Vital Signs"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object Identifier for the form (matches the form definition OID).",
                        "format":"oid",
                        "example":"FORM.VITALS"
                    }
                },
                "description":"Header metadata for a form instance, including basic identity and display information."
            },
            "FormRef":{
                "type":"object",
                "properties":{
                    "formOID":{
                        "type":"string",
                        "description":"OID of the referenced form",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    },
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order of this form in the event",
                        "format":"int32",
                        "example":1
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Is this form mandatory in the event?",
                        "example":"Yes",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "description":"OID for collection exception",
                        "example":"43caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    }
                },
                "description":"FormRef metadata"
            },
            "FormalExpression1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Formal expression for validation",
                        "example":"@AGE > 18"
                    },
                    "context":{
                        "type":"string",
                        "description":"Context or language for expression",
                        "example":"XPath"
                    }
                },
                "description":"Formal expression used for validation."
            },
            "FullName10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Full name for the user.",
                        "example":"John Smith"
                    }
                },
                "description":"User's full name as a single value."
            },
            "GlobalVariables10":{
                "type":"object",
                "properties":{
                    "StudyName":{
                        "$ref":"#/components/schemas/StudyName10"
                    },
                    "StudyDescription":{
                        "$ref":"#/components/schemas/StudyDescription10"
                    },
                    "ProtocolName":{
                        "$ref":"#/components/schemas/ProtocolName10"
                    }
                },
                "description":"ODM GlobalVariables for a Study, providing human-readable study description and identifiers."
            },
            "History1":{
                "type":"object",
                "properties":{
                    "action":{
                        "type":"string",
                        "description":"Action taken on the entity.",
                        "example":"Verification"
                    },
                    "details":{
                        "type":"array",
                        "description":"Additional details about the action.",
                        "example":[
                            "Verified by Data Manager",
                            "No discrepancies found"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Additional details about the action.",
                            "example":"[\"Verified by Data Manager\",\"No discrepancies found\"]"
                        }
                    },
                    "actionDate":{
                        "type":"string",
                        "description":"Timestamp when the action occurred (ISO 8601).",
                        "format":"date-time",
                        "example":"2025-11-01T14:00:00Z"
                    }
                },
                "description":"Historical record describing an action performed on an ODM entity, with optional details and timestamp."
            },
            "ImputationMethod10":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Imputation method value",
                        "example":"MeanImputation"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Imputation method object identifier",
                        "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                    }
                },
                "description":"Imputation method definition with value and identifier."
            },
            "Include10":{
                "type":"object",
                "properties":{
                    "StudyOID":{
                        "type":"string",
                        "description":"OID of the referenced study",
                        "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                    },
                    "MetaDataVersionOID":{
                        "type":"string",
                        "description":"OID of the referenced MetaDataVersion",
                        "example":"77ad209a-99bc-4b84-901a-2dcd173dcda7.2_0_0_39"
                    }
                },
                "description":"Includes the metadata about the study version"
            },
            "InvestigatorRef1":{
                "type":"object",
                "properties":{
                    "userOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the investigator user within the study.",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Reference to an investigator user participating in the study."
            },
            "Item1":{
                "type":"object",
                "properties":{
                    "itemset":{
                        "type":"boolean",
                        "description":"Indicates whether this item represents an itemset (grid or repeating values).",
                        "example":false
                    },
                    "itemsetRows":{
                        "type":"string",
                        "description":"Row identifiers or count for the itemset when itemset is true.",
                        "example":"1"
                    },
                    "value":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"SAMPLE_VALUE"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    }
                },
                "description":"ODM Item instance with value and identifiers"
            },
            "ItemData1":{
                "type":"object",
                "properties":{
                    "AuditRecord":{
                        "$ref":"#/components/schemas/AuditRecord100"
                    },
                    "Signature":{
                        "$ref":"#/components/schemas/Signature1"
                    },
                    "MeasurementUnitRef":{
                        "$ref":"#/components/schemas/MeasurementUnitRef1"
                    },
                    "Annotation":{
                        "type":"object",
                        "properties":{
                            "comment":{
                                "$ref":"#/components/schemas/Comment2"
                            },
                            "flag":{
                                "type":"object",
                                "properties":{
                                    "FlagValue":{
                                        "$ref":"#/components/schemas/FlagValue1"
                                    },
                                    "FlagType":{
                                        "$ref":"#/components/schemas/FlagType1"
                                    }
                                },
                                "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                            },
                            "seqNum":{
                                "type":"integer",
                                "description":"Sequence number ordering annotations within the same context.",
                                "format":"int64",
                                "example":1
                            },
                            "transactionType":{
                                "type":"string",
                                "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                "example":"INSERT"
                            },
                            "id":{
                                "type":"string",
                                "description":"Annotation identifier unique within the context.",
                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                            }
                        },
                        "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                    },
                    "ItemOID":{
                        "type":"string",
                        "description":"OID of the item",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    },
                    "TransactionType":{
                        "type":"string",
                        "description":"Transaction type- INSERT, UPDATE, REMOVE, UPSERT or CONTEXT",
                        "example":"UPDATE",
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    },
                    "ParentItemOID":{
                        "type":"string",
                        "description":"OID of parent item",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    },
                    "NotDone":{
                        "type":"string",
                        "description":"Whether item is not done (0 or 1)",
                        "example":"0"
                    },
                    "SelectedCodeListItemsType":{
                        "type":"string",
                        "description":"Selected code list items type",
                        "example":"CODE_A"
                    },
                    "Value":{
                        "type":"string",
                        "description":"Value for this item",
                        "example":"130"
                    },
                    "DocumentId":{
                        "type":"string",
                        "description":"Document ID reference",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    },
                    "DocumentVersion":{
                        "type":"number",
                        "description":"Document version",
                        "example":1
                    }
                },
                "description":"Data captured for a Item "
            },
            "ItemDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "question":{
                        "$ref":"#/components/schemas/Question1"
                    },
                    "externalQuestion":{
                        "$ref":"#/components/schemas/ExternalQuestion1"
                    },
                    "measurementUnitRef":{
                        "type":"object",
                        "properties":{
                            "MeasurementUnitOID":{
                                "type":"string",
                                "description":"OID of the referenced measurement unit",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            }
                        },
                        "description":"Data captured for a Measurement Unit "
                    },
                    "rangeCheck":{
                        "type":"object",
                        "properties":{
                            "checkValue":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Value to check in a range validation",
                                        "example":"10"
                                    }
                                },
                                "description":"A value used within a range validation."
                            },
                            "formalExpression":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Formal expression for validation",
                                        "example":"@AGE > 18"
                                    },
                                    "context":{
                                        "type":"string",
                                        "description":"Context or language for expression",
                                        "example":"XPath"
                                    }
                                },
                                "description":"Formal expression used for validation."
                            },
                            "measurementUnitRef":{
                                "$ref":"#/components/schemas/MeasurementUnitRef1"
                            },
                            "errorMessage":{
                                "$ref":"#/components/schemas/ErrorMessage1"
                            },
                            "comparator":{
                                "type":"string",
                                "description":"Comparator operation",
                                "enum":[
                                    "LT",
                                    "LE",
                                    "GT",
                                    "GE",
                                    "EQ",
                                    "NE",
                                    "IN",
                                    "NOTIN"
                                ]
                            },
                            "softHard":{
                                "type":"string",
                                "description":"Indicates hard or soft validation",
                                "enum":[
                                    "SOFT",
                                    "HARD"
                                ]
                            }
                        },
                        "description":"Range check configuration for item validation."
                    },
                    "codeListRef":{
                        "$ref":"#/components/schemas/CodeListRef1"
                    },
                    "role":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Value or name of the role",
                                "example":"DataEntry"
                            }
                        },
                        "description":"Represents the role associated with an item or definition."
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "Name":{
                        "type":"string",
                        "description":"Item name",
                        "example":"DROPDOWN_03"
                    },
                    "DataType":{
                        "type":"string",
                        "description":"Data type (e.g., STRING, INT)",
                        "example":"string",
                        "enum":[
                            "integer",
                            "float",
                            "date",
                            "datetime",
                            "time",
                            "text",
                            "string",
                            "double",
                            "URI",
                            "boolean",
                            "hexBinary",
                            "base64Binary",
                            "hexFloat",
                            "base64Float",
                            "partialDate",
                            "partialTime",
                            "partialDatetime",
                            "durationDatetime",
                            "intervalDatetime",
                            "incompleteDatetime",
                            "incompleteDate",
                            "incompleteTime"
                        ]
                    },
                    "Length":{
                        "type":"integer",
                        "description":"Length of string/numeric",
                        "format":"int32",
                        "example":255
                    },
                    "SignificantDigits":{
                        "type":"integer",
                        "description":"Number of significant digits",
                        "format":"int32",
                        "example":2
                    },
                    "Origin":{
                        "type":"string",
                        "description":"Item's origin data",
                        "example":"derived"
                    },
                    "Comment":{
                        "type":"string",
                        "description":"Free-text comment",
                        "example":"This is a calculated item."
                    },
                    "CaptionText":{
                        "type":"string",
                        "description":"UI caption text",
                        "example":"Please enter your name"
                    },
                    "ControlType":{
                        "type":"string",
                        "description":"UI control type",
                        "example":"TEXTBOX",
                        "enum":[
                            "pulldown",
                            "text",
                            "group",
                            "radiogroup",
                            "checkbox",
                            "calendar",
                            "element",
                            "calculated",
                            "instructionaltext",
                            "file"
                        ]
                    },
                    "ControlLayout":{
                        "type":"string",
                        "description":"UI control layout style.Allowed values are INF_NOTDEFINED,INF_HORIZONTAL,INF_VERTICAL,INF_NOWRAP,INF_TWOCOLUMN,INF_THREECOLUMN",
                        "example":"INF_NOTDEFINED",
                        "enum":[
                            "0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5"
                        ]
                    },
                    "CaptionAlignment":{
                        "type":"string",
                        "description":"Caption alignment. Allowed Values are INF_NOTDEFINED ,INF_LEFT ,INF_CENTER ,INF_RIGHT ,INF_TOP ,INF_MIDDLE ,INF_BOTTOM",
                        "example":"INF_TOP",
                        "enum":[
                            "0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6"
                        ]
                    },
                    "InitialRowCount":{
                        "type":"string",
                        "description":"Initial number of rows",
                        "example":"1"
                    },
                    "DisplayMask":{
                        "type":"string",
                        "description":"Display mask for input",
                        "example":"999-99-9999"
                    },
                    "StartYear":{
                        "type":"string",
                        "description":"Start year for date input",
                        "example":"2000"
                    },
                    "EndYear":{
                        "type":"string",
                        "description":"End year for date input",
                        "example":"2025"
                    },
                    "UnknownMask":{
                        "type":"string",
                        "description":"Unknown input mask",
                        "example":"UNK"
                    },
                    "Calculated":{
                        "type":"string",
                        "description":"Is this item calculated?",
                        "example":"1"
                    },
                    "SelectionValue":{
                        "type":"string",
                        "description":"Selection value for this item",
                        "example":"Y"
                    },
                    "itemRef":{
                        "type":"object",
                        "properties":{
                            "itemOID":{
                                "type":"string",
                                "description":"OID of referenced item",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "keySequence":{
                                "type":"integer",
                                "description":"Key sequence for composite key",
                                "format":"int64",
                                "example":1
                            },
                            "methodOID":{
                                "type":"string",
                                "description":"Method OID for derivation",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "imputationMethodOID":{
                                "type":"string",
                                "description":"Imputation method OID",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "role":{
                                "type":"string",
                                "description":"Role of the referenced item",
                                "example":"DataEntry"
                            },
                            "roleCodeListOID":{
                                "type":"string",
                                "description":"OID for role code list",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "orderNumber":{
                                "type":"integer",
                                "description":"Order of the item",
                                "format":"int64",
                                "example":2
                            },
                            "mandatory":{
                                "type":"string",
                                "description":"Is this item mandatory?",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "collectionExceptionConditionOID":{
                                "type":"string",
                                "description":"OID for collection exception condition",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"Reference to an Item within an ItemGroup."
                    },
                    "IsDynamic":{
                        "type":"integer",
                        "description":"Is this item dynamic?",
                        "format":"int32",
                        "example":0
                    },
                    "IsSmartItem":{
                        "type":"integer",
                        "description":"Is this a smart item?",
                        "format":"int32",
                        "example":1
                    },
                    "SASFieldName":{
                        "type":"string",
                        "description":"Field name in SAS export",
                        "example":"HEIGHT_SAS"
                    },
                    "SDSVarName":{
                        "type":"string",
                        "description":"Field name in SDS export",
                        "example":"HEIGHT_SDS"
                    },
                    "OID":{
                        "type":"string",
                        "description":"Unique OID",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Item definition including question, code list, range checks and metadata."
            },
            "ItemGroupData1":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord100"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature1"
                    },
                    "annotation":{
                        "type":"object",
                        "properties":{
                            "comment":{
                                "$ref":"#/components/schemas/Comment2"
                            },
                            "flag":{
                                "type":"object",
                                "properties":{
                                    "FlagValue":{
                                        "$ref":"#/components/schemas/FlagValue1"
                                    },
                                    "FlagType":{
                                        "$ref":"#/components/schemas/FlagType1"
                                    }
                                },
                                "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                            },
                            "seqNum":{
                                "type":"integer",
                                "description":"Sequence number ordering annotations within the same context.",
                                "format":"int64",
                                "example":1
                            },
                            "transactionType":{
                                "type":"string",
                                "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                "example":"INSERT"
                            },
                            "id":{
                                "type":"string",
                                "description":"Annotation identifier unique within the context.",
                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                            }
                        },
                        "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                    },
                    "items":{
                        "type":"object",
                        "properties":{
                            "AuditRecord":{
                                "$ref":"#/components/schemas/AuditRecord100"
                            },
                            "Signature":{
                                "$ref":"#/components/schemas/Signature1"
                            },
                            "MeasurementUnitRef":{
                                "$ref":"#/components/schemas/MeasurementUnitRef1"
                            },
                            "Annotation":{
                                "type":"object",
                                "properties":{
                                    "comment":{
                                        "$ref":"#/components/schemas/Comment2"
                                    },
                                    "flag":{
                                        "type":"object",
                                        "properties":{
                                            "FlagValue":{
                                                "$ref":"#/components/schemas/FlagValue1"
                                            },
                                            "FlagType":{
                                                "$ref":"#/components/schemas/FlagType1"
                                            }
                                        },
                                        "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                                    },
                                    "seqNum":{
                                        "type":"integer",
                                        "description":"Sequence number ordering annotations within the same context.",
                                        "format":"int64",
                                        "example":1
                                    },
                                    "transactionType":{
                                        "type":"string",
                                        "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                        "example":"INSERT"
                                    },
                                    "id":{
                                        "type":"string",
                                        "description":"Annotation identifier unique within the context.",
                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                    }
                                },
                                "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                            },
                            "ItemOID":{
                                "type":"string",
                                "description":"OID of the item",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            },
                            "TransactionType":{
                                "type":"string",
                                "description":"Transaction type- INSERT, UPDATE, REMOVE, UPSERT or CONTEXT",
                                "example":"UPDATE",
                                "enum":[
                                    "INSERT",
                                    "UPDATE",
                                    "REMOVE",
                                    "UPSERT",
                                    "CONTEXT"
                                ]
                            },
                            "ParentItemOID":{
                                "type":"string",
                                "description":"OID of parent item",
                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                            },
                            "NotDone":{
                                "type":"string",
                                "description":"Whether item is not done (0 or 1)",
                                "example":"0"
                            },
                            "SelectedCodeListItemsType":{
                                "type":"string",
                                "description":"Selected code list items type",
                                "example":"CODE_A"
                            },
                            "Value":{
                                "type":"string",
                                "description":"Value for this item",
                                "example":"130"
                            },
                            "DocumentId":{
                                "type":"string",
                                "description":"Document ID reference",
                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                            },
                            "DocumentVersion":{
                                "type":"number",
                                "description":"Document version",
                                "example":1
                            }
                        },
                        "description":"Data captured for a Item "
                    },
                    "itemGroupOID":{
                        "type":"string",
                        "description":"OID for this item group",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "itemGroupRepeatKey":{
                        "type":"string",
                        "description":"Repeat key for this group",
                        "example":"RPT1"
                    },
                    "transactionType":{
                        "type":"string",
                        "description":"Transaction type for the group",
                        "example":"INSERT",
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    }
                },
                "description":"Data captured for a Item Group"
            },
            "ItemGroupDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "itemRef":{
                        "type":"array",
                        "description":"References to Items within this ItemGroup",
                        "items":{
                            "$ref":"#/components/schemas/ItemRef1"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases for the ItemGroup",
                        "items":{
                            "$ref":"#/components/schemas/Alias1"
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"ItemGroup name",
                        "example":"Demographics Group"
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Whether the ItemGroup is repeating",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "isReferenceData":{
                        "type":"string",
                        "description":"Indicates whether the ItemGroup holds reference data",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "domain":{
                        "type":"string",
                        "description":"Domain name for the ItemGroup",
                        "example":"DM"
                    },
                    "origin":{
                        "type":"string",
                        "description":"Origin of the ItemGroup data",
                        "example":"Collected"
                    },
                    "role":{
                        "type":"string",
                        "description":"Role of the ItemGroup",
                        "example":"CRF"
                    },
                    "purpose":{
                        "type":"string",
                        "description":"Purpose of the ItemGroup",
                        "example":"Analysis"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comments for the ItemGroup",
                        "example":"No special handling"
                    },
                    "SASDatasetName":{
                        "type":"string",
                        "description":"SAS dataset name mapped for the ItemGroup",
                        "example":"DM"
                    },
                    "oid":{
                        "type":"string",
                        "description":"ItemGroup object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"ItemGroup definition containing item references and metadata."
            },
            "ItemGroupRef1":{
                "type":"object",
                "properties":{
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order number within the form",
                        "format":"int64",
                        "example":1
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Whether collection of the item group is mandatory",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "description":"Condition OID that allows exception to collection",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "itemGroupOID":{
                        "type":"string",
                        "description":"ItemGroup object identifier",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Reference to an ItemGroup within a form."
            },
            "ItemRef1":{
                "type":"object",
                "properties":{
                    "itemOID":{
                        "type":"string",
                        "description":"OID of referenced item",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "keySequence":{
                        "type":"integer",
                        "description":"Key sequence for composite key",
                        "format":"int64",
                        "example":1
                    },
                    "methodOID":{
                        "type":"string",
                        "description":"Method OID for derivation",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "imputationMethodOID":{
                        "type":"string",
                        "description":"Imputation method OID",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "role":{
                        "type":"string",
                        "description":"Role of the referenced item",
                        "example":"DataEntry"
                    },
                    "roleCodeListOID":{
                        "type":"string",
                        "description":"OID for role code list",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    },
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order of the item",
                        "format":"int64",
                        "example":2
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Is this item mandatory?",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "description":"OID for collection exception condition",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Reference to an Item within an ItemGroup."
            },
            "KeyInfoType1":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"object",
                        "description":"Key information content (e.g., X509Data, KeyName)."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"Key information content (e.g., X509Data, KeyName) and optional identifier."
            },
            "LastName10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Surname of the user.",
                        "example":"Smith"
                    }
                },
                "description":"User's last/family/surname."
            },
            "LegalReason1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Legal reason value.",
                        "example":"CONSENT_OBTAINED"
                    }
                },
                "description":"Represents the legal reason metadata for an ODM element."
            },
            "Location1":{
                "type":"object",
                "properties":{
                    "metaDataVersionRef":{
                        "type":"object",
                        "properties":{
                            "studyOID":{
                                "type":"string",
                                "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                            },
                            "metaDataVersionOID":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the metadata version.",
                                "example":"A1B2C3D4E5F6478899AABBCCDDEEFF11"
                            },
                            "effectiveDate":{
                                "type":"string",
                                "description":"Effective date for this metadata version in YYYY-MM-DD format.",
                                "example":"2025-01-31"
                            },
                            "effectiveDateTime":{
                                "type":"string",
                                "description":"Effective date and time for this metadata version in ISO-8601 format.",
                                "example":"2025-01-31T10:15:30Z"
                            }
                        },
                        "description":"Reference to a specific study metadata version with effective date information."
                    },
                    "name":{
                        "type":"string",
                        "description":"Name of the location.",
                        "example":"Main Site"
                    },
                    "locationType":{
                        "type":"string",
                        "description":"Type of location.",
                        "example":"OTHER",
                        "enum":[
                            "SPONSOR",
                            "SITE",
                            "CRO",
                            "LAB",
                            "OTHER"
                        ]
                    },
                    "oid":{
                        "type":"string",
                        "description":"ID of the site or depot of the kit",
                        "example":"A8C41D8062A14FCC89EDA475C3E3AF12"
                    }
                },
                "description":"Represents a site or location entity within the ODM context."
            },
            "LocationRef1":{
                "type":"object",
                "properties":{
                    "LocationOID":{
                        "type":"string",
                        "description":"OID/ID for the associated location.",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    }
                },
                "description":"Reference to a study/site location for an ODM User."
            },
            "LoginName1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Login/account name for the user.",
                        "example":"INVEST001"
                    }
                },
                "description":"Login name or identifier for the ODM User."
            },
            "Meaning1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Coded meaning value.",
                        "example":"EXP"
                    },
                    "text":{
                        "type":"string",
                        "description":"Human-readable description of the meaning.",
                        "example":"Experimental arm"
                    }
                },
                "description":"Represents the meaning metadata for an ODM element."
            },
            "MeasurementUnit10":{
                "type":"object",
                "properties":{
                    "Symbol":{
                        "$ref":"#/components/schemas/Symbol10"
                    },
                    "Alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "Name":{
                        "type":"string",
                        "description":"Formal name of this measurement unit.",
                        "example":"mg/dL"
                    },
                    "OID":{
                        "type":"string",
                        "description":"Unique OID for this measurement unit. UUID uppercase hex.",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    }
                },
                "description":"A measurement unit reference used in study forms, such as mg/dL."
            },
            "MeasurementUnitRef1":{
                "type":"object",
                "properties":{
                    "MeasurementUnitOID":{
                        "type":"string",
                        "description":"OID of the referenced measurement unit",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    }
                },
                "description":"Data captured for a Measurement Unit "
            },
            "MetaDataVersion10":{
                "type":"object",
                "properties":{
                    "include":{
                        "$ref":"#/components/schemas/Include10"
                    },
                    "protocol":{
                        "$ref":"#/components/schemas/Protocol10"
                    },
                    "studyEventDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "formRef":{
                                "type":"object",
                                "properties":{
                                    "formOID":{
                                        "type":"string",
                                        "description":"OID of the referenced form",
                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                    },
                                    "orderNumber":{
                                        "type":"integer",
                                        "description":"Order of this form in the event",
                                        "format":"int32",
                                        "example":1
                                    },
                                    "mandatory":{
                                        "type":"string",
                                        "description":"Is this form mandatory in the event?",
                                        "example":"Yes",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "collectionExceptionConditionOID":{
                                        "type":"string",
                                        "description":"OID for collection exception",
                                        "example":"43caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                    }
                                },
                                "description":"FormRef metadata"
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "name":{
                                "type":"string",
                                "description":"Event name",
                                "example":"Screening Event"
                            },
                            "repeating":{
                                "type":"string",
                                "description":"Whether this event may repeat",
                                "example":"Yes",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "type":{
                                "type":"string",
                                "description":"Type of event",
                                "example":"SCHEDULED",
                                "enum":[
                                    "Scheduled",
                                    "Unscheduled",
                                    "Common"
                                ]
                            },
                            "category":{
                                "type":"string",
                                "description":"Event category",
                                "example":"Main"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Unique identifier OID for the event",
                                "example":"SE1"
                            }
                        },
                        "description":"Study Event Def data"
                    },
                    "formDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "itemGroupRef":{
                                "type":"array",
                                "description":"Item group references for this form",
                                "items":{
                                    "$ref":"#/components/schemas/ItemGroupRef1"
                                }
                            },
                            "archiveLayout":{
                                "type":"array",
                                "description":"Archive layouts defined for this form",
                                "items":{
                                    "$ref":"#/components/schemas/ArchiveLayout1"
                                }
                            },
                            "alias":{
                                "type":"array",
                                "description":"Aliases for the form",
                                "items":{
                                    "$ref":"#/components/schemas/Alias1"
                                }
                            },
                            "name":{
                                "type":"string",
                                "description":"Form name",
                                "example":"Demographics"
                            },
                            "repeating":{
                                "type":"string",
                                "description":"Whether the form is repeating",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "hasIPR":{
                                "type":"boolean",
                                "description":"Indicates IPR exists for the form",
                                "example":true
                            },
                            "note":{
                                "type":"string",
                                "description":"Additional note for the form",
                                "example":"Requires supervisor review"
                            },
                            "revisionDate":{
                                "type":"string",
                                "description":"Form revision date",
                                "example":"2023-01-01"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Form object identifier",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "id":{
                                "type":"string",
                                "description":"Form identifier",
                                "example":"9B9B96B684BA4822B98BFA612A070251"
                            }
                        },
                        "description":"Form definition containing item group references, archive layouts and metadata."
                    },
                    "itemGroupDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "itemRef":{
                                "type":"array",
                                "description":"References to Items within this ItemGroup",
                                "items":{
                                    "$ref":"#/components/schemas/ItemRef1"
                                }
                            },
                            "alias":{
                                "type":"array",
                                "description":"Aliases for the ItemGroup",
                                "items":{
                                    "$ref":"#/components/schemas/Alias1"
                                }
                            },
                            "name":{
                                "type":"string",
                                "description":"ItemGroup name",
                                "example":"Demographics Group"
                            },
                            "repeating":{
                                "type":"string",
                                "description":"Whether the ItemGroup is repeating",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "isReferenceData":{
                                "type":"string",
                                "description":"Indicates whether the ItemGroup holds reference data",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "domain":{
                                "type":"string",
                                "description":"Domain name for the ItemGroup",
                                "example":"DM"
                            },
                            "origin":{
                                "type":"string",
                                "description":"Origin of the ItemGroup data",
                                "example":"Collected"
                            },
                            "role":{
                                "type":"string",
                                "description":"Role of the ItemGroup",
                                "example":"CRF"
                            },
                            "purpose":{
                                "type":"string",
                                "description":"Purpose of the ItemGroup",
                                "example":"Analysis"
                            },
                            "comment":{
                                "type":"string",
                                "description":"Additional comments for the ItemGroup",
                                "example":"No special handling"
                            },
                            "SASDatasetName":{
                                "type":"string",
                                "description":"SAS dataset name mapped for the ItemGroup",
                                "example":"DM"
                            },
                            "oid":{
                                "type":"string",
                                "description":"ItemGroup object identifier",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"ItemGroup definition containing item references and metadata."
                    },
                    "itemDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "question":{
                                "$ref":"#/components/schemas/Question1"
                            },
                            "externalQuestion":{
                                "$ref":"#/components/schemas/ExternalQuestion1"
                            },
                            "measurementUnitRef":{
                                "type":"object",
                                "properties":{
                                    "MeasurementUnitOID":{
                                        "type":"string",
                                        "description":"OID of the referenced measurement unit",
                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                    }
                                },
                                "description":"Data captured for a Measurement Unit "
                            },
                            "rangeCheck":{
                                "type":"object",
                                "properties":{
                                    "checkValue":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Value to check in a range validation",
                                                "example":"10"
                                            }
                                        },
                                        "description":"A value used within a range validation."
                                    },
                                    "formalExpression":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Formal expression for validation",
                                                "example":"@AGE > 18"
                                            },
                                            "context":{
                                                "type":"string",
                                                "description":"Context or language for expression",
                                                "example":"XPath"
                                            }
                                        },
                                        "description":"Formal expression used for validation."
                                    },
                                    "measurementUnitRef":{
                                        "$ref":"#/components/schemas/MeasurementUnitRef1"
                                    },
                                    "errorMessage":{
                                        "$ref":"#/components/schemas/ErrorMessage1"
                                    },
                                    "comparator":{
                                        "type":"string",
                                        "description":"Comparator operation",
                                        "enum":[
                                            "LT",
                                            "LE",
                                            "GT",
                                            "GE",
                                            "EQ",
                                            "NE",
                                            "IN",
                                            "NOTIN"
                                        ]
                                    },
                                    "softHard":{
                                        "type":"string",
                                        "description":"Indicates hard or soft validation",
                                        "enum":[
                                            "SOFT",
                                            "HARD"
                                        ]
                                    }
                                },
                                "description":"Range check configuration for item validation."
                            },
                            "codeListRef":{
                                "$ref":"#/components/schemas/CodeListRef1"
                            },
                            "role":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Value or name of the role",
                                        "example":"DataEntry"
                                    }
                                },
                                "description":"Represents the role associated with an item or definition."
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "Name":{
                                "type":"string",
                                "description":"Item name",
                                "example":"DROPDOWN_03"
                            },
                            "DataType":{
                                "type":"string",
                                "description":"Data type (e.g., STRING, INT)",
                                "example":"string",
                                "enum":[
                                    "integer",
                                    "float",
                                    "date",
                                    "datetime",
                                    "time",
                                    "text",
                                    "string",
                                    "double",
                                    "URI",
                                    "boolean",
                                    "hexBinary",
                                    "base64Binary",
                                    "hexFloat",
                                    "base64Float",
                                    "partialDate",
                                    "partialTime",
                                    "partialDatetime",
                                    "durationDatetime",
                                    "intervalDatetime",
                                    "incompleteDatetime",
                                    "incompleteDate",
                                    "incompleteTime"
                                ]
                            },
                            "Length":{
                                "type":"integer",
                                "description":"Length of string/numeric",
                                "format":"int32",
                                "example":255
                            },
                            "SignificantDigits":{
                                "type":"integer",
                                "description":"Number of significant digits",
                                "format":"int32",
                                "example":2
                            },
                            "Origin":{
                                "type":"string",
                                "description":"Item's origin data",
                                "example":"derived"
                            },
                            "Comment":{
                                "type":"string",
                                "description":"Free-text comment",
                                "example":"This is a calculated item."
                            },
                            "CaptionText":{
                                "type":"string",
                                "description":"UI caption text",
                                "example":"Please enter your name"
                            },
                            "ControlType":{
                                "type":"string",
                                "description":"UI control type",
                                "example":"TEXTBOX",
                                "enum":[
                                    "pulldown",
                                    "text",
                                    "group",
                                    "radiogroup",
                                    "checkbox",
                                    "calendar",
                                    "element",
                                    "calculated",
                                    "instructionaltext",
                                    "file"
                                ]
                            },
                            "ControlLayout":{
                                "type":"string",
                                "description":"UI control layout style.Allowed values are INF_NOTDEFINED,INF_HORIZONTAL,INF_VERTICAL,INF_NOWRAP,INF_TWOCOLUMN,INF_THREECOLUMN",
                                "example":"INF_NOTDEFINED",
                                "enum":[
                                    "0",
                                    "1",
                                    "2",
                                    "3",
                                    "4",
                                    "5"
                                ]
                            },
                            "CaptionAlignment":{
                                "type":"string",
                                "description":"Caption alignment. Allowed Values are INF_NOTDEFINED ,INF_LEFT ,INF_CENTER ,INF_RIGHT ,INF_TOP ,INF_MIDDLE ,INF_BOTTOM",
                                "example":"INF_TOP",
                                "enum":[
                                    "0",
                                    "1",
                                    "2",
                                    "3",
                                    "4",
                                    "5",
                                    "6"
                                ]
                            },
                            "InitialRowCount":{
                                "type":"string",
                                "description":"Initial number of rows",
                                "example":"1"
                            },
                            "DisplayMask":{
                                "type":"string",
                                "description":"Display mask for input",
                                "example":"999-99-9999"
                            },
                            "StartYear":{
                                "type":"string",
                                "description":"Start year for date input",
                                "example":"2000"
                            },
                            "EndYear":{
                                "type":"string",
                                "description":"End year for date input",
                                "example":"2025"
                            },
                            "UnknownMask":{
                                "type":"string",
                                "description":"Unknown input mask",
                                "example":"UNK"
                            },
                            "Calculated":{
                                "type":"string",
                                "description":"Is this item calculated?",
                                "example":"1"
                            },
                            "SelectionValue":{
                                "type":"string",
                                "description":"Selection value for this item",
                                "example":"Y"
                            },
                            "itemRef":{
                                "type":"object",
                                "properties":{
                                    "itemOID":{
                                        "type":"string",
                                        "description":"OID of referenced item",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "keySequence":{
                                        "type":"integer",
                                        "description":"Key sequence for composite key",
                                        "format":"int64",
                                        "example":1
                                    },
                                    "methodOID":{
                                        "type":"string",
                                        "description":"Method OID for derivation",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "imputationMethodOID":{
                                        "type":"string",
                                        "description":"Imputation method OID",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "role":{
                                        "type":"string",
                                        "description":"Role of the referenced item",
                                        "example":"DataEntry"
                                    },
                                    "roleCodeListOID":{
                                        "type":"string",
                                        "description":"OID for role code list",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "orderNumber":{
                                        "type":"integer",
                                        "description":"Order of the item",
                                        "format":"int64",
                                        "example":2
                                    },
                                    "mandatory":{
                                        "type":"string",
                                        "description":"Is this item mandatory?",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "collectionExceptionConditionOID":{
                                        "type":"string",
                                        "description":"OID for collection exception condition",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    }
                                },
                                "description":"Reference to an Item within an ItemGroup."
                            },
                            "IsDynamic":{
                                "type":"integer",
                                "description":"Is this item dynamic?",
                                "format":"int32",
                                "example":0
                            },
                            "IsSmartItem":{
                                "type":"integer",
                                "description":"Is this a smart item?",
                                "format":"int32",
                                "example":1
                            },
                            "SASFieldName":{
                                "type":"string",
                                "description":"Field name in SAS export",
                                "example":"HEIGHT_SAS"
                            },
                            "SDSVarName":{
                                "type":"string",
                                "description":"Field name in SDS export",
                                "example":"HEIGHT_SDS"
                            },
                            "OID":{
                                "type":"string",
                                "description":"Unique OID",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"Item definition including question, code list, range checks and metadata."
                    },
                    "codeList":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "externalCodeList":{
                                "$ref":"#/components/schemas/ExternalCodeList1"
                            },
                            "enumeratedItem":{
                                "type":"object",
                                "properties":{
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "codedValue":{
                                        "type":"string",
                                        "description":"Coded value",
                                        "example":"M"
                                    },
                                    "rank":{
                                        "type":"number",
                                        "description":"Optional rank for ordering",
                                        "example":1
                                    },
                                    "orderNumber":{
                                        "type":"integer",
                                        "description":"Order number within the code list",
                                        "format":"int64",
                                        "example":1
                                    }
                                },
                                "description":"Enumerated item value with optional ordering and aliases."
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "name":{
                                "type":"string",
                                "description":"Code list name",
                                "example":"GENDER"
                            },
                            "dataType":{
                                "type":"string",
                                "description":"Code list data type",
                                "enum":[
                                    "INTEGER",
                                    "FLOAT",
                                    "TEXT",
                                    "STRING"
                                ]
                            },
                            "SASFormatName":{
                                "type":"string",
                                "description":"SAS format name for the code list",
                                "example":"BEST12."
                            },
                            "codeListItem":{
                                "type":"object",
                                "properties":{
                                    "decode":{
                                        "$ref":"#/components/schemas/Decode1"
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "codedValue":{
                                        "type":"string",
                                        "description":"Coded value",
                                        "example":"M"
                                    },
                                    "orderNumber":{
                                        "type":"integer",
                                        "description":"Order number of this item",
                                        "format":"int64",
                                        "example":1
                                    }
                                },
                                "description":"Represents a single code list item with decode and metadata."
                            },
                            "oid":{
                                "type":"string",
                                "description":"CodeList object identifier",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"Code list definition including items or external mappings."
                    },
                    "imputationMethod":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Imputation method value",
                                "example":"MeanImputation"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Imputation method object identifier",
                                "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                            }
                        },
                        "description":"Imputation method definition with value and identifier."
                    },
                    "presentation":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Presentation value",
                                "example":"Form Layout A"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code",
                                "example":"en"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Presentation object identifier",
                                "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                            }
                        },
                        "description":"Presentation metadata including value, identifier and language."
                    },
                    "conditionDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "formalExpression":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Formal expression for validation",
                                        "example":"@AGE > 18"
                                    },
                                    "context":{
                                        "type":"string",
                                        "description":"Context or language for expression",
                                        "example":"XPath"
                                    }
                                },
                                "description":"Formal expression used for validation."
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "name":{
                                "type":"string",
                                "description":"Condition name",
                                "example":"AgeGreaterThan18"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Condition object identifier",
                                "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                            }
                        },
                        "description":"Condition definition containing formal expressions and metadata."
                    },
                    "methodDef":{
                        "type":"object",
                        "properties":{
                            "description":{
                                "$ref":"#/components/schemas/Description10"
                            },
                            "formalExpression":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Formal expression for validation",
                                        "example":"@AGE > 18"
                                    },
                                    "context":{
                                        "type":"string",
                                        "description":"Context or language for expression",
                                        "example":"XPath"
                                    }
                                },
                                "description":"Formal expression used for validation."
                            },
                            "alias":{
                                "type":"object",
                                "properties":{
                                    "Context":{
                                        "type":"string",
                                        "description":"Locale, region, or terminology context.",
                                        "example":"US"
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Alternative or alias name for the unit in this context.",
                                        "example":"mg per deciliter"
                                    }
                                },
                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                            },
                            "name":{
                                "type":"string",
                                "description":"Method name",
                                "example":"DeriveBMI"
                            },
                            "type":{
                                "type":"string",
                                "description":"Method type",
                                "enum":[
                                    "COMPUTATION",
                                    "IMPUTATION",
                                    "TRANSPOSE",
                                    "OTHER"
                                ]
                            },
                            "oid":{
                                "type":"string",
                                "description":"Method object identifier",
                                "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                            }
                        },
                        "description":"Method definition containing formal expressions and metadata."
                    },
                    "name":{
                        "type":"string",
                        "description":"Name of this study version",
                        "example":"Main Study MetaData v1"
                    },
                    "description":{
                        "type":"string",
                        "description":"Description of this study version",
                        "example":"Main Study Metadata for Diabetes Trial"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier for this MetaDataVersion",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    }
                },
                "description":"Represents the metadata about the study"
            },
            "MetaDataVersionRef1":{
                "type":"object",
                "properties":{
                    "studyOID":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                    },
                    "metaDataVersionOID":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the metadata version.",
                        "example":"A1B2C3D4E5F6478899AABBCCDDEEFF11"
                    },
                    "effectiveDate":{
                        "type":"string",
                        "description":"Effective date for this metadata version in YYYY-MM-DD format.",
                        "example":"2025-01-31"
                    },
                    "effectiveDateTime":{
                        "type":"string",
                        "description":"Effective date and time for this metadata version in ISO-8601 format.",
                        "example":"2025-01-31T10:15:30Z"
                    }
                },
                "description":"Reference to a specific study metadata version with effective date information."
            },
            "MethodDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "formalExpression":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Formal expression for validation",
                                "example":"@AGE > 18"
                            },
                            "context":{
                                "type":"string",
                                "description":"Context or language for expression",
                                "example":"XPath"
                            }
                        },
                        "description":"Formal expression used for validation."
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "name":{
                        "type":"string",
                        "description":"Method name",
                        "example":"DeriveBMI"
                    },
                    "type":{
                        "type":"string",
                        "description":"Method type",
                        "enum":[
                            "COMPUTATION",
                            "IMPUTATION",
                            "TRANSPOSE",
                            "OTHER"
                        ]
                    },
                    "oid":{
                        "type":"string",
                        "description":"Method object identifier",
                        "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                    }
                },
                "description":"Method definition containing formal expressions and metadata."
            },
            "ODM1":{
                "type":"object",
                "properties":{
                    "Study":{
                        "type":"object",
                        "properties":{
                            "GlobalVariables":{
                                "$ref":"#/components/schemas/GlobalVariables10"
                            },
                            "BasicDefinitions":{
                                "$ref":"#/components/schemas/BasicDefinitions10"
                            },
                            "MetaDataVersion":{
                                "type":"object",
                                "properties":{
                                    "include":{
                                        "$ref":"#/components/schemas/Include10"
                                    },
                                    "protocol":{
                                        "$ref":"#/components/schemas/Protocol10"
                                    },
                                    "studyEventDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "formRef":{
                                                "type":"object",
                                                "properties":{
                                                    "formOID":{
                                                        "type":"string",
                                                        "description":"OID of the referenced form",
                                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                                    },
                                                    "orderNumber":{
                                                        "type":"integer",
                                                        "description":"Order of this form in the event",
                                                        "format":"int32",
                                                        "example":1
                                                    },
                                                    "mandatory":{
                                                        "type":"string",
                                                        "description":"Is this form mandatory in the event?",
                                                        "example":"Yes",
                                                        "enum":[
                                                            "Yes",
                                                            "No"
                                                        ]
                                                    },
                                                    "collectionExceptionConditionOID":{
                                                        "type":"string",
                                                        "description":"OID for collection exception",
                                                        "example":"43caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                                    }
                                                },
                                                "description":"FormRef metadata"
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"Event name",
                                                "example":"Screening Event"
                                            },
                                            "repeating":{
                                                "type":"string",
                                                "description":"Whether this event may repeat",
                                                "example":"Yes",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "type":{
                                                "type":"string",
                                                "description":"Type of event",
                                                "example":"SCHEDULED",
                                                "enum":[
                                                    "Scheduled",
                                                    "Unscheduled",
                                                    "Common"
                                                ]
                                            },
                                            "category":{
                                                "type":"string",
                                                "description":"Event category",
                                                "example":"Main"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Unique identifier OID for the event",
                                                "example":"SE1"
                                            }
                                        },
                                        "description":"Study Event Def data"
                                    },
                                    "formDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "itemGroupRef":{
                                                "type":"array",
                                                "description":"Item group references for this form",
                                                "items":{
                                                    "$ref":"#/components/schemas/ItemGroupRef1"
                                                }
                                            },
                                            "archiveLayout":{
                                                "type":"array",
                                                "description":"Archive layouts defined for this form",
                                                "items":{
                                                    "$ref":"#/components/schemas/ArchiveLayout1"
                                                }
                                            },
                                            "alias":{
                                                "type":"array",
                                                "description":"Aliases for the form",
                                                "items":{
                                                    "$ref":"#/components/schemas/Alias1"
                                                }
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"Form name",
                                                "example":"Demographics"
                                            },
                                            "repeating":{
                                                "type":"string",
                                                "description":"Whether the form is repeating",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "hasIPR":{
                                                "type":"boolean",
                                                "description":"Indicates IPR exists for the form",
                                                "example":true
                                            },
                                            "note":{
                                                "type":"string",
                                                "description":"Additional note for the form",
                                                "example":"Requires supervisor review"
                                            },
                                            "revisionDate":{
                                                "type":"string",
                                                "description":"Form revision date",
                                                "example":"2023-01-01"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Form object identifier",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            },
                                            "id":{
                                                "type":"string",
                                                "description":"Form identifier",
                                                "example":"9B9B96B684BA4822B98BFA612A070251"
                                            }
                                        },
                                        "description":"Form definition containing item group references, archive layouts and metadata."
                                    },
                                    "itemGroupDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "itemRef":{
                                                "type":"array",
                                                "description":"References to Items within this ItemGroup",
                                                "items":{
                                                    "$ref":"#/components/schemas/ItemRef1"
                                                }
                                            },
                                            "alias":{
                                                "type":"array",
                                                "description":"Aliases for the ItemGroup",
                                                "items":{
                                                    "$ref":"#/components/schemas/Alias1"
                                                }
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"ItemGroup name",
                                                "example":"Demographics Group"
                                            },
                                            "repeating":{
                                                "type":"string",
                                                "description":"Whether the ItemGroup is repeating",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "isReferenceData":{
                                                "type":"string",
                                                "description":"Indicates whether the ItemGroup holds reference data",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "domain":{
                                                "type":"string",
                                                "description":"Domain name for the ItemGroup",
                                                "example":"DM"
                                            },
                                            "origin":{
                                                "type":"string",
                                                "description":"Origin of the ItemGroup data",
                                                "example":"Collected"
                                            },
                                            "role":{
                                                "type":"string",
                                                "description":"Role of the ItemGroup",
                                                "example":"CRF"
                                            },
                                            "purpose":{
                                                "type":"string",
                                                "description":"Purpose of the ItemGroup",
                                                "example":"Analysis"
                                            },
                                            "comment":{
                                                "type":"string",
                                                "description":"Additional comments for the ItemGroup",
                                                "example":"No special handling"
                                            },
                                            "SASDatasetName":{
                                                "type":"string",
                                                "description":"SAS dataset name mapped for the ItemGroup",
                                                "example":"DM"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"ItemGroup object identifier",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            }
                                        },
                                        "description":"ItemGroup definition containing item references and metadata."
                                    },
                                    "itemDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "question":{
                                                "$ref":"#/components/schemas/Question1"
                                            },
                                            "externalQuestion":{
                                                "$ref":"#/components/schemas/ExternalQuestion1"
                                            },
                                            "measurementUnitRef":{
                                                "type":"object",
                                                "properties":{
                                                    "MeasurementUnitOID":{
                                                        "type":"string",
                                                        "description":"OID of the referenced measurement unit",
                                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                                    }
                                                },
                                                "description":"Data captured for a Measurement Unit "
                                            },
                                            "rangeCheck":{
                                                "type":"object",
                                                "properties":{
                                                    "checkValue":{
                                                        "type":"object",
                                                        "properties":{
                                                            "value":{
                                                                "type":"string",
                                                                "description":"Value to check in a range validation",
                                                                "example":"10"
                                                            }
                                                        },
                                                        "description":"A value used within a range validation."
                                                    },
                                                    "formalExpression":{
                                                        "type":"object",
                                                        "properties":{
                                                            "value":{
                                                                "type":"string",
                                                                "description":"Formal expression for validation",
                                                                "example":"@AGE > 18"
                                                            },
                                                            "context":{
                                                                "type":"string",
                                                                "description":"Context or language for expression",
                                                                "example":"XPath"
                                                            }
                                                        },
                                                        "description":"Formal expression used for validation."
                                                    },
                                                    "measurementUnitRef":{
                                                        "$ref":"#/components/schemas/MeasurementUnitRef1"
                                                    },
                                                    "errorMessage":{
                                                        "$ref":"#/components/schemas/ErrorMessage1"
                                                    },
                                                    "comparator":{
                                                        "type":"string",
                                                        "description":"Comparator operation",
                                                        "enum":[
                                                            "LT",
                                                            "LE",
                                                            "GT",
                                                            "GE",
                                                            "EQ",
                                                            "NE",
                                                            "IN",
                                                            "NOTIN"
                                                        ]
                                                    },
                                                    "softHard":{
                                                        "type":"string",
                                                        "description":"Indicates hard or soft validation",
                                                        "enum":[
                                                            "SOFT",
                                                            "HARD"
                                                        ]
                                                    }
                                                },
                                                "description":"Range check configuration for item validation."
                                            },
                                            "codeListRef":{
                                                "$ref":"#/components/schemas/CodeListRef1"
                                            },
                                            "role":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Value or name of the role",
                                                        "example":"DataEntry"
                                                    }
                                                },
                                                "description":"Represents the role associated with an item or definition."
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Item name",
                                                "example":"DROPDOWN_03"
                                            },
                                            "DataType":{
                                                "type":"string",
                                                "description":"Data type (e.g., STRING, INT)",
                                                "example":"string",
                                                "enum":[
                                                    "integer",
                                                    "float",
                                                    "date",
                                                    "datetime",
                                                    "time",
                                                    "text",
                                                    "string",
                                                    "double",
                                                    "URI",
                                                    "boolean",
                                                    "hexBinary",
                                                    "base64Binary",
                                                    "hexFloat",
                                                    "base64Float",
                                                    "partialDate",
                                                    "partialTime",
                                                    "partialDatetime",
                                                    "durationDatetime",
                                                    "intervalDatetime",
                                                    "incompleteDatetime",
                                                    "incompleteDate",
                                                    "incompleteTime"
                                                ]
                                            },
                                            "Length":{
                                                "type":"integer",
                                                "description":"Length of string/numeric",
                                                "format":"int32",
                                                "example":255
                                            },
                                            "SignificantDigits":{
                                                "type":"integer",
                                                "description":"Number of significant digits",
                                                "format":"int32",
                                                "example":2
                                            },
                                            "Origin":{
                                                "type":"string",
                                                "description":"Item's origin data",
                                                "example":"derived"
                                            },
                                            "Comment":{
                                                "type":"string",
                                                "description":"Free-text comment",
                                                "example":"This is a calculated item."
                                            },
                                            "CaptionText":{
                                                "type":"string",
                                                "description":"UI caption text",
                                                "example":"Please enter your name"
                                            },
                                            "ControlType":{
                                                "type":"string",
                                                "description":"UI control type",
                                                "example":"TEXTBOX",
                                                "enum":[
                                                    "pulldown",
                                                    "text",
                                                    "group",
                                                    "radiogroup",
                                                    "checkbox",
                                                    "calendar",
                                                    "element",
                                                    "calculated",
                                                    "instructionaltext",
                                                    "file"
                                                ]
                                            },
                                            "ControlLayout":{
                                                "type":"string",
                                                "description":"UI control layout style.Allowed values are INF_NOTDEFINED,INF_HORIZONTAL,INF_VERTICAL,INF_NOWRAP,INF_TWOCOLUMN,INF_THREECOLUMN",
                                                "example":"INF_NOTDEFINED",
                                                "enum":[
                                                    "0",
                                                    "1",
                                                    "2",
                                                    "3",
                                                    "4",
                                                    "5"
                                                ]
                                            },
                                            "CaptionAlignment":{
                                                "type":"string",
                                                "description":"Caption alignment. Allowed Values are INF_NOTDEFINED ,INF_LEFT ,INF_CENTER ,INF_RIGHT ,INF_TOP ,INF_MIDDLE ,INF_BOTTOM",
                                                "example":"INF_TOP",
                                                "enum":[
                                                    "0",
                                                    "1",
                                                    "2",
                                                    "3",
                                                    "4",
                                                    "5",
                                                    "6"
                                                ]
                                            },
                                            "InitialRowCount":{
                                                "type":"string",
                                                "description":"Initial number of rows",
                                                "example":"1"
                                            },
                                            "DisplayMask":{
                                                "type":"string",
                                                "description":"Display mask for input",
                                                "example":"999-99-9999"
                                            },
                                            "StartYear":{
                                                "type":"string",
                                                "description":"Start year for date input",
                                                "example":"2000"
                                            },
                                            "EndYear":{
                                                "type":"string",
                                                "description":"End year for date input",
                                                "example":"2025"
                                            },
                                            "UnknownMask":{
                                                "type":"string",
                                                "description":"Unknown input mask",
                                                "example":"UNK"
                                            },
                                            "Calculated":{
                                                "type":"string",
                                                "description":"Is this item calculated?",
                                                "example":"1"
                                            },
                                            "SelectionValue":{
                                                "type":"string",
                                                "description":"Selection value for this item",
                                                "example":"Y"
                                            },
                                            "itemRef":{
                                                "type":"object",
                                                "properties":{
                                                    "itemOID":{
                                                        "type":"string",
                                                        "description":"OID of referenced item",
                                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                    },
                                                    "keySequence":{
                                                        "type":"integer",
                                                        "description":"Key sequence for composite key",
                                                        "format":"int64",
                                                        "example":1
                                                    },
                                                    "methodOID":{
                                                        "type":"string",
                                                        "description":"Method OID for derivation",
                                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                    },
                                                    "imputationMethodOID":{
                                                        "type":"string",
                                                        "description":"Imputation method OID",
                                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                    },
                                                    "role":{
                                                        "type":"string",
                                                        "description":"Role of the referenced item",
                                                        "example":"DataEntry"
                                                    },
                                                    "roleCodeListOID":{
                                                        "type":"string",
                                                        "description":"OID for role code list",
                                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                    },
                                                    "orderNumber":{
                                                        "type":"integer",
                                                        "description":"Order of the item",
                                                        "format":"int64",
                                                        "example":2
                                                    },
                                                    "mandatory":{
                                                        "type":"string",
                                                        "description":"Is this item mandatory?",
                                                        "enum":[
                                                            "Yes",
                                                            "No"
                                                        ]
                                                    },
                                                    "collectionExceptionConditionOID":{
                                                        "type":"string",
                                                        "description":"OID for collection exception condition",
                                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                                    }
                                                },
                                                "description":"Reference to an Item within an ItemGroup."
                                            },
                                            "IsDynamic":{
                                                "type":"integer",
                                                "description":"Is this item dynamic?",
                                                "format":"int32",
                                                "example":0
                                            },
                                            "IsSmartItem":{
                                                "type":"integer",
                                                "description":"Is this a smart item?",
                                                "format":"int32",
                                                "example":1
                                            },
                                            "SASFieldName":{
                                                "type":"string",
                                                "description":"Field name in SAS export",
                                                "example":"HEIGHT_SAS"
                                            },
                                            "SDSVarName":{
                                                "type":"string",
                                                "description":"Field name in SDS export",
                                                "example":"HEIGHT_SDS"
                                            },
                                            "OID":{
                                                "type":"string",
                                                "description":"Unique OID",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            }
                                        },
                                        "description":"Item definition including question, code list, range checks and metadata."
                                    },
                                    "codeList":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "externalCodeList":{
                                                "$ref":"#/components/schemas/ExternalCodeList1"
                                            },
                                            "enumeratedItem":{
                                                "type":"object",
                                                "properties":{
                                                    "alias":{
                                                        "type":"object",
                                                        "properties":{
                                                            "Context":{
                                                                "type":"string",
                                                                "description":"Locale, region, or terminology context.",
                                                                "example":"US"
                                                            },
                                                            "Name":{
                                                                "type":"string",
                                                                "description":"Alternative or alias name for the unit in this context.",
                                                                "example":"mg per deciliter"
                                                            }
                                                        },
                                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                                    },
                                                    "codedValue":{
                                                        "type":"string",
                                                        "description":"Coded value",
                                                        "example":"M"
                                                    },
                                                    "rank":{
                                                        "type":"number",
                                                        "description":"Optional rank for ordering",
                                                        "example":1
                                                    },
                                                    "orderNumber":{
                                                        "type":"integer",
                                                        "description":"Order number within the code list",
                                                        "format":"int64",
                                                        "example":1
                                                    }
                                                },
                                                "description":"Enumerated item value with optional ordering and aliases."
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"Code list name",
                                                "example":"GENDER"
                                            },
                                            "dataType":{
                                                "type":"string",
                                                "description":"Code list data type",
                                                "enum":[
                                                    "INTEGER",
                                                    "FLOAT",
                                                    "TEXT",
                                                    "STRING"
                                                ]
                                            },
                                            "SASFormatName":{
                                                "type":"string",
                                                "description":"SAS format name for the code list",
                                                "example":"BEST12."
                                            },
                                            "codeListItem":{
                                                "type":"object",
                                                "properties":{
                                                    "decode":{
                                                        "$ref":"#/components/schemas/Decode1"
                                                    },
                                                    "alias":{
                                                        "type":"object",
                                                        "properties":{
                                                            "Context":{
                                                                "type":"string",
                                                                "description":"Locale, region, or terminology context.",
                                                                "example":"US"
                                                            },
                                                            "Name":{
                                                                "type":"string",
                                                                "description":"Alternative or alias name for the unit in this context.",
                                                                "example":"mg per deciliter"
                                                            }
                                                        },
                                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                                    },
                                                    "codedValue":{
                                                        "type":"string",
                                                        "description":"Coded value",
                                                        "example":"M"
                                                    },
                                                    "orderNumber":{
                                                        "type":"integer",
                                                        "description":"Order number of this item",
                                                        "format":"int64",
                                                        "example":1
                                                    }
                                                },
                                                "description":"Represents a single code list item with decode and metadata."
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"CodeList object identifier",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            }
                                        },
                                        "description":"Code list definition including items or external mappings."
                                    },
                                    "imputationMethod":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Imputation method value",
                                                "example":"MeanImputation"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Imputation method object identifier",
                                                "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                            }
                                        },
                                        "description":"Imputation method definition with value and identifier."
                                    },
                                    "presentation":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Presentation value",
                                                "example":"Form Layout A"
                                            },
                                            "lang":{
                                                "type":"string",
                                                "description":"Language code",
                                                "example":"en"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Presentation object identifier",
                                                "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                            }
                                        },
                                        "description":"Presentation metadata including value, identifier and language."
                                    },
                                    "conditionDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "formalExpression":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Formal expression for validation",
                                                        "example":"@AGE > 18"
                                                    },
                                                    "context":{
                                                        "type":"string",
                                                        "description":"Context or language for expression",
                                                        "example":"XPath"
                                                    }
                                                },
                                                "description":"Formal expression used for validation."
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"Condition name",
                                                "example":"AgeGreaterThan18"
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Condition object identifier",
                                                "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                            }
                                        },
                                        "description":"Condition definition containing formal expressions and metadata."
                                    },
                                    "methodDef":{
                                        "type":"object",
                                        "properties":{
                                            "description":{
                                                "$ref":"#/components/schemas/Description10"
                                            },
                                            "formalExpression":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Formal expression for validation",
                                                        "example":"@AGE > 18"
                                                    },
                                                    "context":{
                                                        "type":"string",
                                                        "description":"Context or language for expression",
                                                        "example":"XPath"
                                                    }
                                                },
                                                "description":"Formal expression used for validation."
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "name":{
                                                "type":"string",
                                                "description":"Method name",
                                                "example":"DeriveBMI"
                                            },
                                            "type":{
                                                "type":"string",
                                                "description":"Method type",
                                                "enum":[
                                                    "COMPUTATION",
                                                    "IMPUTATION",
                                                    "TRANSPOSE",
                                                    "OTHER"
                                                ]
                                            },
                                            "oid":{
                                                "type":"string",
                                                "description":"Method object identifier",
                                                "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                            }
                                        },
                                        "description":"Method definition containing formal expressions and metadata."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Name of this study version",
                                        "example":"Main Study MetaData v1"
                                    },
                                    "description":{
                                        "type":"string",
                                        "description":"Description of this study version",
                                        "example":"Main Study Metadata for Diabetes Trial"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Unique identifier for this MetaDataVersion",
                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                    }
                                },
                                "description":"Represents the metadata about the study"
                            },
                            "OID":{
                                "type":"string",
                                "description":"Unique object identifier for the study, uppercase HEX UUID.",
                                "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                            }
                        },
                        "description":"ODM Study object"
                    },
                    "AdminData":{
                        "type":"object",
                        "properties":{
                            "User":{
                                "type":"object",
                                "properties":{
                                    "loginName":{
                                        "$ref":"#/components/schemas/LoginName1"
                                    },
                                    "displayName":{
                                        "$ref":"#/components/schemas/DisplayName1"
                                    },
                                    "fullName":{
                                        "$ref":"#/components/schemas/FullName10"
                                    },
                                    "firstName":{
                                        "$ref":"#/components/schemas/FirstName10"
                                    },
                                    "lastName":{
                                        "$ref":"#/components/schemas/LastName10"
                                    },
                                    "organization":{
                                        "$ref":"#/components/schemas/Organization10"
                                    },
                                    "address":{
                                        "type":"object",
                                        "properties":{
                                            "streetName":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Street name line.",
                                                        "example":"123 Main Street"
                                                    }
                                                },
                                                "description":"Street name component of a postal address."
                                            },
                                            "city":{
                                                "$ref":"#/components/schemas/City1"
                                            },
                                            "stateProv":{
                                                "$ref":"#/components/schemas/StateProv1"
                                            },
                                            "country":{
                                                "$ref":"#/components/schemas/Country1"
                                            },
                                            "postalCode":{
                                                "$ref":"#/components/schemas/PostalCode1"
                                            },
                                            "otherText":{
                                                "$ref":"#/components/schemas/OtherText1"
                                            }
                                        },
                                        "description":"Postal or location address for an ODM user or site, with support for street, city, state, country, and postal code."
                                    },
                                    "email":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Email address.",
                                                "example":"john.smith@email.com"
                                            }
                                        },
                                        "description":"Email address record for an ODM user."
                                    },
                                    "picture":{
                                        "$ref":"#/components/schemas/Picture1"
                                    },
                                    "pager":{
                                        "$ref":"#/components/schemas/Pager1"
                                    },
                                    "fax":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Fax number.",
                                                "example":"555-5678"
                                            }
                                        },
                                        "description":"Fax number/contact for an ODM User."
                                    },
                                    "phone":{
                                        "type":"object",
                                        "properties":{
                                            "Value":{
                                                "type":"string",
                                                "description":"Phone number.",
                                                "example":"555-9876"
                                            }
                                        },
                                        "description":"Phone number/contact entry for ODM User."
                                    },
                                    "locationRef":{
                                        "type":"object",
                                        "properties":{
                                            "LocationOID":{
                                                "type":"string",
                                                "description":"OID/ID for the associated location.",
                                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                            }
                                        },
                                        "description":"Reference to a study/site location for an ODM User."
                                    },
                                    "certificate":{
                                        "type":"object",
                                        "properties":{
                                            "Value":{
                                                "type":"string",
                                                "description":"Certificate/credential identifier.",
                                                "example":"CERT123"
                                            }
                                        },
                                        "description":"Digital certificate or identity for an ODM User."
                                    },
                                    "userType":{
                                        "type":"string",
                                        "description":"Enumeration of possible user types/roles for ODM User.",
                                        "enum":[
                                            "SPONSOR",
                                            "INVESTIGATOR",
                                            "LAB",
                                            "OTHER"
                                        ]
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"User OID value ",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    }
                                },
                                "description":"Represents a user in the ODM AdminData structure (site personnel, investigator, etc)."
                            },
                            "Location":{
                                "type":"object",
                                "properties":{
                                    "metaDataVersionRef":{
                                        "type":"object",
                                        "properties":{
                                            "studyOID":{
                                                "type":"string",
                                                "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                                "example":"0C7CBA3F70034C47947E2FAB086BFBF5"
                                            },
                                            "metaDataVersionOID":{
                                                "type":"string",
                                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the metadata version.",
                                                "example":"A1B2C3D4E5F6478899AABBCCDDEEFF11"
                                            },
                                            "effectiveDate":{
                                                "type":"string",
                                                "description":"Effective date for this metadata version in YYYY-MM-DD format.",
                                                "example":"2025-01-31"
                                            },
                                            "effectiveDateTime":{
                                                "type":"string",
                                                "description":"Effective date and time for this metadata version in ISO-8601 format.",
                                                "example":"2025-01-31T10:15:30Z"
                                            }
                                        },
                                        "description":"Reference to a specific study metadata version with effective date information."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Name of the location.",
                                        "example":"Main Site"
                                    },
                                    "locationType":{
                                        "type":"string",
                                        "description":"Type of location.",
                                        "example":"OTHER",
                                        "enum":[
                                            "SPONSOR",
                                            "SITE",
                                            "CRO",
                                            "LAB",
                                            "OTHER"
                                        ]
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"ID of the site or depot of the kit",
                                        "example":"A8C41D8062A14FCC89EDA475C3E3AF12"
                                    }
                                },
                                "description":"Represents a site or location entity within the ODM context."
                            },
                            "SignatureDef":{
                                "type":"object",
                                "properties":{
                                    "group":{
                                        "type":"string",
                                        "description":"Signature group or category.",
                                        "example":"INVESTIGATOR"
                                    },
                                    "type":{
                                        "type":"string",
                                        "description":"Signature type.",
                                        "example":"DIGITAL"
                                    },
                                    "meaning":{
                                        "$ref":"#/components/schemas/Meaning1"
                                    },
                                    "legalReason":{
                                        "$ref":"#/components/schemas/LegalReason1"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                        "example":"ABCDEF1234567890ABCDEF1234567890"
                                    }
                                },
                                "description":"Definition of a signature including meaning, legal reason, and identifiers."
                            },
                            "StudyOID":{
                                "type":"string",
                                "description":"Study OID to which this admin data refers.",
                                "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                            }
                        },
                        "description":"ODM AdminData section: definition of users, locations, digital signatures, and study OID metadata."
                    },
                    "ReferenceData":{
                        "type":"object",
                        "properties":{
                            "ItemGroupData":{
                                "type":"object",
                                "properties":{
                                    "auditRecord":{
                                        "$ref":"#/components/schemas/AuditRecord100"
                                    },
                                    "signature":{
                                        "$ref":"#/components/schemas/Signature1"
                                    },
                                    "annotation":{
                                        "type":"object",
                                        "properties":{
                                            "comment":{
                                                "$ref":"#/components/schemas/Comment2"
                                            },
                                            "flag":{
                                                "type":"object",
                                                "properties":{
                                                    "FlagValue":{
                                                        "$ref":"#/components/schemas/FlagValue1"
                                                    },
                                                    "FlagType":{
                                                        "$ref":"#/components/schemas/FlagType1"
                                                    }
                                                },
                                                "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                                            },
                                            "seqNum":{
                                                "type":"integer",
                                                "description":"Sequence number ordering annotations within the same context.",
                                                "format":"int64",
                                                "example":1
                                            },
                                            "transactionType":{
                                                "type":"string",
                                                "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                                "example":"INSERT"
                                            },
                                            "id":{
                                                "type":"string",
                                                "description":"Annotation identifier unique within the context.",
                                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                            }
                                        },
                                        "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                                    },
                                    "items":{
                                        "type":"object",
                                        "properties":{
                                            "AuditRecord":{
                                                "$ref":"#/components/schemas/AuditRecord100"
                                            },
                                            "Signature":{
                                                "$ref":"#/components/schemas/Signature1"
                                            },
                                            "MeasurementUnitRef":{
                                                "$ref":"#/components/schemas/MeasurementUnitRef1"
                                            },
                                            "Annotation":{
                                                "type":"object",
                                                "properties":{
                                                    "comment":{
                                                        "$ref":"#/components/schemas/Comment2"
                                                    },
                                                    "flag":{
                                                        "type":"object",
                                                        "properties":{
                                                            "FlagValue":{
                                                                "$ref":"#/components/schemas/FlagValue1"
                                                            },
                                                            "FlagType":{
                                                                "$ref":"#/components/schemas/FlagType1"
                                                            }
                                                        },
                                                        "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                                                    },
                                                    "seqNum":{
                                                        "type":"integer",
                                                        "description":"Sequence number ordering annotations within the same context.",
                                                        "format":"int64",
                                                        "example":1
                                                    },
                                                    "transactionType":{
                                                        "type":"string",
                                                        "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                                        "example":"INSERT"
                                                    },
                                                    "id":{
                                                        "type":"string",
                                                        "description":"Annotation identifier unique within the context.",
                                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                                    }
                                                },
                                                "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                                            },
                                            "ItemOID":{
                                                "type":"string",
                                                "description":"OID of the item",
                                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                            },
                                            "TransactionType":{
                                                "type":"string",
                                                "description":"Transaction type- INSERT, UPDATE, REMOVE, UPSERT or CONTEXT",
                                                "example":"UPDATE",
                                                "enum":[
                                                    "INSERT",
                                                    "UPDATE",
                                                    "REMOVE",
                                                    "UPSERT",
                                                    "CONTEXT"
                                                ]
                                            },
                                            "ParentItemOID":{
                                                "type":"string",
                                                "description":"OID of parent item",
                                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                            },
                                            "NotDone":{
                                                "type":"string",
                                                "description":"Whether item is not done (0 or 1)",
                                                "example":"0"
                                            },
                                            "SelectedCodeListItemsType":{
                                                "type":"string",
                                                "description":"Selected code list items type",
                                                "example":"CODE_A"
                                            },
                                            "Value":{
                                                "type":"string",
                                                "description":"Value for this item",
                                                "example":"130"
                                            },
                                            "DocumentId":{
                                                "type":"string",
                                                "description":"Document ID reference",
                                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                            },
                                            "DocumentVersion":{
                                                "type":"number",
                                                "description":"Document version",
                                                "example":1
                                            }
                                        },
                                        "description":"Data captured for a Item "
                                    },
                                    "itemGroupOID":{
                                        "type":"string",
                                        "description":"OID for this item group",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "itemGroupRepeatKey":{
                                        "type":"string",
                                        "description":"Repeat key for this group",
                                        "example":"RPT1"
                                    },
                                    "transactionType":{
                                        "type":"string",
                                        "description":"Transaction type for the group",
                                        "example":"INSERT",
                                        "enum":[
                                            "INSERT",
                                            "UPDATE",
                                            "REMOVE",
                                            "UPSERT",
                                            "CONTEXT"
                                        ]
                                    }
                                },
                                "description":"Data captured for a Item Group"
                            },
                            "AuditRecords":{
                                "type":"object",
                                "properties":{
                                    "auditRecord":{
                                        "type":"array",
                                        "description":"List of audit records associated with the subject or form.",
                                        "items":{
                                            "$ref":"#/components/schemas/AuditRecord100"
                                        }
                                    }
                                },
                                "description":"Container for a list of ODM audit record entries."
                            },
                            "Signatures":{
                                "type":"object",
                                "properties":{
                                    "signature":{
                                        "type":"array",
                                        "description":"List of signature entries associated with the ODM structure.",
                                        "items":{
                                            "$ref":"#/components/schemas/Signature1"
                                        }
                                    }
                                },
                                "description":"Container for a list of ODM Signature entries."
                            },
                            "Annotations":{
                                "type":"object",
                                "properties":{
                                    "annotation":{
                                        "type":"array",
                                        "description":"List of Annotation entries associated to the ODM structure.",
                                        "items":{
                                            "$ref":"#/components/schemas/Annotation2"
                                        }
                                    }
                                },
                                "description":"Container for a list of ODM Annotation entries."
                            },
                            "StudyOID":{
                                "type":"string",
                                "description":"OID of referenced study",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            },
                            "MetaDataVersionOID":{
                                "type":"string",
                                "description":"OID for referenced MetaDataVersion",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            }
                        },
                        "description":"ReferenceData DTO."
                    },
                    "ClinicalData":{
                        "type":"object",
                        "properties":{
                            "subjectData":{
                                "type":"array",
                                "description":"List of subject-level clinical data records",
                                "items":{
                                    "$ref":"#/components/schemas/SubjectData1"
                                }
                            },
                            "auditRecords":{
                                "type":"array",
                                "description":"List of audit records associated with clinical data",
                                "items":{
                                    "$ref":"#/components/schemas/AuditRecords1"
                                }
                            },
                            "Signatures":{
                                "type":"array",
                                "description":"List of digital signatures applied to the clinical data",
                                "items":{
                                    "$ref":"#/components/schemas/Signatures1"
                                }
                            },
                            "Annotations":{
                                "type":"array",
                                "description":"List of annotations attached to the clinical data",
                                "items":{
                                    "$ref":"#/components/schemas/Annotations1"
                                }
                            },
                            "StudyOID":{
                                "type":"string",
                                "description":"Study OID for which this clinical data applies",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "MetaDataVersionOID":{
                                "type":"string",
                                "description":"Metadata version OID associated with the study design",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            }
                        },
                        "description":"ODM ClinicalData section containing study OID, metadata version OID, and lists of subject data, audit records, signatures, and annotations."
                    },
                    "Association":{
                        "type":"object",
                        "properties":{
                            "content":{
                                "type":"array",
                                "description":"List of associated elements",
                                "example":[
                                ],
                                "items":{
                                    "type":"object",
                                    "description":"List of associated elements",
                                    "example":[
                                    ]
                                }
                            },
                            "studyOID":{
                                "type":"string",
                                "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"2.0.0.39.222eabde-1b96-48f6-9d3b-6250880a2b09"
                            },
                            "metaDataVersionOID":{
                                "type":"string",
                                "description":"String representing the version of the study. Helps track changes in form or study design.",
                                "example":"2.0.0.38"
                            }
                        },
                        "description":"Association between study and metadata version with embedded content"
                    },
                    "Signature":{
                        "type":"object",
                        "properties":{
                            "signedInfo":{
                                "$ref":"#/components/schemas/SignedInfoType1"
                            },
                            "signatureValue":{
                                "$ref":"#/components/schemas/SignatureValueType1"
                            },
                            "keyInfo":{
                                "$ref":"#/components/schemas/KeyInfoType1"
                            },
                            "object":{
                                "type":"object",
                                "properties":{
                                    "content":{
                                        "type":"array",
                                        "description":"List of embedded content",
                                        "example":[
                                        ],
                                        "items":{
                                            "type":"object",
                                            "description":"List of embedded content",
                                            "example":[
                                            ]
                                        }
                                    },
                                    "mimeType":{
                                        "type":"string",
                                        "description":"MIME type of the encapsulated content",
                                        "example":"application/pdf"
                                    },
                                    "encoding":{
                                        "type":"string",
                                        "description":"Character encoding of the content",
                                        "example":"UTF-8"
                                    },
                                    "id":{
                                        "type":"string",
                                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                                    }
                                },
                                "description":"Generic container for embedded object content and metadata"
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            }
                        },
                        "description":"XML Digital Signature container including SignedInfo, SignatureValue, KeyInfo and optional Object elements."
                    },
                    "Description":{
                        "type":"string",
                        "description":"Description of this ODM payload/report.",
                        "example":"CRF Report ODM data for sample study."
                    },
                    "FileType":{
                        "type":"string",
                        "description":"Output file type of ODM report.The values can be SNAPSHOT or TRANSACTIONAL",
                        "example":"SNAPSHOT"
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of report (e.g. ALL, SUBJECT, VISIT).",
                        "example":"ALL"
                    },
                    "Archival":{
                        "type":"string",
                        "description":"Archival indicator (YES or NO).",
                        "example":"YES"
                    },
                    "FileOID":{
                        "type":"string",
                        "description":"File OID of generated ODM file. (UUID uppercase hex format)",
                        "example":"FFBAA1C5287D40679B1ED676151C7F63"
                    },
                    "CreationDateTime":{
                        "type":"string",
                        "description":"ISO timestamp for creation of this ODM.",
                        "example":"2025-10-27T10:00:00Z"
                    },
                    "PriorFileOID":{
                        "type":"string",
                        "description":"File OID of the prior ODM in the generation sequence.",
                        "example":"9678B5A2C18C4A20A1400729839CC661"
                    },
                    "AsOfDateTime":{
                        "type":"string",
                        "description":"As-of timestamp for this ODM.",
                        "example":"2025-10-26T23:59:59Z"
                    },
                    "Originator":{
                        "type":"string",
                        "description":"Originating system for ODM.",
                        "example":"ORACLE_CDM_SYSTEM"
                    },
                    "SourceSystem":{
                        "type":"string",
                        "description":"Source system identifier.",
                        "example":"ClinicalOne"
                    },
                    "SourceSystemVersion":{
                        "type":"string",
                        "description":"Source system version.",
                        "example":"3.0.0.0"
                    },
                    "ODMVersion":{
                        "type":"string",
                        "description":"ODM version spec string.",
                        "example":"1.3.2"
                    },
                    "ID":{
                        "type":"string",
                        "description":"Unique report/package identifier (UUID uppercase hex format).",
                        "example":"71C8CED11E264FFDB165B07AF5117602"
                    }
                },
                "description":"Oracle Clinical Data Management model object for CRF report result data, including study, admin, reference, clinical, and associated metadata."
            },
            "ObjectType10":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"array",
                        "description":"List of embedded content",
                        "example":[
                        ],
                        "items":{
                            "type":"object",
                            "description":"List of embedded content",
                            "example":[
                            ]
                        }
                    },
                    "mimeType":{
                        "type":"string",
                        "description":"MIME type of the encapsulated content",
                        "example":"application/pdf"
                    },
                    "encoding":{
                        "type":"string",
                        "description":"Character encoding of the content",
                        "example":"UTF-8"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"3F2504E04F8911D39A0C0305E82C3301"
                    }
                },
                "description":"Generic container for embedded object content and metadata"
            },
            "Organization10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Name of the user's organization.",
                        "example":"Site 101 Hospital"
                    }
                },
                "description":"Organization name associated with the User."
            },
            "OtherText1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Additional address text.",
                        "example":"Apt 4B"
                    }
                },
                "description":"Additional address information or notes."
            },
            "Pager1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Pager contact number or info.",
                        "example":"555-1234"
                    }
                },
                "description":"Pager number or contact info for an ODM User."
            },
            "Phone":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Phone number.",
                        "example":"555-9876"
                    }
                },
                "description":"Phone number/contact entry for ODM User."
            },
            "Picture1":{
                "type":"object",
                "properties":{
                    "pictureFileName":{
                        "type":"string",
                        "description":"Picture filename or image reference.",
                        "example":"photo.jpg"
                    },
                    "imageType":{
                        "type":"string",
                        "description":"MIME/image type information, e.g. image/jpeg",
                        "example":"image/jpeg"
                    }
                },
                "description":"Profile or avatar image info for ODM User."
            },
            "PostalCode1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Postal or ZIP code.",
                        "example":"94043"
                    }
                },
                "description":"Postal or ZIP code component of a postal address."
            },
            "Presentation1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Presentation value",
                        "example":"Form Layout A"
                    },
                    "lang":{
                        "type":"string",
                        "description":"Language code",
                        "example":"en"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Presentation object identifier",
                        "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                    }
                },
                "description":"Presentation metadata including value, identifier and language."
            },
            "Protocol10":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "studyEventRef":{
                        "type":"object",
                        "properties":{
                            "orderNumber":{
                                "type":"integer",
                                "description":"Order of the event in schedule",
                                "format":"int32",
                                "example":1
                            },
                            "mandatory":{
                                "type":"string",
                                "description":"Is this event mandatory? YES or NO",
                                "example":"Yes",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "collectionExceptionConditionOID":{
                                "type":"string",
                                "description":"OID for collection exception",
                                "example":"COND1"
                            },
                            "studyEventOID":{
                                "type":"string",
                                "description":"OID of the referenced study event",
                                "example":"SE1"
                            }
                        },
                        "description":"Study Event Ref data",
                        "example":[
                            {
                                "eventOID":"SE1"
                            }
                        ]
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit.",
                        "example":[
                            {
                                "context":"CDASH",
                                "name":"PROTID"
                            }
                        ]
                    }
                },
                "description":"Protocol metadata"
            },
            "ProtocolName10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Protocol name/code for the Study.",
                        "example":"P-2024-0001"
                    }
                },
                "description":"Protocol identifier/name for the ODM Study."
            },
            "Question1":{
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Text value for this locale/language.",
                                "example":"gender"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code for this translation, e.g. 'en'.",
                                "example":"null"
                            }
                        },
                        "description":"A localizable or translated representation of a symbol, label, or similar text element."
                    }
                },
                "description":"Question containing translated display text."
            },
            "RangeCheck1":{
                "type":"object",
                "properties":{
                    "checkValue":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Value to check in a range validation",
                                "example":"10"
                            }
                        },
                        "description":"A value used within a range validation."
                    },
                    "formalExpression":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Formal expression for validation",
                                "example":"@AGE > 18"
                            },
                            "context":{
                                "type":"string",
                                "description":"Context or language for expression",
                                "example":"XPath"
                            }
                        },
                        "description":"Formal expression used for validation."
                    },
                    "measurementUnitRef":{
                        "$ref":"#/components/schemas/MeasurementUnitRef1"
                    },
                    "errorMessage":{
                        "$ref":"#/components/schemas/ErrorMessage1"
                    },
                    "comparator":{
                        "type":"string",
                        "description":"Comparator operation",
                        "enum":[
                            "LT",
                            "LE",
                            "GT",
                            "GE",
                            "EQ",
                            "NE",
                            "IN",
                            "NOTIN"
                        ]
                    },
                    "softHard":{
                        "type":"string",
                        "description":"Indicates hard or soft validation",
                        "enum":[
                            "SOFT",
                            "HARD"
                        ]
                    }
                },
                "description":"Range check configuration for item validation."
            },
            "ReasonForChange1":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Free-text reason describing the change.",
                        "example":"Correction of data entry error"
                    }
                },
                "description":"Explanation provided to justify why a data value was created or modified."
            },
            "ReferenceData10":{
                "type":"object",
                "properties":{
                    "ItemGroupData":{
                        "type":"object",
                        "properties":{
                            "auditRecord":{
                                "$ref":"#/components/schemas/AuditRecord100"
                            },
                            "signature":{
                                "$ref":"#/components/schemas/Signature1"
                            },
                            "annotation":{
                                "type":"object",
                                "properties":{
                                    "comment":{
                                        "$ref":"#/components/schemas/Comment2"
                                    },
                                    "flag":{
                                        "type":"object",
                                        "properties":{
                                            "FlagValue":{
                                                "$ref":"#/components/schemas/FlagValue1"
                                            },
                                            "FlagType":{
                                                "$ref":"#/components/schemas/FlagType1"
                                            }
                                        },
                                        "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                                    },
                                    "seqNum":{
                                        "type":"integer",
                                        "description":"Sequence number ordering annotations within the same context.",
                                        "format":"int64",
                                        "example":1
                                    },
                                    "transactionType":{
                                        "type":"string",
                                        "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                        "example":"INSERT"
                                    },
                                    "id":{
                                        "type":"string",
                                        "description":"Annotation identifier unique within the context.",
                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                    }
                                },
                                "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                            },
                            "items":{
                                "type":"object",
                                "properties":{
                                    "AuditRecord":{
                                        "$ref":"#/components/schemas/AuditRecord100"
                                    },
                                    "Signature":{
                                        "$ref":"#/components/schemas/Signature1"
                                    },
                                    "MeasurementUnitRef":{
                                        "$ref":"#/components/schemas/MeasurementUnitRef1"
                                    },
                                    "Annotation":{
                                        "type":"object",
                                        "properties":{
                                            "comment":{
                                                "$ref":"#/components/schemas/Comment2"
                                            },
                                            "flag":{
                                                "type":"object",
                                                "properties":{
                                                    "FlagValue":{
                                                        "$ref":"#/components/schemas/FlagValue1"
                                                    },
                                                    "FlagType":{
                                                        "$ref":"#/components/schemas/FlagType1"
                                                    }
                                                },
                                                "description":"Annotation flag consisting of a type and value to classify or qualify data (e.g., Query, Review Required)."
                                            },
                                            "seqNum":{
                                                "type":"integer",
                                                "description":"Sequence number ordering annotations within the same context.",
                                                "format":"int64",
                                                "example":1
                                            },
                                            "transactionType":{
                                                "type":"string",
                                                "description":"Operation represented by this annotation (Example values are- INSERT, UPDATE, DELETE, REMOVE,UPSERT,CONTEXT).",
                                                "example":"INSERT"
                                            },
                                            "id":{
                                                "type":"string",
                                                "description":"Annotation identifier unique within the context.",
                                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                            }
                                        },
                                        "description":"Note, query, or other annotation associated with a data point, including flags and a comment."
                                    },
                                    "ItemOID":{
                                        "type":"string",
                                        "description":"OID of the item",
                                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                    },
                                    "TransactionType":{
                                        "type":"string",
                                        "description":"Transaction type- INSERT, UPDATE, REMOVE, UPSERT or CONTEXT",
                                        "example":"UPDATE",
                                        "enum":[
                                            "INSERT",
                                            "UPDATE",
                                            "REMOVE",
                                            "UPSERT",
                                            "CONTEXT"
                                        ]
                                    },
                                    "ParentItemOID":{
                                        "type":"string",
                                        "description":"OID of parent item",
                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                    },
                                    "NotDone":{
                                        "type":"string",
                                        "description":"Whether item is not done (0 or 1)",
                                        "example":"0"
                                    },
                                    "SelectedCodeListItemsType":{
                                        "type":"string",
                                        "description":"Selected code list items type",
                                        "example":"CODE_A"
                                    },
                                    "Value":{
                                        "type":"string",
                                        "description":"Value for this item",
                                        "example":"130"
                                    },
                                    "DocumentId":{
                                        "type":"string",
                                        "description":"Document ID reference",
                                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                                    },
                                    "DocumentVersion":{
                                        "type":"number",
                                        "description":"Document version",
                                        "example":1
                                    }
                                },
                                "description":"Data captured for a Item "
                            },
                            "itemGroupOID":{
                                "type":"string",
                                "description":"OID for this item group",
                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                            },
                            "itemGroupRepeatKey":{
                                "type":"string",
                                "description":"Repeat key for this group",
                                "example":"RPT1"
                            },
                            "transactionType":{
                                "type":"string",
                                "description":"Transaction type for the group",
                                "example":"INSERT",
                                "enum":[
                                    "INSERT",
                                    "UPDATE",
                                    "REMOVE",
                                    "UPSERT",
                                    "CONTEXT"
                                ]
                            }
                        },
                        "description":"Data captured for a Item Group"
                    },
                    "AuditRecords":{
                        "type":"object",
                        "properties":{
                            "auditRecord":{
                                "type":"array",
                                "description":"List of audit records associated with the subject or form.",
                                "items":{
                                    "$ref":"#/components/schemas/AuditRecord100"
                                }
                            }
                        },
                        "description":"Container for a list of ODM audit record entries."
                    },
                    "Signatures":{
                        "type":"object",
                        "properties":{
                            "signature":{
                                "type":"array",
                                "description":"List of signature entries associated with the ODM structure.",
                                "items":{
                                    "$ref":"#/components/schemas/Signature1"
                                }
                            }
                        },
                        "description":"Container for a list of ODM Signature entries."
                    },
                    "Annotations":{
                        "type":"object",
                        "properties":{
                            "annotation":{
                                "type":"array",
                                "description":"List of Annotation entries associated to the ODM structure.",
                                "items":{
                                    "$ref":"#/components/schemas/Annotation2"
                                }
                            }
                        },
                        "description":"Container for a list of ODM Annotation entries."
                    },
                    "StudyOID":{
                        "type":"string",
                        "description":"OID of referenced study",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    },
                    "MetaDataVersionOID":{
                        "type":"string",
                        "description":"OID for referenced MetaDataVersion",
                        "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                    }
                },
                "description":"ReferenceData DTO."
            },
            "ReferenceType1":{
                "type":"object",
                "properties":{
                    "transforms":{
                        "$ref":"#/components/schemas/TransformsType1"
                    },
                    "digestMethod":{
                        "$ref":"#/components/schemas/DigestMethodType1"
                    },
                    "digestValue":{
                        "type":"string",
                        "description":"Base64-encoded digest value of the referenced data.",
                        "format":"byte",
                        "example":"WVdKak1USXo="
                    },
                    "uri":{
                        "type":"string",
                        "description":"URI of the referenced resource.",
                        "example":"#object"
                    },
                    "type":{
                        "type":"string",
                        "description":"Type of the reference, typically a URI indicating the nature of the resource.",
                        "example":"http://www.w3.org/2000/09/xmldsig#Object"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"Reference to signed data including transforms, digest method, and digest value."
            },
            "RepeatingFormData1":{
                "type":"object",
                "properties":{
                    "formOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the repeating form definition.",
                        "format":"oid",
                        "example":"95dc21fd-e522-4cc6-9d94-92ece0f25120.1_8_0_29"
                    },
                    "formID":{
                        "type":"string",
                        "description":"Human-readable identifier for the form instance.",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    },
                    "formHeader":{
                        "type":"array",
                        "description":"Header section for the repeating form instance (metadata about the form).",
                        "items":{
                            "$ref":"#/components/schemas/FormHeader1"
                        }
                    },
                    "Row":{
                        "type":"array",
                        "description":"Rows comprising items captured in this form instance.",
                        "items":{
                            "$ref":"#/components/schemas/Row2"
                        }
                    },
                    "summaryNote":{
                        "type":"string",
                        "description":"Optional summary or note for the form instance.",
                        "example":"Patient reported mild headache."
                    }
                },
                "description":"A single repeating form instance including headers and rows of item data."
            },
            "RepeatingFormSummary1":{
                "type":"object",
                "properties":{
                    "repeatingFormData":{
                        "type":"array",
                        "description":"Collection of repeating form data entries.",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingFormData1"
                        }
                    }
                },
                "description":"Summary container for sets of repeating forms within a study event."
            },
            "Role1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Value or name of the role",
                        "example":"DataEntry"
                    }
                },
                "description":"Represents the role associated with an item or definition."
            },
            "Row2":{
                "type":"object",
                "properties":{
                    "associatedFormList":{
                        "type":"array",
                        "description":"List of forms associated with this row, if any.",
                        "items":{
                            "$ref":"#/components/schemas/AssociatedFormList1"
                        }
                    },
                    "rowNo":{
                        "type":"string",
                        "description":"Row sequence identifier within the repeating form.",
                        "example":"1"
                    },
                    "formIndex":{
                        "type":"string",
                        "description":"Index value used to order or group rows.",
                        "example":"1"
                    },
                    "associated":{
                        "type":"boolean",
                        "description":"Indicates whether the row is associated to another form or entity.",
                        "example":true
                    },
                    "deleted":{
                        "type":"string",
                        "description":"Marks the row as logically deleted.",
                        "example":"false"
                    },
                    "item":{
                        "type":"array",
                        "description":"Items captured within this row.",
                        "items":{
                            "$ref":"#/components/schemas/Item1"
                        }
                    }
                },
                "description":"A single row within a repeating form instance containing associated forms and item data."
            },
            "Signature1":{
                "type":"object",
                "properties":{
                    "UserRef":{
                        "$ref":"#/components/schemas/UserRef10"
                    },
                    "LocationRef":{
                        "$ref":"#/components/schemas/LocationRef1"
                    },
                    "SignatureRef":{
                        "$ref":"#/components/schemas/SignatureRef1"
                    },
                    "DateTimeStamp":{
                        "$ref":"#/components/schemas/DateTimeStamp1"
                    },
                    "CryptoBindingManifest":{
                        "$ref":"#/components/schemas/CryptoBindingManifest10"
                    },
                    "ID":{
                        "type":"string",
                        "description":"Signature identifier",
                        "format":"identifier",
                        "example":"SIG123"
                    }
                },
                "description":"Digital signature record including signer, location, timestamp, and cryptographic binding manifest."
            },
            "SignatureDef1":{
                "type":"object",
                "properties":{
                    "group":{
                        "type":"string",
                        "description":"Signature group or category.",
                        "example":"INVESTIGATOR"
                    },
                    "type":{
                        "type":"string",
                        "description":"Signature type.",
                        "example":"DIGITAL"
                    },
                    "meaning":{
                        "$ref":"#/components/schemas/Meaning1"
                    },
                    "legalReason":{
                        "$ref":"#/components/schemas/LegalReason1"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"Definition of a signature including meaning, legal reason, and identifiers."
            },
            "SignatureMethodType1":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"object",
                        "description":"Optional content/parameters for the SignatureMethod."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Signature algorithm URI.",
                        "example":"Algo1"
                    }
                },
                "description":"Signature algorithm definition and associated parameters for XML Digital Signatures."
            },
            "SignatureRef1":{
                "type":"object",
                "properties":{
                    "SignatureOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the referenced signature.",
                        "example":"SIG-0001"
                    }
                },
                "description":"Reference to a signature object used to approve or verify data."
            },
            "SignatureType1":{
                "type":"object",
                "properties":{
                    "signedInfo":{
                        "$ref":"#/components/schemas/SignedInfoType1"
                    },
                    "signatureValue":{
                        "$ref":"#/components/schemas/SignatureValueType1"
                    },
                    "keyInfo":{
                        "$ref":"#/components/schemas/KeyInfoType1"
                    },
                    "object":{
                        "type":"object",
                        "properties":{
                            "content":{
                                "type":"array",
                                "description":"List of embedded content",
                                "example":[
                                ],
                                "items":{
                                    "type":"object",
                                    "description":"List of embedded content",
                                    "example":[
                                    ]
                                }
                            },
                            "mimeType":{
                                "type":"string",
                                "description":"MIME type of the encapsulated content",
                                "example":"application/pdf"
                            },
                            "encoding":{
                                "type":"string",
                                "description":"Character encoding of the content",
                                "example":"UTF-8"
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"3F2504E04F8911D39A0C0305E82C3301"
                            }
                        },
                        "description":"Generic container for embedded object content and metadata"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"XML Digital Signature container including SignedInfo, SignatureValue, KeyInfo and optional Object elements."
            },
            "SignatureValueType1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Base64-encoded signature value.",
                        "format":"byte"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"The actual value of the digital signature and optional identifier."
            },
            "Signatures1":{
                "type":"object",
                "properties":{
                    "signature":{
                        "type":"array",
                        "description":"List of signature entries associated with the ODM structure.",
                        "items":{
                            "$ref":"#/components/schemas/Signature1"
                        }
                    }
                },
                "description":"Container for a list of ODM Signature entries."
            },
            "SignedInfoType1":{
                "type":"object",
                "properties":{
                    "canonicalizationMethod":{
                        "$ref":"#/components/schemas/CanonicalizationMethodType1"
                    },
                    "signatureMethod":{
                        "$ref":"#/components/schemas/SignatureMethodType1"
                    },
                    "reference":{
                        "type":"object",
                        "properties":{
                            "transforms":{
                                "$ref":"#/components/schemas/TransformsType1"
                            },
                            "digestMethod":{
                                "$ref":"#/components/schemas/DigestMethodType1"
                            },
                            "digestValue":{
                                "type":"string",
                                "description":"Base64-encoded digest value of the referenced data.",
                                "format":"byte",
                                "example":"WVdKak1USXo="
                            },
                            "uri":{
                                "type":"string",
                                "description":"URI of the referenced resource.",
                                "example":"#object"
                            },
                            "type":{
                                "type":"string",
                                "description":"Type of the reference, typically a URI indicating the nature of the resource.",
                                "example":"http://www.w3.org/2000/09/xmldsig#Object"
                            },
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            }
                        },
                        "description":"Reference to signed data including transforms, digest method, and digest value."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"Contains canonicalization and signature methods, and references used in the XML Digital Signature."
            },
            "SiteRef10":{
                "type":"object",
                "properties":{
                    "LocationOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the site location.",
                        "format":"oid",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    },
                    "Name":{
                        "type":"string",
                        "description":"Human-readable site name.",
                        "example":"475454D6B7F247C88D401DB25CA2C7D2"
                    }
                },
                "description":"Reference to a study site/location."
            },
            "SourceID1":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Source identifier value (e.g., system code or external app ID).",
                        "format":"identifier",
                        "example":"SYS"
                    }
                },
                "description":"Identifier of the originating system or source that provided the data."
            },
            "StateProv1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"State or province code or name.",
                        "example":"CA"
                    }
                },
                "description":"State or province component of a postal address."
            },
            "StreetName1":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Street name line.",
                        "example":"123 Main Street"
                    }
                },
                "description":"Street name component of a postal address."
            },
            "Study":{
                "type":"object",
                "properties":{
                    "GlobalVariables":{
                        "$ref":"#/components/schemas/GlobalVariables10"
                    },
                    "BasicDefinitions":{
                        "$ref":"#/components/schemas/BasicDefinitions10"
                    },
                    "MetaDataVersion":{
                        "type":"object",
                        "properties":{
                            "include":{
                                "$ref":"#/components/schemas/Include10"
                            },
                            "protocol":{
                                "$ref":"#/components/schemas/Protocol10"
                            },
                            "studyEventDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "formRef":{
                                        "type":"object",
                                        "properties":{
                                            "formOID":{
                                                "type":"string",
                                                "description":"OID of the referenced form",
                                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                            },
                                            "orderNumber":{
                                                "type":"integer",
                                                "description":"Order of this form in the event",
                                                "format":"int32",
                                                "example":1
                                            },
                                            "mandatory":{
                                                "type":"string",
                                                "description":"Is this form mandatory in the event?",
                                                "example":"Yes",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "collectionExceptionConditionOID":{
                                                "type":"string",
                                                "description":"OID for collection exception",
                                                "example":"43caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                            }
                                        },
                                        "description":"FormRef metadata"
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Event name",
                                        "example":"Screening Event"
                                    },
                                    "repeating":{
                                        "type":"string",
                                        "description":"Whether this event may repeat",
                                        "example":"Yes",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "type":{
                                        "type":"string",
                                        "description":"Type of event",
                                        "example":"SCHEDULED",
                                        "enum":[
                                            "Scheduled",
                                            "Unscheduled",
                                            "Common"
                                        ]
                                    },
                                    "category":{
                                        "type":"string",
                                        "description":"Event category",
                                        "example":"Main"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Unique identifier OID for the event",
                                        "example":"SE1"
                                    }
                                },
                                "description":"Study Event Def data"
                            },
                            "formDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "itemGroupRef":{
                                        "type":"array",
                                        "description":"Item group references for this form",
                                        "items":{
                                            "$ref":"#/components/schemas/ItemGroupRef1"
                                        }
                                    },
                                    "archiveLayout":{
                                        "type":"array",
                                        "description":"Archive layouts defined for this form",
                                        "items":{
                                            "$ref":"#/components/schemas/ArchiveLayout1"
                                        }
                                    },
                                    "alias":{
                                        "type":"array",
                                        "description":"Aliases for the form",
                                        "items":{
                                            "$ref":"#/components/schemas/Alias1"
                                        }
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Form name",
                                        "example":"Demographics"
                                    },
                                    "repeating":{
                                        "type":"string",
                                        "description":"Whether the form is repeating",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "hasIPR":{
                                        "type":"boolean",
                                        "description":"Indicates IPR exists for the form",
                                        "example":true
                                    },
                                    "note":{
                                        "type":"string",
                                        "description":"Additional note for the form",
                                        "example":"Requires supervisor review"
                                    },
                                    "revisionDate":{
                                        "type":"string",
                                        "description":"Form revision date",
                                        "example":"2023-01-01"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Form object identifier",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    },
                                    "id":{
                                        "type":"string",
                                        "description":"Form identifier",
                                        "example":"9B9B96B684BA4822B98BFA612A070251"
                                    }
                                },
                                "description":"Form definition containing item group references, archive layouts and metadata."
                            },
                            "itemGroupDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "itemRef":{
                                        "type":"array",
                                        "description":"References to Items within this ItemGroup",
                                        "items":{
                                            "$ref":"#/components/schemas/ItemRef1"
                                        }
                                    },
                                    "alias":{
                                        "type":"array",
                                        "description":"Aliases for the ItemGroup",
                                        "items":{
                                            "$ref":"#/components/schemas/Alias1"
                                        }
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"ItemGroup name",
                                        "example":"Demographics Group"
                                    },
                                    "repeating":{
                                        "type":"string",
                                        "description":"Whether the ItemGroup is repeating",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "isReferenceData":{
                                        "type":"string",
                                        "description":"Indicates whether the ItemGroup holds reference data",
                                        "enum":[
                                            "Yes",
                                            "No"
                                        ]
                                    },
                                    "domain":{
                                        "type":"string",
                                        "description":"Domain name for the ItemGroup",
                                        "example":"DM"
                                    },
                                    "origin":{
                                        "type":"string",
                                        "description":"Origin of the ItemGroup data",
                                        "example":"Collected"
                                    },
                                    "role":{
                                        "type":"string",
                                        "description":"Role of the ItemGroup",
                                        "example":"CRF"
                                    },
                                    "purpose":{
                                        "type":"string",
                                        "description":"Purpose of the ItemGroup",
                                        "example":"Analysis"
                                    },
                                    "comment":{
                                        "type":"string",
                                        "description":"Additional comments for the ItemGroup",
                                        "example":"No special handling"
                                    },
                                    "SASDatasetName":{
                                        "type":"string",
                                        "description":"SAS dataset name mapped for the ItemGroup",
                                        "example":"DM"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"ItemGroup object identifier",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    }
                                },
                                "description":"ItemGroup definition containing item references and metadata."
                            },
                            "itemDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "question":{
                                        "$ref":"#/components/schemas/Question1"
                                    },
                                    "externalQuestion":{
                                        "$ref":"#/components/schemas/ExternalQuestion1"
                                    },
                                    "measurementUnitRef":{
                                        "type":"object",
                                        "properties":{
                                            "MeasurementUnitOID":{
                                                "type":"string",
                                                "description":"OID of the referenced measurement unit",
                                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                                            }
                                        },
                                        "description":"Data captured for a Measurement Unit "
                                    },
                                    "rangeCheck":{
                                        "type":"object",
                                        "properties":{
                                            "checkValue":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Value to check in a range validation",
                                                        "example":"10"
                                                    }
                                                },
                                                "description":"A value used within a range validation."
                                            },
                                            "formalExpression":{
                                                "type":"object",
                                                "properties":{
                                                    "value":{
                                                        "type":"string",
                                                        "description":"Formal expression for validation",
                                                        "example":"@AGE > 18"
                                                    },
                                                    "context":{
                                                        "type":"string",
                                                        "description":"Context or language for expression",
                                                        "example":"XPath"
                                                    }
                                                },
                                                "description":"Formal expression used for validation."
                                            },
                                            "measurementUnitRef":{
                                                "$ref":"#/components/schemas/MeasurementUnitRef1"
                                            },
                                            "errorMessage":{
                                                "$ref":"#/components/schemas/ErrorMessage1"
                                            },
                                            "comparator":{
                                                "type":"string",
                                                "description":"Comparator operation",
                                                "enum":[
                                                    "LT",
                                                    "LE",
                                                    "GT",
                                                    "GE",
                                                    "EQ",
                                                    "NE",
                                                    "IN",
                                                    "NOTIN"
                                                ]
                                            },
                                            "softHard":{
                                                "type":"string",
                                                "description":"Indicates hard or soft validation",
                                                "enum":[
                                                    "SOFT",
                                                    "HARD"
                                                ]
                                            }
                                        },
                                        "description":"Range check configuration for item validation."
                                    },
                                    "codeListRef":{
                                        "$ref":"#/components/schemas/CodeListRef1"
                                    },
                                    "role":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Value or name of the role",
                                                "example":"DataEntry"
                                            }
                                        },
                                        "description":"Represents the role associated with an item or definition."
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "Name":{
                                        "type":"string",
                                        "description":"Item name",
                                        "example":"DROPDOWN_03"
                                    },
                                    "DataType":{
                                        "type":"string",
                                        "description":"Data type (e.g., STRING, INT)",
                                        "example":"string",
                                        "enum":[
                                            "integer",
                                            "float",
                                            "date",
                                            "datetime",
                                            "time",
                                            "text",
                                            "string",
                                            "double",
                                            "URI",
                                            "boolean",
                                            "hexBinary",
                                            "base64Binary",
                                            "hexFloat",
                                            "base64Float",
                                            "partialDate",
                                            "partialTime",
                                            "partialDatetime",
                                            "durationDatetime",
                                            "intervalDatetime",
                                            "incompleteDatetime",
                                            "incompleteDate",
                                            "incompleteTime"
                                        ]
                                    },
                                    "Length":{
                                        "type":"integer",
                                        "description":"Length of string/numeric",
                                        "format":"int32",
                                        "example":255
                                    },
                                    "SignificantDigits":{
                                        "type":"integer",
                                        "description":"Number of significant digits",
                                        "format":"int32",
                                        "example":2
                                    },
                                    "Origin":{
                                        "type":"string",
                                        "description":"Item's origin data",
                                        "example":"derived"
                                    },
                                    "Comment":{
                                        "type":"string",
                                        "description":"Free-text comment",
                                        "example":"This is a calculated item."
                                    },
                                    "CaptionText":{
                                        "type":"string",
                                        "description":"UI caption text",
                                        "example":"Please enter your name"
                                    },
                                    "ControlType":{
                                        "type":"string",
                                        "description":"UI control type",
                                        "example":"TEXTBOX",
                                        "enum":[
                                            "pulldown",
                                            "text",
                                            "group",
                                            "radiogroup",
                                            "checkbox",
                                            "calendar",
                                            "element",
                                            "calculated",
                                            "instructionaltext",
                                            "file"
                                        ]
                                    },
                                    "ControlLayout":{
                                        "type":"string",
                                        "description":"UI control layout style.Allowed values are INF_NOTDEFINED,INF_HORIZONTAL,INF_VERTICAL,INF_NOWRAP,INF_TWOCOLUMN,INF_THREECOLUMN",
                                        "example":"INF_NOTDEFINED",
                                        "enum":[
                                            "0",
                                            "1",
                                            "2",
                                            "3",
                                            "4",
                                            "5"
                                        ]
                                    },
                                    "CaptionAlignment":{
                                        "type":"string",
                                        "description":"Caption alignment. Allowed Values are INF_NOTDEFINED ,INF_LEFT ,INF_CENTER ,INF_RIGHT ,INF_TOP ,INF_MIDDLE ,INF_BOTTOM",
                                        "example":"INF_TOP",
                                        "enum":[
                                            "0",
                                            "1",
                                            "2",
                                            "3",
                                            "4",
                                            "5",
                                            "6"
                                        ]
                                    },
                                    "InitialRowCount":{
                                        "type":"string",
                                        "description":"Initial number of rows",
                                        "example":"1"
                                    },
                                    "DisplayMask":{
                                        "type":"string",
                                        "description":"Display mask for input",
                                        "example":"999-99-9999"
                                    },
                                    "StartYear":{
                                        "type":"string",
                                        "description":"Start year for date input",
                                        "example":"2000"
                                    },
                                    "EndYear":{
                                        "type":"string",
                                        "description":"End year for date input",
                                        "example":"2025"
                                    },
                                    "UnknownMask":{
                                        "type":"string",
                                        "description":"Unknown input mask",
                                        "example":"UNK"
                                    },
                                    "Calculated":{
                                        "type":"string",
                                        "description":"Is this item calculated?",
                                        "example":"1"
                                    },
                                    "SelectionValue":{
                                        "type":"string",
                                        "description":"Selection value for this item",
                                        "example":"Y"
                                    },
                                    "itemRef":{
                                        "type":"object",
                                        "properties":{
                                            "itemOID":{
                                                "type":"string",
                                                "description":"OID of referenced item",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            },
                                            "keySequence":{
                                                "type":"integer",
                                                "description":"Key sequence for composite key",
                                                "format":"int64",
                                                "example":1
                                            },
                                            "methodOID":{
                                                "type":"string",
                                                "description":"Method OID for derivation",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            },
                                            "imputationMethodOID":{
                                                "type":"string",
                                                "description":"Imputation method OID",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            },
                                            "role":{
                                                "type":"string",
                                                "description":"Role of the referenced item",
                                                "example":"DataEntry"
                                            },
                                            "roleCodeListOID":{
                                                "type":"string",
                                                "description":"OID for role code list",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            },
                                            "orderNumber":{
                                                "type":"integer",
                                                "description":"Order of the item",
                                                "format":"int64",
                                                "example":2
                                            },
                                            "mandatory":{
                                                "type":"string",
                                                "description":"Is this item mandatory?",
                                                "enum":[
                                                    "Yes",
                                                    "No"
                                                ]
                                            },
                                            "collectionExceptionConditionOID":{
                                                "type":"string",
                                                "description":"OID for collection exception condition",
                                                "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                            }
                                        },
                                        "description":"Reference to an Item within an ItemGroup."
                                    },
                                    "IsDynamic":{
                                        "type":"integer",
                                        "description":"Is this item dynamic?",
                                        "format":"int32",
                                        "example":0
                                    },
                                    "IsSmartItem":{
                                        "type":"integer",
                                        "description":"Is this a smart item?",
                                        "format":"int32",
                                        "example":1
                                    },
                                    "SASFieldName":{
                                        "type":"string",
                                        "description":"Field name in SAS export",
                                        "example":"HEIGHT_SAS"
                                    },
                                    "SDSVarName":{
                                        "type":"string",
                                        "description":"Field name in SDS export",
                                        "example":"HEIGHT_SDS"
                                    },
                                    "OID":{
                                        "type":"string",
                                        "description":"Unique OID",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    }
                                },
                                "description":"Item definition including question, code list, range checks and metadata."
                            },
                            "codeList":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "externalCodeList":{
                                        "$ref":"#/components/schemas/ExternalCodeList1"
                                    },
                                    "enumeratedItem":{
                                        "type":"object",
                                        "properties":{
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "codedValue":{
                                                "type":"string",
                                                "description":"Coded value",
                                                "example":"M"
                                            },
                                            "rank":{
                                                "type":"number",
                                                "description":"Optional rank for ordering",
                                                "example":1
                                            },
                                            "orderNumber":{
                                                "type":"integer",
                                                "description":"Order number within the code list",
                                                "format":"int64",
                                                "example":1
                                            }
                                        },
                                        "description":"Enumerated item value with optional ordering and aliases."
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Code list name",
                                        "example":"GENDER"
                                    },
                                    "dataType":{
                                        "type":"string",
                                        "description":"Code list data type",
                                        "enum":[
                                            "INTEGER",
                                            "FLOAT",
                                            "TEXT",
                                            "STRING"
                                        ]
                                    },
                                    "SASFormatName":{
                                        "type":"string",
                                        "description":"SAS format name for the code list",
                                        "example":"BEST12."
                                    },
                                    "codeListItem":{
                                        "type":"object",
                                        "properties":{
                                            "decode":{
                                                "$ref":"#/components/schemas/Decode1"
                                            },
                                            "alias":{
                                                "type":"object",
                                                "properties":{
                                                    "Context":{
                                                        "type":"string",
                                                        "description":"Locale, region, or terminology context.",
                                                        "example":"US"
                                                    },
                                                    "Name":{
                                                        "type":"string",
                                                        "description":"Alternative or alias name for the unit in this context.",
                                                        "example":"mg per deciliter"
                                                    }
                                                },
                                                "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                            },
                                            "codedValue":{
                                                "type":"string",
                                                "description":"Coded value",
                                                "example":"M"
                                            },
                                            "orderNumber":{
                                                "type":"integer",
                                                "description":"Order number of this item",
                                                "format":"int64",
                                                "example":1
                                            }
                                        },
                                        "description":"Represents a single code list item with decode and metadata."
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"CodeList object identifier",
                                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                                    }
                                },
                                "description":"Code list definition including items or external mappings."
                            },
                            "imputationMethod":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Imputation method value",
                                        "example":"MeanImputation"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Imputation method object identifier",
                                        "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                    }
                                },
                                "description":"Imputation method definition with value and identifier."
                            },
                            "presentation":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Presentation value",
                                        "example":"Form Layout A"
                                    },
                                    "lang":{
                                        "type":"string",
                                        "description":"Language code",
                                        "example":"en"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Presentation object identifier",
                                        "example":"a4a7124a-0056-4fb5-9a7e-4a1b0068a966.1_8_0_29"
                                    }
                                },
                                "description":"Presentation metadata including value, identifier and language."
                            },
                            "conditionDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "formalExpression":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Formal expression for validation",
                                                "example":"@AGE > 18"
                                            },
                                            "context":{
                                                "type":"string",
                                                "description":"Context or language for expression",
                                                "example":"XPath"
                                            }
                                        },
                                        "description":"Formal expression used for validation."
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Condition name",
                                        "example":"AgeGreaterThan18"
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Condition object identifier",
                                        "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                    }
                                },
                                "description":"Condition definition containing formal expressions and metadata."
                            },
                            "methodDef":{
                                "type":"object",
                                "properties":{
                                    "description":{
                                        "$ref":"#/components/schemas/Description10"
                                    },
                                    "formalExpression":{
                                        "type":"object",
                                        "properties":{
                                            "value":{
                                                "type":"string",
                                                "description":"Formal expression for validation",
                                                "example":"@AGE > 18"
                                            },
                                            "context":{
                                                "type":"string",
                                                "description":"Context or language for expression",
                                                "example":"XPath"
                                            }
                                        },
                                        "description":"Formal expression used for validation."
                                    },
                                    "alias":{
                                        "type":"object",
                                        "properties":{
                                            "Context":{
                                                "type":"string",
                                                "description":"Locale, region, or terminology context.",
                                                "example":"US"
                                            },
                                            "Name":{
                                                "type":"string",
                                                "description":"Alternative or alias name for the unit in this context.",
                                                "example":"mg per deciliter"
                                            }
                                        },
                                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                                    },
                                    "name":{
                                        "type":"string",
                                        "description":"Method name",
                                        "example":"DeriveBMI"
                                    },
                                    "type":{
                                        "type":"string",
                                        "description":"Method type",
                                        "enum":[
                                            "COMPUTATION",
                                            "IMPUTATION",
                                            "TRANSPOSE",
                                            "OTHER"
                                        ]
                                    },
                                    "oid":{
                                        "type":"string",
                                        "description":"Method object identifier",
                                        "example":"86e83895-8674-443d-b2c9-f3a7ed25d119.2_0_0_39"
                                    }
                                },
                                "description":"Method definition containing formal expressions and metadata."
                            },
                            "name":{
                                "type":"string",
                                "description":"Name of this study version",
                                "example":"Main Study MetaData v1"
                            },
                            "description":{
                                "type":"string",
                                "description":"Description of this study version",
                                "example":"Main Study Metadata for Diabetes Trial"
                            },
                            "oid":{
                                "type":"string",
                                "description":"Unique identifier for this MetaDataVersion",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            }
                        },
                        "description":"Represents the metadata about the study"
                    },
                    "OID":{
                        "type":"string",
                        "description":"Unique object identifier for the study, uppercase HEX UUID.",
                        "example":"D5E16DD550CB4AD1B330E0D09B4B8F3F"
                    }
                },
                "description":"ODM Study object"
            },
            "StudyDescription10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Free-text description of the Study.",
                        "example":"Phase 3, double blind, randomized clinical study in Diabetes."
                    }
                },
                "description":"Free-text description of the ODM Study."
            },
            "StudyEventData1":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord100"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature1"
                    },
                    "annotation":{
                        "type":"array",
                        "description":"Annotations (queries, comments, flags) on this study event.",
                        "items":{
                            "$ref":"#/components/schemas/Annotation2"
                        }
                    },
                    "formData":{
                        "type":"array",
                        "description":"Forms captured within this study event.",
                        "items":{
                            "$ref":"#/components/schemas/FormData10"
                        }
                    },
                    "studyEventOID":{
                        "type":"string",
                        "description":"Identifier (OID) of the study event definition.",
                        "format":"oid",
                        "example":"SE.VISIT1"
                    },
                    "studyEventRepeatKey":{
                        "type":"string",
                        "description":"Repeat key when the same study event occurs multiple times.",
                        "example":"1"
                    },
                    "repeatingFormSummary":{
                        "$ref":"#/components/schemas/RepeatingFormSummary1"
                    },
                    "EventHistory":{
                        "type":"array",
                        "description":"History of actions performed on this study event.",
                        "example":[
                            {
                                "action":"Locked",
                                "actionDate":"2025-11-01T14:00:00Z"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/History1"
                        }
                    }
                },
                "description":"Subject visit or study event data block including forms, annotations and references."
            },
            "StudyEventDef1":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description10"
                    },
                    "formRef":{
                        "type":"object",
                        "properties":{
                            "formOID":{
                                "type":"string",
                                "description":"OID of the referenced form",
                                "example":"33caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            },
                            "orderNumber":{
                                "type":"integer",
                                "description":"Order of this form in the event",
                                "format":"int32",
                                "example":1
                            },
                            "mandatory":{
                                "type":"string",
                                "description":"Is this form mandatory in the event?",
                                "example":"Yes",
                                "enum":[
                                    "Yes",
                                    "No"
                                ]
                            },
                            "collectionExceptionConditionOID":{
                                "type":"string",
                                "description":"OID for collection exception",
                                "example":"43caf3cb-1df6-4df5-a353-a337cbe6b50a.1_8_0_29"
                            }
                        },
                        "description":"FormRef metadata"
                    },
                    "alias":{
                        "type":"object",
                        "properties":{
                            "Context":{
                                "type":"string",
                                "description":"Locale, region, or terminology context.",
                                "example":"US"
                            },
                            "Name":{
                                "type":"string",
                                "description":"Alternative or alias name for the unit in this context.",
                                "example":"mg per deciliter"
                            }
                        },
                        "description":"A synonym, translation, or locale-specific label for a MeasurementUnit."
                    },
                    "name":{
                        "type":"string",
                        "description":"Event name",
                        "example":"Screening Event"
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Whether this event may repeat",
                        "example":"Yes",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "type":{
                        "type":"string",
                        "description":"Type of event",
                        "example":"SCHEDULED",
                        "enum":[
                            "Scheduled",
                            "Unscheduled",
                            "Common"
                        ]
                    },
                    "category":{
                        "type":"string",
                        "description":"Event category",
                        "example":"Main"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier OID for the event",
                        "example":"SE1"
                    }
                },
                "description":"Study Event Def data"
            },
            "StudyEventRef1":{
                "type":"object",
                "properties":{
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order of the event in schedule",
                        "format":"int32",
                        "example":1
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Is this event mandatory? YES or NO",
                        "example":"Yes",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "description":"OID for collection exception",
                        "example":"COND1"
                    },
                    "studyEventOID":{
                        "type":"string",
                        "description":"OID of the referenced study event",
                        "example":"SE1"
                    }
                },
                "description":"Study Event Ref data",
                "example":[
                    {
                        "eventOID":"SE1"
                    }
                ]
            },
            "StudyName10":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Display name for the Study.",
                        "example":"Sample Study"
                    }
                },
                "description":"Human-readable display name for the ODM Study."
            },
            "SubjectData1":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord100"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature1"
                    },
                    "investigatorRef":{
                        "$ref":"#/components/schemas/InvestigatorRef1"
                    },
                    "siteRef":{
                        "$ref":"#/components/schemas/SiteRef10"
                    },
                    "annotation":{
                        "type":"array",
                        "description":"List of annotations (queries, notes, flags) linked to the subject data.",
                        "items":{
                            "$ref":"#/components/schemas/Annotation2"
                        }
                    },
                    "studyEventData":{
                        "type":"array",
                        "description":"All scheduled or unscheduled visit/event data for the subject.",
                        "items":{
                            "$ref":"#/components/schemas/StudyEventData1"
                        }
                    },
                    "subjectKey":{
                        "type":"string",
                        "description":"Unique key of the subject within the study/site.",
                        "format":"identifier",
                        "example":"SUBJ-0001"
                    },
                    "transactionType":{
                        "type":"string",
                        "description":"Operation represented by this payload, such as Insert, Update, or Delete.",
                        "example":"Update"
                    },
                    "initials":{
                        "type":"string",
                        "description":"Subject initials if captured.",
                        "example":"JD"
                    },
                    "transferData":{
                        "type":"array",
                        "description":"Data transfer records for this subject (e.g., imports or system migrations).",
                        "items":{
                            "$ref":"#/components/schemas/TransferData1"
                        }
                    },
                    "subjectHistory":{
                        "type":"array",
                        "description":"Chronological history of key actions for this subject.",
                        "items":{
                            "$ref":"#/components/schemas/History1"
                        }
                    }
                },
                "description":"ODM SubjectData structure including audit, signature, references and event data for a subject."
            },
            "Symbol10":{
                "type":"object",
                "properties":{
                    "TranslatedText":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Text value for this locale/language.",
                                "example":"gender"
                            },
                            "lang":{
                                "type":"string",
                                "description":"Language code for this translation, e.g. 'en'.",
                                "example":"null"
                            }
                        },
                        "description":"A localizable or translated representation of a symbol, label, or similar text element."
                    }
                },
                "description":"Symbol element for a MeasurementUnit."
            },
            "TransferData1":{
                "type":"object",
                "properties":{
                    "fromSiteName":{
                        "type":"string",
                        "description":"Name of the site the subject is transferred from",
                        "example":"Previous Site Name"
                    },
                    "toSiteName":{
                        "type":"string",
                        "description":"Name of the site the subject is transferred to",
                        "example":"New Site Name"
                    },
                    "transferDate":{
                        "type":"string",
                        "description":"Date when the subject transfer occurred",
                        "example":"2023-12-31"
                    }
                },
                "description":"Subject transfer details between sites"
            },
            "TransformType2":{
                "type":"object",
                "properties":{
                    "content":{
                        "type":"object",
                        "description":"Optional content/parameters for the Transform."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Transform algorithm URI.",
                        "example":"http://www.w3.org/2000/09/xmldsig#enveloped-signature"
                    }
                },
                "description":"Transform algorithm definition and optional parameters applied to referenced data."
            },
            "TransformsType1":{
                "type":"object",
                "properties":{
                    "transform":{
                        "type":"object",
                        "properties":{
                            "content":{
                                "type":"object",
                                "description":"Optional content/parameters for the Transform."
                            },
                            "algorithm":{
                                "type":"string",
                                "description":"Transform algorithm URI.",
                                "example":"http://www.w3.org/2000/09/xmldsig#enveloped-signature"
                            }
                        },
                        "description":"Transform algorithm definition and optional parameters applied to referenced data."
                    }
                },
                "description":"Collection of Transform elements applied to the referenced data."
            },
            "TranslatedText1":{
                "type":"object",
                "properties":{
                    "Value":{
                        "type":"string",
                        "description":"Text value for this locale/language.",
                        "example":"gender"
                    },
                    "lang":{
                        "type":"string",
                        "description":"Language code for this translation, e.g. 'en'.",
                        "example":"null"
                    }
                },
                "description":"A localizable or translated representation of a symbol, label, or similar text element."
            },
            "User100":{
                "type":"object",
                "properties":{
                    "loginName":{
                        "$ref":"#/components/schemas/LoginName1"
                    },
                    "displayName":{
                        "$ref":"#/components/schemas/DisplayName1"
                    },
                    "fullName":{
                        "$ref":"#/components/schemas/FullName10"
                    },
                    "firstName":{
                        "$ref":"#/components/schemas/FirstName10"
                    },
                    "lastName":{
                        "$ref":"#/components/schemas/LastName10"
                    },
                    "organization":{
                        "$ref":"#/components/schemas/Organization10"
                    },
                    "address":{
                        "type":"object",
                        "properties":{
                            "streetName":{
                                "type":"object",
                                "properties":{
                                    "value":{
                                        "type":"string",
                                        "description":"Street name line.",
                                        "example":"123 Main Street"
                                    }
                                },
                                "description":"Street name component of a postal address."
                            },
                            "city":{
                                "$ref":"#/components/schemas/City1"
                            },
                            "stateProv":{
                                "$ref":"#/components/schemas/StateProv1"
                            },
                            "country":{
                                "$ref":"#/components/schemas/Country1"
                            },
                            "postalCode":{
                                "$ref":"#/components/schemas/PostalCode1"
                            },
                            "otherText":{
                                "$ref":"#/components/schemas/OtherText1"
                            }
                        },
                        "description":"Postal or location address for an ODM user or site, with support for street, city, state, country, and postal code."
                    },
                    "email":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Email address.",
                                "example":"john.smith@email.com"
                            }
                        },
                        "description":"Email address record for an ODM user."
                    },
                    "picture":{
                        "$ref":"#/components/schemas/Picture1"
                    },
                    "pager":{
                        "$ref":"#/components/schemas/Pager1"
                    },
                    "fax":{
                        "type":"object",
                        "properties":{
                            "value":{
                                "type":"string",
                                "description":"Fax number.",
                                "example":"555-5678"
                            }
                        },
                        "description":"Fax number/contact for an ODM User."
                    },
                    "phone":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Phone number.",
                                "example":"555-9876"
                            }
                        },
                        "description":"Phone number/contact entry for ODM User."
                    },
                    "locationRef":{
                        "type":"object",
                        "properties":{
                            "LocationOID":{
                                "type":"string",
                                "description":"OID/ID for the associated location.",
                                "example":"475454D6B7F247C88D401DB25CA2C7D2"
                            }
                        },
                        "description":"Reference to a study/site location for an ODM User."
                    },
                    "certificate":{
                        "type":"object",
                        "properties":{
                            "Value":{
                                "type":"string",
                                "description":"Certificate/credential identifier.",
                                "example":"CERT123"
                            }
                        },
                        "description":"Digital certificate or identity for an ODM User."
                    },
                    "userType":{
                        "type":"string",
                        "description":"Enumeration of possible user types/roles for ODM User.",
                        "enum":[
                            "SPONSOR",
                            "INVESTIGATOR",
                            "LAB",
                            "OTHER"
                        ]
                    },
                    "oid":{
                        "type":"string",
                        "description":"User OID value ",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Represents a user in the ODM AdminData structure (site personnel, investigator, etc)."
            },
            "UserRef10":{
                "type":"object",
                "properties":{
                    "UserOID":{
                        "type":"string",
                        "description":"OID of the referenced user",
                        "format":"oid",
                        "example":"c419c414-a0de-4ee4-a138-3b072aa1a00f.1_8_0_29"
                    }
                },
                "description":"Reference to a user within the study."
            },
            "SubjectEventInfoDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Event associated with the Subject. The acceptable values are - SubjectNumberReplaced, SubjectNumberChanged, Enrolled, New, Randomized, Complete, Undo_Withdrawn, Screened, Transferred, Screen_Failed, Visit_Complete, VisitDispensed, VisitRandomized  and VisitScreened ",
                        "example":"SubjectNumberReplaced"
                    },
                    "subjects":{
                        "type":"array",
                        "description":"List of subject identifiers associated with the event",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "93CC828113AC439181071CB44D2C6FE5"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject identifiers associated with the event",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Event summary including the event identifier and the list of associated subject identifiers."
            },
            "SubjectEventsInfoDto":{
                "type":"object",
                "properties":{
                    "tenant":{
                        "type":"string",
                        "description":"Tenant identifier",
                        "example":"TENANT-A"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "mode":{
                        "type":"string",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "example":"active"
                    },
                    "events":{
                        "type":"array",
                        "description":"List of event entries including event id and associated subjects",
                        "items":{
                            "$ref":"#/components/schemas/SubjectEventInfoDto"
                        }
                    }
                },
                "description":"Container for subject event details within a study and mode, including a list of event entries per subject."
            },
            "SubjectNumberDto":{
                "required":[
                    "state",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Subject unique identifier (UUID, 32-character uppercase hexadecimal string)",
                        "example":"A1B2C3D4E5F60718273645AABBCCDDEE"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0002"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":3
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject number mapping with state, ID, site, version and study linkage."
            },
            "SubjectSDVDto":{
                "required":[
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the SDV subject (UUID, 32-character uppercase hexadecimal string)",
                        "example":"22223333444455556666777788889999"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0204"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"FEDCBA1234567890FEDCBA1234567890"
                    },
                    "sdvSelectionStatus":{
                        "type":"string",
                        "description":"Source data verification selection status for the subject it can be NOT_SELECTED, INITIALCOUNT_SELECTED, POST_INITIALCOUNT_SELECTED.",
                        "example":"NOT_SELECTED"
                    }
                },
                "description":"Basic SDV subject selection information."
            },
            "SubjectSDVDtoList":{
                "type":"object",
                "properties":{
                    "prevSelectedSubjectNumber":{
                        "type":"string",
                        "description":"Previously selected subject number for reference.",
                        "example":"SUBJ-0001"
                    },
                    "subjectsList":{
                        "type":"array",
                        "description":"List of SDV subject objects returned as selection status result.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectSDVDto"
                        }
                    }
                },
                "description":"List of SDV subject selection objects with the previously selected subject number."
            },
            "SubjectsVisitScheduleRequest":{
                "type":"object",
                "properties":{
                    "sites":{
                        "type":"array",
                        "description":"List of site identifiers to scope the search",
                        "example":[
                            "D3C9A4B5E6F78123456789ABCDEF1234",
                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of site identifiers to scope the search",
                            "format":"uuid"
                        }
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of results to return",
                        "format":"int32",
                        "example":25
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination",
                        "format":"int32",
                        "example":0
                    },
                    "order":{
                        "type":"string",
                        "description":"Sort order for results",
                        "example":"asc"
                    },
                    "reviewStatus":{
                        "type":"string",
                        "description":"Review status filter applied to subjects. Values can be noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify, all, signedandverified, frozen ",
                        "example":"all"
                    },
                    "subjectStates":{
                        "type":"array",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                        "example":[
                            "Auto_Screen_Failed"
                        ],
                        "items":{
                            "type":"string",
                            "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                            "example":"[\"Auto_Screen_Failed\"]"
                        }
                    },
                    "exactSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for exact match in subject search which will be applied on subject number",
                        "example":[
                            "1001",
                            "SMITH"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for exact match in subject search which will be applied on subject number",
                            "example":"[\"1001\",\"SMITH\"]"
                        }
                    },
                    "containsSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for contains match in subject search which will be applied on subject number",
                        "example":[
                            "100",
                            "SMI"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for contains match in subject search which will be applied on subject number",
                            "example":"[\"100\",\"SMI\"]"
                        }
                    },
                    "nextVisitOnly":{
                        "type":"boolean",
                        "description":"When true, only the next scheduled visit is returned per subject",
                        "example":false
                    },
                    "notStarted":{
                        "type":"boolean",
                        "description":"When true, include only subjects that have not started",
                        "example":false
                    }
                },
                "description":"Request payload to retrieve visit schedules for subjects filtered by sites, pagination, ordering, review status and state filters"
            },
            "DispensationKit":{
                "title":"DispensationKit v13.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Dispensation Kit ID",
                        "type":"number",
                        "description":"Unique identifier of the dispensation kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "consumeAcrossDoses":{
                        "title":"Consume Across Doses",
                        "type":"boolean",
                        "description":"Indicates whether consumption across doses is allowed.",
                        "example":true
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "titrationKitLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"High dose"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1000"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "groupingNumber":{
                        "title":"Grouping Number",
                        "type":"integer",
                        "description":"Grouping number for a kit.",
                        "format":"int32",
                        "example":1
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"A-1"
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "locallySourced":{
                        "title":"Locally Sourced",
                        "type":"boolean",
                        "description":"Indicates whether the kit is locally sourced.",
                        "example":true
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"LOT20240605A"
                    },
                    "dosingInstruction":{
                        "title":"Dosing Instruction",
                        "type":"string",
                        "description":"Dosing instruction.",
                        "example":"Take one capsule daily"
                    }
                },
                "description":"Contains information for the kit dispensation."
            },
            "VisitResultV11":{
                "title":"VisitResult v11.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKit"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    },
                    "countOfKitTypesOnDoseHold":{
                        "title":"Count Of Kit Types On Dose Hold",
                        "type":"integer",
                        "description":"Number of kit types on dose hold.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit result."
            },
            "DoseHoldRequestV2":{
                "title":"Dose Hold Request",
                "type":"object",
                "properties":{
                    "isUnblindedPharmacist":{
                        "title":"Treatment Assignment Visibility",
                        "type":"boolean",
                        "description":"Indicates whether treatment assignment information may be visible to study personnel. It should not be visible to study personnel and must be accessible only to an unblinded pharmacist.",
                        "example":true
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"Spirometer"
                    },
                    "isTitration":{
                        "title":"Titration",
                        "type":"boolean",
                        "description":"Indicates whether the current medication is a titration.",
                        "example":true
                    }
                },
                "description":"Request containing dose hold settings."
            },
            "Parameter":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"uuid"
                    },
                    "value":{
                        "type":"string",
                        "description":"Value of the item",
                        "format":"uuid"
                    }
                },
                "description":"Contains details about parameters of the form"
            },
            "SubjectDto12":{
                "title":"DCS Subject",
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Subject properties indicating completion capability and the locked study version"
            },
            "VisitRequest":{
                "title":"Visit Request",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "reusableKits":{
                        "title":"Reusable Kits",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"IDs of kits that can be reused in the visit.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "notifyDispensationFailureOnly":{
                        "type":"string"
                    },
                    "notifyRandomizationFailureOnly":{
                        "type":"string"
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitTypesForDoseHold":{
                        "title":"Kit Types for Dose Hold",
                        "type":"array",
                        "description":"List of kit types configured for dose hold.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    },
                    "kitTypesForResumeDispensation":{
                        "title":"Kit Types for Resume Dispensation",
                        "type":"array",
                        "description":"List of kit types for which to resume dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    },
                    "resumePartialDispensation":{
                        "title":"Resume Partial Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether to resume partial dispensation in the visit.",
                        "example":false
                    },
                    "notify_dispensation_failure_only":{
                        "title":"Notify Dispensation Failure Only",
                        "type":"string",
                        "description":"Send notification only for dispensation failures.",
                        "example":"true"
                    },
                    "notify_randomization_failure_only":{
                        "title":"Notify Randomization Failure Only",
                        "type":"string",
                        "description":"Send notification only for randomization failures.",
                        "example":"true"
                    },
                    "isVisitWithinWindow":{
                        "title":"Visit Within Window",
                        "type":"boolean",
                        "description":"Indicates whether the visit occurs within the configured window.",
                        "example":true
                    },
                    "visits":{
                        "title":"Visits",
                        "type":"array",
                        "description":"Visit status details.",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto9"
                        }
                    },
                    "dcssubjects":{
                        "$ref":"#/components/schemas/SubjectDto12"
                    },
                    "blind_rand_number_enabled":{
                        "title":"Blind Rand Number Enabled",
                        "type":"string",
                        "description":"Check if rand number needs to be blinded",
                        "example":"true"
                    },
                    "forcedRandLimitReached":{
                        "title":"forcedRandLimitReached",
                        "type":"boolean",
                        "description":"Check if forced limit is reached",
                        "example":true
                    }
                },
                "description":"Request containing subject visit details."
            },
            "VisitsStatusDto9":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Visit status details including associated study version"
            },
            "MhealthSubjectDto":{
                "type":"object",
                "properties":{
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    }
                },
                "description":"DTO representing subject registration in mHealth context."
            },
            "SubjectDto4":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject details extended with mHealth subject identifier"
            },
            "RevertSubjectRequest":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"The reason for reverting or deleting the subject (max 255 chars)",
                        "example":"Duplicate entry detected"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments or context for the operation (max 2048 chars)",
                        "example":"Subject was mistakenly created twice and needs removal"
                    }
                },
                "description":"Request payload to revert/delete a subject, providing justification and details for auditing"
            },
            "SubjectDto_3":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject details including object version number for optimistic locking"
            },
            "SubjectNumberRequestDto":{
                "required":[
                    "objectVersionNumber",
                    "reason",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":5
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0111"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for updating the subject number (max 255 chars)",
                        "example":"Subject number update required"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments for auditing",
                        "example":"Correction due to site transfer"
                    }
                },
                "description":"Request payload to update a subject number, specifying the new number with reason and comment."
            },
            "DcsResponseSubjectDto1":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectDto1"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectNumbersDto_V1":{
                "required":[
                    "newSubjectNumber",
                    "objectVersionNumber"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"3BF8356C6E4B49678D0609FF244DB4E3"
                    },
                    "newSubjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUB-10"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":5
                    }
                },
                "description":"Subject details for subject number changes."
            },
            "SubjectNumbersRequestDto":{
                "required":[
                    "reason",
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "$ref":"#/components/schemas/SubjectNumbersDto_V1"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Others",
                        "example":"Wrong data entered."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for change in subject number",
                        "example":"Wrong data entered."
                    }
                },
                "description":"Payload for bulk updating subject numbers in batch."
            },
            "SubjectDto8":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject details including any previous subject number reference"
            },
            "SubjectNumbersResponseV1":{
                "title":"SubjectNumbersResponse v1.0",
                "type":"object",
                "properties":{
                    "subjects":{
                        "$ref":"#/components/schemas/SubjectDto8"
                    }
                },
                "description":"Response payload for bulk subject number updates, listing updated subject details (including previous subject number if available)."
            },
            "DcsResponseSubjectNumbersResponseV1":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectNumbersResponseV1"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectRespDto15":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if the subject can be replaced",
                        "example":true
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if a withdrawn subject can be undone",
                        "example":true
                    },
                    "reScreenEventInstanceNum":{
                        "type":"integer",
                        "description":"Event instance number for the re-screen event if present",
                        "format":"int32",
                        "example":2
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number assigned to the subject",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-001"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason provided when the subject is withdrawn",
                        "example":"Not applicable"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"EHR link status code for the subject",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Date when the subject was withdrawn",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date when the subject completed the study",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Additional comment provided for withdrawal",
                        "example":"Subject breached protocols"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Additional comment for screen failure",
                        "example":"Subject breached protocols"
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Replacement randomization identifier if applicable",
                        "example":"Y"
                    },
                    "unResolvedQueries":{
                        "type":"integer",
                        "description":"Number of unresolved queries for the subject",
                        "format":"int32",
                        "example":2
                    },
                    "incompleteVisits":{
                        "type":"integer",
                        "description":"Number of incomplete visits for the subject",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Subject response details including re-screening event instance number and all inherited subject properties"
            },
            "DcsResponseListSubjectRespDto15":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectRespDto15"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectRespDto16":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if the subject can be replaced",
                        "example":true
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if a withdrawn subject can be undone",
                        "example":true
                    },
                    "reScreenEventInstanceNum":{
                        "type":"integer",
                        "description":"Event instance number for the re-screen event if present",
                        "format":"int32",
                        "example":2
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number assigned to the subject",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-001"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason provided when the subject is withdrawn",
                        "example":"Not applicable"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"EHR link status code for the subject",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Date when the subject was withdrawn",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date when the subject completed the study",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Additional comment provided for withdrawal",
                        "example":"Subject breached protocols"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Additional comment for screen failure",
                        "example":"Subject breached protocols"
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Replacement randomization identifier if applicable",
                        "example":"Y"
                    },
                    "unResolvedQueries":{
                        "type":"integer",
                        "description":"Number of unresolved queries for the subject",
                        "format":"int32",
                        "example":2
                    },
                    "incompleteVisits":{
                        "type":"integer",
                        "description":"Number of incomplete visits for the subject",
                        "format":"int32",
                        "example":1
                    },
                    "enrollmentDate":{
                        "type":"string",
                        "description":"Date the subject was enrolled",
                        "format":"date"
                    }
                },
                "description":"Subject response details including enrollment date and all inherited subject properties"
            },
            "DcsResponseListSubjectRespDto16":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectRespDto16"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectCountResponseDto":{
                "type":"object",
                "properties":{
                    "totalSubjects":{
                        "type":"integer",
                        "description":"Total number of subjects",
                        "format":"int32",
                        "example":200
                    },
                    "newSubjects":{
                        "type":"integer",
                        "description":"Number of newly added subjects",
                        "format":"int32",
                        "example":12
                    },
                    "activeSubjects":{
                        "type":"integer",
                        "description":"Number of currently active subjects",
                        "format":"int32",
                        "example":160
                    },
                    "withdrwanSubjects":{
                        "type":"integer",
                        "description":"Number of subjects withdrawn from the study",
                        "format":"int32",
                        "example":5
                    },
                    "enrolledSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who have been enrolled",
                        "format":"int32",
                        "example":89
                    },
                    "screendSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who have been screened",
                        "format":"int32",
                        "example":180
                    },
                    "screenFailedSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who failed screening",
                        "format":"int32",
                        "example":4
                    },
                    "completedSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who completed the study",
                        "format":"int32",
                        "example":23
                    }
                },
                "description":"Aggregate subject counts summary (total, active, withdrawn, enrolled, screened, failed, completed, new)"
            },
            "SubectNextVisitActionResultDto":{
                "type":"object",
                "properties":{
                    "nextVisitAction":{
                        "type":"integer",
                        "description":"Next Visit Action will happen. Its values can be SCREEN_ENABLE, SCREEN_DISABLE, RANDOMIZE_ENABLE, RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE",
                        "format":"int32"
                    }
                }
            },
            "DcsResponseSubectNextVisitActionResultDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubectNextVisitActionResultDto"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectScreeningNumberResponseDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":" unique identifier  (UUID, 32-character uppercase hexadecimal string) for a subject ",
                        "example":"9876543210ABCDEF1234567890ABCDEF"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SCR-00123"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":3
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Organization ID (UUID, 32-character uppercase hexadecimal string)  for subject number at site",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    }
                },
                "description":"Subject screening number and related site details"
            },
            "ResupplySubjectsListDto":{
                "type":"object",
                "properties":{
                    "siteResupplySubjectsList":{
                        "type":"array",
                        "description":"Collection of per-site resupply subject lists",
                        "items":{
                            "$ref":"#/components/schemas/SiteResupplySubjectsListDto"
                        }
                    }
                },
                "description":"Aggregated subjects per site for resupply evaluation based on visit windows and skip rules"
            },
            "SiteResupplySubjectsListDto":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "screenedSubjects":{
                        "type":"array",
                        "description":"Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are screened at the site",
                        "example":[
                            "A3F1C4B2D8E947F0A1B2C3D4E5F6A7B8",
                            "9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are screened at the site",
                            "format":"uuid"
                        }
                    },
                    "randomizedSubjects":{
                        "type":"array",
                        "description":"Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are randomized at the site",
                        "example":[
                            "3C1D5E7F9A0B2C4D6E8F0A1B2C3D4E5F",
                            "ABCDEF1234567890ABCDEF1234567890"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Subject Identifiers (UUID, 32-character uppercase hexadecimal string) that are randomized at the site",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Subjects per site categorized by screening and randomization status for resupply processing"
            },
            "VisitsStatusDto12":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Visit status details including lock status and lock timestamps"
            },
            "SubjectRespDto13":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number assigned to the subject",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-001"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason provided when the subject is withdrawn",
                        "example":"Not applicable"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"EHR link status code for the subject",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Date when the subject was withdrawn",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date when the subject completed the study",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Additional comment provided for withdrawal",
                        "example":"Subject breached protocols"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Additional comment for screen failure",
                        "example":"Subject breached protocols"
                    }
                },
                "description":"Subject details including screening, randomization, completion status and withdrawal information"
            },
            "SubjectRespDto14":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if the subject can be replaced",
                        "example":true
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if a withdrawn subject can be undone",
                        "example":true
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number assigned to the subject",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-001"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason provided when the subject is withdrawn",
                        "example":"Not applicable"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"EHR link status code for the subject",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Date when the subject was withdrawn",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date when the subject completed the study",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Additional comment provided for withdrawal",
                        "example":"Subject breached protocols"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Additional comment for screen failure",
                        "example":"Subject breached protocols"
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Replacement randomization identifier if applicable",
                        "example":"Y"
                    },
                    "unResolvedQueries":{
                        "type":"integer",
                        "description":"Number of unresolved queries for the subject",
                        "format":"int32",
                        "example":2
                    },
                    "incompleteVisits":{
                        "type":"integer",
                        "description":"Number of incomplete visits for the subject",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Subject response details including fields like replacement randomization, unresolved queries etc.."
            },
            "Subject1":{
                "required":[
                    "state",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Subject unique identifier  (UUID, 32-character uppercase hexadecimal string) .",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Description of the subject record.",
                        "example":"Screened subject record"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0199"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth of the subject.",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Screened"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the 'state' was updated.",
                        "format":"date-time",
                        "example":"2025-10-01T09:00:01Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for subject screen failure, if applicable.",
                        "example":"Lost to follow up"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure (if the subject is not enrolled).",
                        "example":"Consent Required"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Administrative override details for subject enrollment, if any.",
                        "example":"Subject enrollment overidden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Date the subject provided informed consent.",
                        "format":"date-time"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject gender: typically 'male', 'female', or 'other'.",
                        "example":"male"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "format":"uuid"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Originating study id for transferred subjects UUID, 32-character uppercase hexadecimal string.",
                        "format":"uuid"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Organization/site identifier for subject number context.",
                        "example":"AABBCC11223344556677"
                    },
                    "sdvSelectionStatus":{
                        "type":"string",
                        "description":"Source data verification selection status for the subject it can be NOT_SELECTED, INITIALCOUNT_SELECTED, POST_INITIALCOUNT_SELECTED.",
                        "example":"NOT_SELECTED"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Date the subject was withdrawn from the study.",
                        "format":"date-time",
                        "example":"2025-10-01T09:00:01Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date the subject completed the study.",
                        "format":"date-time",
                        "example":"2025-10-01T09:00:01Z"
                    },
                    "unblindDate":{
                        "type":"string",
                        "description":"Date/time the subject was unblinded.",
                        "format":"date-time",
                        "example":"2025-10-01T09:00:01Z"
                    },
                    "unblindReason":{
                        "type":"string",
                        "description":"Reason for subject being unblinded.",
                        "example":"Reason"
                    },
                    "unblindComment":{
                        "type":"string",
                        "description":"Further comment on unblinding.",
                        "example":"required comment"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason for withdrawal.",
                        "example":"reason for withdrawal"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Comment on withdrawal.",
                        "example":"comment for withdrawal"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Extended comment about screen failure.",
                        "example":"comment for screen failure"
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Indicates if subject's randomization was replaced (Y/N).",
                        "example":"Y"
                    },
                    "enrollmentDate":{
                        "type":"string",
                        "description":"Date the subject was enrolled.",
                        "format":"date-time",
                        "example":"2025-10-01T09:00:01Z"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject can be completed (UI-only transient flag).",
                        "example":true
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if the subject randomization can be replaced (UI-only transient flag).",
                        "example":false
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if the subject's withdrawal can be undone (UI-only transient flag).",
                        "example":true
                    },
                    "reScreenEventInstanceNum":{
                        "type":"number",
                        "description":"Number of times the subject was re-screened (transient, computed on the fly).",
                        "example":2
                    },
                    "totalAllowedRescreenLimit":{
                        "type":"string",
                        "description":"The maximum number of rescreens allowed for the subject (transient, calculated).",
                        "example":"3"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"The previous subject number, for audit/tracking purposes (if the subject number changed).",
                        "example":"SUBJ-0177"
                    },
                    "subjectSDVUpdated":{
                        "type":"boolean",
                        "description":"Indicates if the subject's Source Data Verification has been updated.",
                        "example":true
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"The randomization number assigned to the subject.",
                        "example":"RAND-00235"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"The date the subject failed screening, if applicable.",
                        "format":"date-time"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"The timestamp or user who last signed the subject data, if transiently tracked.",
                        "example":"2025-10-15T08:00:00.000Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Current locked status of the subject record from UI perspective.Values can be LOCKED, NEVER_LOCAKED, UNLOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates if any data is locked for this subject (boolean, transient).",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"When this subject was locked, if at all (ISO date-time string).",
                        "format":"date-time",
                        "example":"2025-10-18T11:05:00Z"
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"The study version string when the subject was locked.",
                        "example":"1.0.0.0"
                    }
                },
                "description":"Comprehensive subject details including identity, site, study, demographic and state details, with example showing all fields."
            },
            "SubjectScreenCandidateResponseDto":{
                "required":[
                    "dataElements",
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/Subject1"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitsStatus"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"All data elements extracted from the screen form for the subject.",
                        "items":{
                            "$ref":"#/components/schemas/DataElement"
                        }
                    }
                },
                "description":"Screen subject candidate response object: details of the subject, visit status, and data elements captured."
            },
            "VisitsStatus":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier  (UUID, 32-character uppercase hexadecimal string)  for visit status.",
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AABBCCDDEEFF00112233445566778899"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D1AABBCCDDEEFF112233445566778899"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"BEEFAABBCCDDEEDDFF00112233445566"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.1.0.2"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETED"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Date/time the visit was started.",
                        "format":"date-time",
                        "example":"2025-10-02T08:45:00Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedStudyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Associated study version, if visit is linked to another protocol version.",
                        "example":"3.1.0.2"
                    },
                    "display":{
                        "type":"string",
                        "description":"Display indicator flag (Y/N), whether this visit should display in UIs.",
                        "example":"Y"
                    },
                    "leadingDataelementId":{
                        "type":"string",
                        "description":"Unique Identfier ( (UUID, 32-character uppercase hexadecimal string) of the leading data element for this visit, if any.",
                        "example":"EEDD00112233445566778899AABBCCDD"
                    },
                    "dynamicAllCycles":{
                        "type":"string",
                        "description":"Indicates if visit is part of dynamic all cycles (Y/N).",
                        "example":"N"
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Window warning details or messages for visit timing.",
                        "example":"Visit outside of permitted window."
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date (dynamic calculation for visit scheduling).",
                        "format":"date-time",
                        "example":"2025-09-30T00:00:00Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit (dynamic calculation).",
                        "format":"date-time",
                        "example":"2025-10-05T23:59:59Z"
                    },
                    "scheduledDate":{
                        "type":"string",
                        "description":"holds visit schedule date which is calculated from an anchor visit start date.",
                        "format":"date-time",
                        "example":"2025-10-02T09:00:00Z"
                    },
                    "scheduledStartDate":{
                        "type":"string",
                        "description":"holds visit schedule start date which is calculated from the visit scheduledDate.",
                        "format":"date-time",
                        "example":"2025-10-02T00:00:00Z"
                    },
                    "scheduledEndDate":{
                        "type":"string",
                        "description":"holds visit schedule end date which is calculated from the visit scheduledDate.",
                        "format":"date-time",
                        "example":"2025-10-03T23:59:59Z"
                    },
                    "scheduledFromEventGUID":{
                        "type":"string",
                        "description":"Event ID  (UUID, 32-character uppercase hexadecimal string) from which the schedule for this visit was derived.",
                        "example":"EEDD00112233445566778899AABBCCDD"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Count of repeating forms related to visit.",
                        "example":0
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status specifically for the visit start date.Values can be LOCKED, UNLOCKED, NEVER_LOCKED, NOT_APPLICABLE",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Date/time when the visit was locked (if applicable).",
                        "format":"date-time",
                        "example":"2025-10-02T12:00:00Z"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Datetime when visit start date was locked.",
                        "format":"date-time",
                        "example":"2025-10-02T12:00:00Z"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"Freezed"
                    },
                    "doseHoldAction":{
                        "type":"string",
                        "description":"Holds any dose hold action taken on this visit.",
                        "example":"ENABLE"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"ENABLE"
                    },
                    "designStudyVersion":{
                        "type":"string",
                        "description":"Design version for the study when visit was enerated.",
                        "example":"3.1.0.2"
                    },
                    "visitStartDateFreezeStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "visitStartDateVerifyStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFY"
                    },
                    "visitStartDateSignStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    }
                },
                "description":"Details of the visit for screening."
            },
            "ExecuteRuleTO":{
                "title":"Rule Execution Result",
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Execution status for the rule.",
                        "example":"Success"
                    },
                    "message":{
                        "type":"string",
                        "description":"Detailed message describing the outcome or error.",
                        "example":"Rule executed successfully."
                    }
                },
                "description":"Represents the outcome of executing a single rule."
            },
            "RuleMemoryRespTO":{
                "type":"object",
                "properties":{
                    "ruleResults":{
                        "type":"array",
                        "description":"Outcomes for each executed rule.",
                        "items":{
                            "$ref":"#/components/schemas/ExecuteRuleTO"
                        }
                    },
                    "ruleTargets":{
                        "type":"array",
                        "description":"Targets affected by rule execution with optional value or validation changes.",
                        "items":{
                            "$ref":"#/components/schemas/RuleMemoryRespTargetTO"
                        }
                    }
                },
                "description":"Rule target updated during in-memory execution."
            },
            "RuleMemoryRespTargetTO":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Event identifier for the target.",
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form identifier for the target.",
                        "example":"F6DDCE2792924AF8AF633E1CED022FD9"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item identifier for the target.",
                        "example":"DA1B647C20834350BC2086E1AB8FDFFE"
                    },
                    "itemValue":{
                        "type":"string",
                        "description":"Updated item value when applicable.",
                        "example":"target is updated with value"
                    },
                    "itemValidation":{
                        "type":"boolean",
                        "description":"Validation status resulting from the rule evaluation.",
                        "example":true
                    },
                    "validationComment":{
                        "type":"string",
                        "description":"Optional validation comment containing failure details.",
                        "example":"validation issue"
                    },
                    "ruleName":{
                        "type":"string",
                        "description":"Rule name.",
                        "example":"ruleName"
                    }
                },
                "description":"Rule target updated during in-memory execution."
            },
            "CoreDataElementV7":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp from the data source when this element was generated.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "documentId":{
                        "type":"string",
                        "description":"Unique identifier of the associated source document (hex UUID, 32-character uppercase), enabling traceability between the data element and its original supporting document or file.",
                        "format":"uuid"
                    },
                    "documentVersion":{
                        "type":"number",
                        "description":"Version of the source or supporting document linked to this data element.",
                        "example":1
                    }
                },
                "description":"Core data element payload (v7).",
                "example":[
                ]
            },
            "SubjectScreenContext":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"78DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0123"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date for screening",
                        "format":"date-time",
                        "example":"2025-12-01T09:00:00Z"
                    }
                },
                "description":"Context for subject screening data, including site, event, subject, and visit date."
            },
            "SubjectScreenDataElementsRequestDto":{
                "required":[
                    "dataElements"
                ],
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"A1B23C45D67E89F123456789ABCDEF12"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements input by user in the form",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV7"
                        }
                    }
                },
                "description":"Screening subject form and its input data elements."
            },
            "SubjectScreenRequestDto":{
                "required":[
                    "context",
                    "forms"
                ],
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/SubjectScreenContext"
                    },
                    "forms":{
                        "required":[
                            "dataElements"
                        ],
                        "type":"object",
                        "properties":{
                            "formId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                                "example":"A1B23C45D67E89F123456789ABCDEF12"
                            },
                            "dataElements":{
                                "type":"array",
                                "description":"List of data elements input by user in the form",
                                "items":{
                                    "$ref":"#/components/schemas/CoreDataElementV7"
                                }
                            }
                        },
                        "description":"Screening subject form and its input data elements."
                    }
                },
                "description":"Subject screening request, containing enrollment context and submitted forms with data elements."
            },
            "SubjectScreenPreValidationResponseDto":{
                "type":"object",
                "properties":{
                    "sites":{
                        "type":"array",
                        "description":"Validation results for each requested site.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectScreenSiteValidationDto"
                        }
                    }
                },
                "description":"Response payload for screening pre-validation across requested sites."
            },
            "SubjectScreenSiteValidationDto":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Site ID validated.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "allowed":{
                        "type":"boolean",
                        "description":"Whether screening is allowed for this site.",
                        "example":false
                    },
                    "reason":{
                        "$ref":"#/components/schemas/SubjectScreenValidationReasonDto"
                    }
                },
                "description":"Per-site pre-validation result for screening eligibility."
            },
            "SubjectScreenValidationReasonDto":{
                "type":"object",
                "properties":{
                    "scope":{
                        "type":"string",
                        "description":"Validation scope that triggered the block.",
                        "example":"COUNTRY"
                    },
                    "code":{
                        "type":"string",
                        "description":"Machine-readable reason code.",
                        "example":"COUNTRY_SCREENING_LIMIT_REACHED"
                    },
                    "message":{
                        "type":"string",
                        "description":"UI-facing reason message for why screening is blocked.",
                        "example":"Enrollment is closed or the screening limit has been reached for this country."
                    }
                },
                "description":"Reason details when screening is blocked for a site."
            },
            "SubjectScreenPreValidationRequestDto":{
                "required":[
                    "siteIds"
                ],
                "type":"object",
                "properties":{
                    "siteIds":{
                        "type":"array",
                        "description":"List of site IDs for which screening eligibility needs to be validated.",
                        "items":{
                            "type":"string",
                            "description":"List of site IDs for which screening eligibility needs to be validated."
                        }
                    }
                },
                "description":"Request payload for pre-validating screening eligibility across one or more sites."
            },
            "DispensedVisit":{
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "VisitName":{
                        "type":"string",
                        "description":"Name of the dispensed visit",
                        "example":"Baseline"
                    }
                },
                "description":"Represents a dispensed visit instance linked to a subject in a clinical study"
            },
            "SubjectCountBySiteResponseDto":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Site unique identifier (UUID, 32-character uppercase hex)",
                        "example":"AABBCCDDEEFF1234567890ABCDEF1234"
                    },
                    "totalSubjects":{
                        "type":"integer",
                        "description":"Total number of subjects at this site",
                        "format":"int32",
                        "example":50
                    },
                    "newSubjects":{
                        "type":"integer",
                        "description":"Number of new subjects at this site",
                        "format":"int32",
                        "example":12
                    },
                    "activeSubjects":{
                        "type":"integer",
                        "description":"Number of active subjects at this site",
                        "format":"int32",
                        "example":40
                    },
                    "withdrwanSubjects":{
                        "type":"integer",
                        "description":"Number of withdrawn subjects at this site",
                        "format":"int32",
                        "example":1
                    },
                    "enrolledSubjects":{
                        "type":"integer",
                        "description":"Number of enrolled subjects at this site",
                        "format":"int32",
                        "example":30
                    },
                    "screendSubjects":{
                        "type":"integer",
                        "description":"Number of screened subjects at this site",
                        "format":"int32",
                        "example":48
                    },
                    "screenFailedSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who failed screening at this site",
                        "format":"int32",
                        "example":1
                    },
                    "completedSubjects":{
                        "type":"integer",
                        "description":"Number of completed subjects at this site",
                        "format":"int32",
                        "example":4
                    }
                },
                "description":"Subject count summary for a single site"
            },
            "SubjectCountResponseDto20":{
                "type":"object",
                "properties":{
                    "totalSubjects":{
                        "type":"integer",
                        "description":"Total number of subjects",
                        "format":"int32",
                        "example":200
                    },
                    "newSubjects":{
                        "type":"integer",
                        "description":"Number of newly added subjects",
                        "format":"int32",
                        "example":12
                    },
                    "activeSubjects":{
                        "type":"integer",
                        "description":"Number of currently active subjects",
                        "format":"int32",
                        "example":160
                    },
                    "withdrwanSubjects":{
                        "type":"integer",
                        "description":"Number of subjects withdrawn from the study",
                        "format":"int32",
                        "example":5
                    },
                    "enrolledSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who have been enrolled",
                        "format":"int32",
                        "example":89
                    },
                    "screendSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who have been screened",
                        "format":"int32",
                        "example":180
                    },
                    "screenFailedSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who failed screening",
                        "format":"int32",
                        "example":4
                    },
                    "completedSubjects":{
                        "type":"integer",
                        "description":"Number of subjects who completed the study",
                        "format":"int32",
                        "example":23
                    },
                    "siteSummary":{
                        "type":"object",
                        "properties":{
                            "siteId":{
                                "type":"string",
                                "description":"Site unique identifier (UUID, 32-character uppercase hex)",
                                "example":"AABBCCDDEEFF1234567890ABCDEF1234"
                            },
                            "totalSubjects":{
                                "type":"integer",
                                "description":"Total number of subjects at this site",
                                "format":"int32",
                                "example":50
                            },
                            "newSubjects":{
                                "type":"integer",
                                "description":"Number of new subjects at this site",
                                "format":"int32",
                                "example":12
                            },
                            "activeSubjects":{
                                "type":"integer",
                                "description":"Number of active subjects at this site",
                                "format":"int32",
                                "example":40
                            },
                            "withdrwanSubjects":{
                                "type":"integer",
                                "description":"Number of withdrawn subjects at this site",
                                "format":"int32",
                                "example":1
                            },
                            "enrolledSubjects":{
                                "type":"integer",
                                "description":"Number of enrolled subjects at this site",
                                "format":"int32",
                                "example":30
                            },
                            "screendSubjects":{
                                "type":"integer",
                                "description":"Number of screened subjects at this site",
                                "format":"int32",
                                "example":48
                            },
                            "screenFailedSubjects":{
                                "type":"integer",
                                "description":"Number of subjects who failed screening at this site",
                                "format":"int32",
                                "example":1
                            },
                            "completedSubjects":{
                                "type":"integer",
                                "description":"Number of completed subjects at this site",
                                "format":"int32",
                                "example":4
                            }
                        },
                        "description":"Subject count summary for a single site"
                    }
                },
                "description":"Subject count summary including total, active, withdrawn, enrolled, screen failed and per-site counts"
            },
            "SubjectNextVisitActionResultDto20":{
                "type":"object",
                "properties":{
                    "nextVisitAction":{
                        "type":"integer",
                        "description":"Next Visit Action will happen. Its values can be SCREEN_ENABLE, SCREEN_DISABLE, RANDOMIZE_ENABLE, RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE",
                        "format":"int32"
                    },
                    "enableRescreen":{
                        "type":"boolean",
                        "description":"boolean indicating if a new rescreen visit can be initiated for the subject",
                        "example":true
                    }
                }
            },
            "SubjectMigrationResponseDTO":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":9
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type name tracked for subject migration",
                        "example":"MIGRATED"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"UUID of subject transfer record (if subject was transferred)",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the subject was migrated or synchronized",
                        "format":"date-time",
                        "example":"2025-12-01T10:30:51Z"
                    }
                },
                "description":"Intermediate subject migration state, including subject audit/meta fields, event and version, and transfer information"
            },
            "DCSResponse":{
                "type":"object",
                "properties":{
                    "result":{
                        "type":"object"
                    },
                    "status":{
                        "type":"string"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectMigrationRequest":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectMigrationRequestDTO"
                    }
                },
                "description":"Details of subject data for migration request"
            },
            "SubjectMigrationRequestDTO":{
                "required":[
                    "state",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0301"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AABBCCDDEEFF1234567890ABCDEF1234"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed.",
                        "example":"Active"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the migration was triggered/sourced",
                        "format":"date-time",
                        "example":"2025-12-01T09:50:00Z"
                    }
                },
                "description":"Core subject data for migration request"
            },
            "SubjectScreenCandidateResponseDto20":{
                "required":[
                    "dataElements",
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/Subject1"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitsStatus"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"All data elements extracted from the screen form for the subject.",
                        "items":{
                            "$ref":"#/components/schemas/DataElement"
                        }
                    },
                    "ruleTargets":{
                        "type":"object",
                        "properties":{
                            "eventId":{
                                "type":"string",
                                "description":"Event identifier for the target.",
                                "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                            },
                            "formId":{
                                "type":"string",
                                "description":"Form identifier for the target.",
                                "example":"F6DDCE2792924AF8AF633E1CED022FD9"
                            },
                            "itemId":{
                                "type":"string",
                                "description":"Item identifier for the target.",
                                "example":"DA1B647C20834350BC2086E1AB8FDFFE"
                            },
                            "itemValue":{
                                "type":"string",
                                "description":"Updated item value when applicable.",
                                "example":"target is updated with value"
                            },
                            "itemValidation":{
                                "type":"boolean",
                                "description":"Validation status resulting from the rule evaluation.",
                                "example":true
                            },
                            "validationComment":{
                                "type":"string",
                                "description":"Optional validation comment containing failure details.",
                                "example":"validation issue"
                            },
                            "ruleName":{
                                "type":"string",
                                "description":"Rule name.",
                                "example":"ruleName"
                            }
                        },
                        "description":"Rule target updated during in-memory execution."
                    }
                },
                "description":"Subject screening candidate response for v2.0 including rule targets."
            },
            "SubjectScreenRequestDto20":{
                "required":[
                    "context",
                    "forms"
                ],
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/SubjectScreenContext"
                    },
                    "forms":{
                        "required":[
                            "dataElements"
                        ],
                        "type":"object",
                        "properties":{
                            "formId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                                "example":"A1B23C45D67E89F123456789ABCDEF12"
                            },
                            "dataElements":{
                                "type":"array",
                                "description":"List of data elements input by user in the form",
                                "items":{
                                    "$ref":"#/components/schemas/CoreDataElementV7"
                                }
                            }
                        },
                        "description":"Screening subject form and its input data elements."
                    }
                },
                "description":"Subject screening request for v2.0."
            },
            "SubjectRequest30":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto_3"
                    }
                }
            },
            "SubjectSetting":{
                "required":[
                    "attributeKey",
                    "attributeValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the subject setting.",
                        "example":"9C67E72C1F2A4BE997B5C0F7A3C91E45"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "attributeKey":{
                        "type":"string",
                        "description":"<b>Key of the subject setting attribute. Possible values:</b><br/><ul><li>sequential_across_study_or_site</li><li>limit_screened_subjects</li><li>withdraw_subject_codebreak</li><li>limit_randomize_subjects</li><li>user_enters_screening_visit_date</li><li>user_edits_screening_visit_date</li><li>user_enters_randomization_visit_date</li><li>user_edits_randomization_visit_date</li><li>user_enters_dispensation_visit_date</li><li>user_edits_dispensation_visit_date</li><li>user_enters_non_dispensation_visit_date</li><li>user_edits_non_dispensation_visit_date</li><li>user_enters_optional_visit_date</li><li>user_edits_optional_visit_date</li><li>user_enters_withdraw_visit_date</li><li>user_edits_withdraw_visit_date</li><li>randomization_visit_date_additional_setting</li><li>dispensation_visit_date_additional_setting</li><li>can_dispensation_visit_be_skipped</li><li>can_non_dispensation_visit_be_skipped</li><li>separate_siteid_and_subjectid_hyphen</li><li>limit_study_status</li><li>limit_site_scr</li><li>limit_site_rand</li><li>limit_site_alerts</li><li>limit_site_status</li><li>limit_country_scr</li><li>limit_country_rand</li><li>limit_country_alerts</li><li>limit_country_status</li><li>padding_for_subject_id</li><li>max_randomize_subject</li><li>subject_alerts</li><li>max_screened_subject</li><li>subject_addition_allowed</li><li>subject_number_selection_allowed</li><li>subject_number_format</li><li>retry_partial_sdv_selection</li><li>notify_unsched_visit_failure_only</li><li>notify_screening_failure_only</li><li>notify_optional_visit_failure_only</li><li>notify_nondisp_visit_failure_only</li><li>notify_randomization_failure_only</li><li>notify_dispensation_failure_only</li><li>notify_subjcomplete_visit_failure_only</li><li>show_visit_window</li><li>notify_first_screened_in_study</li><li>notify_first_screened_at_site</li><li>notify_first_randomized_in_study</li><li>notify_first_randomized_at_site</li><li>allow_withdrawal_before_enrollment</li><li>allow_display_signature_elements</li><li>replace_subject_number_rand_number</li><li>code_data_for_new_and_screen_failed_subjects</li><li>blind_rand_number_enabled</li><li>replace_randomisation_enabled</li><li>replace_randomisation_prefix</li><li>replace_randomisation_max_limit</li><li>allow_rescreening</li><li>number_of_rescreen_allowed</li><li>lock_screen_data_on_failure</li><li>user_enters_rescreening_visit_date</li><li>user_edits_rescreening_visit_date</li><li>notify_rescreening_failure_only</li><li>replace_subject_number_enabled</li><li>assign_subject_number</li><li>allow_screen_fail_before_screened</li><li>limit_country_AF_status</li><li>limit_country_AF_scr</li><li>limit_country_AF_alerts</li><li>limit_country_AF_name</li><li>limit_country_AF_rand</li><li>limit_country_DZ_alerts</li><li>limit_country_DZ_rand</li><li>limit_country_DZ_status</li><li>limit_country_DZ_name</li><li>limit_country_DZ_scr</li><li>minimum_subject_number</li><li>allow_withdrawal_for_screen_failed</li><li>allow_completion_for_screen_failed</li><li>enable_assign_subject_number</li><li>limit_study_forced_rand</li><li>limit_site_forced_rand</li><li>enable_assign_subject_number</li></ul>",
                        "example":"assign_subject_number"
                    },
                    "attributeValue":{
                        "type":"string",
                        "description":"String value assigned to this subject setting attribute.",
                        "example":"YES"
                    }
                },
                "description":"Entity representing a single subject setting. Contains business key, value, version, and audit info. Used in requests and responses."
            },
            "SubjectSettingRequest":{
                "type":"object",
                "properties":{
                    "subjectSettings":{
                        "type":"array",
                        "description":"List of subject setting objects, each including unique identifier, versioning, key, value, and audit details.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectSetting"
                        }
                    }
                },
                "description":"Request payload containing a list of subject settings to create or update."
            },
            "SubjectSettingDto":{
                "required":[
                    "attributeKey",
                    "attributeValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this operation or audit action.",
                        "example":"Initial setup"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comments or additional notes for this operation.",
                        "example":"Enabled based on protocol"
                    },
                    "objectVersionNumber":{
                        "type":"integer",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"int32",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the subject setting.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z"
                    },
                    "attributeKey":{
                        "type":"string",
                        "description":"<b>Key of the subject setting attribute. Possible values:</b><br/><ul><li>sequential_across_study_or_site</li><li>limit_screened_subjects</li><li>withdraw_subject_codebreak</li><li>limit_randomize_subjects</li><li>user_enters_screening_visit_date</li><li>user_edits_screening_visit_date</li><li>user_enters_randomization_visit_date</li><li>user_edits_randomization_visit_date</li><li>user_enters_dispensation_visit_date</li><li>user_edits_dispensation_visit_date</li><li>user_enters_non_dispensation_visit_date</li><li>user_edits_non_dispensation_visit_date</li><li>user_enters_optional_visit_date</li><li>user_edits_optional_visit_date</li><li>user_enters_withdraw_visit_date</li><li>user_edits_withdraw_visit_date</li><li>randomization_visit_date_additional_setting</li><li>dispensation_visit_date_additional_setting</li><li>can_dispensation_visit_be_skipped</li><li>can_non_dispensation_visit_be_skipped</li><li>separate_siteid_and_subjectid_hyphen</li><li>limit_study_status</li><li>limit_site_scr</li><li>limit_site_rand</li><li>limit_site_alerts</li><li>limit_site_status</li><li>limit_country_scr</li><li>limit_country_rand</li><li>limit_country_alerts</li><li>limit_country_status</li><li>padding_for_subject_id</li><li>max_randomize_subject</li><li>subject_alerts</li><li>max_screened_subject</li><li>subject_addition_allowed</li><li>subject_number_selection_allowed</li><li>subject_number_format</li><li>retry_partial_sdv_selection</li><li>notify_unsched_visit_failure_only</li><li>notify_screening_failure_only</li><li>notify_optional_visit_failure_only</li><li>notify_nondisp_visit_failure_only</li><li>notify_randomization_failure_only</li><li>notify_dispensation_failure_only</li><li>notify_subjcomplete_visit_failure_only</li><li>show_visit_window</li><li>notify_first_screened_in_study</li><li>notify_first_screened_at_site</li><li>notify_first_randomized_in_study</li><li>notify_first_randomized_at_site</li><li>allow_withdrawal_before_enrollment</li><li>allow_display_signature_elements</li><li>replace_subject_number_rand_number</li><li>code_data_for_new_and_screen_failed_subjects</li><li>blind_rand_number_enabled</li><li>replace_randomisation_enabled</li><li>replace_randomisation_prefix</li><li>replace_randomisation_max_limit</li><li>allow_rescreening</li><li>number_of_rescreen_allowed</li><li>lock_screen_data_on_failure</li><li>user_enters_rescreening_visit_date</li><li>user_edits_rescreening_visit_date</li><li>notify_rescreening_failure_only</li><li>replace_subject_number_enabled</li><li>assign_subject_number</li><li>allow_screen_fail_before_screened</li><li>limit_country_AF_status</li><li>limit_country_AF_scr</li><li>limit_country_AF_alerts</li><li>limit_country_AF_name</li><li>limit_country_AF_rand</li><li>limit_country_DZ_alerts</li><li>limit_country_DZ_rand</li><li>limit_country_DZ_status</li><li>limit_country_DZ_name</li><li>limit_country_DZ_scr</li><li>minimum_subject_number</li><li>allow_withdrawal_for_screen_failed</li><li>allow_completion_for_screen_failed</li><li>enable_assign_subject_number</li><li>limit_study_forced_rand</li><li>limit_site_forced_rand</li><li>enable_assign_subject_number</li></ul>",
                        "example":"assign_subject_number"
                    },
                    "attributeValue":{
                        "type":"string",
                        "description":"Value of the subject setting attribute.",
                        "example":"YES"
                    }
                },
                "description":"Subject setting data including start version, key/value, and auditing info."
            },
            "SubjectSettingRequest20":{
                "required":[
                    "SubjectSettingDto"
                ],
                "type":"object",
                "properties":{
                    "SubjectSettingDto":{
                        "$ref":"#/components/schemas/SubjectSettingDto"
                    }
                },
                "description":"Subject setting batch request for v2 API. Contains a list of subject settings."
            },
            "SubjectSettingDto1":{
                "required":[
                    "attributeKey",
                    "attributeValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Brief reason for the data change.",
                        "example":"Correction of previous entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments related to the operation.",
                        "example":"Updated per subject request."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the subject setting.",
                        "example":"A591839ABCC4431C8B9FF80219DA1D9A"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T08:00:00Z"
                    },
                    "attributeKey":{
                        "type":"string",
                        "description":"<b>Key of the subject setting attribute. Possible values:</b><br/><ul><li>sequential_across_study_or_site</li><li>limit_screened_subjects</li><li>withdraw_subject_codebreak</li><li>limit_randomize_subjects</li><li>user_enters_screening_visit_date</li><li>user_edits_screening_visit_date</li><li>user_enters_randomization_visit_date</li><li>user_edits_randomization_visit_date</li><li>user_enters_dispensation_visit_date</li><li>user_edits_dispensation_visit_date</li><li>user_enters_non_dispensation_visit_date</li><li>user_edits_non_dispensation_visit_date</li><li>user_enters_optional_visit_date</li><li>user_edits_optional_visit_date</li><li>user_enters_withdraw_visit_date</li><li>user_edits_withdraw_visit_date</li><li>randomization_visit_date_additional_setting</li><li>dispensation_visit_date_additional_setting</li><li>can_dispensation_visit_be_skipped</li><li>can_non_dispensation_visit_be_skipped</li><li>separate_siteid_and_subjectid_hyphen</li><li>limit_study_status</li><li>limit_site_scr</li><li>limit_site_rand</li><li>limit_site_alerts</li><li>limit_site_status</li><li>limit_country_scr</li><li>limit_country_rand</li><li>limit_country_alerts</li><li>limit_country_status</li><li>padding_for_subject_id</li><li>max_randomize_subject</li><li>subject_alerts</li><li>max_screened_subject</li><li>subject_addition_allowed</li><li>subject_number_selection_allowed</li><li>subject_number_format</li><li>retry_partial_sdv_selection</li><li>notify_unsched_visit_failure_only</li><li>notify_screening_failure_only</li><li>notify_optional_visit_failure_only</li><li>notify_nondisp_visit_failure_only</li><li>notify_randomization_failure_only</li><li>notify_dispensation_failure_only</li><li>notify_subjcomplete_visit_failure_only</li><li>show_visit_window</li><li>notify_first_screened_in_study</li><li>notify_first_screened_at_site</li><li>notify_first_randomized_in_study</li><li>notify_first_randomized_at_site</li><li>allow_withdrawal_before_enrollment</li><li>allow_display_signature_elements</li><li>replace_subject_number_rand_number</li><li>code_data_for_new_and_screen_failed_subjects</li><li>blind_rand_number_enabled</li><li>replace_randomisation_enabled</li><li>replace_randomisation_prefix</li><li>replace_randomisation_max_limit</li><li>allow_rescreening</li><li>number_of_rescreen_allowed</li><li>lock_screen_data_on_failure</li><li>user_enters_rescreening_visit_date</li><li>user_edits_rescreening_visit_date</li><li>notify_rescreening_failure_only</li><li>replace_subject_number_enabled</li><li>assign_subject_number</li><li>allow_screen_fail_before_screened</li><li>limit_country_AF_status</li><li>limit_country_AF_scr</li><li>limit_country_AF_alerts</li><li>limit_country_AF_name</li><li>limit_country_AF_rand</li><li>limit_country_DZ_alerts</li><li>limit_country_DZ_rand</li><li>limit_country_DZ_status</li><li>limit_country_DZ_name</li><li>limit_country_DZ_scr</li><li>minimum_subject_number</li><li>allow_withdrawal_for_screen_failed</li><li>allow_completion_for_screen_failed</li><li>enable_assign_subject_number</li><li>limit_study_forced_rand</li><li>limit_site_forced_rand</li><li>enable_assign_subject_number</li></ul>",
                        "example":"limit_screened_subjects"
                    },
                    "attributeValue":{
                        "type":"string",
                        "description":"Value for the subject-level setting key.",
                        "example":"true"
                    }
                },
                "description":"Subject setting version 1 DTO, extends audit fields with attribute key/value and version metadata."
            },
            "SubjectTransfer":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject involved in the transfer.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred from.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "toSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred to.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the entity creation or latest modification.",
                        "example":"Initial import."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment regarding the last change made to the entity.",
                        "example":"Imported via migration tool."
                    },
                    "operationType":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"REMOVED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject transfer record.",
                        "example":"A1B2C3D4E5F64789AABBCCDDEEFF1122"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp representing the start of the version for this record.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject number before transfer.",
                        "example":"SUBJ-0001"
                    },
                    "newSubjectNumber":{
                        "type":"string"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number associated with the subject, if assigned.",
                        "example":"RANDOM123"
                    }
                },
                "description":"Represents a subject transfer between sites, including identifiers and audit metadata.",
                "example":{
                    "id":"A1B2C3D4E5F64789AABBCCDDEEFF1122",
                    "versionStart":"2023-01-01T09:00:00Z",
                    "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                    "subjectNumber":"SUBJ-0001",
                    "newSubjectNumber":"SUBJ-0001-NEW",
                    "fromSiteId":"938D23FA6B7241CCA41BD627E5DB60DA",
                    "toSiteId":"699EF3745FC545589F186D2198F3C65E",
                    "randomizationNumber":"RANDOM123",
                    "reason":"Site change",
                    "comment":"Transferred due to site closure"
                }
            },
            "SubjectTransferDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject being transferred.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred from.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "toSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred to.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the subject transfer.",
                        "example":"Site change"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment or note about the subject transfer.",
                        "example":"Moved subject to new site"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject transfer record.",
                        "example":"A1B2C3D4E5F64789AABBCCDDEEFF1122"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp representing the start of the version for this subject transfer record.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "newSubjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"New subject number after transfer or renumbering.",
                        "example":"SUBJ-0001-NEW"
                    }
                },
                "description":"Represents a subject transfer between sites used for API request/response bodies."
            },
            "SubjectTransferRequestDto":{
                "type":"object",
                "properties":{
                    "subjectTransfer":{
                        "$ref":"#/components/schemas/SubjectTransferDto"
                    }
                },
                "description":"Subject transfer request payload. Contains the subjectTransfer object representing details of a transfer."
            },
            "VisitsStatusDto":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Base visit status information including identity, study metadata and status fields"
            },
            "VisitsStatusDto4":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit status including the specific event instance number within a repeating schedule"
            },
            "MultipleVisitsStatusRequestDto":{
                "type":"object",
                "properties":{
                    "visitDetails":{
                        "type":"array",
                        "description":"List of visit details containing subject and event identifiers.",
                        "example":[
                            {
                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "eventId":"53915DD9B758466AB2226CBCC4466B7E"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/VisitDetails"
                        }
                    }
                },
                "description":"Request payload containing a list of visit details for which visit statuses are requested."
            },
            "VisitDetails":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                },
                "description":"Subject and event identifier pair used to query visit status",
                "example":[
                    {
                        "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                        "eventId":"53915DD9B758466AB2226CBCC4466B7E"
                    }
                ]
            },
            "SubjectVisitsReq":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject identifiers in UUID, 32-character uppercase hexadecimal string",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "2ABC8A2C11045A584ADEA8760F72B114"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject identifiers in UUID, 32-character uppercase hexadecimal string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request payload containing a list of subject identifiers."
            },
            "VisitDynamicAssoFormsResponse":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "isVisible":{
                        "type":"boolean",
                        "description":"Flag indicating if the form should be visible on the visit for the subject",
                        "example":true
                    },
                    "formType":{
                        "type":"integer",
                        "description":"Form type indicator where 0 represents ASSOCIATED_FORM and 1 represents DYNAMIC_FORM",
                        "format":"int32",
                        "example":0
                    }
                },
                "description":"Response object describing dynamic or associated form visibility for a given visit."
            },
            "SubjectAECountDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    }
                },
                "description":"Adverse event count details per subject and event in a given study version."
            },
            "VisitDataMigrationDtoV1":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"8F2B7E6C5D4A3B2C1D0E9F8A7B6C5D4E"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"All data verified"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source timestamp when the record was generated in the source system",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Date of visit",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"Visit data migration payload/response containing identity, versioning, visit status and timing fields."
            },
            "VisitDataMigrationRequest":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"8F2B7E6C5D4A3B2C1D0E9F8A7B6C5D4E"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date-time in ISO 8601 UTC",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp in ISO 8601 UTC",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"Request payload to migrate visit data for a subject and event. Contains identifiers and timestamps."
            },
            "SubjectVisitInfo":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-001"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number captured for the subject",
                        "example":"SCR-0001"
                    },
                    "visits":{
                        "type":"array",
                        "description":"List of visit details for the subject",
                        "example":[
                            {
                                "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                "eventInstanceNum":1,
                                "visitStartDate":"2023-01-01T09:00:00Z"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/VisitInfoDetail"
                        }
                    }
                },
                "description":"Subject level visit information including subject identifiers and visit details."
            },
            "SubjectVisitInfoResponse":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitInfo"
                        }
                    }
                }
            },
            "VisitInfoDetail":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Date of visit",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"Visit detail containing event identifier, optional instance number, and optional start date.",
                "example":[
                    {
                        "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                        "eventInstanceNum":1,
                        "visitStartDate":"2023-01-01T09:00:00Z"
                    }
                ]
            },
            "DcsResponseSubjectVisitInfoResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitInfoResponse"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitInfoRequest":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subjects with requested visit details.",
                        "example":[
                            {
                                "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                                "visits":[
                                    {
                                        "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                        "eventInstanceNum":1
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsInfoReq"
                        }
                    }
                },
                "description":"Request payload to retrieve subject visit information with specific events and instances."
            },
            "SubjectVisitsInfoReq":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Subject identifier in uppercase hex UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Requested visit detail filters for this subject",
                        "example":[
                            {
                                "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                "eventInstanceNum":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/VisitInfoDetailReq"
                        }
                    }
                },
                "description":"Subject with optional visit filters for retrieving visit information.",
                "example":[
                    {
                        "subjectId":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
                        "visits":[
                            {
                                "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                                "eventInstanceNum":1
                            }
                        ]
                    }
                ]
            },
            "VisitInfoDetailReq":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"53915DD9B758466AB2226CBCC4466B7E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Requested visit detail including event identifier and optional instance number.",
                "example":[
                    {
                        "eventId":"53915DD9B758466AB2226CBCC4466B7E",
                        "eventInstanceNum":1
                    }
                ]
            },
            "CodedDerrivedItemsRequest":{
                "required":[
                    "source_value"
                ],
                "type":"object",
                "properties":{
                    "source_propertyId":{
                        "type":"string",
                        "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                        "example":"A3B9C7D6E8F041BBA1C7B3C8E182D43A"
                    },
                    "source_value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"The original/raw value from the source.",
                        "example":"ALT"
                    },
                    "codeValuesList":{
                        "required":[
                            "code_value"
                        ],
                        "type":"object",
                        "properties":{
                            "coding_info_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding info used to derive the code.",
                                "example":"3A1A5E8B0F894A9CA9F324D04B162F23"
                            },
                            "item_id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                                "example":"5B3B7E0ED4F24E30B5A3A44C5A896C90"
                            },
                            "target_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding result target.",
                                "example":"F843B5478028498882E3AF11FEBA3F2A"
                            },
                            "code_value":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"The actual code value derived from the coding process.",
                                "example":"R79.0"
                            }
                        },
                        "description":"Represents a coded value applied to a source value. Includes coding information, item and target identifiers and the coded result."
                    }
                },
                "description":"Request object for inserting or updating coded values for a source, with a list of codes applied."
            },
            "CodedDataDTO":{
                "title":"CodedDataDTO",
                "required":[
                    "Id",
                    "eventName",
                    "eventRefName",
                    "formId",
                    "formName",
                    "formRefName",
                    "itemId",
                    "itemName",
                    "itemRefName",
                    "siteId",
                    "siteMnemonic",
                    "siteName",
                    "studyVersion",
                    "subjectId",
                    "subjectInitials",
                    "subjectNumber",
                    "value",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectInitials":{
                        "type":"string",
                        "description":"Subject initials as captured in study.",
                        "example":"JD"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Name of the clinical site.",
                        "example":"Main Site"
                    },
                    "siteMnemonic":{
                        "type":"string",
                        "description":"Mnemonic code of the site.",
                        "example":"SITE001"
                    },
                    "formRefName":{
                        "type":"string",
                        "description":"Reference name of the form as defined in the study design.",
                        "example":"AE_FORM"
                    },
                    "formName":{
                        "type":"string",
                        "description":"Display name of the form.",
                        "example":"Adverse Events"
                    },
                    "itemRefName":{
                        "type":"string",
                        "description":"Reference name of the data item as defined in the study design.",
                        "example":"AE_TERM"
                    },
                    "itemName":{
                        "type":"string",
                        "description":"Display name of the data item.",
                        "example":"Adverse Event Term"
                    },
                    "eventRefName":{
                        "type":"string",
                        "description":"Reference name of the study event as defined in the study design.",
                        "example":"VISIT_1"
                    },
                    "eventName":{
                        "type":"string",
                        "description":"Display name of the study event.",
                        "example":"Visit 1"
                    },
                    "Id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the coded data record.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"D4E5F6A1B2C347839ABCDEF012345678"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "value":{
                        "type":"string",
                        "description":"Verbatim or coded value captured for the item.",
                        "example":"Headache"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Subject number assigned within the study.",
                        "example":"SUBJ-0001"
                    },
                    "context":{
                        "type":"string",
                        "description":"Additional context information for the coded value.",
                        "example":"{}"
                    },
                    "verstionStart":{
                        "type":"string",
                        "description":"Record version start timestamp.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "dataElementId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the underlying data element.",
                        "example":"318148C517104168B7F7AA90EA888DDA"
                    }
                },
                "description":"Represents coded data details for a verbatim term including identifiers for study, subject, visit, form, item and associated metadata."
            },
            "CodeDataRequest":{
                "type":"object",
                "properties":{
                    "sourceIds":{
                        "type":"array",
                        "description":"A list of upper-case hexadecimal UUID strings identifying source objects for coding.",
                        "example":[
                            "123E4567E89B12D3A456426655440000",
                            "123E4567E89B12D3A45642665544AAAA"
                        ],
                        "items":{
                            "type":"string",
                            "description":"A list of upper-case hexadecimal UUID strings identifying source objects for coding.",
                            "example":"[\"123E4567E89B12D3A456426655440000\",\"123E4567E89B12D3A45642665544AAAA\"]"
                        }
                    }
                },
                "description":"Request object for retrieving coded data using a set of source IDs."
            },
            "CodedDerrivedItemsResponse":{
                "type":"object",
                "properties":{
                    "source_propertyId":{
                        "type":"string",
                        "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                        "example":"A3B9C7D6E8F041BBA1C7B3C8E182D43A"
                    },
                    "source_value":{
                        "type":"string",
                        "description":"The original/raw value from the source.",
                        "example":"ALT"
                    },
                    "codeValuesList":{
                        "type":"object",
                        "properties":{
                            "coding_info_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding info used to derive the code.",
                                "example":"3A1A5E8B0F894A9CA9F324D04B162F23"
                            },
                            "dataElement":{
                                "$ref":"#/components/schemas/DataElementDto"
                            },
                            "source_propertyId":{
                                "type":"string",
                                "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                                "format":"UUID",
                                "example":"C2D20B70E856463EBC6C830C693D1B40"
                            },
                            "source_value":{
                                "type":"string",
                                "description":"Original value from the source that is being coded.",
                                "example":"ALT"
                            }
                        },
                        "description":"Represents a coded item in a data element response, including identifiers, source value, and a referenced DataElement object."
                    }
                },
                "description":"Response object containing coded items for a given source, including property, value, and applied codes."
            },
            "DataElementCodedItemsDto":{
                "type":"object",
                "properties":{
                    "coding_info_id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding info used to derive the code.",
                        "example":"3A1A5E8B0F894A9CA9F324D04B162F23"
                    },
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto"
                    },
                    "source_propertyId":{
                        "type":"string",
                        "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                        "format":"UUID",
                        "example":"C2D20B70E856463EBC6C830C693D1B40"
                    },
                    "source_value":{
                        "type":"string",
                        "description":"Original value from the source that is being coded.",
                        "example":"ALT"
                    }
                },
                "description":"Represents a coded item in a data element response, including identifiers, source value, and a referenced DataElement object."
            },
            "EHRCategoryDTO":{
                "type":"object",
                "properties":{
                    "recordedDate":{
                        "type":"string",
                        "description":"The date/time clinical data was recorded for this EHR category record.",
                        "format":"date-time",
                        "example":"2023-10-01T08:15:00Z"
                    },
                    "recordedData":{
                        "$ref":"#/components/schemas/EHRRecordedDataDTO"
                    }
                },
                "description":"Represents a single record within an OCC EHR category, corresponding to measured or recorded clinical data at a point in time. Includes a list of the individual data points."
            },
            "EHRDataAttributesDTO":{
                "type":"object",
                "properties":{
                    "parentName":{
                        "type":"string",
                        "description":"Parent name or grouping for this clinical property or attribute.",
                        "example":"Lab Panel"
                    },
                    "name":{
                        "type":"string",
                        "description":"Canonical name of the measured property or attribute.",
                        "example":"Hemoglobin"
                    },
                    "values":{
                        "type":"array",
                        "description":"Recorded values for this property.",
                        "example":[
                            "13.7"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Recorded values for this property.",
                            "example":"[\"13.7\"]"
                        }
                    },
                    "units":{
                        "type":"string",
                        "description":"Units for the measured property value.",
                        "example":"g/dL"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"C091C9D975C44E87B8D417C3AC867A43"
                    },
                    "occCodes":{
                        "type":"array",
                        "description":"OCC codes referencing controlled vocabulary/clinical mapping.",
                        "example":[
                            "2.16.840.1.113883.5.50"
                        ],
                        "items":{
                            "type":"string",
                            "description":"OCC codes referencing controlled vocabulary/clinical mapping.",
                            "example":"[\"2.16.840.1.113883.5.50\"]"
                        }
                    },
                    "sourceUnit":{
                        "type":"string",
                        "description":"Original source unit for the measurement.",
                        "example":"g/dL"
                    },
                    "sourceValue":{
                        "type":"string",
                        "description":"Original source value for the measurement.",
                        "example":"13.7"
                    }
                },
                "description":"Detailed attribute or measured value associated with an OCC EHR clinical record. Includes property name, value, units, codes and HDI identifier."
            },
            "EHRRecordedDataDTO":{
                "type":"object",
                "properties":{
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"D2E9219A568740A78CC570066F56C2D6"
                    },
                    "attributes":{
                        "$ref":"#/components/schemas/EHRDataAttributesDTO"
                    }
                },
                "description":"Stores the individual recorded EHR data values for a given measurement, with HDI identifier and clinical data attributes."
            },
            "OCCCategoryDataDto":{
                "type":"object",
                "properties":{
                    "category":{
                        "type":"string",
                        "description":"The OCC EHR category type can be of LABS, MEDICAL, MEDICATIONHISTORY, VITALS, DEMOGRAPHICS, PROCEDURES.",
                        "example":"LABS"
                    },
                    "categoryData":{
                        "$ref":"#/components/schemas/EHRCategoryDTO"
                    }
                },
                "description":"Represents a category of EHR data associated with a subject for a specific visit event in OCC. Contains the name of the EHR category and the list of category data records retrieved for the subject."
            },
            "PaginatedResponseOCCCategoryDataDto":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean"
                    },
                    "totalResults":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "count":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "limit":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "offset":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "resultData":{
                        "$ref":"#/components/schemas/OCCCategoryDataDto"
                    }
                }
            },
            "EHRtoEDCAddressDTO":{
                "type":"object",
                "properties":{
                    "city":{
                        "type":"string",
                        "description":"Name of the city for patient residence.",
                        "example":"Los Angeles"
                    },
                    "state":{
                        "type":"string",
                        "description":"Two-letter state code.",
                        "example":"CA"
                    }
                },
                "description":"Simple postal address details for an EHR patient."
            },
            "EHRtoEDCPatientInfoDTO":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Uppercase HEX patient unique identifier.",
                        "example":"C0A8010AC8ED432F8A2AD12B28F95C84"
                    },
                    "mrn":{
                        "type":"string",
                        "description":"Medical record number for patient.",
                        "example":"MRN13456"
                    },
                    "name":{
                        "type":"string",
                        "description":"Patient's full name.",
                        "example":"Jane Doe"
                    },
                    "gender":{
                        "type":"string",
                        "description":"Gender/sex of the patient (e.g. 'MALE', 'FEMALE').",
                        "example":"FEMALE"
                    },
                    "dateOfBirth":{
                        "type":"string",
                        "description":"Date of birth in ISO format YYYY-MM-DD.",
                        "format":"date",
                        "example":"1979-03-22"
                    },
                    "address":{
                        "$ref":"#/components/schemas/EHRtoEDCAddressDTO"
                    }
                },
                "description":"DTO representing detailed EHR patient demographics for MRN-based lookup."
            },
            "EHRtoEDCPatientLinkStatusRequestDTO":{
                "type":"object",
                "properties":{
                    "siteIds":{
                        "type":"array",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":[
                            "AA12BB34CC56DD78EE90FF98DD11CC22",
                            "11223344AABBCC55DD66EE77FF88GG99"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request DTO for querying the EHR-to-EDC patient link status for a set of site IDs."
            },
            "EHRtoEDCPatientLinkStatusCollectionDTO":{
                "type":"object",
                "properties":{
                    "subjectLinks":{
                        "type":"object",
                        "properties":{
                            "siteId":{
                                "type":"string",
                                "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"AB12CD34EF56A7890B12C34D56EF7890"
                            },
                            "subjectLinkStatus":{
                                "type":"string",
                                "description":"The EHR/EDC patient link status it values can LINKED/UNLINKED).",
                                "example":"LINKED"
                            }
                        },
                        "description":"Result DTO detailing link status for a site in an EHR-to-EDC patient link status response."
                    }
                },
                "description":"Response wrapper containing an array of patient link statuses for one or more sites."
            },
            "EHRtoEDCPatientLinkStatusDTO":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AB12CD34EF56A7890B12C34D56EF7890"
                    },
                    "subjectLinkStatus":{
                        "type":"string",
                        "description":"The EHR/EDC patient link status it values can LINKED/UNLINKED).",
                        "example":"LINKED"
                    }
                },
                "description":"Result DTO detailing link status for a site in an EHR-to-EDC patient link status response."
            },
            "ContextEhr":{
                "required":[
                    "studyName",
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.0"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"65DFE0E1F48C4097A0F6B1F7A1F9F8C8"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AEBC7137B253422D8A23C8C12B8DF125"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2E4567890ABCDEF1234567890ABCDEF0"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"The user-friendly name of the study.",
                        "example":"Clinical Study ABC"
                    },
                    "validateOCCData":{
                        "type":"boolean",
                        "description":"Pass true if submitted data should be OCC validated, otherwise false.",
                        "example":false
                    }
                },
                "description":"Submission context for an EHR data operation, identifying the study, subject, event, and site details."
            },
            "CoreDataEHRFormElementRequestDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"85B29A9062BD4C8B9584E0907A37A84A"
                    },
                    "dataElements":{
                        "$ref":"#/components/schemas/CoreDataElementEhr"
                    }
                },
                "description":"Represents a form definition and set of core data elements to be submitted as part of an EHR save operation."
            },
            "CoreDataElementEhr":{
                "type":"object",
                "properties":{
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "recordedDate":{
                        "type":"string",
                        "description":"Calendar date/time the data was originally recorded.",
                        "format":"date-time",
                        "example":"2023-01-01T07:00:00Z"
                    },
                    "occCodes":{
                        "type":"array",
                        "description":"List of OCC codes associated with this data element instance.",
                        "example":[
                            "2.16.840.1.113883.5.50"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of OCC codes associated with this data element instance.",
                            "example":"[\"2.16.840.1.113883.5.50\"]"
                        }
                    },
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "sourceValue":{
                        "type":"string",
                        "description":"Source value for this element as provided in upstream system.",
                        "format":"date-time",
                        "example":"2024-08-26T14:57:36.039373-07:00"
                    },
                    "sourceUnit":{
                        "type":"string",
                        "description":"Source units for this value.",
                        "example":"258677007"
                    }
                },
                "description":"Represents a single EHR data element instance submitted as part of a form with supporting metadata and identifiers."
            },
            "DataElementsEhrRequestDto":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/ContextEhr"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/CoreDataEHRFormElementRequestDto"
                    }
                },
                "description":"Request payload for saving EHR data elements for a subject in a study visit event, including context and a list of EHR form data submissions."
            },
            "DataElementDto15":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source timestamp for this data element version.",
                        "format":"date-time",
                        "example":"2024-03-15T10:22:11Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"D2E9219A568740A78CC570066F56C2D6"
                    },
                    "operation":{
                        "type":"string",
                        "description":"Indicates the type of operation performed on a data element like update, clear, insert",
                        "example":"insert"
                    }
                },
                "description":"Represents a single data element involved in an EHR form association request/response, with identifying and status fields."
            },
            "DataElementDto130":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Data element details including source timestamp from source system."
            },
            "DataElementsFormAssociationsDto31":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements returned for the visit",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto11"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form association mappings for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    }
                },
                "description":"Container holding visit data elements and their form associations"
            },
            "DcsResponseDataElementsFormAssociationsDto31":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto31"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementFormAssociationsReq21":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormAssociationsDataElmntsReqDto21"
                        }
                    },
                    "context":{
                        "$ref":"#/components/schemas/Context2"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements to process for the given context.",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    }
                }
            },
            "FormAssociationsDataElmntsReqDto21":{
                "type":"object",
                "properties":{
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.9"
                    },
                    "srcFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A0B1C2D3E4F5678901234567890ABCDE"
                    },
                    "associatedFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1C2D3E4F5678901234567890ABCDE0A"
                    },
                    "associatedRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    }
                },
                "description":"Extended form associations request with section and repeat form details"
            },
            "DataElementDto14":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock state of the data element. Values LOCKED, UNLOCKED, NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                },
                "description":"DataElement details."
            },
            "DataElementRequestDto14":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto14"
                    }
                },
                "description":"Request wrapper containing DataElementDto14 payload."
            },
            "DcsResponseListSubjectRespDto13":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectRespDto13"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "ScheduledVisitsDto20":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "title":{
                        "type":"string",
                        "description":"Display title for the visit",
                        "example":"Baseline"
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Window start date for scheduling the visit",
                        "format":"date-time",
                        "example":"2025-10-10T14:30:31.892Z"
                    },
                    "scheduledDate":{
                        "type":"string",
                        "description":"Scheduled date for the visit",
                        "format":"date-time",
                        "example":"2025-10-12T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Window end date for scheduling the visit",
                        "format":"date-time",
                        "example":"2025-10-20T14:30:31.892Z"
                    },
                    "eventInstanceNum":{
                        "type":"number",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"Cycle count for the visit",
                        "format":"int32",
                        "example":1
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    }
                },
                "description":"Scheduled visit details including scheduling windows and action to be taken"
            },
            "SubjectsVisitScheduleDto100":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectRespDto14"
                    },
                    "visits":{
                        "required":[
                            "studyVersion"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start timestamp of the version record",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "subjectId":{
                                "type":"string",
                                "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "siteId":{
                                "type":"string",
                                "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "studyVersion":{
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"String representing the version of the study. Helps track changes in form or study design.",
                                "example":"3.0.0.1"
                            },
                            "visitStatus":{
                                "type":"string",
                                "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                                "example":"COMPLETE"
                            },
                            "reason":{
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason associated with the visit status",
                                "example":"Subject completed the visit successfully"
                            },
                            "comment":{
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment for the visit status",
                                "example":"All data verified"
                            },
                            "visitStartDate":{
                                "type":"string",
                                "description":"Visit start date timestamp",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitType":{
                                "type":"string",
                                "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                                "example":"SCREENING"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                                "example":"Visit_Not_Started"
                            },
                            "eventInstanceNum":{
                                "type":"integer",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "signedStatus":{
                                "type":"string",
                                "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                                "example":"SIGNED"
                            },
                            "verifiedStatus":{
                                "type":"string",
                                "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                                "example":"VERIFIED"
                            },
                            "freezedStatus":{
                                "type":"string",
                                "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                                "example":"FROZEN"
                            },
                            "repeatingFormCount":{
                                "type":"number",
                                "description":"Number of repeating form instances for the visit.",
                                "example":2
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Scheduled window start date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Scheduled window end date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "associatedStudyVersion":{
                                "type":"string",
                                "description":"Study version with which the visit status is associated",
                                "example":"3.0.0.1"
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            },
                            "lockedStatus":{
                                "type":"string",
                                "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "visitStartDateLockedStatus":{
                                "type":"string",
                                "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "lockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitStartDateLockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit start date was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitWindowWarning":{
                                "type":"string",
                                "description":"Warning for the visit scheduling window",
                                "example":"NONE"
                            },
                            "doseHoldAction":{
                                "type":"string",
                                "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                                "example":"ENABLE"
                            },
                            "unResolvedQueries":{
                                "type":"integer",
                                "description":"Number of unresolved queries associated with this visit",
                                "format":"int32",
                                "example":0
                            }
                        },
                        "description":"List of visit status for each actual or projected visit"
                    },
                    "scheduledVisits":{
                        "type":"object",
                        "properties":{
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                            },
                            "title":{
                                "type":"string",
                                "description":"Display title for the visit",
                                "example":"Baseline"
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Window start date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-10T14:30:31.892Z"
                            },
                            "scheduledDate":{
                                "type":"string",
                                "description":"Scheduled date for the visit",
                                "format":"date-time",
                                "example":"2025-10-12T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Window end date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-20T14:30:31.892Z"
                            },
                            "eventInstanceNum":{
                                "type":"number",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"Cycle count for the visit",
                                "format":"int32",
                                "example":1
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            }
                        },
                        "description":"Scheduled visit details including scheduling windows and action to be taken"
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Study version for the current visit/subject state",
                        "example":"3.0.0.4"
                    }
                },
                "description":"Schedule and status of all planned and actual subject visits, including current subject and visit state details, visit windows, and projected visits."
            },
            "VisitsStatusDto14":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Warning for the visit scheduling window",
                        "example":"NONE"
                    },
                    "doseHoldAction":{
                        "type":"string",
                        "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                        "example":"ENABLE"
                    },
                    "unResolvedQueries":{
                        "type":"integer",
                        "description":"Number of unresolved queries associated with this visit",
                        "format":"int32",
                        "example":0
                    }
                },
                "description":"List of visit statuses, including query counts, lock status, windowing, and other state."
            },
            "VisitWindowInfoDTO":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0A1B2C3D4E5F6A7B8C9D0E1F2A3B4C5D"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Name of the visit as defined in the protocol.",
                        "example":"Screening"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "scheduledDate":{
                        "type":"string",
                        "description":"Start date/time of the schedule for the visit",
                        "format":"date-time",
                        "example":"2025-11-05T10:00:00Z"
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Start date/time of the scheduled window for the visit.",
                        "format":"date-time",
                        "example":"2025-11-01T08:00:00Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"End date/time of the scheduled window for the visit.",
                        "format":"date-time",
                        "example":"2025-11-10T17:00:00Z"
                    },
                    "isSkipped":{
                        "type":"boolean",
                        "description":"Flag indicating if the visit was skipped.",
                        "example":false
                    }
                },
                "description":"DTO containing detailed visit window information for a subject's visit schedule in a study, including event and visit identifier, dates and flags."
            },
            "DcsResponseListVisitWindowInfoDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitWindowInfoDTO"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "ScheduledVisitsDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "title":{
                        "type":"string",
                        "description":"Display title for the visit",
                        "example":"Baseline"
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Window start date for scheduling the visit",
                        "format":"date-time",
                        "example":"2025-10-10T14:30:31.892Z"
                    },
                    "scheduledDate":{
                        "type":"string",
                        "description":"Scheduled date for the visit",
                        "format":"date-time",
                        "example":"2025-10-12T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Window end date for scheduling the visit",
                        "format":"date-time",
                        "example":"2025-10-20T14:30:31.892Z"
                    },
                    "eventInstanceNum":{
                        "type":"number",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"Cycle count for the visit",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Base scheduled visit details including scheduling windows and identifiers"
            },
            "SubjectVisitsDto80":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto12"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string"
                    },
                    "signedStatus":{
                        "type":"string"
                    },
                    "verifiedStatus":{
                        "type":"string"
                    },
                    "freezedStatus":{
                        "type":"string"
                    },
                    "lastSigned":{
                        "type":"string"
                    }
                }
            },
            "SubjectVisitsStatusResponse80":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto80"
                        }
                    }
                }
            },
            "DcsResponseSubjectVisitsStatusResponse80":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse80"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementDto131":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock state of the data element. Values LOCKED, UNLOCKED, NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"NEVER_LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"DataElementDto is a wrapper containing DataElementDto130 and additional fields like lockedStatus, lockedDateTime, visitStartDateLockedStatus and visitStartDateLockedDateTime."
            },
            "CoreDataElementV5":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    }
                },
                "description":"Core data element payload (v5)."
            },
            "DataElementFormAssociationsReq2":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form association definitions to apply",
                        "items":{
                            "$ref":"#/components/schemas/FormAssociationsDataElmntsReqDto21"
                        }
                    },
                    "context":{
                        "$ref":"#/components/schemas/Context3"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of core data element payloads to be processed",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV5"
                        }
                    }
                },
                "description":"Request wrapper that includes data elements and corresponding form associations to update"
            },
            "SubjectsVisitScheduleDto110":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectRespDto16"
                    },
                    "visits":{
                        "required":[
                            "studyVersion"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start timestamp of the version record",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "subjectId":{
                                "type":"string",
                                "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "siteId":{
                                "type":"string",
                                "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "studyVersion":{
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"String representing the version of the study. Helps track changes in form or study design.",
                                "example":"3.0.0.1"
                            },
                            "visitStatus":{
                                "type":"string",
                                "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                                "example":"COMPLETE"
                            },
                            "reason":{
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason associated with the visit status",
                                "example":"Subject completed the visit successfully"
                            },
                            "comment":{
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment for the visit status",
                                "example":"All data verified"
                            },
                            "visitStartDate":{
                                "type":"string",
                                "description":"Visit start date timestamp",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitType":{
                                "type":"string",
                                "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                                "example":"SCREENING"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                                "example":"Visit_Not_Started"
                            },
                            "eventInstanceNum":{
                                "type":"integer",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "signedStatus":{
                                "type":"string",
                                "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                                "example":"SIGNED"
                            },
                            "verifiedStatus":{
                                "type":"string",
                                "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                                "example":"VERIFIED"
                            },
                            "freezedStatus":{
                                "type":"string",
                                "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                                "example":"FROZEN"
                            },
                            "repeatingFormCount":{
                                "type":"number",
                                "description":"Number of repeating form instances for the visit.",
                                "example":2
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Scheduled window start date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Scheduled window end date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "associatedStudyVersion":{
                                "type":"string",
                                "description":"Study version with which the visit status is associated",
                                "example":"3.0.0.1"
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            },
                            "lockedStatus":{
                                "type":"string",
                                "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "visitStartDateLockedStatus":{
                                "type":"string",
                                "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "lockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitStartDateLockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit start date was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitWindowWarning":{
                                "type":"string",
                                "description":"Warning for the visit scheduling window",
                                "example":"NONE"
                            },
                            "doseHoldAction":{
                                "type":"string",
                                "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                                "example":"ENABLE"
                            },
                            "unResolvedQueries":{
                                "type":"integer",
                                "description":"Number of unresolved queries associated with this visit",
                                "format":"int32",
                                "example":0
                            }
                        },
                        "description":"List of visit status for each actual or projected visit"
                    },
                    "scheduledVisits":{
                        "type":"object",
                        "properties":{
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                            },
                            "title":{
                                "type":"string",
                                "description":"Display title for the visit",
                                "example":"Baseline"
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Window start date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-10T14:30:31.892Z"
                            },
                            "scheduledDate":{
                                "type":"string",
                                "description":"Scheduled date for the visit",
                                "format":"date-time",
                                "example":"2025-10-12T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Window end date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-20T14:30:31.892Z"
                            },
                            "eventInstanceNum":{
                                "type":"number",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"Cycle count for the visit",
                                "format":"int32",
                                "example":1
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            }
                        },
                        "description":"Scheduled visit details including scheduling windows and action to be taken"
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Study version for the current visit/subject state",
                        "example":"3.0.0.4"
                    }
                },
                "description":"Schedule and status of all planned and actual subject visits, including current subject and visit state details, visit windows, and projected visits."
            },
            "SubjectVisitsDto90":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique subject identifier representing the participant enrolled in the study",
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    "visits":{
                        "type":"array",
                        "description":"List of visit status records for the subject",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto12"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "description":"List of scheduled visits with scheduling windows",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Subject-level signed status aggregated across visits",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Subject-level verified status aggregated across visits",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Subject-level freeze status aggregated across visits",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp of the last sign action for the subject",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Subject-level locked status",
                        "example":"LOCKED"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if subject can be completed based on current data and rules",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked, if applicable",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject level visit status summary including current statuses, scheduled visits and schedules."
            },
            "DcsResponseSubjectVisitsStatusResponse90":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse90"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitsStatusResponse90":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subjects with visit status and schedule information.",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto90"
                        }
                    }
                },
                "description":"Response wrapper containing a list of subjects with visit status details and schedules."
            },
            "VisitStatusRulesTargetWithSVFDto8":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "targets":{
                        "type":"array",
                        "description":"List of rule targets affected by this operation",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of rule targets affected by this operation",
                            "example":"[\"DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC\"]"
                        }
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "visitStartDateFreezeStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"LOCKED"
                    },
                    "visitStartDateVerifyStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFY"
                    },
                    "visitStartDateSignStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    }
                }
            },
            "DataElementDto134":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock state of the data element. Values LOCKED, UNLOCKED, NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"NEVER_LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date lock state last changed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "affidavitCodeValue":{
                        "type":"string",
                        "description":"Affidavit code value when affidavit applies",
                        "example":"Electronic Signature Affidavit"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"C1234567C1234567C1234567C1234567"
                    }
                },
                "description":"DataElementDto is a wrapper containing data fields regarding the dataElement like : hdiId, affidavitCodeValue, lockedDateTime, visitStartDateLockedStatus, visitStartDateLockedDateTime etc."
            },
            "DataElementDto123":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"LOCK"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the data element. Acceptable Values are LOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    "documentId":{
                        "type":"string",
                        "description":"Unique identifier of the associated source document (hex UUID, 32-character uppercase), enabling traceability between the data element and its original supporting document or file.",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    "documentVersion":{
                        "type":"number",
                        "description":"Document version number",
                        "example":1
                    },
                    "validationRules":{
                        "type":"array",
                        "description":"Validation rules evaluated for this data element",
                        "items":{
                            "$ref":"#/components/schemas/ValidationRuleDto"
                        }
                    },
                    "clearedLabs":{
                        "type":"array",
                        "description":"List of laboratory properties associated with the data element",
                        "items":{
                            "$ref":"#/components/schemas/DCPropertyDto"
                        }
                    },
                    "clearedChildDataElements":{
                        "type":"array",
                        "description":"List of cleared child data elements",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto123"
                        }
                    },
                    "dataEventType":{
                        "type":"string",
                        "description":"Event type indicating data change lifecycle.",
                        "example":"FORM_RESTORED"
                    },
                    "affidavitCodeValue":{
                        "type":"string",
                        "description":"Affidavit code value when affidavit applies",
                        "example":"Electronic Signature Affidavit"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Locked timestamp for visit start date",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"Data element with document linkage, validation rules, cleared labs and child elements, and visit start date lock metadata."
            },
            "DataElementFormAssociationsReq3":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations for the provided data elements.",
                        "example":[
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormAssociationsDataElmntsReqDto21"
                        }
                    },
                    "context":{
                        "$ref":"#/components/schemas/Context3"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements for the request.",
                        "example":[
                        ],
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV7"
                        }
                    }
                },
                "description":"Request including context, data elements and associated forms."
            },
            "SubjectVisitsDto100":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique subject identifier representing the participant enrolled in the study",
                        "example":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
                    },
                    "visits":{
                        "type":"array",
                        "description":"List of visit status records for the subject",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto12"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "description":"List of scheduled visits with scheduling windows",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"String representing the version of the study configuration or protocol. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Subject-level signed status aggregated across visits",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Subject-level verified status aggregated across visits",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Subject-level freeze status aggregated across visits",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp of the last sign action for the subject",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Subject-level locked status",
                        "example":"LOCKED"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if subject can be completed based on current data and rules",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked, if applicable",
                        "example":"3.0.0.1"
                    },
                    "ehrLinkStatus":{
                        "type":"number"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "DcsResponseSubjectVisitsStatusResponse100":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse100"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitsStatusResponse100":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto100"
                        }
                    }
                }
            },
            "DcsResponseSubjectVisitsStatusResponse110":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse110"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitsDto110":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto12"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto20"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string"
                    },
                    "signedStatus":{
                        "type":"string"
                    },
                    "verifiedStatus":{
                        "type":"string"
                    },
                    "freezedStatus":{
                        "type":"string"
                    },
                    "lastSigned":{
                        "type":"string"
                    },
                    "lockedStatus":{
                        "type":"string"
                    },
                    "canBeCompleted":{
                        "type":"boolean"
                    },
                    "lockedInStudyVersion":{
                        "type":"string"
                    },
                    "ehrLinkStatus":{
                        "type":"number"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "SubjectVisitsStatusResponse110":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto110"
                        }
                    }
                }
            },
            "SubjectVisitsDto12":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit statuses for the subject",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto14"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "description":"Scheduled visits derived for the subject",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto20"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Current state study version in which the subject resides",
                        "example":"3.0.0.1"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status of the subject. Acceptable Values are - SIGNED, NEVER_SIGNED, NOT_APPLICABLE",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status of the subject. Acceptable Values are - VERIFIED, NEVER_VERIFIED, NOT_APPLICABLE",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the subject. Acceptable Values are - FROZEN, NEVER_FROZEN, NOT_APPLICABLE",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the subject. Acceptable Values are - LOCKED, NEVER_LOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if all required data is present to mark subject as completed",
                        "example":true
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if subject randomization can be replaced",
                        "example":false
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if subject withdrawal can be undone",
                        "example":false
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Randomization replacement state or action",
                        "example":"REPLACE_ALLOWED"
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study design version in which the subject is locked",
                        "example":"3.0.0.1"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"Status code indicating EHR link state",
                        "format":"int32",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Subject withdrawal date",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Subject study completion date",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"List of subject visit status entries"
            },
            "SubjectVisitsStatusResponse12":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject visit status entries",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto12"
                        }
                    }
                },
                "description":"Response wrapper containing the list of subject visit status entries for the requested study and mode"
            },
            "DcsResponseSubjectVisitsStatusResponse12":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse12"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitsDto13":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit statuses for the subject",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto15"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "description":"Scheduled visits derived for the subject",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto20"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Current state study version in which the subject resides",
                        "example":"3.0.0.1"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status of the subject. Acceptable values are - SIGNED, NEVER_SIGNED, NOT_APPLICABLE",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status of the subject. Acceptable values are - VERIFIED, NEVER_VERIFIED, NOT_APPLICABLE",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the subject.Acceptable values are - FROZEN, NEVER_FROZEN, NOT_APPLICABLE",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the subject.Acceptable values are - LOCKED, NEVER_LOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if all required data is present to mark subject as completed",
                        "example":true
                    },
                    "canBeReplaced":{
                        "type":"boolean",
                        "description":"Indicates if subject randomization can be replaced",
                        "example":false
                    },
                    "canBeUndoWithdrawn":{
                        "type":"boolean",
                        "description":"Indicates if subject withdrawal can be undone",
                        "example":false
                    },
                    "replaceRand":{
                        "type":"string",
                        "description":"Randomization replacement state or action. Acceptable Values are - Y or N",
                        "example":"Y"
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study design version in which the subject is locked",
                        "example":"3.0.0.1"
                    },
                    "ehrLinkStatus":{
                        "type":"number",
                        "description":"Status code indicating EHR link state",
                        "format":"int32",
                        "example":1
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"Subject withdrawal date",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Subject study completion date",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    }
                },
                "description":"List of subject visit status entries"
            },
            "SubjectVisitsStatusResponse13":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "description":"List of subject visit status entries",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto13"
                        }
                    }
                },
                "description":"Response wrapper containing the list of subject visit status entries for the requested study and mode"
            },
            "VisitsStatusDto15":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Warning for the visit scheduling window",
                        "example":"NONE"
                    },
                    "doseHoldAction":{
                        "type":"string",
                        "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                        "example":"ENABLE"
                    },
                    "designStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "unResolvedQueries":{
                        "type":"integer",
                        "description":"Number of unresolved queries associated with this visit",
                        "format":"int32",
                        "example":0
                    }
                },
                "description":"Visit statuses for the subject"
            },
            "DcsResponseSubjectVisitsStatusResponse13":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse13"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "CodedDerrivedItemsResponse2":{
                "type":"object",
                "properties":{
                    "source_propertyId":{
                        "type":"string",
                        "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                        "example":"C2D20B70E856463EBC6C830C693D1B40"
                    },
                    "source_value":{
                        "type":"string",
                        "description":"Original value from the source that is being coded.",
                        "example":"ALT"
                    },
                    "coding_context":{
                        "type":"string",
                        "description":"Context in which the coding is performed.",
                        "example":"{\"Route of Administration\":\"as\",\"Indication\":\"fer\"}"
                    },
                    "codeValuesList":{
                        "type":"object",
                        "properties":{
                            "coding_info_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding info used to derive the code.",
                                "example":"3A1A5E8B0F894A9CA9F324D04B162F23"
                            },
                            "dataElement":{
                                "$ref":"#/components/schemas/DataElementDto"
                            },
                            "source_propertyId":{
                                "type":"string",
                                "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                                "format":"UUID",
                                "example":"C2D20B70E856463EBC6C830C693D1B40"
                            },
                            "source_value":{
                                "type":"string",
                                "description":"Original value from the source that is being coded.",
                                "example":"ALT"
                            }
                        },
                        "description":"Represents a coded item in a data element response, including identifiers, source value, and a referenced DataElement object."
                    }
                },
                "description":"Response object for returning coded derived items. Includes original identifiers, context and coded result items."
            },
            "CodedDerrivedItemsRequest2":{
                "required":[
                    "coding_context",
                    "source_value"
                ],
                "type":"object",
                "properties":{
                    "source_propertyId":{
                        "type":"string",
                        "description":"Source property Unique identifier(UUID, 32-character uppercase hexadecimal string). Must be unique per data context.",
                        "example":"C2D20B70E856463EBC6C830C693D1B40"
                    },
                    "source_value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Original value from the source that is being coded.",
                        "example":"ALT"
                    },
                    "coding_context":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Context in which the coding is performed.",
                        "example":"{\"Route of Administration\":\"as\",\"Indication\":\"fer\"}"
                    },
                    "codeValuesList":{
                        "required":[
                            "code_value"
                        ],
                        "type":"object",
                        "properties":{
                            "coding_info_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding info used to derive the code.",
                                "example":"3A1A5E8B0F894A9CA9F324D04B162F23"
                            },
                            "item_id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                                "example":"5B3B7E0ED4F24E30B5A3A44C5A896C90"
                            },
                            "target_id":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding result target.",
                                "example":"F843B5478028498882E3AF11FEBA3F2A"
                            },
                            "code_value":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"The actual code value derived from the coding process.",
                                "example":"R79.0"
                            }
                        },
                        "description":"Represents a coded value applied to a source value. Includes coding information, item and target identifiers and the coded result."
                    }
                },
                "description":"Request object for inserting or updating coded derived items. Contains the source property ID, source value, coding context, and a list of code values."
            },
            "ChildItemDto2":{
                "type":"object",
                "properties":{
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "type":{
                        "type":"string",
                        "description":"Type/category of the child item (e.g., Question, Section)",
                        "example":"Question"
                    },
                    "title":{
                        "type":"string",
                        "description":"Display title of the child item",
                        "example":"Height"
                    },
                    "branchVisit":{
                        "type":"boolean",
                        "description":"Indicates if the item belongs to a branch visit",
                        "example":false
                    },
                    "visitTitle":{
                        "type":"string",
                        "description":"Title of the visit containing this item",
                        "example":"Screening"
                    },
                    "inFuture":{
                        "type":"boolean",
                        "description":"Whether the item belongs to a future visit instance",
                        "example":false
                    },
                    "isHidden":{
                        "type":"boolean",
                        "description":"Whether the item is hidden by rule or configuration",
                        "example":false
                    },
                    "isReadOnly":{
                        "type":"boolean",
                        "description":"Whether the item is read-only",
                        "example":false
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Extended child item metadata with event instance number"
            },
            "DataElementDto20":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    }
                },
                "description":"Data element extension adding object version number for optimistic locking"
            },
            "DataElementDto100":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the data element. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED",
                        "example":"NEVER_LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the current lock status became effective",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":2
                    }
                },
                "description":"Data element including lock metadata and repeat form number"
            },
            "DataElementDto10":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "formStatus":{
                        "type":"string",
                        "enum":[
                            "NOT_STARTED",
                            "COMPLETED",
                            "COMPLETED_WITH_ERROR",
                            "IN_PROGRESS",
                            "INCOMPLETE_WITH_ERROR",
                            "INCOMPLETE",
                            "REMOVED"
                        ]
                    }
                }
            },
            "DataElementsFormAssociationsDto2":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto11"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto"
                        }
                    }
                },
                "description":"Aggregated data elements and form associations"
            },
            "FormsAssociationsHistoryDto2":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the association record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "srcEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "srcEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "srcFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "srcRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "srcStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "associatedEventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    "associatedEventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedFormId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"AA11BB22CC33DD44EE55FF6677889900"
                    },
                    "associatedRepeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.2"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Association created"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Linked forms across events"
                    },
                    "srcItemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User identifier (UUID) who created or modified the association",
                        "example":"9F8E7D6C5B4A3A2B1C0D9E8F7A6B5C4D"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "srcFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "associatedFormSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C6E0C7D5A1F3428C8B8B6A77C5E9D4AB"
                    },
                    "srcRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "associatedRepeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Extends FormsAssociationsHistoryDto with version end timestamp, software version number and section linkage details for source and associated forms including repeat form numbers."
            },
            "DataElementDetails20":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"BBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "repeatTwoSectionFormNumber":{
                        "type":"integer",
                        "description":"Repeat section form number, if applicable.",
                        "format":"int32",
                        "example":1
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"50DB4EF4847849CCB24EFCCB71CDA436"
                    }
                },
                "description":"Data element details (v2) including two-section form repeat number and form section identifier."
            },
            "MultipleDataElementsRequestDto20":{
                "type":"object",
                "properties":{
                    "dataElementDetails":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDetails20"
                        }
                    }
                }
            },
            "LabAssociationFormDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "formRepeats":{
                        "type":"array",
                        "description":"List of lab association repeat mappings",
                        "items":{
                            "$ref":"#/components/schemas/LabAssociationRepeatingDto"
                        }
                    }
                },
                "description":"Lab association details for a specific form, including repeat mappings"
            },
            "LabAssociationRepeatingDto":{
                "type":"object",
                "properties":{
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":1
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    }
                },
                "description":"Lab association mapping for a repeating form instance"
            },
            "LabAssociationsDto":{
                "type":"object",
                "properties":{
                    "forms":{
                        "type":"array",
                        "description":"List of lab association forms",
                        "items":{
                            "$ref":"#/components/schemas/LabAssociationFormDto"
                        }
                    }
                },
                "description":"Container for lab association details grouped by forms"
            },
            "VisitDataDto20":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto121"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormLockDto10"
                        }
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitLockDto"
                    },
                    "labAssociations":{
                        "$ref":"#/components/schemas/LabAssociationsDto"
                    }
                }
            },
            "DataElementRequest20":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto20"
                    }
                }
            },
            "DataElementsFormAssociationsDto3":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto12"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto"
                        }
                    }
                },
                "description":"Aggregated data elements and form associations"
            },
            "DcsResponseDataElementsFormAssociationsDto3":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/DataElementsFormAssociationsDto3"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementRepeatingFormsReq2":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context"
                    },
                    "repeatingForms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingFormsDataElementReqDto2"
                        }
                    }
                }
            },
            "RepeatingFormsDataElementReqDto2":{
                "type":"object",
                "properties":{
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of core data elements for this form instance",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Extends RepeatingFormsDataElementReqDto with repeat form number."
            },
            "FormAssociationsUpdateDto2":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Change for encoding"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Updated association details"
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form association updates to apply",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    }
                },
                "description":"Payload to update form associations for a given form context"
            },
            "FormAssociationsUpdateRespDto2":{
                "type":"object",
                "properties":{
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    }
                },
                "description":"Form associations update response (v2)"
            },
            "DcsResponseFormAssociationsUpdateRespDto2":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/FormAssociationsUpdateRespDto2"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SignVerifyFreezeDTOv30":{
                "type":"object",
                "properties":{
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0C50E26E482246B2BB9646C739E97CAA"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the Sign/Verify/Freeze record in UUID format",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-02T17:30:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":100
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"reason to make this change",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments if provided",
                        "example":"Data discrepancy observed and clarified"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "signed":{
                        "type":"string",
                        "description":"Signed status can be of SIGNED, UNSIGNED, NEVER_SIGNED, PARTIAL_SIGNED ",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "verify":{
                        "type":"string",
                        "description":"Verify status can be UNVERIFIED, VERIFIED, NEVER_VERIFIED, VERIFY_REQUIRED",
                        "example":"VERIFIED"
                    },
                    "freeze":{
                        "type":"string",
                        "description":"Freeze status can be of FROZEN, UNFROZEN, NEVER_FROZEN",
                        "example":"FROZEN"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":0
                    }
                },
                "description":"Extends v20 by adding form section identifier and repeat form number for repeating forms."
            },
            "VisitsStatusDto2":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    }
                },
                "description":"Visit status details including visit type and event type"
            },
            "SubjectVisitsDto20":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto2"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string"
                    }
                }
            },
            "ClearDataResponseDto20":{
                "type":"object",
                "properties":{
                    "clearedData":{
                        "type":"array",
                        "description":"List of cleared data details",
                        "items":{
                            "$ref":"#/components/schemas/ClearedDataDto20"
                        }
                    }
                },
                "description":"Response wrapper containing cleared data details"
            },
            "ClearedDataDto20":{
                "type":"object",
                "properties":{
                    "visits":{
                        "$ref":"#/components/schemas/Visits"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of cleared data elements",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto131"
                        }
                    },
                    "labs":{
                        "type":"array",
                        "description":"List of cleared lab property details",
                        "items":{
                            "$ref":"#/components/schemas/DCPropertyDto"
                        }
                    }
                },
                "description":"Container for cleared data including visit details, cleared data elements, and lab property IDs"
            },
            "DataElementDto120":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    }
                },
                "description":"Data element details including form status information for the associated form."
            },
            "DataElementDto122":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "parentId":{
                        "type":"string",
                        "description":"Identifier (UUID, 32-character uppercase hexadecimal string) of the parent data element in uppercase hex.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "rootId":{
                        "type":"string",
                        "description":"Identifier of root data element in UUID, 32-character uppercase hexadecimal string.",
                        "format":"UUID",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"LOCK"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the data element version",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "itemType":{
                        "type":"string",
                        "description":"Type of item represented by this data element",
                        "example":"TEXT"
                    },
                    "itemD":{
                        "type":"string",
                        "description":"The decoded value of the raw value, which provides a more meaningful representation of the data. For dates, it follows the ISO 8601 standard. For questions with multiple choice options, it uses the corresponding code from the codelist. Additionally, ItemD decodes special flags like NA, ND, and UNK to their corresponding meanings, making it easier to understand the data.",
                        "example":"DETAIL"
                    },
                    "itemF":{
                        "type":"string",
                        "description":"The formatted value that matches the data type of the question, such as a date in a specific format or a number with correct decimal places. If the user didn't provide a valid response, ItemF will be null.",
                        "example":"FLAG"
                    },
                    "itemR":{
                        "type":"string",
                        "description":"The raw value entered by the user, which can be a text, number, or date, and is stored as alphanumeric data. It may also contain special flags such as NA (Not Applicable), ND (Not Done), UNK (Unknown), or Not Answered if the user didn't provide a response.",
                        "example":"REASON"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":2
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the data element was captured in the source system",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the data element. Acceptable Values are LOCKED, NOT_APPLICABLE",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the data element was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    }
                },
                "description":"List of data elements for the visit."
            },
            "VisitDataDto30":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements for the visit.",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto122"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations for the visit.",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of forms for the visit.",
                        "items":{
                            "$ref":"#/components/schemas/FormLockDto10"
                        }
                    },
                    "labAssociations":{
                        "$ref":"#/components/schemas/LabAssociationsDto"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitLockDto"
                    }
                },
                "description":"Visit-level data including data elements, forms, and lock information."
            },
            "DataElementRequest30":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto30"
                    }
                }
            },
            "DataElementRepeatingFormsReq3":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context"
                    },
                    "repeatingForms":{
                        "type":"array",
                        "description":"List of repeating form requests containing data elements for each repeat instance.",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingFormsDataElementReqDto3"
                        }
                    }
                },
                "description":"Request payload containing context and repeating form data elements."
            },
            "RepeatingFormsDataElementReqDto3":{
                "type":"object",
                "properties":{
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of core data elements for this form instance",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV4"
                        }
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Extends RepeatingFormsDataElementReqDto2 with inner and outer repeat indices."
            },
            "LabRequestDto20":{
                "required":[
                    "eventId",
                    "formId",
                    "siteId",
                    "studyVersion",
                    "subjectId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F6471890ABCDEF12345678"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"799EF3745FC545589F186D2198F3C65E"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"899EF3745FC545589F186D2198F3C65E"
                    },
                    "labId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.",
                        "example":"999EF3745FC545589F186D2198F3C65E"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "SubjectDto_30":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when this subject was updated/imported",
                        "format":"date-time",
                        "example":"2025-12-05T12:12:35Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject details for version 3.0, including all past event and version fields and the source timestamp when an external system submitted the subject"
            },
            "ReasonCommentRequest20":{
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Incorrect entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Removing incorrect data captured by mistake"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp for the code break request (ISO 8601 format, UTC).",
                        "format":"date-time",
                        "example":"2025-11-06T12:45:00Z"
                    }
                },
                "description":"Request payload providing a reason, optional comment, and a timestamp for code break."
            },
            "SubjectDto9":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Subject attributes including source system timestamp metadata"
            },
            "VisitResult":{
                "title":"VisitResult",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Contains information for the kit dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKit"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    },
                    "countOfKitTypesOnDoseHold":{
                        "title":"Count Of Kit Types On Dose Hold",
                        "type":"integer",
                        "description":"Number of kit types on dose hold.",
                        "format":"int32",
                        "example":1
                    },
                    "pendingKitQuantity":{
                        "title":"Pending Kit Quantity",
                        "type":"integer",
                        "description":"Number of kits pending dispensation.",
                        "format":"int32",
                        "example":1
                    },
                    "forcedRandomized":{
                        "title":"Forced Randomized",
                        "type":"boolean",
                        "description":"Indicates whether the subject was forced randomized.",
                        "example":true
                    }
                },
                "description":"Visit result."
            },
            "SubjectMigrationResponseDTO2":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":9
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type name tracked for subject migration",
                        "example":"MIGRATED"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"UUID of subject transfer record (if subject was transferred)",
                        "example":"1234567890ABCDEF1234567890ABCDEF"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned post migration.",
                        "example":"RND-123"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the subject was migrated or synchronized",
                        "format":"date-time",
                        "example":"2025-12-01T10:30:51Z"
                    }
                },
                "description":"Response payload for subject migration, including audit trail, object/version, subject event and randomization number"
            },
            "SubjectMigrationRequest2":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectMigrationRequestDTO2"
                    }
                }
            },
            "SubjectMigrationRequestDTO2":{
                "required":[
                    "state",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number for the subject at migration",
                        "example":"RND-123"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0301"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AABBCCDDEEFF1234567890ABCDEF1234"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed.",
                        "example":"Active"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp when the migration was triggered/sourced",
                        "format":"date-time",
                        "example":"2025-12-01T09:50:00Z"
                    }
                },
                "description":"Details for subject migration, including randomization number, subject identifiers, site, status, and timestamps"
            },
            "SubjectTransferDto3":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject being transferred.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred from.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "toSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred to.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the subject transfer.",
                        "example":"Site change"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment or note about the subject transfer.",
                        "example":"Moved subject to new site"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":8
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"3099-12-31T00:00:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject transfer record.",
                        "example":"A1B2C3D4E5F64789AABBCCDDEEFF1122"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp representing the start of the version for this subject transfer record.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "newSubjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"New subject number after transfer or renumbering.",
                        "example":"SUBJ-0001-NEW"
                    }
                },
                "description":"Represents a subject transfer between sites used for API rresponse bodies including version end."
            },
            "VisitsStatusDto3":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    }
                },
                "description":"Visit status details including object version number for optimistic locking"
            },
            "ClearDataResponseDto30":{
                "type":"object",
                "properties":{
                    "clearedData":{
                        "type":"array",
                        "description":"List of cleared data entries",
                        "items":{
                            "$ref":"#/components/schemas/ClearedDataDto30"
                        }
                    }
                },
                "description":"Clear data response DTO"
            },
            "ClearedDataDto30":{
                "type":"object",
                "properties":{
                    "visits":{
                        "$ref":"#/components/schemas/Visits"
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of cleared data elements",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto136"
                        }
                    },
                    "labs":{
                        "type":"array",
                        "description":"List of lab properties",
                        "items":{
                            "$ref":"#/components/schemas/DCPropertyDto"
                        }
                    },
                    "formsStatus":{
                        "type":"array",
                        "description":"List of form statuses",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusResponseDto"
                        }
                    }
                },
                "description":"Cleared data details"
            },
            "DataElementListFormStatusesDto":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements captured/updated",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto123"
                        }
                    },
                    "formsStatus":{
                        "type":"array",
                        "description":"List of form status entries with repeat hierarchy",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusResponseDto"
                        }
                    }
                },
                "description":"Response wrapper containing data elements and their corresponding form statuses."
            },
            "DataElementDto60":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    }
                },
                "description":"Data element sign/verify/freeze status fields inherited by higher versions"
            },
            "MultipleDataElementsRequestDto30":{
                "type":"object",
                "properties":{
                    "dataElementDetails":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDetails30"
                        }
                    }
                }
            },
            "VisitDataDto4":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements captured for the visit",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto123"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of form lock details for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLockDto10"
                        }
                    },
                    "labAssociations":{
                        "$ref":"#/components/schemas/LabAssociationsDto"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitLockDto"
                    },
                    "formsStatus":{
                        "type":"array",
                        "description":"List of form statuses for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusResponseDto"
                        }
                    }
                },
                "description":"Visit-level data including data elements, forms associations, lock details, lab associations, and form statuses."
            },
            "DcsResponseVisitDataDto4":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/VisitDataDto4"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementDto40":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Data element properties including targeting metadata, extending v3 with targets list"
            },
            "DataElementsRequestDto2":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context2"
                    },
                    "dataElements":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElement"
                        }
                    }
                }
            },
            "CoreDataElementV50":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary uuid identifier for the data element instance (HEX, upper case).",
                        "example":"C1234567C1234567C1234567C1234567"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"Transaction start date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T12:00:00Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"Transaction end date/time for this observation.",
                        "format":"date-time",
                        "example":"2024-01-01T13:00:00Z"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D9876543D9876543D9876543D9876543"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":2
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "example":"E5554444E5554444E5554444E5554444"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F4443333F4443333F4443333F4443333"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Code supplied by vendor.",
                        "example":"VENDOR42"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Measured value captured for this data element.",
                        "example":"42.0"
                    },
                    "measureUnit":{
                        "type":"string",
                        "description":"Unit of measurement for this value (if applicable).",
                        "example":"mg/dL"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for this data entry/edit.",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Any general comments for the data element instance.",
                        "example":"Measured after fasting"
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identfier (UUID, 32-character uppercase hexadecimal string) of data capture properties",
                        "example":"299BC76CF0F943E6BAC1D209BC3D1CDC"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z"
                    },
                    "hdiId":{
                        "type":"string",
                        "description":"Stores the ID as received from Oracle Clinical Conector (OCC). It could be different for each data element in a form, but can also be the same. Uses UUID, 32-character uppercase hexadecimal string format.",
                        "example":"A86F2D0BB610404DB62D37AFA9C20B50"
                    },
                    "documentId":{
                        "type":"string",
                        "description":"Unique identifier of the associated source document (hex UUID, 32-character uppercase), enabling traceability between the data element and its original supporting document or file.",
                        "format":"uuid"
                    },
                    "documentVersion":{
                        "type":"number",
                        "description":"Version of the source or supporting document linked to this data element.",
                        "example":1
                    }
                },
                "description":"Core data element payload with optional document linkage information"
            },
            "DataElementRepeatingFormsReq4":{
                "type":"object",
                "properties":{
                    "context":{
                        "$ref":"#/components/schemas/Context"
                    },
                    "repeatingForms":{
                        "type":"array",
                        "description":"List of repeating form payloads with their repeat numbers and data elements",
                        "items":{
                            "$ref":"#/components/schemas/RepeatingFormsDataElementReqDto10"
                        }
                    }
                },
                "description":"Request to save multiple data elements for repeating forms within a context"
            },
            "RepeatingFormsDataElementReqDto10":{
                "type":"object",
                "properties":{
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "example":1
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "example":1
                    },
                    "dataElements":{
                        "type":"array",
                        "description":"List of core data element values to store for this repeating form instance",
                        "items":{
                            "$ref":"#/components/schemas/CoreDataElementV50"
                        }
                    }
                },
                "description":"Payload for a single repeating form instance with its repeat numbers and data elements"
            },
            "DcsResponseDataElementListFormStatusesDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/DataElementListFormStatusesDto"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SignDTO":{
                "type":"object",
                "properties":{
                    "signLevel":{
                        "type":"string",
                        "description":"Level at which signature is required. Typical values: SUBJECT_LEVEL, FORM_LEVEL.",
                        "example":"SUBJECT_LEVEL"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"3234E620DE2E41D69A36571064E727B2"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "configId":{
                        "type":"string",
                        "description":"Signature configuration identifier (UUID, 32-character uppercase hexadecimal string).",
                        "example":"F9E5DBD829B34E298CB6FF4ED60DC927"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":0
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"7DB612AF851A442098B674AA1A97AF36"
                    }
                },
                "description":"Details for a single sign request for the subject signature API."
            },
            "SignRequestDto":{
                "required":[
                    "signRequest"
                ],
                "type":"object",
                "properties":{
                    "signRequest":{
                        "$ref":"#/components/schemas/SignDTO"
                    }
                },
                "description":"Request body for subject signature. Contains a list of signatures to process."
            },
            "SubjectDto40":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp for the code break (ISO 8601 format, UTC).",
                        "format":"date-time",
                        "example":"2025-11-06T12:45:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                }
            },
            "SubjectDto13":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Indicates the number of screened subject ",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-0001"
                    },
                    "mrnNumber":{
                        "type":"string",
                        "description":"Medical record number of subject",
                        "example":"mrn-0001"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"withdrawl Date of subject",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date at which clinical study completed",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason to withdraw subject",
                        "example":"not suitable"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Comment to withdraw subject",
                        "example":"Subject fails in trial"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Comment to make Subject fail in screening",
                        "example":"screeing failure"
                    }
                },
                "description":"Subject properties indicating Screening Number"
            },
            "SubjectRequest50":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto13"
                    }
                }
            },
            "DispensationKitV12":{
                "title":"DispensationKit v12.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Dispensation Kit ID",
                        "type":"number",
                        "description":"Unique identifier of the dispensation kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "consumeAcrossDoses":{
                        "title":"Consume Across Doses",
                        "type":"boolean",
                        "description":"Indicates whether consumption across doses is allowed.",
                        "example":true
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "titrationKitLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"High dose"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1000"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "groupingNumber":{
                        "title":"Grouping Number",
                        "type":"integer",
                        "description":"Grouping number for a kit.",
                        "format":"int32",
                        "example":1
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"A-1"
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "locallySourced":{
                        "title":"Locally Sourced",
                        "type":"boolean",
                        "description":"Indicates whether the kit is locally sourced.",
                        "example":true
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"LOT20240605A"
                    }
                },
                "description":"Contains information for the kit dispensation."
            },
            "VisitResultV15":{
                "title":"VisitResult v15.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKitV12"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    },
                    "countOfKitTypesOnDoseHold":{
                        "title":"Count Of Kit Types On Dose Hold",
                        "type":"integer",
                        "description":"Number of kit types on dose hold.",
                        "format":"int32",
                        "example":1
                    },
                    "pendingKitQuantity":{
                        "title":"Pending Kit Quantity",
                        "type":"integer",
                        "description":"Number of kits pending dispensation.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit result."
            },
            "SubjectDto10":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Subject attributes including screen failure date information"
            },
            "SubjectRequest40":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto10"
                    }
                }
            },
            "SubjectVisitsDto40":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto5"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string"
                    },
                    "signedStatus":{
                        "type":"string"
                    },
                    "verifiedStatus":{
                        "type":"string"
                    },
                    "freezedStatus":{
                        "type":"string"
                    },
                    "lastSigned":{
                        "type":"string"
                    }
                }
            },
            "VisitsStatusDto5":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    }
                },
                "description":"Visit status including sign, verify and freeze statuses"
            },
            "DcsResponseVisitDataDto5":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/VisitDataDto5"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "VisitDataDto5":{
                "type":"object",
                "properties":{
                    "dataElements":{
                        "type":"array",
                        "description":"List of data elements captured for the visit",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto123"
                        }
                    },
                    "formsAssociations":{
                        "type":"array",
                        "description":"List of form associations for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormsAssociationsDto2"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of form lock details for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLockDto10"
                        }
                    },
                    "labAssociations":{
                        "$ref":"#/components/schemas/LabAssociationsDto"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitLockDto2"
                    },
                    "formsStatus":{
                        "type":"array",
                        "description":"List of form statuses for the visit",
                        "items":{
                            "$ref":"#/components/schemas/FormsStatusResponseDto"
                        }
                    }
                }
            },
            "VisitLockDto2":{
                "type":"object",
                "properties":{
                    "lockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Date and time when the visit was locked.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Date and time when the visit start date was locked.",
                        "format":"date-time",
                        "example":"2024-12-01T10:15:30Z"
                    },
                    "visitStartDateFreezeStatus":{
                        "type":"string",
                        "description":"Freeze status of the Visit start date, applicable values are FROZEN, UNFROZEN",
                        "example":"UNFROZEN"
                    },
                    "visitStartDateVerifyStatus":{
                        "type":"string",
                        "description":"Verify status of the Visit start date,applicable values are UNVERIFIED, VERIFIED, VERIFY_REQUIRED",
                        "example":"VERIFY_REQUIRED"
                    },
                    "visitStartDateSignStatus":{
                        "type":"string",
                        "description":"Sign status of the Visit start date,applicable values are SIGNED, UNSIGNED, PARTIAL_SIGN",
                        "example":"PARTIAL_SIGN"
                    }
                },
                "description":"Sign, Verify and Freeze status of visit start date"
            },
            "DataElementRequestDto40":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto50"
                    }
                }
            },
            "RandomizeDetailsV15":{
                "title":"RandomizeDetails",
                "type":"object",
                "properties":{
                    "randomization":{
                        "$ref":"#/components/schemas/VisitResultV15"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto10"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitsStatusDto13"
                    }
                },
                "description":"Contains randomization details with subject and visit summary."
            },
            "VisitsStatusDto13":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"UNLOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Warning for the visit scheduling window",
                        "example":"NONE"
                    },
                    "doseHoldAction":{
                        "type":"string",
                        "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                        "example":"ENABLE"
                    }
                },
                "description":"Visit status including window warning and dose hold action fields"
            },
            "VisitsStatusDto11":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    }
                },
                "description":"Visit status including action to be taken based on current visit state"
            },
            "SubjectVisitsDto50":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto6"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string"
                    },
                    "signedStatus":{
                        "type":"string"
                    },
                    "verifiedStatus":{
                        "type":"string"
                    },
                    "freezedStatus":{
                        "type":"string"
                    },
                    "lastSigned":{
                        "type":"string"
                    }
                }
            },
            "SubjectVisitsStatusResponse50":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto50"
                        }
                    }
                }
            },
            "VisitsStatusDto6":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    }
                },
                "description":"Visit status including count of repeating forms captured for the visit"
            },
            "VisitsStatusRuleTargetsDto5":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "targets":{
                        "type":"array",
                        "description":"List of rule targets affected by this operation",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of rule targets affected by this operation",
                            "example":"[\"DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC\"]"
                        }
                    }
                },
                "description":"Visit status update response including rule targets list"
            },
            "RestResponseSubjectRespDto13":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectRespDto13"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectDto6":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject sign, verify and freeze status fields added on top of previous subject versions"
            },
            "RandomizeDetailsV16":{
                "title":"RandomizeDetails",
                "type":"object",
                "properties":{
                    "randomization":{
                        "$ref":"#/components/schemas/VisitResultV16"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto10"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/VisitsStatusDto13"
                    }
                },
                "description":"Contains randomization details with subject and visit summary."
            },
            "VisitResultV16":{
                "title":"VisitResult v16.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKit"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    },
                    "countOfKitTypesOnDoseHold":{
                        "title":"Count Of Kit Types On Dose Hold",
                        "type":"integer",
                        "description":"Number of kit types on dose hold.",
                        "format":"int32",
                        "example":1
                    },
                    "pendingKitQuantity":{
                        "title":"Pending Kit Quantity",
                        "type":"integer",
                        "description":"Number of kits pending dispensation.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit result."
            },
            "SubjectDto14":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "reScreenEventInstanceNum":{
                        "type":"string",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":"2"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Indicates the number of screened subject ",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-0001"
                    },
                    "mrnNumber":{
                        "type":"string",
                        "description":"Medical record number of subject",
                        "example":"mrn-0001"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"withdrawl Date of subject",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date at which clinical study completed",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason to withdraw subject",
                        "example":"not suitable"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Comment to withdraw subject",
                        "example":"Subject fails in trial"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Comment to make Subject fail in screening",
                        "example":"screeing failure"
                    }
                },
                "description":"Contains information related to subject reScreen Event Instanc eNum"
            },
            "SubjectRequest60":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto14"
                    }
                }
            },
            "VisitsStatusDto610":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp from the source system indicating when this record originated",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Visit status including repeating form counts (v5) and source timestamp"
            },
            "ConsolidatedRepeatInstanceResponseDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"CBCDEF1234567890ABCDEF1234567890"
                    },
                    "eventInstanceNumber":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "instances":{
                        "type":"array",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "example":[
                            "1",
                            "2"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                            "example":"[\"1\",\"2\"]"
                        }
                    }
                },
                "description":"Consolidated repeat instance numbers per form and event."
            },
            "DcsResponseListConsolidatedRepeatInstanceResponseDto":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ConsolidatedRepeatInstanceResponseDto"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "ConsolidatedRepeatInstanceRequestDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of form IDs for which consolidated repeat instance numbers are requested",
                        "example":[
                            "40DB4EF4847849CCB24EFCCB71CDA436",
                            "50DB4EF4847849CCB24EFCCB71CDA436"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of form IDs for which consolidated repeat instance numbers are requested",
                            "example":"[\"40DB4EF4847849CCB24EFCCB71CDA436\",\"50DB4EF4847849CCB24EFCCB71CDA436\"]"
                        }
                    }
                },
                "description":"Request to compute consolidated repeat instance numbers across multiple forms for a subject"
            },
            "DcsResponseListDataElementDto10":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DataElementDto10"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "DataElementRequestDto50":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto7"
                    }
                }
            },
            "SubjectDto15":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Lock status of the subject,applicable values are LOCKED, UNLOCKED",
                        "example":"UNLOCKED"
                    },
                    "hasLockData":{
                        "type":"boolean",
                        "description":"Indicates whether lock related data exists for the subject",
                        "example":false
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the subject was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "canBeCompleted":{
                        "type":"boolean",
                        "description":"Indicates if the subject has met conditions to be completed",
                        "example":true
                    },
                    "lockedInStudyVersion":{
                        "type":"string",
                        "description":"Study version in which the subject is locked",
                        "example":"3.0.0.4"
                    },
                    "reScreenEventInstanceNum":{
                        "type":"string",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "example":"2"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Indicates the number of screened subject ",
                        "example":"SCR-0001"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-0001"
                    },
                    "mrnNumber":{
                        "type":"string",
                        "description":"Medical record number of subject",
                        "example":"mrn-0001"
                    },
                    "withdrawalDate":{
                        "type":"string",
                        "description":"withdrawl Date of subject",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "studyCompletionDate":{
                        "type":"string",
                        "description":"Date at which clinical study completed",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "withdrawalReason":{
                        "type":"string",
                        "description":"Reason to withdraw subject",
                        "example":"not suitable"
                    },
                    "withdrawalComment":{
                        "type":"string",
                        "description":"Comment to withdraw subject",
                        "example":"Subject fails in trial"
                    },
                    "screenFailureComment":{
                        "type":"string",
                        "description":"Comment to make Subject fail in screening",
                        "example":"screeing failure"
                    },
                    "enrollmentDate":{
                        "type":"string",
                        "description":"Date the subject was enrolled",
                        "format":"date"
                    }
                },
                "description":"Subject request/response payload including enrollmentDate and all inherited subject properties"
            },
            "SubjectRequest70":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto15"
                    }
                }
            },
            "VisitsStatusDto710":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp from the source system indicating when this record originated",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action performed on visit start date LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Visit status including lock status for the visit and its start date, with corresponding lock timestamps"
            },
            "DataElementRequestDto60":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto8"
                    }
                }
            },
            "SubjectsVisitScheduleRequestV2":{
                "type":"object",
                "properties":{
                    "sites":{
                        "type":"array",
                        "description":"List of site identifiers to scope the search",
                        "example":[
                            "D3C9A4B5E6F78123456789ABCDEF1234",
                            "E1F2A3B4C5D6E7F89012ABCDEF345678"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of site identifiers to scope the search",
                            "format":"uuid"
                        }
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of results to return",
                        "format":"int32",
                        "example":25
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination",
                        "format":"int32",
                        "example":0
                    },
                    "order":{
                        "type":"string",
                        "description":"Sort order for results",
                        "example":"asc"
                    },
                    "reviewStatus":{
                        "type":"string",
                        "description":"Review status filter applied to subjects. Values can be noopenqueries, openqueries, verified, signed, locked, allvisitscomplete, readytosign, allvisitscomplete, readytoverify, all, signedandverified, frozen ",
                        "example":"all"
                    },
                    "subjectStates":{
                        "type":"array",
                        "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                        "example":[
                            "Auto_Screen_Failed"
                        ],
                        "items":{
                            "type":"string",
                            "description":"States of subjects to filter by Active, New, Screening_Initiated, Enrolled, Complete, Withdrawn, ehrLinked, ehrNotLinked, Screen_Failed, Auto_Screen_Failed",
                            "example":"[\"Auto_Screen_Failed\"]"
                        }
                    },
                    "exactSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for exact match in subject search which will be applied on subject number",
                        "example":[
                            "1001",
                            "SMITH"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for exact match in subject search which will be applied on subject number",
                            "example":"[\"1001\",\"SMITH\"]"
                        }
                    },
                    "containsSearchKeywords":{
                        "type":"array",
                        "description":"Keywords for contains match in subject search which will be applied on subject number",
                        "example":[
                            "100",
                            "SMI"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Keywords for contains match in subject search which will be applied on subject number",
                            "example":"[\"100\",\"SMI\"]"
                        }
                    },
                    "nextVisitOnly":{
                        "type":"boolean",
                        "description":"When true, only the next scheduled visit is returned per subject",
                        "example":false
                    },
                    "notStarted":{
                        "type":"boolean",
                        "description":"When true, include only subjects that have not started",
                        "example":false
                    },
                    "safetyCaseStatus":{
                        "type":"string",
                        "description":"Indicates the safety case status filter. values can be SUBMITTED, CREATED, MODIFIED, SUBMIT_FAILED, CANCEL_FAILED, CANCELLED, DISMISSED, ACCEPTED, REJECTED, TRANSFER_FAILED, ALL.",
                        "example":"ALL"
                    }
                },
                "description":"DTO for version 2 specifying filters, safety case status, and scheduling options for visits."
            },
            "SubjectVisitsDto70":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Subject identifier in uppercase hex format",
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    },
                    "visits":{
                        "$ref":"#/components/schemas/VisitsStatusDto9"
                    },
                    "scheduledVisits":{
                        "$ref":"#/components/schemas/ScheduledVisitsDto"
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Current study version under which the subject state is recorded",
                        "example":"1.0.0.3"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status at the subject level, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status at the subject level, can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status at the subject level, ,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Subject visits and schedule along with current study version and sign/verify/freeze statuses"
            },
            "DcsResponseSubjectVisitsStatusResponse70":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse70"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectVisitsStatusResponse70":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto70"
                        }
                    }
                }
            },
            "VisitsStatusDto810":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Timestamp from the source system indicating when this record originated",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "lockedStatus":{
                        "type":"string",
                        "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                        "example":"LOCKED"
                    },
                    "lockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action performed on visit start date LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitStartDateFreezeStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"LOCKED"
                    },
                    "visitStartDateVerifyStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFY"
                    },
                    "visitStartDateSignStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    }
                }
            },
            "DataElementDto9":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signature status of the data element, can have Values NOT_APPLICABLE, SIGNED",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verification status of the data element can have Values NOT_APPLICABLE, VERIFIED",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Freeze status of the data element,can have Values NOT_APPLICABLE, FROZEN",
                        "example":"FROZEN"
                    },
                    "propertyId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the property.",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "propertyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int32",
                        "example":1
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":1
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "DataElementRequestDto70":{
                "type":"object",
                "properties":{
                    "dataElement":{
                        "$ref":"#/components/schemas/DataElementDto9"
                    }
                }
            },
            "SubjectScreeningNumberDto":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Subject screening number for enrollment tracking",
                        "example":"SCRN-ABC-1234"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Subject randomization number for trial assignment",
                        "example":"RAND-XYZ-9999"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Subject DTO with screening number and randomization number, encompassing all inherited subject metadata. Includes all typical fields."
            },
            "SubjectsVisitScheduleDto80":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectRespDto14"
                    },
                    "visits":{
                        "required":[
                            "studyVersion"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                                "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"Start timestamp of the version record",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "subjectId":{
                                "type":"string",
                                "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "siteId":{
                                "type":"string",
                                "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ABCDEF1234567890ABCDEF1234567890"
                            },
                            "studyVersion":{
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"String representing the version of the study. Helps track changes in form or study design.",
                                "example":"3.0.0.1"
                            },
                            "visitStatus":{
                                "type":"string",
                                "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                                "example":"COMPLETE"
                            },
                            "reason":{
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason associated with the visit status",
                                "example":"Subject completed the visit successfully"
                            },
                            "comment":{
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment for the visit status",
                                "example":"All data verified"
                            },
                            "visitStartDate":{
                                "type":"string",
                                "description":"Visit start date timestamp",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitType":{
                                "type":"string",
                                "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                                "example":"SCREENING"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                                "example":"Visit_Not_Started"
                            },
                            "eventInstanceNum":{
                                "type":"integer",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "signedStatus":{
                                "type":"string",
                                "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                                "example":"SIGNED"
                            },
                            "verifiedStatus":{
                                "type":"string",
                                "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                                "example":"VERIFIED"
                            },
                            "freezedStatus":{
                                "type":"string",
                                "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                                "example":"FROZEN"
                            },
                            "repeatingFormCount":{
                                "type":"number",
                                "description":"Number of repeating form instances for the visit.",
                                "example":2
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Scheduled window start date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Scheduled window end date for the visit",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "associatedStudyVersion":{
                                "type":"string",
                                "description":"Study version with which the visit status is associated",
                                "example":"3.0.0.1"
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            },
                            "lockedStatus":{
                                "type":"string",
                                "description":"Locked status of the visit. Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "visitStartDateLockedStatus":{
                                "type":"string",
                                "description":"Locked status for the visit start date.Can have values LOCKED,UNLOCKED or NEVER_LOCKED",
                                "example":"UNLOCKED"
                            },
                            "lockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitStartDateLockedDateTime":{
                                "type":"string",
                                "description":"Timestamp when the visit start date was locked",
                                "format":"date-time",
                                "example":"2025-10-16T14:30:31.892Z"
                            },
                            "visitWindowWarning":{
                                "type":"string",
                                "description":"Warning for the visit scheduling window",
                                "example":"NONE"
                            },
                            "doseHoldAction":{
                                "type":"string",
                                "description":"Dose hold action for the visit. The acceptable values are ENABLE or DISABLE",
                                "example":"ENABLE"
                            },
                            "unResolvedQueries":{
                                "type":"integer",
                                "description":"Number of unresolved queries associated with this visit",
                                "format":"int32",
                                "example":0
                            }
                        },
                        "description":"List of visit statuses, including query counts, lock status, windowing, and other state."
                    },
                    "scheduledVisits":{
                        "type":"object",
                        "properties":{
                            "eventId":{
                                "type":"string",
                                "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                                "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                            },
                            "title":{
                                "type":"string",
                                "description":"Display title for the visit",
                                "example":"Baseline"
                            },
                            "scheduledWindowStartDate":{
                                "type":"string",
                                "description":"Window start date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-10T14:30:31.892Z"
                            },
                            "scheduledDate":{
                                "type":"string",
                                "description":"Scheduled date for the visit",
                                "format":"date-time",
                                "example":"2025-10-12T14:30:31.892Z"
                            },
                            "scheduledWindowEndDate":{
                                "type":"string",
                                "description":"Window end date for scheduling the visit",
                                "format":"date-time",
                                "example":"2025-10-20T14:30:31.892Z"
                            },
                            "eventInstanceNum":{
                                "type":"number",
                                "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                                "format":"int32",
                                "example":1
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"Cycle count for the visit",
                                "format":"int32",
                                "example":1
                            },
                            "visitAction":{
                                "type":"string",
                                "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                                "example":"SCREEN_ENABLE"
                            }
                        },
                        "description":"Scheduled visit details including scheduling windows and action to be taken"
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Current subject state with study version string.",
                        "example":"5.0.1.2"
                    }
                },
                "description":"Response DTO detailing a subject's visit schedule, current study version state, visits (with status and windowing info), and scheduled visit actions."
            },
            "VisitsStatusRuleTargetsDto9":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "targets":{
                        "type":"array",
                        "description":"List of rule targets affected by this operation",
                        "example":[
                            "DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of rule targets affected by this operation",
                            "example":"[\"DDEEFF00112233445566778899AABBCC.1DEEFF00112233445566778899AABBCC\"]"
                        }
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitAction":{
                        "type":"string",
                        "description":"Action taken on the visit start date value. Acceptable values are SCREEN_ENABLE ,SCREEN_DISABLE ,RANDOMIZE_ENABLE ,RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE, COMPLETE_STUDY_DISABLE.",
                        "example":"SCREEN_ENABLE"
                    },
                    "visitStartDateLockedStatus":{
                        "type":"string",
                        "description":"Action performed on visit start date LOCKED, UNLOCKED, NEVER_LOCKED."
                    },
                    "visitStartDateLockedDateTime":{
                        "type":"string",
                        "description":"Timestamp when the visit start date was locked",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Warning for the visit scheduling window",
                        "example":"NONE"
                    }
                },
                "description":"Visit status update response including visit window warning, visit start date lock details, and rule targets"
            },
            "VisitsStatusDto50":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "visitWindowWarning":{
                        "type":"string",
                        "description":"Warning for the visit scheduling window",
                        "example":"NONE"
                    }
                },
                "description":"Visit status including event instance number (v4) and visit window warning"
            },
            "StudyDtoV6":{
                "title":"StudyDto v6.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number",
                        "example":"CRN-1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description",
                        "example":"A randomized double blind placebo controlled study."
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id",
                        "example":"KIT-001"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number",
                        "example":"SOW-2026-100"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id",
                        "example":"SPONSOR-001"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32",
                        "example":473
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups",
                        "example":false
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups",
                        "example":false
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups",
                        "example":false
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "example":"design",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "example":"active",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "description":"Last modified timestamp",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "description":"System Code List GUID",
                        "format":"uuid"
                    },
                    "companies":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "companyLabels":{
                        "type":"array",
                        "description":"Company labels associated with the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Company labels associated with the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "safetyCase":{
                        "type":"integer",
                        "description":"Safety case",
                        "format":"int32",
                        "example":1
                    },
                    "narrativeSettings":{
                        "type":"string",
                        "description":"Narrative settings",
                        "example":"Send Full Narrative (Editable)"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "StudyDtoV5":{
                "title":"StudyDto v5.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number",
                        "example":"CRN-1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description",
                        "example":"A randomized double blind placebo controlled study."
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id",
                        "example":"KIT-001"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number",
                        "example":"SOW-2026-100"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id",
                        "example":"SPONSOR-001"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32",
                        "example":473
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups",
                        "example":false
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups",
                        "example":false
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups",
                        "example":false
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "example":"design",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "example":"active",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "description":"Last modified timestamp",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "description":"System Code List GUID",
                        "format":"uuid"
                    },
                    "companies":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "companyLabels":{
                        "type":"array",
                        "description":"Company labels associated with the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Company labels associated with the study",
                            "example":"ABC Pharma"
                        }
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "StudyDtoV7":{
                "title":"StudyDto v7.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number",
                        "example":"CRN-1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description",
                        "example":"A randomized double blind placebo controlled study."
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id",
                        "example":"KIT-001"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number",
                        "example":"SOW-2026-100"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id",
                        "example":"SPONSOR-001"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32",
                        "example":473
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups",
                        "example":false
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups",
                        "example":false
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups",
                        "example":false
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "example":"design",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "example":"active",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "description":"Last modified timestamp",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "description":"System Code List GUID",
                        "format":"uuid"
                    },
                    "companies":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "companyLabels":{
                        "type":"array",
                        "description":"Company labels associated with the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Company labels associated with the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "safetyCase":{
                        "type":"integer",
                        "description":"Safety case",
                        "format":"int32",
                        "example":1
                    },
                    "narrativeSettings":{
                        "type":"string",
                        "description":"Narrative settings",
                        "example":"Send Full Narrative (Editable)"
                    },
                    "safetyIntegration":{
                        "type":"boolean",
                        "description":"Safety Integration",
                        "example":true
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "CountryDto":{
                "title":"CountryDto v1.0",
                "required":[
                    "id",
                    "isoCode",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this country version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "isoCode":{
                        "title":"ISO Code",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Alpha-2 ISO code identifying the country.",
                        "example":"US"
                    },
                    "name":{
                        "title":"Country Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Official country name.",
                        "example":"United States"
                    }
                },
                "description":"Country details returned by the SDF APIs.",
                "example":[
                    {
                        "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                        "versionStart":"2025-03-16T12:00:00.000Z",
                        "isoCode":"US",
                        "name":"United States"
                    }
                ]
            },
            "SDFCountriesResponse":{
                "type":"object",
                "properties":{
                    "sdfCountriesList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFCountryDto"
                        }
                    }
                }
            },
            "SDFCountryDto":{
                "required":[
                    "countryId",
                    "primarySupply",
                    "sdfId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "countryId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "stateId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "primarySupply":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "example":"sample"
                    },
                    "associationOperationType":{
                        "type":"string",
                        "writeOnly":true
                    }
                },
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "SDFResponse":{
                "title":"SDFResponse",
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Status of the response, either 'success' or an error indication.",
                        "example":"success"
                    },
                    "result":{
                        "type":"object",
                        "description":"The result object for successful requests. Type depends on the API operation.",
                        "example":{
                            "hasMore":"true",
                            "totalResults":5,
                            "count":5,
                            "data":[
                            ]
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                },
                "description":"Wrapper for service responses containing result or error data."
            },
            "SDFCountriesRequest":{
                "type":"object",
                "properties":{
                    "sdfCountriesList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFCountryDto"
                        }
                    }
                }
            },
            "Countries":{
                "title":"Country",
                "required":[
                    "id",
                    "isoCode",
                    "isoCode3",
                    "name",
                    "versionStart"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the latest change made to this record.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional user comment about the latest change.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Country Id",
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Unique country identifier.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start timestamp.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "isoCode":{
                        "title":"ISO Code",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"ISO alpha-2 country code.",
                        "example":"US"
                    },
                    "name":{
                        "title":"Country Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Country display name.",
                        "example":"United States"
                    },
                    "isoCode3":{
                        "title":"ISO Code3",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"ISO alpha-3 country code.",
                        "example":"USA"
                    }
                },
                "description":"Country entity metadata."
            },
            "StateDto":{
                "title":"StateDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"State ID",
                        "type":"string",
                        "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this state version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "code":{
                        "title":"State Code",
                        "type":"string",
                        "description":"ISO code identifying the state.",
                        "example":"CA"
                    },
                    "name":{
                        "title":"State Name",
                        "type":"string",
                        "description":"Official state name.",
                        "example":"California"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason metadata for the state.",
                        "example":"Legacy mapping"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Additional comment for the state.",
                        "example":"Population threshold 1000000"
                    }
                },
                "description":"State metadata returned by the Countries APIs.",
                "example":[
                    {
                        "id":"9F2504E04F8911D39A0C0305E82C3301",
                        "versionStart":"2025-03-16T12:00:00.000Z",
                        "code":"CA",
                        "name":"California",
                        "reason":"Legacy mapping",
                        "comment":"Population threshold 1000000"
                    }
                ]
            },
            "StatesResponse":{
                "title":"StatesResponse v1.0",
                "type":"object",
                "properties":{
                    "states":{
                        "title":"StateDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this state version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "code":{
                                "title":"State Code",
                                "type":"string",
                                "description":"ISO code identifying the state.",
                                "example":"CA"
                            },
                            "name":{
                                "title":"State Name",
                                "type":"string",
                                "description":"Official state name.",
                                "example":"California"
                            },
                            "reason":{
                                "title":"Reason",
                                "type":"string",
                                "description":"Reason metadata for the state.",
                                "example":"Legacy mapping"
                            },
                            "comment":{
                                "title":"Comment",
                                "type":"string",
                                "description":"Additional comment for the state.",
                                "example":"Population threshold 1000000"
                            }
                        },
                        "description":"State metadata returned by the Countries APIs.",
                        "example":[
                            {
                                "id":"9F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "code":"CA",
                                "name":"California",
                                "reason":"Legacy mapping",
                                "comment":"Population threshold 1000000"
                            }
                        ]
                    }
                },
                "description":"Response wrapping the state list."
            },
            "SDFCountriesAndStatesResponse":{
                "title":"SDFCountriesAndStatesResponse v1.0",
                "type":"object",
                "properties":{
                    "sdfCountriesAndStatesList":{
                        "title":"SDFCountryAndStateDto v1.0",
                        "required":[
                            "countryId",
                            "primarySupply",
                            "sdfId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Country ID",
                                "type":"string",
                                "description":"Unique identifier for the SDF-country association (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this association version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique identifier of the country linked to the SDF (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Unique SDF identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "primarySupply":{
                                "title":"Primary Supply",
                                "maxLength":10,
                                "minLength":0,
                                "type":"string",
                                "description":"Primary supply type for the SDF-country association.",
                                "example":"PRIMARY"
                            },
                            "stateId":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Optional state identifier linked to the SDF association.",
                                "format":"uuid"
                            }
                        },
                        "description":"SDF-country association extended with an optional state.",
                        "example":[
                            {
                                "id":"3F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "stateId":"9F2504E04F8911D39A0C0305E82C3301",
                                "sdfId":"9C10C9F402C44BD6A7CFC7F4F1A6EED8",
                                "primarySupply":"PRIMARY"
                            }
                        ]
                    },
                    "countries":{
                        "title":"CountryDto v1.0",
                        "required":[
                            "id",
                            "isoCode",
                            "name"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this country version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "isoCode":{
                                "title":"ISO Code",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-2 ISO code identifying the country.",
                                "example":"US"
                            },
                            "name":{
                                "title":"Country Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official country name.",
                                "example":"United States"
                            }
                        },
                        "description":"Country details returned by the SDF APIs.",
                        "example":[
                            {
                                "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "isoCode":"US",
                                "name":"United States"
                            }
                        ]
                    }
                },
                "description":"Response containing SDF country/state associations."
            },
            "SDFCountryAndStateDto":{
                "title":"SDFCountryAndStateDto v1.0",
                "required":[
                    "countryId",
                    "primarySupply",
                    "sdfId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"SDF Country ID",
                        "type":"string",
                        "description":"Unique identifier for the SDF-country association (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this association version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "countryId":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Unique identifier of the country linked to the SDF (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "sdfId":{
                        "title":"SDF ID",
                        "type":"string",
                        "description":"Unique SDF identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "primarySupply":{
                        "title":"Primary Supply",
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Primary supply type for the SDF-country association.",
                        "example":"PRIMARY"
                    },
                    "stateId":{
                        "title":"State ID",
                        "type":"string",
                        "description":"Optional state identifier linked to the SDF association.",
                        "format":"uuid"
                    }
                },
                "description":"SDF-country association extended with an optional state.",
                "example":[
                    {
                        "countryId":"B1B8327AFAA6412287106192AB5984EF",
                        "stateId":"B1B8327AFAA6412287106192AB5984EF",
                        "sdfId":"B1B8327AFAA6412287106192AB5984EF"
                    }
                ]
            },
            "SDFCountriesAndStatesRequest":{
                "title":"SDFCountriesAndStatesRequest v1.0",
                "type":"object",
                "properties":{
                    "sdfCountriesAndStatesList":{
                        "type":"array",
                        "example":[
                            {
                                "countryId":"B1B8327AFAA6412287106192AB5984EF",
                                "stateId":"B1B8327AFAA6412287106192AB5984EF",
                                "sdfId":"B1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFCountryAndStateDto"
                        }
                    },
                    "sdfCountriesAnStatesList":{
                        "type":"array",
                        "example":[
                            {
                                "countryId":"B1B8327AFAA6412287106192AB5984EF",
                                "stateId":"B1B8327AFAA6412287106192AB5984EF",
                                "sdfId":"B1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFCountryAndStateDto"
                        }
                    }
                },
                "description":"Payload containing SDF associations that include states."
            },
            "CountriesResponse2":{
                "title":"CountriesResponse v2.0",
                "type":"object",
                "properties":{
                    "countries":{
                        "title":"CountryDto2 v2.0",
                        "required":[
                            "id",
                            "isoCode",
                            "isoCode3",
                            "name"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this country version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "isoCode":{
                                "title":"ISO Code",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-2 ISO code identifying the country.",
                                "example":"US"
                            },
                            "name":{
                                "title":"Country Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official country name.",
                                "example":"United States"
                            },
                            "isoCode3":{
                                "title":"ISO Code 3",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-3 ISO code identifying the country.",
                                "example":"USA"
                            }
                        },
                        "description":"Country metadata for ISO3-enabled APIs.",
                        "example":[
                            {
                                "id":"3F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "isoCode":"US",
                                "name":"United States",
                                "isoCode3":"USA"
                            }
                        ]
                    }
                },
                "description":"Response wrapping the ISO3-based country list."
            },
            "CountryDto2":{
                "title":"CountryDto2 v2.0",
                "required":[
                    "id",
                    "isoCode",
                    "isoCode3",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this country version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "isoCode":{
                        "title":"ISO Code",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Alpha-2 ISO code identifying the country.",
                        "example":"US"
                    },
                    "name":{
                        "title":"Country Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Official country name.",
                        "example":"United States"
                    },
                    "isoCode3":{
                        "title":"ISO Code 3",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Alpha-3 ISO code identifying the country.",
                        "example":"USA"
                    }
                },
                "description":"Country metadata for ISO3-enabled APIs.",
                "example":[
                    {
                        "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                        "versionStart":"2025-03-16T12:00:00.000Z",
                        "isoCode":"US",
                        "name":"United States",
                        "isoCode3":"USA"
                    }
                ]
            },
            "StateDto2":{
                "title":"StateDto2 v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"State ID",
                        "type":"string",
                        "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this state version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "code":{
                        "title":"State Code",
                        "type":"string",
                        "description":"ISO code identifying the state.",
                        "example":"CA"
                    },
                    "name":{
                        "title":"State Name",
                        "type":"string",
                        "description":"Official state name.",
                        "example":"California"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason metadata for the state.",
                        "example":"Legacy mapping"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Additional comment for the state.",
                        "example":"Population threshold 1000000"
                    },
                    "hidden":{
                        "title":"Hidden",
                        "type":"boolean",
                        "description":"Indicates whether the state is hidden from derived lists.",
                        "example":true
                    }
                },
                "description":"State metadata that includes the hidden flag.",
                "example":[
                    {
                        "id":"9F2504E04F8911D39A0C0305E82C3301",
                        "versionStart":"2025-03-16T12:00:00.000Z",
                        "code":"CA",
                        "name":"California",
                        "reason":"Legacy mapping",
                        "comment":"Population threshold 1000000",
                        "hidden":false
                    }
                ]
            },
            "StatesResponse2":{
                "title":"StatesResponse v1.0",
                "type":"object",
                "properties":{
                    "states":{
                        "title":"StateDto2 v2.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this state version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "code":{
                                "title":"State Code",
                                "type":"string",
                                "description":"ISO code identifying the state.",
                                "example":"CA"
                            },
                            "name":{
                                "title":"State Name",
                                "type":"string",
                                "description":"Official state name.",
                                "example":"California"
                            },
                            "reason":{
                                "title":"Reason",
                                "type":"string",
                                "description":"Reason metadata for the state.",
                                "example":"Legacy mapping"
                            },
                            "comment":{
                                "title":"Comment",
                                "type":"string",
                                "description":"Additional comment for the state.",
                                "example":"Population threshold 1000000"
                            },
                            "hidden":{
                                "title":"Hidden",
                                "type":"boolean",
                                "description":"Indicates whether the state is hidden from derived lists.",
                                "example":true
                            }
                        },
                        "description":"State metadata that includes the hidden flag.",
                        "example":[
                            {
                                "id":"9F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "code":"CA",
                                "name":"California",
                                "reason":"Legacy mapping",
                                "comment":"Population threshold 1000000",
                                "hidden":false
                            }
                        ]
                    }
                },
                "description":"Response wrapping the state list."
            },
            "SDFCountriesResponse2":{
                "title":"SDFCountriesResponse v2.0",
                "type":"object",
                "properties":{
                    "sdfCountriesList":{
                        "title":"SDFCountryDto v1.0",
                        "required":[
                            "countryId",
                            "primarySupply",
                            "sdfId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Country ID",
                                "type":"string",
                                "description":"Unique identifier for the SDF-country association (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this association version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique identifier of the country linked to the SDF (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Unique SDF identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "primarySupply":{
                                "title":"Primary Supply",
                                "maxLength":10,
                                "minLength":0,
                                "type":"string",
                                "description":"Primary supply type for the SDF-country association.",
                                "example":"PRIMARY"
                            }
                        },
                        "description":"SDF-country association details returned by the APIs.",
                        "example":[
                            {
                                "id":"3F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "sdfId":"9C10C9F402C44BD6A7CFC7F4F1A6EED8",
                                "primarySupply":"PRIMARY"
                            }
                        ]
                    },
                    "countries":{
                        "title":"CountryDto2 v2.0",
                        "required":[
                            "id",
                            "isoCode",
                            "isoCode3",
                            "name"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this country version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "isoCode":{
                                "title":"ISO Code",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-2 ISO code identifying the country.",
                                "example":"US"
                            },
                            "name":{
                                "title":"Country Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official country name.",
                                "example":"United States"
                            },
                            "isoCode3":{
                                "title":"ISO Code 3",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-3 ISO code identifying the country.",
                                "example":"USA"
                            }
                        },
                        "description":"Country metadata for ISO3-enabled APIs.",
                        "example":[
                            {
                                "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "isoCode":"US",
                                "name":"United States",
                                "isoCode3":"USA"
                            }
                        ]
                    }
                },
                "description":"Response containing ISO3-based country/SDF associations."
            },
            "CountriesResponse4":{
                "title":"CountriesResponse v4.0",
                "type":"object",
                "properties":{
                    "countriesStates":{
                        "title":"CountryStatesDto v4.0",
                        "required":[
                            "id",
                            "isoCode",
                            "isoCode3",
                            "name"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this country version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "isoCode":{
                                "title":"ISO Code",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-2 ISO code identifying the country.",
                                "example":"US"
                            },
                            "name":{
                                "title":"Country Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official country name.",
                                "example":"United States"
                            },
                            "isoCode3":{
                                "title":"ISO Code 3",
                                "maxLength":10,
                                "minLength":1,
                                "type":"string",
                                "description":"Alpha-3 ISO code identifying the country.",
                                "example":"USA"
                            },
                            "hidden":{
                                "title":"Hidden",
                                "type":"boolean",
                                "description":"Indicates whether the country is hidden from derived lists.",
                                "example":true
                            },
                            "states":{
                                "title":"StateDto2 v2.0",
                                "type":"object",
                                "properties":{
                                    "id":{
                                        "title":"State ID",
                                        "type":"string",
                                        "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                                        "format":"uuid"
                                    },
                                    "versionStart":{
                                        "title":"Version Start",
                                        "type":"string",
                                        "description":"Timestamp when this state version was created.",
                                        "format":"date-time",
                                        "example":"2025-03-16T12:00:00Z"
                                    },
                                    "code":{
                                        "title":"State Code",
                                        "type":"string",
                                        "description":"ISO code identifying the state.",
                                        "example":"CA"
                                    },
                                    "name":{
                                        "title":"State Name",
                                        "type":"string",
                                        "description":"Official state name.",
                                        "example":"California"
                                    },
                                    "reason":{
                                        "title":"Reason",
                                        "type":"string",
                                        "description":"Reason metadata for the state.",
                                        "example":"Legacy mapping"
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "type":"string",
                                        "description":"Additional comment for the state.",
                                        "example":"Population threshold 1000000"
                                    },
                                    "hidden":{
                                        "title":"Hidden",
                                        "type":"boolean",
                                        "description":"Indicates whether the state is hidden from derived lists.",
                                        "example":true
                                    }
                                },
                                "description":"State metadata that includes the hidden flag.",
                                "example":[
                                    {
                                        "id":"9F2504E04F8911D39A0C0305E82C3301",
                                        "versionStart":"2025-03-16T12:00:00.000Z",
                                        "code":"CA",
                                        "name":"California",
                                        "reason":"Legacy mapping",
                                        "comment":"Population threshold 1000000",
                                        "hidden":false
                                    }
                                ]
                            }
                        },
                        "description":"Country metadata plus hidden state metadata for v4 APIs.",
                        "example":[
                            {
                                "id":"3F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "isoCode":"US",
                                "name":"United States",
                                "isoCode3":"USA",
                                "hidden":false,
                                "states":[
                                    {
                                        "id":"9F2504E04F8911D39A0C0305E82C3301",
                                        "versionStart":"2025-03-16T12:00:00.000Z",
                                        "code":"CA",
                                        "name":"California",
                                        "reason":"Legacy mapping",
                                        "comment":"Population threshold 1000000",
                                        "hidden":false
                                    }
                                ]
                            }
                        ]
                    }
                },
                "description":"Response wrapping the v4 country list with hidden state metadata."
            },
            "CountryStatesDto2":{
                "title":"CountryStatesDto v4.0",
                "required":[
                    "id",
                    "isoCode",
                    "isoCode3",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Unique country identifier (UUID, 32-character uppercase hexadecimal string).",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this country version was created.",
                        "format":"date-time",
                        "example":"2025-03-16T12:00:00Z"
                    },
                    "isoCode":{
                        "title":"ISO Code",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Alpha-2 ISO code identifying the country.",
                        "example":"US"
                    },
                    "name":{
                        "title":"Country Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Official country name.",
                        "example":"United States"
                    },
                    "isoCode3":{
                        "title":"ISO Code 3",
                        "maxLength":10,
                        "minLength":1,
                        "type":"string",
                        "description":"Alpha-3 ISO code identifying the country.",
                        "example":"USA"
                    },
                    "hidden":{
                        "title":"Hidden",
                        "type":"boolean",
                        "description":"Indicates whether the country is hidden from derived lists.",
                        "example":true
                    },
                    "states":{
                        "title":"StateDto2 v2.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Unique state identifier (UUID, 32-character uppercase hexadecimal string).",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this state version was created.",
                                "format":"date-time",
                                "example":"2025-03-16T12:00:00Z"
                            },
                            "code":{
                                "title":"State Code",
                                "type":"string",
                                "description":"ISO code identifying the state.",
                                "example":"CA"
                            },
                            "name":{
                                "title":"State Name",
                                "type":"string",
                                "description":"Official state name.",
                                "example":"California"
                            },
                            "reason":{
                                "title":"Reason",
                                "type":"string",
                                "description":"Reason metadata for the state.",
                                "example":"Legacy mapping"
                            },
                            "comment":{
                                "title":"Comment",
                                "type":"string",
                                "description":"Additional comment for the state.",
                                "example":"Population threshold 1000000"
                            },
                            "hidden":{
                                "title":"Hidden",
                                "type":"boolean",
                                "description":"Indicates whether the state is hidden from derived lists.",
                                "example":true
                            }
                        },
                        "description":"State metadata that includes the hidden flag.",
                        "example":[
                            {
                                "id":"9F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "code":"CA",
                                "name":"California",
                                "reason":"Legacy mapping",
                                "comment":"Population threshold 1000000",
                                "hidden":false
                            }
                        ]
                    }
                },
                "description":"Country metadata plus hidden state metadata for v4 APIs.",
                "example":[
                    {
                        "id":"3F2504E04F8911D39A0C0305E82C3301",
                        "versionStart":"2025-03-16T12:00:00.000Z",
                        "isoCode":"US",
                        "name":"United States",
                        "isoCode3":"USA",
                        "hidden":false,
                        "states":[
                            {
                                "id":"9F2504E04F8911D39A0C0305E82C3301",
                                "versionStart":"2025-03-16T12:00:00.000Z",
                                "code":"CA",
                                "name":"California",
                                "reason":"Legacy mapping",
                                "comment":"Population threshold 1000000",
                                "hidden":false
                            }
                        ]
                    }
                ]
            },
            "SDFsPaginatedResponseV2":{
                "title":"SDFsPaginatedResponse v2.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"boolean",
                        "description":"Flag indicating whether more pages of data are available.",
                        "example":true
                    },
                    "totalResults":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"integer",
                        "description":"Total number of rows matching the paginated request.",
                        "format":"int32",
                        "example":250
                    },
                    "count":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"integer",
                        "description":"Number of rows returned in this page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"integer",
                        "description":"Maximum number of entries requested per page.",
                        "format":"int32",
                        "example":100
                    },
                    "offset":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"integer",
                        "description":"Pagination offset used to compute the returned subset.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "title":"SDFsPaginatedResponse v2.0",
                        "type":"object",
                        "description":"Payload of the paginated response.",
                        "example":{
                        }
                    }
                },
                "description":"Paginated response wrapper used by CTMS/SDF endpoints."
            },
            "Contacts":{
                "required":[
                    "contactType",
                    "firstName",
                    "lastName",
                    "status",
                    "studyAgnostic",
                    "studyId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the latest change made to this record.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional user comment about the latest change.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp when this version became active.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "firstName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents first name for this record.",
                        "example":"Sample Name"
                    },
                    "lastName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents last name for this record.",
                        "example":"Sample Name"
                    },
                    "middleName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents middle name for this record.",
                        "example":"Sample Name"
                    },
                    "suffix":{
                        "type":"string",
                        "description":"Represents suffix for this record.",
                        "format":"uuid"
                    },
                    "prefix":{
                        "type":"string",
                        "description":"Represents prefix for this record.",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"Represents status for this record.",
                        "format":"uuid"
                    },
                    "degree":{
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents degree for this record.",
                        "example":"Sample Value"
                    },
                    "contactId":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents contact id for this record.",
                        "example":"SITE-001"
                    },
                    "timezone":{
                        "type":"string",
                        "description":"Represents timezone for this record.",
                        "example":"UTC"
                    },
                    "taxId":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents tax id for this record.",
                        "example":"Sample Value"
                    },
                    "primarySpecialityId":{
                        "type":"string",
                        "description":"Represents primary speciality id for this record.",
                        "format":"uuid"
                    },
                    "disbarmentStart":{
                        "type":"string",
                        "description":"Represents disbarment start for this record.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "disbarmentEnd":{
                        "type":"string",
                        "description":"Represents disbarment end for this record.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "contactType":{
                        "type":"string",
                        "description":"Represents contact type for this record.",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Identifier of the related study.",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    "studyAgnostic":{
                        "type":"string",
                        "description":"Represents study agnostic for this record.",
                        "example":"N"
                    },
                    "suffixCodeValue":{
                        "type":"string",
                        "description":"Represents suffix code value for this record.",
                        "example":"Sample Value"
                    },
                    "prefixCodeValue":{
                        "type":"string",
                        "description":"Represents prefix code value for this record.",
                        "example":"Sample Value"
                    },
                    "statusCodeValue":{
                        "type":"string",
                        "description":"Display value for the status code.",
                        "example":"ACTIVE"
                    }
                }
            },
            "ContactDto":{
                "title":"ContactDto",
                "required":[
                    "firstName",
                    "lastName"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "firstName":{
                        "title":"First Name",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Contact first name.",
                        "example":"John"
                    },
                    "lastName":{
                        "title":"Last Name",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Contact last name.",
                        "example":"Doe"
                    },
                    "middleName":{
                        "title":"Middle Name",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Contact middle name.",
                        "example":"Michael"
                    },
                    "suffix":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "suffixCodeValue":{
                        "title":"Suffix Code",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the suffix code.",
                        "example":"Jr."
                    },
                    "prefix":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "prefixCodeValue":{
                        "title":"Prefix Code",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the prefix code.",
                        "example":"Dr."
                    },
                    "status":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "statusCodeValue":{
                        "title":"Status Code",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the status.",
                        "example":"Active"
                    },
                    "degree":{
                        "title":"Degree",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Academic degree associated with the contact.",
                        "example":"MD"
                    },
                    "contactId":{
                        "title":"Contact Identifier",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Business identifier assigned to the contact.",
                        "example":"CONTACT-123"
                    },
                    "timezone":{
                        "title":"Timezone",
                        "type":"string",
                        "description":"Default timezone for the contact.",
                        "example":"UTC"
                    },
                    "taxId":{
                        "title":"Tax ID",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Tax identifier associated with the contact.",
                        "example":"TAX-123"
                    },
                    "primarySpecialityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "disbarmentStart":{
                        "title":"Disbarment Start",
                        "type":"string",
                        "description":"Timestamp when the contact was disbarred.",
                        "format":"date-time",
                        "example":"2024-01-15T00:00:00Z"
                    },
                    "disbarmentEnd":{
                        "title":"Disbarment End",
                        "type":"string",
                        "description":"Timestamp when the disbarment period ends.",
                        "format":"date-time",
                        "example":"2024-12-31T00:00:00Z"
                    },
                    "contactType":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Represents the contact entity details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "firstName":"John",
                    "lastName":"Doe"
                }
            },
            "ContactModelDto":{
                "title":"ContactModelDto",
                "required":[
                    "contact",
                    "contactAddressesDetails"
                ],
                "type":"object",
                "properties":{
                    "contact":{
                        "$ref":"#/components/schemas/ContactDto"
                    },
                    "properties":{
                        "title":"PROPERTY_DTO_TITLE",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "type":"string",
                                "description":"ENTITY_ID_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            },
                            "entityType":{
                                "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                "example":"INSTITUTION"
                            },
                            "propertyName":{
                                "title":"PROPERTY_DTO_NAME_TITLE",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_NAME_DESC",
                                "example":"LabId"
                            },
                            "propertyValue":{
                                "title":"PROPERTY_DTO_VALUE_TITLE",
                                "maxLength":500,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_VALUE_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            }
                        },
                        "description":"PROPERTY_DTO_DESC",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    },
                    "contactAddressesDetails":{
                        "title":"EntityAddressAssociationDto",
                        "required":[
                            "addressPostalcode"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Address Association ID",
                                "type":"string",
                                "description":"Unique identifier for the entity address association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "entityId":{
                                "title":"Entity ID",
                                "type":"string",
                                "description":"Identifier of the entity owning the address.",
                                "format":"uuid"
                            },
                            "mainPrimary":{
                                "title":"Main Primary Flag",
                                "type":"boolean",
                                "description":"Indicates if this is the main primary address.",
                                "example":true
                            },
                            "entityType":{
                                "title":"Entity Type",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of entity for the address.",
                                "example":"Contact"
                            },
                            "addressType":{
                                "title":"Address Type",
                                "type":"string",
                                "description":"Identifier for the address type.",
                                "format":"uuid"
                            },
                            "addressTypeCodeValue":{
                                "title":"Address Type Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the address type.",
                                "example":"Primary"
                            },
                            "country":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier for the country.",
                                "format":"uuid"
                            },
                            "countryCodeValue":{
                                "title":"Country Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the country code.",
                                "example":"USA"
                            },
                            "addressPostalcode":{
                                "title":"Postal Code",
                                "maxLength":20,
                                "minLength":0,
                                "type":"string",
                                "description":"Postal code for the address.",
                                "example":"80202"
                            },
                            "addressProperties":{
                                "title":"PROPERTY_DTO_TITLE",
                                "required":[
                                    "propertyName",
                                    "propertyValue"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "type":"string",
                                        "description":"ENTITY_ID_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    },
                                    "entityType":{
                                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INSTITUTION"
                                    },
                                    "propertyName":{
                                        "title":"PROPERTY_DTO_NAME_TITLE",
                                        "maxLength":100,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_NAME_DESC",
                                        "example":"LabId"
                                    },
                                    "propertyValue":{
                                        "title":"PROPERTY_DTO_VALUE_TITLE",
                                        "maxLength":500,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_VALUE_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    }
                                },
                                "description":"PROPERTY_DTO_DESC"
                            },
                            "addressStreet1":{
                                "type":"string"
                            },
                            "addressStreet2":{
                                "type":"string"
                            },
                            "addressCity":{
                                "type":"string"
                            },
                            "addressStateOrProvOrCounty":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "addressStateOrProvOrCountyCodeValue":{
                                "type":"string"
                            }
                        },
                        "description":"Represents an address linked to an entity.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    },
                    "modes":{
                        "title":"ModeDto",
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Mode ID",
                                "type":"string",
                                "description":"Unique identifier for the mode assignment.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "entityId":{
                                "title":"Entity ID",
                                "type":"string",
                                "description":"Identifier of the associated entity.",
                                "format":"uuid"
                            },
                            "entityType":{
                                "title":"Entity Type",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of entity tied to the mode.",
                                "example":"Contact"
                            },
                            "mode":{
                                "title":"Mode",
                                "type":"string",
                                "description":"Identifier of the mode.",
                                "format":"uuid"
                            },
                            "modeCodeValue":{
                                "title":"Mode Code Value",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the mode.",
                                "example":"Operational"
                            }
                        },
                        "description":"Represents a mode assignment for an entity.",
                        "example":[
                            "test"
                        ]
                    }
                },
                "description":"Payload describing a contact with addresses, properties, and modes."
            },
            "EntityAddressAssociationDto":{
                "title":"EntityAddressAssociationDto",
                "required":[
                    "addressPostalcode"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Address Association ID",
                        "type":"string",
                        "description":"Unique identifier for the entity address association.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "entityId":{
                        "title":"Entity ID",
                        "type":"string",
                        "description":"Identifier of the entity owning the address.",
                        "format":"uuid"
                    },
                    "mainPrimary":{
                        "title":"Main Primary Flag",
                        "type":"boolean",
                        "description":"Indicates if this is the main primary address.",
                        "example":true
                    },
                    "entityType":{
                        "title":"Entity Type",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Type of entity for the address.",
                        "example":"Contact"
                    },
                    "addressType":{
                        "title":"Address Type",
                        "type":"string",
                        "description":"Identifier for the address type.",
                        "format":"uuid"
                    },
                    "addressTypeCodeValue":{
                        "title":"Address Type Code",
                        "maxLength":150,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the address type.",
                        "example":"Primary"
                    },
                    "country":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Identifier for the country.",
                        "format":"uuid"
                    },
                    "countryCodeValue":{
                        "title":"Country Code",
                        "maxLength":150,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the country code.",
                        "example":"USA"
                    },
                    "addressPostalcode":{
                        "title":"Postal Code",
                        "maxLength":20,
                        "minLength":0,
                        "type":"string",
                        "description":"Postal code for the address.",
                        "example":"80202"
                    },
                    "addressProperties":{
                        "title":"PROPERTY_DTO_TITLE",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "type":"string",
                                "description":"ENTITY_ID_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            },
                            "entityType":{
                                "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                "example":"INSTITUTION"
                            },
                            "propertyName":{
                                "title":"PROPERTY_DTO_NAME_TITLE",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_NAME_DESC",
                                "example":"LabId"
                            },
                            "propertyValue":{
                                "title":"PROPERTY_DTO_VALUE_TITLE",
                                "maxLength":500,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_VALUE_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            }
                        },
                        "description":"PROPERTY_DTO_DESC"
                    },
                    "addressStreet1":{
                        "type":"string"
                    },
                    "addressStreet2":{
                        "type":"string"
                    },
                    "addressCity":{
                        "type":"string"
                    },
                    "addressStateOrProvOrCounty":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressStateOrProvOrCountyCodeValue":{
                        "type":"string"
                    }
                },
                "description":"Represents an address linked to an entity.",
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "ModeDto":{
                "title":"ModeDto",
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Mode ID",
                        "type":"string",
                        "description":"Unique identifier for the mode assignment.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "entityId":{
                        "title":"Entity ID",
                        "type":"string",
                        "description":"Identifier of the associated entity.",
                        "format":"uuid"
                    },
                    "entityType":{
                        "title":"Entity Type",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Type of entity tied to the mode.",
                        "example":"Contact"
                    },
                    "mode":{
                        "title":"Mode",
                        "type":"string",
                        "description":"Identifier of the mode.",
                        "format":"uuid"
                    },
                    "modeCodeValue":{
                        "title":"Mode Code Value",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Display value for the mode.",
                        "example":"Operational"
                    }
                },
                "description":"Represents a mode assignment for an entity.",
                "example":[
                    "test"
                ]
            },
            "PropertyDto":{
                "title":"PROPERTY_DTO_TITLE",
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "entityId":{
                        "type":"string",
                        "description":"ENTITY_ID_DESC",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "entityType":{
                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                        "example":"INSTITUTION"
                    },
                    "propertyName":{
                        "title":"PROPERTY_DTO_NAME_TITLE",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"PROPERTY_DTO_NAME_DESC",
                        "example":"LabId"
                    },
                    "propertyValue":{
                        "title":"PROPERTY_DTO_VALUE_TITLE",
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"PROPERTY_DTO_VALUE_DESC",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    }
                },
                "description":"PROPERTY_DTO_DESC",
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "ContactOrganizationDeleteReasonDto":{
                "title":"ContactOrganizationDeleteReasonDto",
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "reasonForDelete":{
                        "title":"ReasonForDelete",
                        "type":"string",
                        "description":"Reason explaining why the delete operation is requested.",
                        "example":"No longer active"
                    }
                },
                "description":"Request carrying the reason to delete an entity."
            },
            "ContactFieldsDto":{
                "title":"ContactFieldsDto",
                "type":"object",
                "properties":{
                    "contactFields":{
                        "title":"Field",
                        "type":"object",
                        "properties":{
                            "fieldName":{
                                "title":"Field Name",
                                "type":"string",
                                "description":"Field name. The acceptable values are: TENANTID, STUDYID, COUNTRY, SITEID, INVID, INVNAM, USUBJID, SCRNID, SUBJID, VISITNUM, VISIT, UNSCHED, SVSTDTC, DOMAIN, LAB ID, LAB NAME, REPEATNUMBER, SREPEATID, SREPEATNUMBER, ENTERED BY, ENTERED DATE, LAST CHANGED BY, LAST CHANGED DATE etc.",
                                "example":"TENANTID"
                            },
                            "fieldValue":{
                                "title":"Field Value",
                                "type":"string",
                                "description":"Value reported for the field.",
                                "example":"TENANT123"
                            },
                            "valueExists":{
                                "title":"Value Exists",
                                "type":"boolean",
                                "description":"Indicates whether the value already exists.",
                                "example":true
                            }
                        },
                        "description":"Contains field details.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"Payload containing the contact fields to validate."
            },
            "FacilityDto":{
                "title":"FACILITY_DTO_TITLE",
                "required":[
                    "entityId",
                    "entityType",
                    "facilityName"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "entityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "entityType":{
                        "title":"FACILITY_DTO_ENTITY_TYPE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"FACILITY_DTO_ENTITY_TYPE_DESC",
                        "example":"FACILITY"
                    },
                    "facilityName":{
                        "title":"FACILITY_DTO_NAME_TITLE",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"FACILITY_DTO_NAME_DESC",
                        "example":"Acme Research Facility"
                    }
                },
                "description":"FACILITY_DTO_DESC"
            },
            "FacilityModelResponse":{
                "title":"FACILITY_MODEL_RESPONSE_TITLE",
                "type":"object",
                "properties":{
                    "facilityDto":{
                        "$ref":"#/components/schemas/FacilityDto"
                    },
                    "properties":{
                        "title":"PROPERTY_DTO_TITLE",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "type":"string",
                                "description":"ENTITY_ID_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            },
                            "entityType":{
                                "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                "example":"INSTITUTION"
                            },
                            "propertyName":{
                                "title":"PROPERTY_DTO_NAME_TITLE",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_NAME_DESC",
                                "example":"LabId"
                            },
                            "propertyValue":{
                                "title":"PROPERTY_DTO_VALUE_TITLE",
                                "maxLength":500,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_VALUE_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            }
                        },
                        "description":"PROPERTY_DTO_DESC"
                    }
                },
                "description":"FACILITY_MODEL_RESPONSE_DESC",
                "example":[
                    "test"
                ]
            },
            "FacilityModelResponseList":{
                "title":"FACILITY_MODEL_RESPONSE_LIST_TITLE",
                "type":"object",
                "properties":{
                    "facilityModels":{
                        "title":"FACILITY_MODEL_RESPONSE_TITLE",
                        "type":"object",
                        "properties":{
                            "facilityDto":{
                                "$ref":"#/components/schemas/FacilityDto"
                            },
                            "properties":{
                                "title":"PROPERTY_DTO_TITLE",
                                "required":[
                                    "propertyName",
                                    "propertyValue"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "type":"string",
                                        "description":"ENTITY_ID_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    },
                                    "entityType":{
                                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INSTITUTION"
                                    },
                                    "propertyName":{
                                        "title":"PROPERTY_DTO_NAME_TITLE",
                                        "maxLength":100,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_NAME_DESC",
                                        "example":"LabId"
                                    },
                                    "propertyValue":{
                                        "title":"PROPERTY_DTO_VALUE_TITLE",
                                        "maxLength":500,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_VALUE_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    }
                                },
                                "description":"PROPERTY_DTO_DESC"
                            }
                        },
                        "description":"FACILITY_MODEL_RESPONSE_DESC",
                        "example":[
                            "test"
                        ]
                    }
                },
                "description":"FACILITY_MODEL_RESPONSE_LIST_DESC"
            },
            "FacilityModelRequest":{
                "title":"FACILITY_MODEL_REQUEST_TITLE",
                "type":"object",
                "properties":{
                    "facilityDto":{
                        "$ref":"#/components/schemas/FacilityDto"
                    },
                    "properties":{
                        "title":"PROPERTY_DTO_TITLE",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "type":"string",
                                "description":"ENTITY_ID_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            },
                            "entityType":{
                                "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                "example":"INSTITUTION"
                            },
                            "propertyName":{
                                "title":"PROPERTY_DTO_NAME_TITLE",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_NAME_DESC",
                                "example":"LabId"
                            },
                            "propertyValue":{
                                "title":"PROPERTY_DTO_VALUE_TITLE",
                                "maxLength":500,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_VALUE_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            }
                        },
                        "description":"PROPERTY_DTO_DESC"
                    },
                    "entityOperationType":{
                        "title":"FACILITY_MODEL_REQUEST_OPERATION_TITLE",
                        "type":"string",
                        "description":"FACILITY_MODEL_REQUEST_OPERATION_DESC",
                        "example":"CREATE"
                    }
                },
                "description":"FACILITY_MODEL_REQUEST_DESC",
                "example":[
                    "test"
                ]
            },
            "FacilityModelRequestList":{
                "title":"FACILITY_MODEL_REQUEST_LIST_TITLE",
                "type":"object",
                "properties":{
                    "facilityModels":{
                        "title":"FACILITY_MODEL_REQUEST_TITLE",
                        "type":"object",
                        "properties":{
                            "facilityDto":{
                                "$ref":"#/components/schemas/FacilityDto"
                            },
                            "properties":{
                                "title":"PROPERTY_DTO_TITLE",
                                "required":[
                                    "propertyName",
                                    "propertyValue"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "type":"string",
                                        "description":"ENTITY_ID_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    },
                                    "entityType":{
                                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INSTITUTION"
                                    },
                                    "propertyName":{
                                        "title":"PROPERTY_DTO_NAME_TITLE",
                                        "maxLength":100,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_NAME_DESC",
                                        "example":"LabId"
                                    },
                                    "propertyValue":{
                                        "title":"PROPERTY_DTO_VALUE_TITLE",
                                        "maxLength":500,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_VALUE_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    }
                                },
                                "description":"PROPERTY_DTO_DESC"
                            },
                            "entityOperationType":{
                                "title":"FACILITY_MODEL_REQUEST_OPERATION_TITLE",
                                "type":"string",
                                "description":"FACILITY_MODEL_REQUEST_OPERATION_DESC",
                                "example":"CREATE"
                            }
                        },
                        "description":"FACILITY_MODEL_REQUEST_DESC",
                        "example":[
                            "test"
                        ]
                    }
                },
                "description":"FACILITY_MODEL_REQUEST_LIST_DESC"
            },
            "EntityManagementActionRequest":{
                "title":"ENTITY_MANAGEMENT_ACTION_REQUEST_TITLE",
                "required":[
                    "entityManagementActionRequest"
                ],
                "type":"object",
                "properties":{
                    "entityManagementActionRequest":{
                        "$ref":"#/components/schemas/EntityManagementActionRequestDto"
                    }
                },
                "description":"ENTITY_MANAGEMENT_ACTION_REQUEST_DESC"
            },
            "EntityManagementActionRequestDto":{
                "title":"ENTITY_MANAGEMENT_ACTION_REQUEST_DTO_TITLE",
                "required":[
                    "entityAction"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "entityAction":{
                        "title":"ENTITY_MANAGEMENT_ACTION_REQUEST_DTO_ACTION_TITLE",
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"ENTITY_MANAGEMENT_ACTION_REQUEST_DTO_ACTION_DESC",
                        "example":"TRANSFER"
                    },
                    "targetTenantEntityId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"ENTITY_MANAGEMENT_ACTION_REQUEST_DTO_DESC",
                "example":{
                    "targetTenantEntityId":"B1B8327AFAA6412287106192AB5984EF"
                }
            },
            "EntityManagementRequest":{
                "title":"ENTITY_MANAGEMENT_REQUEST_TITLE",
                "required":[
                    "entityManagementRequest"
                ],
                "type":"object",
                "properties":{
                    "entityManagementRequest":{
                        "title":"MANAGE_STUDY_ENTITY_DTO_TITLE",
                        "required":[
                            "studyId"
                        ],
                        "type":"object",
                        "properties":{
                            "studyId":{
                                "title":"MANAGE_STUDY_ENTITY_DTO_STUDY_ID_TITLE",
                                "type":"string",
                                "description":"MANAGE_STUDY_ENTITY_DTO_STUDY_ID_DESC",
                                "format":"uuid"
                            },
                            "studyEntities":{
                                "title":"MANAGE_ENTITY_DTO_TITLE",
                                "required":[
                                    "entityAction",
                                    "entityType"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "title":"MANAGE_ENTITY_DTO_ENTITY_ID_TITLE",
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_ENTITY_ID_DESC",
                                        "format":"uuid"
                                    },
                                    "entityName":{
                                        "title":"MANAGE_ENTITY_DTO_ENTITY_NAME_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_ENTITY_NAME_DESC",
                                        "example":"Acme Institution"
                                    },
                                    "entityType":{
                                        "title":"MANAGE_ENTITY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":25,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INVESTIGATOR"
                                    },
                                    "entityAction":{
                                        "title":"MANAGE_ENTITY_DTO_ENTITY_ACTION_TITLE",
                                        "maxLength":25,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_ENTITY_ACTION_DESC",
                                        "example":"TRANSFER"
                                    },
                                    "targetTenantEntityId":{
                                        "title":"MANAGE_ENTITY_DTO_TARGET_ID_TITLE",
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_TARGET_ID_DESC",
                                        "format":"uuid"
                                    },
                                    "modes":{
                                        "title":"MANAGE_ENTITY_DTO_MODES_TITLE",
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_MODES_DESC",
                                        "enum":[
                                            "TESTING",
                                            "PRODUCTION",
                                            "TRAINING",
                                            "STUDY_DESIGN"
                                        ]
                                    },
                                    "associationId":{
                                        "title":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_TITLE",
                                        "type":"string",
                                        "description":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_DESC",
                                        "format":"uuid"
                                    }
                                },
                                "description":"MANAGE_ENTITY_DTO_DESC"
                            }
                        },
                        "description":"MANAGE_STUDY_ENTITY_DTO_DESC",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"ENTITY_MANAGEMENT_REQUEST_DESC"
            },
            "ManageEntityDto":{
                "title":"MANAGE_ENTITY_DTO_TITLE",
                "required":[
                    "entityAction",
                    "entityType"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "entityId":{
                        "title":"MANAGE_ENTITY_DTO_ENTITY_ID_TITLE",
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_ENTITY_ID_DESC",
                        "format":"uuid"
                    },
                    "entityName":{
                        "title":"MANAGE_ENTITY_DTO_ENTITY_NAME_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_ENTITY_NAME_DESC",
                        "example":"Acme Institution"
                    },
                    "entityType":{
                        "title":"MANAGE_ENTITY_DTO_ENTITY_TYPE_TITLE",
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_ENTITY_TYPE_DESC",
                        "example":"INVESTIGATOR"
                    },
                    "entityAction":{
                        "title":"MANAGE_ENTITY_DTO_ENTITY_ACTION_TITLE",
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_ENTITY_ACTION_DESC",
                        "example":"TRANSFER"
                    },
                    "targetTenantEntityId":{
                        "title":"MANAGE_ENTITY_DTO_TARGET_ID_TITLE",
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_TARGET_ID_DESC",
                        "format":"uuid"
                    },
                    "modes":{
                        "title":"MANAGE_ENTITY_DTO_MODES_TITLE",
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_MODES_DESC",
                        "enum":[
                            "TESTING",
                            "PRODUCTION",
                            "TRAINING",
                            "STUDY_DESIGN"
                        ]
                    },
                    "associationId":{
                        "title":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_TITLE",
                        "type":"string",
                        "description":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_DESC",
                        "format":"uuid"
                    }
                },
                "description":"MANAGE_ENTITY_DTO_DESC"
            },
            "ManageStudyEntityDto":{
                "title":"MANAGE_STUDY_ENTITY_DTO_TITLE",
                "required":[
                    "studyId"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "title":"MANAGE_STUDY_ENTITY_DTO_STUDY_ID_TITLE",
                        "type":"string",
                        "description":"MANAGE_STUDY_ENTITY_DTO_STUDY_ID_DESC",
                        "format":"uuid"
                    },
                    "studyEntities":{
                        "title":"MANAGE_ENTITY_DTO_TITLE",
                        "required":[
                            "entityAction",
                            "entityType"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "title":"MANAGE_ENTITY_DTO_ENTITY_ID_TITLE",
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_ENTITY_ID_DESC",
                                "format":"uuid"
                            },
                            "entityName":{
                                "title":"MANAGE_ENTITY_DTO_ENTITY_NAME_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_ENTITY_NAME_DESC",
                                "example":"Acme Institution"
                            },
                            "entityType":{
                                "title":"MANAGE_ENTITY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":25,
                                "minLength":0,
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_ENTITY_TYPE_DESC",
                                "example":"INVESTIGATOR"
                            },
                            "entityAction":{
                                "title":"MANAGE_ENTITY_DTO_ENTITY_ACTION_TITLE",
                                "maxLength":25,
                                "minLength":0,
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_ENTITY_ACTION_DESC",
                                "example":"TRANSFER"
                            },
                            "targetTenantEntityId":{
                                "title":"MANAGE_ENTITY_DTO_TARGET_ID_TITLE",
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_TARGET_ID_DESC",
                                "format":"uuid"
                            },
                            "modes":{
                                "title":"MANAGE_ENTITY_DTO_MODES_TITLE",
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_MODES_DESC",
                                "enum":[
                                    "TESTING",
                                    "PRODUCTION",
                                    "TRAINING",
                                    "STUDY_DESIGN"
                                ]
                            },
                            "associationId":{
                                "title":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_TITLE",
                                "type":"string",
                                "description":"MANAGE_ENTITY_DTO_ASSOCIATION_ID_DESC",
                                "format":"uuid"
                            }
                        },
                        "description":"MANAGE_ENTITY_DTO_DESC"
                    }
                },
                "description":"MANAGE_STUDY_ENTITY_DTO_DESC",
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "OrganizationDto":{
                "title":"ORGANIZATION_DTO_TITLE",
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "name":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "example":"Sample Name"
                    },
                    "status":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "statusCodeValue":{
                        "title":"ORGANIZATION_DTO_STATUS_CODE_VALUE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_STATUS_CODE_VALUE_DESC",
                        "example":"Active"
                    },
                    "timezone":{
                        "title":"ORGANIZATION_DTO_TIMEZONE_TITLE",
                        "type":"string",
                        "description":"ORGANIZATION_DTO_TIMEZONE_DESC",
                        "example":"America/New_York"
                    },
                    "msaStart":{
                        "title":"ORGANIZATION_DTO_MSA_START_TITLE",
                        "type":"string",
                        "description":"ORGANIZATION_DTO_MSA_START_DESC",
                        "format":"date-time",
                        "example":"2025-01-01T00:00:00Z"
                    },
                    "msaEnd":{
                        "title":"ORGANIZATION_DTO_MSA_END_TITLE",
                        "type":"string",
                        "description":"ORGANIZATION_DTO_MSA_END_DESC",
                        "format":"date-time",
                        "example":"2026-01-01T00:00:00Z"
                    },
                    "orgType":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "orgTypeCodeValue":{
                        "title":"ORGANIZATION_DTO_ORG_TYPE_CODE_VALUE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_ORG_TYPE_CODE_VALUE_DESC",
                        "example":"ORG_TYPE_CODE"
                    },
                    "categoryType":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "categoryTypeCodeValue":{
                        "title":"ORGANIZATION_DTO_CATEGORY_TYPE_CODE_VALUE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_CATEGORY_TYPE_CODE_VALUE_DESC",
                        "example":"CATEGORY_CODE"
                    },
                    "orgId":{
                        "title":"ORGANIZATION_DTO_ORG_ID_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_ORG_ID_DESC",
                        "example":"ORG-12345"
                    },
                    "subType":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "subTypeCodeValue":{
                        "title":"ORGANIZATION_DTO_SUB_TYPE_CODE_VALUE_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_SUB_TYPE_CODE_VALUE_DESC",
                        "example":"SUB_TYPE"
                    },
                    "msa":{
                        "title":"ORGANIZATION_DTO_MSA_TITLE",
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_MSA_DESC",
                        "example":"Y"
                    },
                    "taxId":{
                        "title":"ORGANIZATION_DTO_TAX_ID_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_TAX_ID_DESC",
                        "example":"TAX-12345"
                    },
                    "vatId":{
                        "title":"ORGANIZATION_DTO_VAT_ID_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"ORGANIZATION_DTO_VAT_ID_DESC",
                        "example":"VAT-67890"
                    },
                    "webUrl":{
                        "title":"ORGANIZATION_DTO_WEB_URL_TITLE",
                        "maxLength":255,
                        "minLength":0,
                        "pattern":"[(http(s)?):\\/\\/(www\\.)?a-zA-Z0-9@:%._\\+~#=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%_\\+.~#?&//=]*)",
                        "type":"string",
                        "description":"ORGANIZATION_DTO_WEB_URL_DESC",
                        "example":"https://acme.example.com"
                    }
                },
                "description":"ORGANIZATION_DTO_DESC",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "name":"Acme CRO"
                }
            },
            "OrganizationModelDto":{
                "title":"ORGANIZATION_MODEL_TITLE",
                "required":[
                    "modes",
                    "orgAddressesDetails",
                    "organization"
                ],
                "type":"object",
                "properties":{
                    "organization":{
                        "$ref":"#/components/schemas/OrganizationDto"
                    },
                    "properties":{
                        "title":"PROPERTY_DTO_TITLE",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "entityId":{
                                "type":"string",
                                "description":"ENTITY_ID_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            },
                            "entityType":{
                                "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                "example":"INSTITUTION"
                            },
                            "propertyName":{
                                "title":"PROPERTY_DTO_NAME_TITLE",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_NAME_DESC",
                                "example":"LabId"
                            },
                            "propertyValue":{
                                "title":"PROPERTY_DTO_VALUE_TITLE",
                                "maxLength":500,
                                "minLength":0,
                                "type":"string",
                                "description":"PROPERTY_DTO_VALUE_DESC",
                                "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                            }
                        },
                        "description":"PROPERTY_DTO_DESC",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    },
                    "orgAddressesDetails":{
                        "title":"EntityAddressAssociationDto",
                        "required":[
                            "addressPostalcode"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Address Association ID",
                                "type":"string",
                                "description":"Unique identifier for the entity address association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "entityId":{
                                "title":"Entity ID",
                                "type":"string",
                                "description":"Identifier of the entity owning the address.",
                                "format":"uuid"
                            },
                            "mainPrimary":{
                                "title":"Main Primary Flag",
                                "type":"boolean",
                                "description":"Indicates if this is the main primary address.",
                                "example":true
                            },
                            "entityType":{
                                "title":"Entity Type",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of entity for the address.",
                                "example":"Contact"
                            },
                            "addressType":{
                                "title":"Address Type",
                                "type":"string",
                                "description":"Identifier for the address type.",
                                "format":"uuid"
                            },
                            "addressTypeCodeValue":{
                                "title":"Address Type Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the address type.",
                                "example":"Primary"
                            },
                            "country":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier for the country.",
                                "format":"uuid"
                            },
                            "countryCodeValue":{
                                "title":"Country Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the country code.",
                                "example":"USA"
                            },
                            "addressPostalcode":{
                                "title":"Postal Code",
                                "maxLength":20,
                                "minLength":0,
                                "type":"string",
                                "description":"Postal code for the address.",
                                "example":"80202"
                            },
                            "addressProperties":{
                                "title":"PROPERTY_DTO_TITLE",
                                "required":[
                                    "propertyName",
                                    "propertyValue"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "type":"string",
                                        "description":"ENTITY_ID_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    },
                                    "entityType":{
                                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INSTITUTION"
                                    },
                                    "propertyName":{
                                        "title":"PROPERTY_DTO_NAME_TITLE",
                                        "maxLength":100,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_NAME_DESC",
                                        "example":"LabId"
                                    },
                                    "propertyValue":{
                                        "title":"PROPERTY_DTO_VALUE_TITLE",
                                        "maxLength":500,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_VALUE_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    }
                                },
                                "description":"PROPERTY_DTO_DESC"
                            },
                            "addressStreet1":{
                                "type":"string"
                            },
                            "addressStreet2":{
                                "type":"string"
                            },
                            "addressCity":{
                                "type":"string"
                            },
                            "addressStateOrProvOrCounty":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "addressStateOrProvOrCountyCodeValue":{
                                "type":"string"
                            }
                        },
                        "description":"Represents an address linked to an entity.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    },
                    "modes":{
                        "title":"ModeDto",
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Mode ID",
                                "type":"string",
                                "description":"Unique identifier for the mode assignment.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "entityId":{
                                "title":"Entity ID",
                                "type":"string",
                                "description":"Identifier of the associated entity.",
                                "format":"uuid"
                            },
                            "entityType":{
                                "title":"Entity Type",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of entity tied to the mode.",
                                "example":"Contact"
                            },
                            "mode":{
                                "title":"Mode",
                                "type":"string",
                                "description":"Identifier of the mode.",
                                "format":"uuid"
                            },
                            "modeCodeValue":{
                                "title":"Mode Code Value",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the mode.",
                                "example":"Operational"
                            }
                        },
                        "description":"Represents a mode assignment for an entity.",
                        "example":[
                            "test"
                        ]
                    }
                },
                "description":"ORGANIZATION_MODEL_DESC"
            },
            "Organizations":{
                "required":[
                    "name",
                    "orgId",
                    "orgType",
                    "status",
                    "studyAgnostic",
                    "studyId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the latest change made to this record.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional user comment about the latest change.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp when this version became active.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "orgType":{
                        "type":"string",
                        "description":"Represents org type for this record.",
                        "format":"uuid"
                    },
                    "subType":{
                        "type":"string",
                        "description":"Represents sub type for this record.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Name value for this record.",
                        "example":"Sample Name"
                    },
                    "categoryType":{
                        "type":"string",
                        "description":"Represents category type for this record.",
                        "format":"uuid"
                    },
                    "orgId":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents org id for this record.",
                        "example":"SITE-001"
                    },
                    "status":{
                        "type":"string",
                        "description":"Represents status for this record.",
                        "format":"uuid"
                    },
                    "timezone":{
                        "type":"string",
                        "description":"Represents timezone for this record.",
                        "example":"UTC"
                    },
                    "webUrl":{
                        "maxLength":255,
                        "minLength":0,
                        "pattern":"[(http(s)?):\\/\\/(www\\.)?a-zA-Z0-9@:%._\\+~#=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%_\\+.~#?&//=]*)",
                        "type":"string",
                        "description":"Represents web url for this record.",
                        "example":"https://example.org"
                    },
                    "msa":{
                        "maxLength":5,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents msa for this record.",
                        "example":"Sample Value"
                    },
                    "msaStart":{
                        "type":"string",
                        "description":"Represents msa start for this record.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "msaEnd":{
                        "type":"string",
                        "description":"Represents msa end for this record.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "taxId":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents tax id for this record.",
                        "example":"Sample Value"
                    },
                    "vatId":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Represents vat id for this record.",
                        "example":"Sample Value"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Identifier of the related study.",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    "studyAgnostic":{
                        "type":"string",
                        "description":"Represents study agnostic for this record.",
                        "example":"N"
                    },
                    "statusCodeValue":{
                        "type":"string",
                        "description":"Display value for the status code.",
                        "example":"ACTIVE"
                    },
                    "orgTypeCodeValue":{
                        "type":"string",
                        "description":"Represents org type code value for this record.",
                        "example":"SITE"
                    },
                    "categoryTypeCodeValue":{
                        "type":"string",
                        "description":"Represents category type code value for this record.",
                        "example":"SITE"
                    },
                    "subTypeCodeValue":{
                        "type":"string",
                        "description":"Represents sub type code value for this record.",
                        "example":"SITE"
                    }
                }
            },
            "OrganizationFieldsDto":{
                "title":"ORGANIZATION_FIELDS_TITLE",
                "type":"object",
                "properties":{
                    "organizationFields":{
                        "title":"Field",
                        "type":"object",
                        "properties":{
                            "fieldName":{
                                "title":"Field Name",
                                "type":"string",
                                "description":"Field name. The acceptable values are: TENANTID, STUDYID, COUNTRY, SITEID, INVID, INVNAM, USUBJID, SCRNID, SUBJID, VISITNUM, VISIT, UNSCHED, SVSTDTC, DOMAIN, LAB ID, LAB NAME, REPEATNUMBER, SREPEATID, SREPEATNUMBER, ENTERED BY, ENTERED DATE, LAST CHANGED BY, LAST CHANGED DATE etc.",
                                "example":"TENANTID"
                            },
                            "fieldValue":{
                                "title":"Field Value",
                                "type":"string",
                                "description":"Value reported for the field.",
                                "example":"TENANT123"
                            },
                            "valueExists":{
                                "title":"Value Exists",
                                "type":"boolean",
                                "description":"Indicates whether the value already exists.",
                                "example":true
                            }
                        },
                        "description":"Contains field details.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"ORGANIZATION_FIELDS_DESC"
            },
            "TenantSiteDto":{
                "title":"TENANT_SITE_DTO_TITLE",
                "required":[
                    "tenantFirstEntityId",
                    "tenantSecondEntityId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"TENANT_SITE_DTO_ID_TITLE",
                        "type":"string",
                        "description":"TENANT_SITE_DTO_ID_DESC",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "tenantFirstEntityId":{
                        "title":"TENANT_SITE_DTO_FIRST_ENTITY_ID_TITLE",
                        "type":"string",
                        "description":"TENANT_SITE_DTO_FIRST_ENTITY_ID_DESC",
                        "format":"uuid"
                    },
                    "tenantSecondEntityId":{
                        "title":"TENANT_SITE_DTO_SECOND_ENTITY_ID_TITLE",
                        "type":"string",
                        "description":"TENANT_SITE_DTO_SECOND_ENTITY_ID_DESC",
                        "format":"uuid"
                    }
                },
                "description":"TENANT_SITE_DTO_DESC",
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "TenantSitesRequest":{
                "title":"TENANT_SITES_REQUEST_TITLE",
                "type":"object",
                "properties":{
                    "tenantSites":{
                        "title":"TENANT_SITE_DTO_TITLE",
                        "required":[
                            "tenantFirstEntityId",
                            "tenantSecondEntityId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"TENANT_SITE_DTO_ID_TITLE",
                                "type":"string",
                                "description":"TENANT_SITE_DTO_ID_DESC",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "tenantFirstEntityId":{
                                "title":"TENANT_SITE_DTO_FIRST_ENTITY_ID_TITLE",
                                "type":"string",
                                "description":"TENANT_SITE_DTO_FIRST_ENTITY_ID_DESC",
                                "format":"uuid"
                            },
                            "tenantSecondEntityId":{
                                "title":"TENANT_SITE_DTO_SECOND_ENTITY_ID_TITLE",
                                "type":"string",
                                "description":"TENANT_SITE_DTO_SECOND_ENTITY_ID_DESC",
                                "format":"uuid"
                            }
                        },
                        "description":"TENANT_SITE_DTO_DESC",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"TENANT_SITES_REQUEST_DESC"
            },
            "CreateStudySitesDto":{
                "title":"CREATE_STUDY_SITES_DTO_TITLE",
                "required":[
                    "modeId",
                    "siteIdName",
                    "studyId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"CREATE_STUDY_SITES_DTO_ID_TITLE",
                        "type":"string",
                        "description":"CREATE_STUDY_SITES_DTO_ID_DESC",
                        "format":"uuid"
                    },
                    "studyId":{
                        "title":"CREATE_STUDY_SITES_DTO_STUDY_ID_TITLE",
                        "type":"string",
                        "description":"CREATE_STUDY_SITES_DTO_STUDY_ID_DESC",
                        "format":"uuid"
                    },
                    "modeId":{
                        "title":"CREATE_STUDY_SITES_DTO_MODE_ID_TITLE",
                        "type":"string",
                        "description":"CREATE_STUDY_SITES_DTO_MODE_ID_DESC",
                        "format":"uuid"
                    },
                    "siteIdName":{
                        "title":"CREATE_STUDY_SITES_DTO_SITE_ID_NAME_TITLE",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"CREATE_STUDY_SITES_DTO_SITE_ID_NAME_DESC",
                        "example":"SITE-123"
                    },
                    "statusId":{
                        "title":"CREATE_STUDY_SITES_DTO_STATUS_ID_TITLE",
                        "type":"string",
                        "description":"CREATE_STUDY_SITES_DTO_STATUS_ID_DESC",
                        "format":"uuid"
                    }
                },
                "description":"CREATE_STUDY_SITES_DTO_DESC",
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "StudySitesRequest":{
                "title":"STUDY_SITES_REQUEST_TITLE",
                "type":"object",
                "properties":{
                    "studySites":{
                        "title":"CREATE_STUDY_SITES_DTO_TITLE",
                        "required":[
                            "modeId",
                            "siteIdName",
                            "studyId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"CREATE_STUDY_SITES_DTO_ID_TITLE",
                                "type":"string",
                                "description":"CREATE_STUDY_SITES_DTO_ID_DESC",
                                "format":"uuid"
                            },
                            "studyId":{
                                "title":"CREATE_STUDY_SITES_DTO_STUDY_ID_TITLE",
                                "type":"string",
                                "description":"CREATE_STUDY_SITES_DTO_STUDY_ID_DESC",
                                "format":"uuid"
                            },
                            "modeId":{
                                "title":"CREATE_STUDY_SITES_DTO_MODE_ID_TITLE",
                                "type":"string",
                                "description":"CREATE_STUDY_SITES_DTO_MODE_ID_DESC",
                                "format":"uuid"
                            },
                            "siteIdName":{
                                "title":"CREATE_STUDY_SITES_DTO_SITE_ID_NAME_TITLE",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"CREATE_STUDY_SITES_DTO_SITE_ID_NAME_DESC",
                                "example":"SITE-123"
                            },
                            "statusId":{
                                "title":"CREATE_STUDY_SITES_DTO_STATUS_ID_TITLE",
                                "type":"string",
                                "description":"CREATE_STUDY_SITES_DTO_STATUS_ID_DESC",
                                "format":"uuid"
                            }
                        },
                        "description":"CREATE_STUDY_SITES_DTO_DESC",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"STUDY_SITES_REQUEST_DESC"
            },
            "ReasonForInvalidAssociationTO":{
                "title":"REASON_FOR_INVALID_ASSOCIATION_TITLE",
                "type":"object",
                "properties":{
                    "context":{
                        "title":"REASON_FOR_INVALID_ASSOCIATION_CONTEXT_TITLE",
                        "type":"string",
                        "description":"REASON_FOR_INVALID_ASSOCIATION_CONTEXT_DESC",
                        "example":"entityType"
                    },
                    "message":{
                        "title":"REASON_FOR_INVALID_ASSOCIATION_MESSAGE_TITLE",
                        "type":"string",
                        "description":"REASON_FOR_INVALID_ASSOCIATION_MESSAGE_DESC",
                        "example":"Entity not valid for transfer"
                    }
                },
                "description":"REASON_FOR_INVALID_ASSOCIATION_DESC",
                "example":"Invalid association for selected entities."
            },
            "TenantSitesDetailsResponse":{
                "title":"TENANT_SITES_DETAILS_RESPONSE_TITLE",
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"TENANT_SITES_DETAILS_RESPONSE_REASON_TITLE",
                        "type":"string",
                        "description":"TENANT_SITES_DETAILS_RESPONSE_REASON_DESC",
                        "example":"Association active"
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "tenantFirstEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "tenantSecondEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "associationId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "tenantFirstEntityName":{
                        "title":"TENANT_SITES_DETAILS_RESPONSE_FIRST_ENTITY_NAME_TITLE",
                        "type":"string",
                        "description":"TENANT_SITES_DETAILS_RESPONSE_FIRST_ENTITY_NAME_DESC",
                        "example":"Acme Research"
                    },
                    "tenantSecondEntityName":{
                        "title":"TENANT_SITES_DETAILS_RESPONSE_SECOND_ENTITY_NAME_TITLE",
                        "type":"string",
                        "description":"TENANT_SITES_DETAILS_RESPONSE_SECOND_ENTITY_NAME_DESC",
                        "example":"Beta Institution"
                    },
                    "studySitesCount":{
                        "title":"TENANT_SITES_DETAILS_RESPONSE_STUDY_SITES_COUNT_TITLE",
                        "type":"integer",
                        "description":"TENANT_SITES_DETAILS_RESPONSE_STUDY_SITES_COUNT_DESC",
                        "format":"int32",
                        "example":5
                    },
                    "tenantFirstEntityStatus":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "tenantSecondEntityStatus":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "reasonForInvalidAssoc":{
                        "title":"REASON_FOR_INVALID_ASSOCIATION_TITLE",
                        "type":"object",
                        "properties":{
                            "context":{
                                "title":"REASON_FOR_INVALID_ASSOCIATION_CONTEXT_TITLE",
                                "type":"string",
                                "description":"REASON_FOR_INVALID_ASSOCIATION_CONTEXT_DESC",
                                "example":"entityType"
                            },
                            "message":{
                                "title":"REASON_FOR_INVALID_ASSOCIATION_MESSAGE_TITLE",
                                "type":"string",
                                "description":"REASON_FOR_INVALID_ASSOCIATION_MESSAGE_DESC",
                                "example":"Entity not valid for transfer"
                            }
                        },
                        "description":"REASON_FOR_INVALID_ASSOCIATION_DESC",
                        "example":"Invalid association for selected entities."
                    },
                    "modes":{
                        "type":"array",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "valid":{
                        "type":"boolean",
                        "example":true
                    }
                },
                "description":"TENANT_SITES_DETAILS_RESPONSE_DESC"
            },
            "EntityAddressAssociationResponse":{
                "title":"ENTITY_ADDRESS_ASSOCIATION_RESPONSE_TITLE",
                "type":"object",
                "properties":{
                    "entityAddressAssociations":{
                        "title":"EntityAddressAssociationDto",
                        "required":[
                            "addressPostalcode"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Address Association ID",
                                "type":"string",
                                "description":"Unique identifier for the entity address association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "entityId":{
                                "title":"Entity ID",
                                "type":"string",
                                "description":"Identifier of the entity owning the address.",
                                "format":"uuid"
                            },
                            "mainPrimary":{
                                "title":"Main Primary Flag",
                                "type":"boolean",
                                "description":"Indicates if this is the main primary address.",
                                "example":true
                            },
                            "entityType":{
                                "title":"Entity Type",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Type of entity for the address.",
                                "example":"Contact"
                            },
                            "addressType":{
                                "title":"Address Type",
                                "type":"string",
                                "description":"Identifier for the address type.",
                                "format":"uuid"
                            },
                            "addressTypeCodeValue":{
                                "title":"Address Type Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the address type.",
                                "example":"Primary"
                            },
                            "country":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier for the country.",
                                "format":"uuid"
                            },
                            "countryCodeValue":{
                                "title":"Country Code",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Display value for the country code.",
                                "example":"USA"
                            },
                            "addressPostalcode":{
                                "title":"Postal Code",
                                "maxLength":20,
                                "minLength":0,
                                "type":"string",
                                "description":"Postal code for the address.",
                                "example":"80202"
                            },
                            "addressProperties":{
                                "title":"PROPERTY_DTO_TITLE",
                                "required":[
                                    "propertyName",
                                    "propertyValue"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "entityId":{
                                        "type":"string",
                                        "description":"ENTITY_ID_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    },
                                    "entityType":{
                                        "title":"PROPERTY_DTO_ENTITY_TYPE_TITLE",
                                        "maxLength":50,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_ENTITY_TYPE_DESC",
                                        "example":"INSTITUTION"
                                    },
                                    "propertyName":{
                                        "title":"PROPERTY_DTO_NAME_TITLE",
                                        "maxLength":100,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_NAME_DESC",
                                        "example":"LabId"
                                    },
                                    "propertyValue":{
                                        "title":"PROPERTY_DTO_VALUE_TITLE",
                                        "maxLength":500,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"PROPERTY_DTO_VALUE_DESC",
                                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                                    }
                                },
                                "description":"PROPERTY_DTO_DESC"
                            },
                            "addressStreet1":{
                                "type":"string"
                            },
                            "addressStreet2":{
                                "type":"string"
                            },
                            "addressCity":{
                                "type":"string"
                            },
                            "addressStateOrProvOrCounty":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "addressStateOrProvOrCountyCodeValue":{
                                "type":"string"
                            }
                        },
                        "description":"Represents an address linked to an entity.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ]
                    }
                },
                "description":"ENTITY_ADDRESS_ASSOCIATION_RESPONSE_DESC"
            },
            "ValidTenantSitesDetailsResponse":{
                "title":"VALID_TENANT_SITES_DETAILS_RESPONSE_TITLE",
                "type":"object",
                "properties":{
                    "tenantFirstEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "tenantSecondEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "associationId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "modes":{
                        "type":"array",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "tenantFirstEntityName":{
                        "title":"VALID_TENANT_SITES_DETAILS_RESPONSE_FIRST_ENTITY_NAME_TITLE",
                        "type":"string",
                        "description":"VALID_TENANT_SITES_DETAILS_RESPONSE_FIRST_ENTITY_NAME_DESC",
                        "example":"Acme Research"
                    },
                    "tenantSecondEntityName":{
                        "title":"VALID_TENANT_SITES_DETAILS_RESPONSE_SECOND_ENTITY_NAME_TITLE",
                        "type":"string",
                        "description":"VALID_TENANT_SITES_DETAILS_RESPONSE_SECOND_ENTITY_NAME_DESC",
                        "example":"Beta Institution"
                    },
                    "institutionTimezone":{
                        "title":"VALID_TENANT_SITES_DETAILS_RESPONSE_TIMEZONE_TITLE",
                        "type":"string",
                        "description":"VALID_TENANT_SITES_DETAILS_RESPONSE_TIMEZONE_DESC",
                        "example":"America/New_York"
                    },
                    "tenantFirstEntityPrimaryCity":{
                        "title":"VALID_TENANT_SITES_DETAILS_RESPONSE_PRIMARY_CITY_TITLE",
                        "type":"string",
                        "description":"VALID_TENANT_SITES_DETAILS_RESPONSE_PRIMARY_CITY_DESC",
                        "example":"Metropolis"
                    },
                    "tenantFirstEntityPrimaryState":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "tenantFirstEntityPrimaryCountry":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"VALID_TENANT_SITES_DETAILS_RESPONSE_DESC"
            },
            "ContactOrganizationDeleteReasonDtoV2":{
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "reasonForDelete":{
                        "title":"ReasonForDelete",
                        "type":"string",
                        "description":"Reason explaining why the delete operation is requested.",
                        "example":"No longer active"
                    },
                    "commentForOther":{
                        "type":"string",
                        "example":"Closed due to site transfer."
                    }
                }
            },
            "PaginatedResponseDto":{
                "title":"PaginatedResponseDto",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Attribute describes if result set has more records Returns \"true\" when additional records exist, otherwise \"false\".",
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "totalResults":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of entities in response Provide a non-negative integer.",
                        "format":"int32",
                        "example":5
                    },
                    "count":{
                        "maximum":5000,
                        "minimum":0,
                        "type":"integer",
                        "description":"Total count of result Provide a non-negative integer.",
                        "format":"int32",
                        "example":5
                    },
                    "limit":{
                        "maximum":5000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records to display per page. Provide a value between 1 and 5000 inclusive.",
                        "format":"int32",
                        "example":5
                    },
                    "offset":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter. Provide a zero or positive value.",
                        "format":"int32",
                        "example":400
                    },
                    "columns":{
                        "type":"array",
                        "example":[
                            "name",
                            "status"
                        ],
                        "items":{
                            "type":"string",
                            "example":"[\"name\",\"status\"]"
                        }
                    },
                    "data":{
                        "type":"array",
                        "description":"Tabular data where each item is a row represented as an array of string values that align with the columns order.",
                        "example":[
                            [
                                "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                "Visit Start Date Validation",
                                "approved"
                            ]
                        ],
                        "items":{
                            "type":"array",
                            "description":"Row values aligned with the `columns` list; each row must include between 1 and 50 string columns.",
                            "example":[
                                "38891F5E75BB4071BBF8ACE1F43BD1BD",
                                "Visit Start Date Validation",
                                "approved"
                            ],
                            "items":{
                                "type":"string",
                                "description":"Row values aligned with the `columns` list; each row must include between 1 and 50 string columns.",
                                "example":"[\"38891F5E75BB4071BBF8ACE1F43BD1BD\",\"Visit Start Date Validation\",\"approved\"]"
                            }
                        }
                    }
                },
                "description":"Paginated Response Object for report APIs."
            },
            "SDFPropertyDto":{
                "title":"SDFPropertyDto v1.0",
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"SDF Property ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "sdfId":{
                        "title":"SDF ID",
                        "type":"string",
                        "description":"Identifier of the SDF the property belongs to.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "title":"Property Name",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Key identifying the property.",
                        "example":"PRIMARY_CONTACT"
                    },
                    "propertyValue":{
                        "title":"Property Value",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Value stored for the property.",
                        "example":"ACTIVE"
                    }
                },
                "description":"Property metadata attached to an SDF.",
                "example":[
                    {
                        "propertyName":"PRIMARY",
                        "propertyValue":"ACTIVE"
                    }
                ]
            },
            "SDFPropertyResponse":{
                "type":"object",
                "properties":{
                    "sdfPropertyList":{
                        "type":"array",
                        "description":"List of SDF properties.",
                        "example":[
                            {
                                "propertyName":"timezone",
                                "propertyValue":"UTC"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFPropertyDto"
                        }
                    }
                }
            },
            "SDFExtendedPropReq":{
                "type":"object",
                "properties":{
                    "extendedProperties":{
                        "type":"array",
                        "description":"Collection of extended properties for update operations.",
                        "example":[
                            {
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    }
                }
            },
            "SDFsPropertyDto":{
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "sdfId":{
                        "type":"string",
                        "description":"Identifier of the related SDF record.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the property.",
                        "example":"timezone"
                    },
                    "propertyValue":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Value of the property.",
                        "example":"UTC"
                    }
                }
            },
            "SDFGlobalPropertiesRequest":{
                "type":"object",
                "properties":{
                    "globalProperties":{
                        "type":"array",
                        "description":"Collection of global properties for update or create operations.",
                        "example":[
                            {
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    }
                }
            },
            "SDFKitSettingDto":{
                "required":[
                    "kitTypeId",
                    "settingName",
                    "settingValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "settingName":{
                        "type":"string",
                        "example":"PRIMARY_COUNTRY"
                    },
                    "settingValue":{
                        "type":"string",
                        "example":"sample"
                    },
                    "settingOperationType":{
                        "type":"string",
                        "writeOnly":true
                    }
                },
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "SDFKitSettingsResponse":{
                "type":"object",
                "properties":{
                    "sdfKitSettings":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFKitSettingDto"
                        }
                    }
                }
            },
            "SDFKitSettingsRequest":{
                "type":"object",
                "properties":{
                    "sdfKitSettings":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFKitSettingDto"
                        }
                    }
                }
            },
            "SDFAddressAssociationDto":{
                "required":[
                    "entityAddressAssociationId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressTypeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressTypeIdCodeValue":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    "entityAddressAssociationId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sdfAddressProperties":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    },
                    "mainPrimary":{
                        "type":"boolean",
                        "example":true
                    }
                }
            },
            "SDFCreateUpdateResponse":{
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFDto"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    },
                    "sdfAddressAssociations":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFAddressAssociationDto"
                        }
                    }
                }
            },
            "SDFDto":{
                "title":"SDFDto v1.0",
                "required":[
                    "name",
                    "sdfType",
                    "status",
                    "studyOrgId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"SDF ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the SDF record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "name":{
                        "title":"Name",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Official name of the site or depot.",
                        "example":"Oakland Biomed Site"
                    },
                    "status":{
                        "title":"Status",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Current status of the SDF, for example Active or Inactive.",
                        "example":"ACTIVE"
                    },
                    "sdfType":{
                        "title":"SDF Type",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Role of the SDF such as Site or Depot.",
                        "example":"SITE"
                    },
                    "studyOrgId":{
                        "title":"Study Organization ID",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Identifier of the study organization linked to the SDF.",
                        "example":"STUDY-123"
                    }
                },
                "description":"Metadata for a study site or depot.",
                "example":{
                    "id":"3F2504E04F8911D39A0C0305E82C3301",
                    "name":"Oakland Biomed Site",
                    "status":"ACTIVE",
                    "sdfType":"SITE",
                    "studyOrgId":"STUDY-123"
                }
            },
            "SDFCreateUpdateRequest":{
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFDto"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    },
                    "sdfAddressAssociations":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFAddressAssociationDto"
                        }
                    }
                }
            },
            "DepotDetailsDto":{
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/SDFDetailsDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "sdfCountriesList":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/SDFCountryDetailsDto"
                                }
                            },
                            "vendorDepotId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "vendorDepotName":{
                                "type":"string"
                            },
                            "institutionId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionName":{
                                "type":"string"
                            },
                            "vendorDepotStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionStatus":{
                                "type":"string",
                                "format":"uuid"
                            }
                        }
                    }
                ]
            },
            "DepotDetailsDtoV2":{
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/SDFDetailsDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "sdfCountriesList":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/SDFCountryDetailsDto"
                                }
                            },
                            "vendorDepotId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "vendorDepotName":{
                                "type":"string"
                            },
                            "institutionId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionName":{
                                "type":"string"
                            },
                            "vendorDepotStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "vendorTimeZone":{
                                "type":"string"
                            }
                        }
                    }
                ]
            },
            "SDFAddressAssociationDetailsDto":{
                "required":[
                    "addressTypeId",
                    "entityAddressAssociationId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressTypeId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressTypeIdCodeValue":{
                        "type":"string",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    "entityAddressAssociationId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressStreet1":{
                        "type":"string",
                        "example":"sample"
                    },
                    "addressStreet2":{
                        "type":"string",
                        "example":"sample"
                    },
                    "addressCity":{
                        "type":"string",
                        "example":"sample"
                    },
                    "addressPostalCode":{
                        "type":"string",
                        "example":"sample"
                    },
                    "addressStateOrProvOrCounty":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressStateOrProvOrCountyName":{
                        "type":"string",
                        "example":"California"
                    },
                    "addressCountry":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "addressCountryName":{
                        "type":"string",
                        "example":"United States"
                    },
                    "entityAddressProperties":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/PropertyDto"
                        }
                    },
                    "sdfAddressProperties":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFPropertyDetailsDto"
                        }
                    }
                },
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "SDFCountryDetailsDto":{
                "title":"SDFCountryDetailsDto v1.0",
                "required":[
                    "countryId",
                    "primarySupply",
                    "sdfId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "title":"SDF Country Details ID",
                        "type":"string",
                        "description":"Unique identifier for the CTMS SDF country details record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "countryId":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Raw(16) country UUID linked to the SDF record.",
                        "format":"uuid"
                    },
                    "stateId":{
                        "title":"State ID",
                        "type":"string",
                        "description":"Raw(16) state UUID linked to the SDF record.",
                        "format":"uuid"
                    },
                    "sdfId":{
                        "title":"SDF ID",
                        "type":"string",
                        "description":"SDF identifier for the CTMS association.",
                        "format":"uuid"
                    },
                    "primarySupply":{
                        "title":"Primary Supply",
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Primary supply type for the SDF-country association.",
                        "example":"DOMESTIC"
                    },
                    "countryName":{
                        "title":"Country Name",
                        "type":"string",
                        "description":"Official name of the country.",
                        "example":"United States"
                    },
                    "stateName":{
                        "title":"State Name",
                        "type":"string",
                        "description":"Name of the state associated with the SDF.",
                        "example":"California"
                    }
                },
                "description":"CTMS/SDF country details returned by the paginated endpoint."
            },
            "SDFDetailsDto":{
                "required":[
                    "sdfType"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "tenantEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyOrgIdName":{
                        "type":"string",
                        "example":"Primary Site Org"
                    },
                    "statusId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "statusIdCodeValue":{
                        "type":"string",
                        "example":"ACTIVE"
                    },
                    "oldSdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sdfType":{
                        "type":"string"
                    }
                },
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "tenantEntityId":"B1B8327AFAA6412287106192AB5984EF",
                    "statusId":"B1B8327AFAA6412287106192AB5984EF",
                    "sdfType":"Site"
                },
                "discriminator":{
                    "propertyName":"sdfType"
                }
            },
            "SDFDetailsResponse":{
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFDetailsDto"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFPropertyDetailsDto"
                        }
                    },
                    "sdfAddressAssociations":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFAddressAssociationDetailsDto"
                        }
                    },
                    "sdfKitSettingDto":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFKitSettingDto"
                        }
                    }
                }
            },
            "SDFPropertyDetailsDto":{
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "example":"Sample Name"
                    },
                    "propertyValue":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "example":"sample"
                    }
                },
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "SiteDetailsDto":{
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/SDFDetailsDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "contactId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactFirstName":{
                                "type":"string"
                            },
                            "contactLastName":{
                                "type":"string"
                            },
                            "contactMiddleName":{
                                "type":"string"
                            },
                            "contactSuffix":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactSuffixCodeValue":{
                                "type":"string"
                            },
                            "contactPrefix":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactPrefixCodeValue":{
                                "type":"string"
                            },
                            "contactDegree":{
                                "type":"string"
                            },
                            "institutionName":{
                                "type":"string"
                            },
                            "contactStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactStatusCodeValue":{
                                "type":"string"
                            },
                            "institutionStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionStatusCodeValue":{
                                "type":"string"
                            }
                        }
                    }
                ]
            },
            "SiteDetailsDtoV2":{
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/SDFDetailsDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "contactId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactFirstName":{
                                "type":"string"
                            },
                            "contactLastName":{
                                "type":"string"
                            },
                            "contactMiddleName":{
                                "type":"string"
                            },
                            "contactSuffix":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactSuffixCodeValue":{
                                "type":"string"
                            },
                            "contactPrefix":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactPrefixCodeValue":{
                                "type":"string"
                            },
                            "contactDegree":{
                                "type":"string"
                            },
                            "institutionName":{
                                "type":"string"
                            },
                            "contactStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "contactStatusCodeValue":{
                                "type":"string"
                            },
                            "institutionStatus":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "institutionStatusCodeValue":{
                                "type":"string"
                            },
                            "institutionTimeZone":{
                                "type":"string"
                            }
                        }
                    }
                ]
            },
            "SDFProperty":{
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for the latest change made to this record.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional user comment about the latest change.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Unique identifier for this record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "sdfId":{
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Identifier of the related SDF record.",
                        "format":"uuid"
                    },
                    "propertyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the property.",
                        "example":"timezone"
                    },
                    "propertyValue":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Value of the property.",
                        "example":"UTC"
                    }
                }
            },
            "DepotInfoDto":{
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for this record.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Timestamp when this version became active.",
                        "format":"date-time",
                        "example":"2026-03-16T12:00:00Z"
                    },
                    "vendorId":{
                        "type":"string",
                        "description":"Identifier of the related vendor.",
                        "format":"uuid"
                    },
                    "studyOrgIdName":{
                        "type":"string",
                        "description":"Study organization identifier or name used for display.",
                        "example":"Sample Name"
                    },
                    "statusId":{
                        "type":"string",
                        "description":"Identifier of the status code.",
                        "format":"uuid"
                    },
                    "statusCodeValue":{
                        "type":"string",
                        "description":"Display value for the status code.",
                        "example":"ACTIVE"
                    },
                    "vendorName":{
                        "type":"string",
                        "description":"Represents vendor name for this record.",
                        "example":"Sample Name"
                    },
                    "mode":{
                        "type":"string",
                        "description":"Mode identifier associated with this record.",
                        "format":"uuid"
                    },
                    "oldSdfId":{
                        "type":"string",
                        "description":"Identifier of the previous SDF record, when applicable.",
                        "format":"uuid"
                    }
                }
            },
            "SiteDepotIdsList":{
                "required":[
                    "depotIds",
                    "siteIds"
                ],
                "type":"object",
                "properties":{
                    "siteIds":{
                        "type":"array",
                        "example":[
                            "C36A3197FDEE433FB5547EE83DE99E4B"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "depotIds":{
                        "type":"array",
                        "example":[
                            "C36A3197FDEE433FB5547EE83DE99E4B"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "SDFExtendedPropertiesListResponse":{
                "type":"object",
                "properties":{
                    "sdfExtendedPropertiesList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFPropertyListDto"
                        }
                    }
                }
            },
            "SDFPropertyListDto":{
                "type":"object",
                "properties":{
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    }
                },
                "example":[
                    {
                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                ]
            },
            "SDFUpdateStatusDto":{
                "required":[
                    "sdfId",
                    "statusId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "sdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "statusId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    }
                },
                "example":[
                    "ACTIVE"
                ]
            },
            "SDFUpdateStatusResponse":{
                "type":"object",
                "properties":{
                    "sdfstatuses":{
                        "type":"array",
                        "example":"[{\\\"sdfId\\\":\\\"B1B8327AFAA6412287106192AB5984EF\\\",\\\"statusId\\\":\\\"B1B8327AFAA6412287106192AB5984EF\\\",\\\"versionStart\\\":\\\"2026-01-15T10:30:00Z\\\"}]",
                        "items":{
                            "$ref":"#/components/schemas/SDFUpdateStatusDto"
                        }
                    }
                }
            },
            "SDFUpdateStatusRequest":{
                "type":"object",
                "properties":{
                    "sdfStatuses":{
                        "type":"array",
                        "example":[
                            "ACTIVE"
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFUpdateStatusDto"
                        }
                    }
                }
            },
            "SDFPrimaryCountryResponse":{
                "type":"object",
                "properties":{
                    "countries":{
                        "type":"array",
                        "example":"[\\\"B1B8327AFAA6412287106192AB5984EF\\\"]",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "SDFPrimaryCountryRequest":{
                "type":"object",
                "properties":{
                    "countries":{
                        "type":"array",
                        "example":"[\\\"B1B8327AFAA6412287106192AB5984EF\\\"]",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "SDFFieldsDto":{
                "type":"object",
                "properties":{
                    "sdfFields":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/Field"
                        }
                    }
                }
            },
            "SiteDetailsLiteDto":{
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    },
                    "tenantEntityId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyOrgIdName":{
                        "type":"string",
                        "example":"Primary Site Org"
                    },
                    "statusId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "statusIdCodeValue":{
                        "type":"string",
                        "example":"ACTIVE"
                    },
                    "oldSdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "institutionId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "institutionName":{
                        "type":"string",
                        "example":"City Hospital"
                    }
                },
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "tenantEntityId":"B1B8327AFAA6412287106192AB5984EF",
                    "statusId":"B1B8327AFAA6412287106192AB5984EF",
                    "oldSdfId":"B1B8327AFAA6412287106192AB5984EF"
                }
            },
            "StudySiteLiteResponse":{
                "type":"object",
                "properties":{
                    "site":{
                        "$ref":"#/components/schemas/SiteDetailsLiteDto"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFPropertyDetailsDto"
                        }
                    }
                }
            },
            "SdfId":{
                "type":"object",
                "properties":{
                    "id":{
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Unique Id for SDF.",
                        "format":"uuid"
                    }
                },
                "description":"Contains SDF ID"
            },
            "AddLabSiteTO":{
                "title":"AddLabSiteTO v1.0",
                "required":[
                    "labs",
                    "sites"
                ],
                "type":"object",
                "properties":{
                    "sites":{
                        "title":"Sites",
                        "type":"array",
                        "description":"List of site identifiers to associate.",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string"
                        }
                    },
                    "labs":{
                        "title":"Labs",
                        "type":"array",
                        "description":"List of lab identifiers to link to the sites.",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string"
                        }
                    }
                },
                "description":"Request to link labs with sites."
            },
            "LabDto":{
                "title":"LabDto v1.0",
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Lab ID",
                        "type":"string",
                        "description":"Unique identifier for the lab (UUID, uppercase hexadecimal).",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Lab Name",
                        "maxLength":200,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the lab.",
                        "example":"Central Lab"
                    },
                    "shortName":{
                        "title":"Lab Short Name",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Short name of the lab.",
                        "example":"CLAB"
                    },
                    "associatedSite":{
                        "title":"Associated Site",
                        "type":"string",
                        "description":"Identifier of the site to associate with the lab.",
                        "format":"uuid"
                    }
                },
                "description":"Payload used to create or update a lab."
            },
            "LabNormalTO":{
                "title":"LabNormalTO v1.0",
                "required":[
                    "ageFrom",
                    "ageFromUnits",
                    "ageTo",
                    "ageToUnits",
                    "effectiveDate",
                    "sequence",
                    "test"
                ],
                "type":"object",
                "properties":{
                    "labNormalId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sequence":{
                        "title":"Sequence",
                        "minimum":1,
                        "type":"integer",
                        "description":"Ordering number for the lab normal.",
                        "format":"int32",
                        "example":5
                    },
                    "test":{
                        "title":"Test",
                        "type":"string",
                        "description":"Name of the lab test.",
                        "example":"HEMOGLOBIN"
                    },
                    "labUnit":{
                        "title":"Lab Unit",
                        "type":"string",
                        "description":"Measurement unit for the lab test.",
                        "example":"mg/dL"
                    },
                    "lowRange":{
                        "title":"Low Range",
                        "type":"string",
                        "description":"Lower limit for the lab normal range.",
                        "example":"10"
                    },
                    "highRange":{
                        "title":"High Range",
                        "type":"string",
                        "description":"Upper limit for the lab normal range.",
                        "example":"100"
                    },
                    "standardResult":{
                        "title":"Standard Result",
                        "type":"string",
                        "description":"Standard result value for the lab normal.",
                        "example":"100"
                    },
                    "gender":{
                        "title":"Gender",
                        "type":"string",
                        "description":"Gender applicable to the lab normal.",
                        "example":"Female"
                    },
                    "ageFrom":{
                        "title":"Age From",
                        "type":"integer",
                        "description":"Lower bound for the age range.",
                        "format":"int32",
                        "example":5
                    },
                    "ageTo":{
                        "title":"Age To",
                        "type":"integer",
                        "description":"Upper bound for the age range.",
                        "format":"int32",
                        "example":15
                    },
                    "ageFromUnits":{
                        "title":"Age From Units",
                        "type":"string",
                        "description":"Units used for the lower age bound.",
                        "example":"years"
                    },
                    "ageToUnits":{
                        "title":"Age To Units",
                        "type":"string",
                        "description":"Units used for the upper age bound.",
                        "example":"years"
                    },
                    "race":{
                        "title":"Race",
                        "type":"string",
                        "description":"Race targeted by the lab normal.",
                        "example":"Asian"
                    },
                    "fasting":{
                        "title":"Fasting",
                        "type":"string",
                        "description":"Fasting flag for the lab normal.",
                        "example":"Yes",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "effectiveDate":{
                        "title":"Effective Date",
                        "type":"string",
                        "description":"Date when the lab normal becomes effective.",
                        "format":"date",
                        "example":"2025-01-01"
                    }
                },
                "description":"Schema describing a lab normal entry."
            },
            "LabNormalBulkLookUpResponseV1":{
                "title":"LabNormalBulkLookUpResponse v1.0",
                "type":"object",
                "properties":{
                    "labNormals":{
                        "title":"Lab Normals",
                        "type":"array",
                        "description":"Lookup responses returned by the bulk lookup.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LookUpResponseV1"
                        }
                    }
                },
                "description":"Bulk lookup response for lab normals."
            },
            "LookUpResponseV1":{
                "title":"LookUpResponse v1.0",
                "type":"object",
                "properties":{
                    "testName":{
                        "title":"Test Name",
                        "type":"string",
                        "description":"Test name returned by the lookup.",
                        "example":"HEMOGLOBIN"
                    },
                    "gender":{
                        "title":"Gender",
                        "type":"string",
                        "description":"Gender associated with the lookup result.",
                        "example":"Female"
                    },
                    "race":{
                        "title":"Race",
                        "type":"string",
                        "description":"Race associated with the lookup result.",
                        "example":"Asian"
                    },
                    "age":{
                        "title":"Age",
                        "type":"string",
                        "description":"Age associated with the lookup result.",
                        "example":"10"
                    },
                    "ageUnits":{
                        "title":"Age Units",
                        "type":"string",
                        "description":"Age units associated with the lookup result.",
                        "example":"years"
                    },
                    "collectionDate":{
                        "title":"Collection Date",
                        "type":"string",
                        "description":"Collection date associated with the lookup result.",
                        "format":"date",
                        "example":"2025-01-01"
                    },
                    "fasting":{
                        "title":"Fasting",
                        "type":"string",
                        "description":"Fasting info returned by the lookup.",
                        "example":"Yes"
                    },
                    "labNormalsData":{
                        "title":"Lab Normals",
                        "type":"array",
                        "description":"List of lab normals matching the lookup result.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LabNormalTO"
                        }
                    }
                },
                "description":"One lab normal lookup result."
            },
            "LabNormalLookUpCriteriaV1":{
                "title":"LabNormalLookUpCriteria v1.0",
                "type":"object",
                "properties":{
                    "testName":{
                        "title":"Test Name",
                        "type":"string",
                        "description":"Test name used as a lookup criterion.",
                        "example":"HEMOGLOBIN"
                    },
                    "gender":{
                        "title":"Gender",
                        "type":"string",
                        "description":"Gender used as a lookup criterion.",
                        "example":"Female"
                    },
                    "race":{
                        "title":"Race",
                        "type":"string",
                        "description":"Race used as a lookup criterion.",
                        "example":"Asian"
                    },
                    "age":{
                        "title":"Age",
                        "type":"string",
                        "description":"Age used as a lookup criterion.",
                        "example":"10"
                    },
                    "ageUnits":{
                        "title":"Age Units",
                        "type":"string",
                        "description":"Units for the lookup age.",
                        "example":"years"
                    },
                    "collectionDate":{
                        "title":"Collection Date",
                        "type":"string",
                        "description":"Collection date used as a lookup criterion.",
                        "format":"date",
                        "example":"2025-01-01"
                    },
                    "fasting":{
                        "title":"Fasting",
                        "type":"string",
                        "description":"Fasting flag used as a lookup criterion.",
                        "example":"Yes"
                    }
                },
                "description":"Criteria used to locate lab normals."
            },
            "LabNormalLookUpRequestV1":{
                "title":"LabNormalLookUpRequest v1.0",
                "type":"object",
                "properties":{
                    "lookUpCriteria":{
                        "title":"Lookup Criteria",
                        "type":"array",
                        "description":"List of criteria used to look up lab normals.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LabNormalLookUpCriteriaV1"
                        }
                    }
                },
                "description":"Payload that carries lab normal lookup criteria."
            },
            "LabHistoryResponseV1":{
                "title":"LabHistoryResponse v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Lab Name",
                        "type":"string",
                        "description":"Lab name recorded in this history entry.",
                        "example":"Central Lab"
                    },
                    "shortName":{
                        "title":"Lab Short Name",
                        "type":"string",
                        "description":"Short name captured in the history entry.",
                        "example":"CLAB"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason associated with the history record.",
                        "example":"Updated lab properties"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment attached to the history entry.",
                        "example":"Changed site assignments"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation performed on the lab record (CREATE, UPDATE, or DELETE).",
                        "example":"UPDATE"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this history version became active.",
                        "format":"date-time",
                        "example":"2025-01-01T08:30:00Z"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when this history version was superseded.",
                        "format":"date-time",
                        "example":"2025-02-01T12:00:00Z"
                    }
                },
                "description":"History entry for lab changes."
            },
            "LabResponseV1":{
                "title":"LabResponse v1.0",
                "type":"object",
                "properties":{
                    "labId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Lab Name",
                        "type":"string",
                        "description":"Official name of the lab.",
                        "example":"Central Lab"
                    },
                    "shortName":{
                        "title":"Lab Short Name",
                        "type":"string",
                        "description":"Short name of the lab.",
                        "example":"CLAB"
                    }
                },
                "description":"Response containing lab summary information."
            },
            "SiteLabsAssociationResponseV2":{
                "title":"SiteLabsAssociationResponse v2.0",
                "required":[
                    "labs",
                    "sites"
                ],
                "type":"object",
                "properties":{
                    "sites":{
                        "title":"Sites",
                        "type":"array",
                        "description":"Study site identifiers returned in the response.",
                        "format":"uuid",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "labs":{
                        "title":"Labs",
                        "type":"array",
                        "description":"Lab identifiers returned in the response.",
                        "format":"uuid",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Response containing the site and lab identifiers after association."
            },
            "SiteLabsAssociationRequestV2":{
                "title":"SiteLabsAssociationRequest v2.0",
                "required":[
                    "labs",
                    "sites"
                ],
                "type":"object",
                "properties":{
                    "sites":{
                        "title":"Sites",
                        "type":"array",
                        "description":"Study site identifiers to associate.",
                        "format":"uuid",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "labs":{
                        "title":"Labs",
                        "type":"array",
                        "description":"Lab identifiers to associate with the sites.",
                        "format":"uuid",
                        "example":"B1B8327AFAA6412287106192AB5984EF",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Payload containing site and lab identifiers for association."
            },
            "LabCreateUpdateResponseV2":{
                "title":"LabCreateUpdateResponse v2.0",
                "type":"object",
                "properties":{
                    "lab":{
                        "$ref":"#/components/schemas/lab"
                    },
                    "labAddresses":{
                        "title":"Lab Addresses",
                        "type":"array",
                        "description":"Address associations returned for the lab.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFAddressAssociationDto"
                        }
                    },
                    "labProperties":{
                        "title":"Lab Properties",
                        "type":"array",
                        "description":"Properties returned for the lab.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    }
                },
                "description":"Response containing the lab, addresses, and properties after persistence."
            },
            "lab":{
                "title":"Lab",
                "required":[
                    "labIdName",
                    "studySiteId",
                    "vendorId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "studyLabId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "vendorId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studySiteId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "labIdName":{
                        "type":"string",
                        "example":"Central Lab"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    }
                },
                "description":"Lab details being created or updated.",
                "example":{
                    "studyLabId":"B1B8327AFAA6412287106192AB5984EF",
                    "vendorId":"B1B8327AFAA6412287106192AB5984EF",
                    "studySiteId":"B1B8327AFAA6412287106192AB5984EF",
                    "labIdName":"Central Lab",
                    "versionStart":"2026-01-15T10:30:00Z"
                }
            },
            "LabCreateUpdateRequestV2":{
                "title":"LabCreateUpdateRequest v2.0",
                "type":"object",
                "properties":{
                    "lab":{
                        "$ref":"#/components/schemas/lab"
                    },
                    "labAddresses":{
                        "title":"Lab Addresses",
                        "type":"array",
                        "description":"Address associations for the lab.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFAddressAssociationDto"
                        }
                    },
                    "labProperties":{
                        "title":"Lab Properties",
                        "type":"array",
                        "description":"Properties associated with the lab.",
                        "example":[
                            {
                                "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SDFsPropertyDto"
                        }
                    }
                },
                "description":"Request payload containing lab details, addresses, and properties."
            },
            "LabSiteDto":{
                "title":"LabSiteDto v1.0",
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Lab Site Association ID",
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Unique identifier for the lab-site association.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when the association version began.",
                        "format":"date-time",
                        "example":"2025-01-01T00:00:00Z"
                    },
                    "labId":{
                        "title":"Lab ID",
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Identifier of the lab in the association.",
                        "format":"uuid"
                    },
                    "labVersionStart":{
                        "title":"Lab Version Start",
                        "type":"string",
                        "description":"Timestamp when the lab version started.",
                        "format":"date-time",
                        "example":"2025-01-01T00:00:00Z"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "pattern":"^[A-F0-9]{32}$",
                        "type":"string",
                        "description":"Identifier of the site in the association.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "title":"Site Version Start",
                        "type":"string",
                        "description":"Timestamp when the site version started.",
                        "format":"date-time",
                        "example":"2025-01-01T00:00:00Z"
                    }
                },
                "description":"Details of the lab-to-site association."
            },
            "LabDetailsDto":{
                "required":[
                    "vendorId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Timestamp when the version ended.",
                        "format":"date-time",
                        "example":"2026-03-30T12:00:00Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Operation applied to the record. Allowed values: CREATED (record was added), MODIFIED (record was updated), REMOVED (record was logically removed).",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the audited action.",
                        "format":"uuid"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Internal object version number captured for optimistic locking.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number captured when the record was updated.",
                        "example":1
                    },
                    "studyLabId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "labId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "labName":{
                        "type":"string",
                        "example":"Sample Name"
                    },
                    "labStatus":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "oldSdfId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "vendorId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "labIdName":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "example":"Central Lab"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    }
                },
                "example":{
                    "studyLabId":"B1B8327AFAA6412287106192AB5984EF",
                    "labId":"B1B8327AFAA6412287106192AB5984EF",
                    "labStatus":"ACTIVE"
                }
            },
            "LabNormalOpTypeTO":{
                "required":[
                    "labNormalList",
                    "operationType"
                ],
                "type":"object",
                "properties":{
                    "operationType":{
                        "type":"string",
                        "description":"Operation for each lab normal bundle. Allowed values: CREATE (add new lab normal rows), UPDATE (modify existing rows), REMOVE (delete existing rows).",
                        "example":"UPDATE",
                        "enum":[
                            "CREATE",
                            "UPDATE",
                            "REMOVE"
                        ]
                    },
                    "labNormalList":{
                        "title":"Lab Normal List",
                        "type":"array",
                        "description":"Lab normals included in the operation.",
                        "example":[
                            {
                                "sequence":1,
                                "test":"HEMOGLOBIN",
                                "labUnit":"mg/dL",
                                "lowRange":"10",
                                "highRange":"100",
                                "gender":"Female",
                                "ageFrom":5,
                                "ageTo":15,
                                "ageFromUnits":"years",
                                "ageToUnits":"years"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LabNormalTO"
                        }
                    }
                }
            },
            "RegionCountryDto":{
                "title":"RegionCountryDto v1.0",
                "required":[
                    "countryId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Region Country ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this region-country association version was created.",
                        "format":"date-time",
                        "example":"2026-03-17T10:00:00Z"
                    },
                    "countryId":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Identifier of the country linked to the region.",
                        "format":"uuid"
                    },
                    "countryName":{
                        "title":"Country Name",
                        "type":"string",
                        "description":"Display name of the country associated with the region.",
                        "example":"United States"
                    }
                },
                "description":"Country metadata captured for each region.",
                "example":[
                    {
                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                        "countryName":"United States"
                    }
                ]
            },
            "RegionDto":{
                "title":"RegionDto v1.0",
                "required":[
                    "name",
                    "regionCountries"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Region ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this region version was created.",
                        "format":"date-time",
                        "example":"2026-03-17T10:00:00Z"
                    },
                    "name":{
                        "title":"Region Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Official name of the region.",
                        "example":"North America Region"
                    },
                    "regionCountries":{
                        "title":"RegionCountryDto v1.0",
                        "required":[
                            "countryId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region Country ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region-country association version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier of the country linked to the region.",
                                "format":"uuid"
                            },
                            "countryName":{
                                "title":"Country Name",
                                "type":"string",
                                "description":"Display name of the country associated with the region.",
                                "example":"United States"
                            }
                        },
                        "description":"Country metadata captured for each region.",
                        "example":[
                            {
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "countryName":"United States"
                            }
                        ]
                    }
                },
                "description":"Region metadata that lists associated countries.",
                "example":[
                    {
                        "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                        "name":"North America Region"
                    }
                ]
            },
            "RegionCountriesResponse":{
                "title":"RegionCountriesResponse v1.0",
                "type":"object",
                "properties":{
                    "regionCountries":{
                        "title":"RegionCountryDto v1.0",
                        "required":[
                            "countryId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region Country ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region-country association version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier of the country linked to the region.",
                                "format":"uuid"
                            },
                            "countryName":{
                                "title":"Country Name",
                                "type":"string",
                                "description":"Display name of the country associated with the region.",
                                "example":"United States"
                            }
                        },
                        "description":"Country metadata captured for each region.",
                        "example":[
                            {
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "countryName":"United States"
                            }
                        ]
                    }
                },
                "description":"Response containing countries associated with a region."
            },
            "RegionsResponse":{
                "title":"RegionsResponse v1.0",
                "type":"object",
                "properties":{
                    "regions":{
                        "title":"RegionDto v1.0",
                        "required":[
                            "name",
                            "regionCountries"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "name":{
                                "title":"Region Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official name of the region.",
                                "example":"North America Region"
                            },
                            "regionCountries":{
                                "title":"RegionCountryDto v1.0",
                                "required":[
                                    "countryId"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "id":{
                                        "title":"Region Country ID",
                                        "type":"string",
                                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                        "format":"uuid"
                                    },
                                    "versionStart":{
                                        "title":"Version Start",
                                        "type":"string",
                                        "description":"Timestamp when this region-country association version was created.",
                                        "format":"date-time",
                                        "example":"2026-03-17T10:00:00Z"
                                    },
                                    "countryId":{
                                        "title":"Country ID",
                                        "type":"string",
                                        "description":"Identifier of the country linked to the region.",
                                        "format":"uuid"
                                    },
                                    "countryName":{
                                        "title":"Country Name",
                                        "type":"string",
                                        "description":"Display name of the country associated with the region.",
                                        "example":"United States"
                                    }
                                },
                                "description":"Country metadata captured for each region.",
                                "example":[
                                    {
                                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                        "countryName":"United States"
                                    }
                                ]
                            }
                        },
                        "description":"Region metadata that lists associated countries.",
                        "example":[
                            {
                                "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "name":"North America Region"
                            }
                        ]
                    }
                },
                "description":"Response wrapping the region list returned by v1 APIs."
            },
            "RegionCountryStatesDto":{
                "title":"RegionCountryStatesDto v2.0",
                "required":[
                    "countryId",
                    "stateId"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Region Country ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this region-country association version was created.",
                        "format":"date-time",
                        "example":"2026-03-17T10:00:00Z"
                    },
                    "countryId":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Identifier of the country linked to the region.",
                        "format":"uuid"
                    },
                    "countryName":{
                        "title":"Country Name",
                        "type":"string",
                        "description":"Display name of the country associated with the region.",
                        "example":"United States"
                    },
                    "stateId":{
                        "title":"State ID",
                        "type":"string",
                        "description":"Identifier of the state associated with the country.",
                        "format":"uuid"
                    },
                    "stateName":{
                        "title":"State Name",
                        "type":"string",
                        "description":"Name of the state associated with the region.",
                        "example":"California"
                    }
                },
                "description":"Country and state metadata returned for a region.",
                "example":[
                    {
                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                        "stateName":"California"
                    }
                ]
            },
            "RegionStatesDto":{
                "title":"RegionStatesDto v2.0",
                "required":[
                    "name",
                    "regionCountriesStates"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"Region ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Timestamp when this region version was created.",
                        "format":"date-time",
                        "example":"2026-03-17T10:00:00Z"
                    },
                    "name":{
                        "title":"Region Name",
                        "maxLength":100,
                        "minLength":1,
                        "type":"string",
                        "description":"Official name of the region.",
                        "example":"North America Region"
                    },
                    "regionCountriesStates":{
                        "title":"RegionCountryStatesDto v2.0",
                        "required":[
                            "countryId",
                            "stateId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region Country ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region-country association version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier of the country linked to the region.",
                                "format":"uuid"
                            },
                            "countryName":{
                                "title":"Country Name",
                                "type":"string",
                                "description":"Display name of the country associated with the region.",
                                "example":"United States"
                            },
                            "stateId":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Identifier of the state associated with the country.",
                                "format":"uuid"
                            },
                            "stateName":{
                                "title":"State Name",
                                "type":"string",
                                "description":"Name of the state associated with the region.",
                                "example":"California"
                            }
                        },
                        "description":"Country and state metadata returned for a region.",
                        "example":[
                            {
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                "stateName":"California"
                            }
                        ]
                    }
                },
                "description":"Region metadata that lists country and state associations."
            },
            "RegionCountriesResponse2":{
                "title":"RegionCountriesResponse2 v2.0",
                "type":"object",
                "properties":{
                    "regionCountriesStates":{
                        "title":"RegionCountryStatesDto v2.0",
                        "required":[
                            "countryId",
                            "stateId"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region Country ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region-country association version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "countryId":{
                                "title":"Country ID",
                                "type":"string",
                                "description":"Identifier of the country linked to the region.",
                                "format":"uuid"
                            },
                            "countryName":{
                                "title":"Country Name",
                                "type":"string",
                                "description":"Display name of the country associated with the region.",
                                "example":"United States"
                            },
                            "stateId":{
                                "title":"State ID",
                                "type":"string",
                                "description":"Identifier of the state associated with the country.",
                                "format":"uuid"
                            },
                            "stateName":{
                                "title":"State Name",
                                "type":"string",
                                "description":"Name of the state associated with the region.",
                                "example":"California"
                            }
                        },
                        "description":"Country and state metadata returned for a region.",
                        "example":[
                            {
                                "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                "stateName":"California"
                            }
                        ]
                    }
                },
                "description":"Response containing countries and states associated with a region."
            },
            "RegionsResponse2":{
                "title":"RegionsResponse v2.0",
                "type":"object",
                "properties":{
                    "regions":{
                        "title":"RegionStatesDto v2.0",
                        "required":[
                            "name",
                            "regionCountriesStates"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"Region ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "title":"Version Start",
                                "type":"string",
                                "description":"Timestamp when this region version was created.",
                                "format":"date-time",
                                "example":"2026-03-17T10:00:00Z"
                            },
                            "name":{
                                "title":"Region Name",
                                "maxLength":100,
                                "minLength":1,
                                "type":"string",
                                "description":"Official name of the region.",
                                "example":"North America Region"
                            },
                            "regionCountriesStates":{
                                "title":"RegionCountryStatesDto v2.0",
                                "required":[
                                    "countryId",
                                    "stateId"
                                ],
                                "type":"object",
                                "properties":{
                                    "reason":{
                                        "title":"Reason",
                                        "maxLength":255,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Reason provided for the audited update.",
                                        "example":"Protocol update requested by study operations."
                                    },
                                    "comment":{
                                        "title":"Comment",
                                        "maxLength":2048,
                                        "minLength":0,
                                        "type":"string",
                                        "description":"Additional comment captured for the audited update.",
                                        "example":"Association adjusted after data reconciliation."
                                    },
                                    "id":{
                                        "title":"Region Country ID",
                                        "type":"string",
                                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the region-country association.",
                                        "format":"uuid"
                                    },
                                    "versionStart":{
                                        "title":"Version Start",
                                        "type":"string",
                                        "description":"Timestamp when this region-country association version was created.",
                                        "format":"date-time",
                                        "example":"2026-03-17T10:00:00Z"
                                    },
                                    "countryId":{
                                        "title":"Country ID",
                                        "type":"string",
                                        "description":"Identifier of the country linked to the region.",
                                        "format":"uuid"
                                    },
                                    "countryName":{
                                        "title":"Country Name",
                                        "type":"string",
                                        "description":"Display name of the country associated with the region.",
                                        "example":"United States"
                                    },
                                    "stateId":{
                                        "title":"State ID",
                                        "type":"string",
                                        "description":"Identifier of the state associated with the country.",
                                        "format":"uuid"
                                    },
                                    "stateName":{
                                        "title":"State Name",
                                        "type":"string",
                                        "description":"Name of the state associated with the region.",
                                        "example":"California"
                                    }
                                },
                                "description":"Country and state metadata returned for a region.",
                                "example":[
                                    {
                                        "countryId":"A0E1B2C3D4E5F67890123456789ABCDE",
                                        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                        "stateName":"California"
                                    }
                                ]
                            }
                        },
                        "description":"Region metadata that lists country and state associations.",
                        "example":[
                            {
                                "id":"A0E1B2C3D4E5F67890123456789ABCDE",
                                "name":"North America Region",
                                "regionCountriesStates":[
                                    {
                                        "countryId":"C0D1E2F3A4B567890123456789ABCDEF",
                                        "stateId":"B0C1D2E3F4A567890123456789ABCDEF",
                                        "stateName":"California"
                                    }
                                ]
                            }
                        ]
                    }
                },
                "description":"Response wrapping the region list returned by v2 APIs."
            },
            "SDFAddressDto":{
                "title":"SDFAddressDto v1.0",
                "required":[
                    "addressCity",
                    "addressCountry",
                    "addressPostalcode",
                    "addressStreet1",
                    "addressType"
                ],
                "type":"object",
                "properties":{
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the audited update.",
                        "example":"Protocol update requested by study operations."
                    },
                    "comment":{
                        "title":"Comment",
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment captured for the audited update.",
                        "example":"Association adjusted after data reconciliation."
                    },
                    "id":{
                        "title":"SDF Address ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the address.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "sdfId":{
                        "title":"SDF ID",
                        "type":"string",
                        "description":"Identifier of the SDF associated with the address.",
                        "format":"uuid"
                    },
                    "addressType":{
                        "title":"Address Type",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Label describing the address type such as Primary or Shipping.",
                        "example":"PRIMARY"
                    },
                    "addressStreet1":{
                        "title":"Address Street 1",
                        "maxLength":150,
                        "minLength":0,
                        "pattern":".*[A-z].*|.*\\p{L}+.*",
                        "type":"string",
                        "description":"Primary street address.",
                        "example":"123 Primary St"
                    },
                    "addressStreet2":{
                        "title":"Address Street 2",
                        "maxLength":150,
                        "minLength":0,
                        "type":"string",
                        "description":"Secondary street address (optional).",
                        "example":"Suite 500"
                    },
                    "addressCity":{
                        "title":"City",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"City for the address.",
                        "example":"Metropolis"
                    },
                    "addressStateOrProvOrCounty":{
                        "title":"State or Province or County",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"State, province, or county for the address.",
                        "example":"CA"
                    },
                    "addressPostalcode":{
                        "title":"Postal Code",
                        "maxLength":20,
                        "minLength":0,
                        "type":"string",
                        "description":"Postal or ZIP code for the address.",
                        "example":"94105"
                    },
                    "addressCountry":{
                        "title":"Country",
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Country for the address.",
                        "example":"US"
                    },
                    "fax":{
                        "title":"Fax",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Fax number for the address contact.",
                        "example":"+1-555-321-0000"
                    },
                    "email":{
                        "title":"Email",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Email address for the site or depot.",
                        "format":"email",
                        "example":"site@clinicalone.com"
                    },
                    "phone":{
                        "title":"Phone",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Phone number for the address contact.",
                        "example":"+1-555-987-6543"
                    }
                },
                "description":"Address metadata returned for a site or depot.",
                "example":[
                    {
                        "addressStreet1":"123 Primary St",
                        "addressCity":"Metropolis",
                        "addressCountry":"US"
                    }
                ]
            },
            "SDFModelDto":{
                "title":"SDFModelDto v1.0",
                "required":[
                    "sdf"
                ],
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFDto"
                    },
                    "sdfPropertyList":{
                        "title":"SDFPropertyDto v1.0",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Property ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF the property belongs to.",
                                "format":"uuid"
                            },
                            "propertyName":{
                                "title":"Property Name",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Key identifying the property.",
                                "example":"PRIMARY_CONTACT"
                            },
                            "propertyValue":{
                                "title":"Property Value",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Value stored for the property.",
                                "example":"ACTIVE"
                            }
                        },
                        "description":"Property metadata attached to an SDF.",
                        "example":[
                            {
                                "propertyName":"PRIMARY",
                                "propertyValue":"ACTIVE"
                            }
                        ]
                    },
                    "sdfAddresses":{
                        "title":"SDFAddressDto v1.0",
                        "required":[
                            "addressCity",
                            "addressCountry",
                            "addressPostalcode",
                            "addressStreet1",
                            "addressType"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Address ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the address.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF associated with the address.",
                                "format":"uuid"
                            },
                            "addressType":{
                                "title":"Address Type",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Label describing the address type such as Primary or Shipping.",
                                "example":"PRIMARY"
                            },
                            "addressStreet1":{
                                "title":"Address Street 1",
                                "maxLength":150,
                                "minLength":0,
                                "pattern":".*[A-z].*|.*\\p{L}+.*",
                                "type":"string",
                                "description":"Primary street address.",
                                "example":"123 Primary St"
                            },
                            "addressStreet2":{
                                "title":"Address Street 2",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Secondary street address (optional).",
                                "example":"Suite 500"
                            },
                            "addressCity":{
                                "title":"City",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"City for the address.",
                                "example":"Metropolis"
                            },
                            "addressStateOrProvOrCounty":{
                                "title":"State or Province or County",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"State, province, or county for the address.",
                                "example":"CA"
                            },
                            "addressPostalcode":{
                                "title":"Postal Code",
                                "maxLength":20,
                                "minLength":0,
                                "type":"string",
                                "description":"Postal or ZIP code for the address.",
                                "example":"94105"
                            },
                            "addressCountry":{
                                "title":"Country",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Country for the address.",
                                "example":"US"
                            },
                            "fax":{
                                "title":"Fax",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Fax number for the address contact.",
                                "example":"+1-555-321-0000"
                            },
                            "email":{
                                "title":"Email",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Email address for the site or depot.",
                                "format":"email",
                                "example":"site@clinicalone.com"
                            },
                            "phone":{
                                "title":"Phone",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Phone number for the address contact.",
                                "example":"+1-555-987-6543"
                            }
                        },
                        "description":"Address metadata returned for a site or depot.",
                        "example":[
                            {
                                "addressStreet1":"123 Primary St",
                                "addressCity":"Metropolis",
                                "addressCountry":"US"
                            }
                        ]
                    }
                },
                "description":"Wrapper that returns an SDF plus its addresses and properties."
            },
            "SDFAddressRequest":{
                "title":"SDFAddressRequest v1.0",
                "required":[
                    "sdfAddress"
                ],
                "type":"object",
                "properties":{
                    "sdfAddress":{
                        "$ref":"#/components/schemas/SDFAddressDto"
                    }
                },
                "description":"Request payload that wraps an SDF address."
            },
            "SDFCreatePropertyRequest":{
                "title":"SDFCreatePropertyRequest v1.0",
                "type":"object",
                "properties":{
                    "sdfPropertyList":{
                        "title":"SDFPropertyDto v1.0",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Property ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF the property belongs to.",
                                "format":"uuid"
                            },
                            "propertyName":{
                                "title":"Property Name",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Key identifying the property.",
                                "example":"PRIMARY_CONTACT"
                            },
                            "propertyValue":{
                                "title":"Property Value",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Value stored for the property.",
                                "example":"ACTIVE"
                            }
                        },
                        "description":"Property metadata attached to an SDF.",
                        "example":[
                            {
                                "propertyName":"PRIMARY_CONTACT",
                                "propertyValue":"ACTIVE"
                            }
                        ]
                    }
                },
                "description":"Request payload that wraps multiple SDF properties."
            },
            "SDFWithCreationDate":{
                "required":[
                    "sdf"
                ],
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFDto"
                    },
                    "sdfPropertyList":{
                        "title":"SDFPropertyDto v1.0",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Property ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF the property belongs to.",
                                "format":"uuid"
                            },
                            "propertyName":{
                                "title":"Property Name",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Key identifying the property.",
                                "example":"PRIMARY_CONTACT"
                            },
                            "propertyValue":{
                                "title":"Property Value",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Value stored for the property.",
                                "example":"ACTIVE"
                            }
                        },
                        "description":"Property metadata attached to an SDF.",
                        "example":[
                            {
                                "propertyName":"PRIMARY",
                                "propertyValue":"ACTIVE"
                            }
                        ]
                    },
                    "sdfAddresses":{
                        "title":"SDFAddressDto v1.0",
                        "required":[
                            "addressCity",
                            "addressCountry",
                            "addressPostalcode",
                            "addressStreet1",
                            "addressType"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Address ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the address.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF associated with the address.",
                                "format":"uuid"
                            },
                            "addressType":{
                                "title":"Address Type",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Label describing the address type such as Primary or Shipping.",
                                "example":"PRIMARY"
                            },
                            "addressStreet1":{
                                "title":"Address Street 1",
                                "maxLength":150,
                                "minLength":0,
                                "pattern":".*[A-z].*|.*\\p{L}+.*",
                                "type":"string",
                                "description":"Primary street address.",
                                "example":"123 Primary St"
                            },
                            "addressStreet2":{
                                "title":"Address Street 2",
                                "maxLength":150,
                                "minLength":0,
                                "type":"string",
                                "description":"Secondary street address (optional).",
                                "example":"Suite 500"
                            },
                            "addressCity":{
                                "title":"City",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"City for the address.",
                                "example":"Metropolis"
                            },
                            "addressStateOrProvOrCounty":{
                                "title":"State or Province or County",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"State, province, or county for the address.",
                                "example":"CA"
                            },
                            "addressPostalcode":{
                                "title":"Postal Code",
                                "maxLength":20,
                                "minLength":0,
                                "type":"string",
                                "description":"Postal or ZIP code for the address.",
                                "example":"94105"
                            },
                            "addressCountry":{
                                "title":"Country",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Country for the address.",
                                "example":"US"
                            },
                            "fax":{
                                "title":"Fax",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Fax number for the address contact.",
                                "example":"+1-555-321-0000"
                            },
                            "email":{
                                "title":"Email",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Email address for the site or depot.",
                                "format":"email",
                                "example":"site@clinicalone.com"
                            },
                            "phone":{
                                "title":"Phone",
                                "maxLength":50,
                                "minLength":0,
                                "type":"string",
                                "description":"Phone number for the address contact.",
                                "example":"+1-555-987-6543"
                            }
                        },
                        "description":"Address metadata returned for a site or depot.",
                        "example":[
                            {
                                "addressStreet1":"123 Primary St",
                                "addressCity":"Metropolis",
                                "addressCountry":"US"
                            }
                        ]
                    },
                    "creationDate":{
                        "type":"string",
                        "format":"date-time",
                        "example":"2026-01-15T10:30:00Z"
                    }
                }
            },
            "MultipleSitePropertyUpdateRequestDto":{
                "title":"MultipleSitePropertyUpdateRequestDto v1.0",
                "type":"object",
                "properties":{
                    "allSites":{
                        "title":"All Sites",
                        "type":"boolean",
                        "description":"Flag signifying whether the update applies to every site.",
                        "example":false
                    },
                    "siteIds":{
                        "title":"Site IDs",
                        "type":"array",
                        "description":"List of site identifiers targeted by the update.",
                        "example":[
                            "3F2504E0-4F89-11D3-9A0C-0305E82C3301"
                        ],
                        "items":{
                            "title":"Site IDs",
                            "type":"string",
                            "description":"List of site identifiers targeted by the update.",
                            "format":"uuid"
                        }
                    },
                    "sdfPropertyList":{
                        "title":"SDFPropertyDto v1.0",
                        "required":[
                            "propertyName",
                            "propertyValue"
                        ],
                        "type":"object",
                        "properties":{
                            "reason":{
                                "title":"Reason",
                                "maxLength":255,
                                "minLength":0,
                                "type":"string",
                                "description":"Reason provided for the audited update.",
                                "example":"Protocol update requested by study operations."
                            },
                            "comment":{
                                "title":"Comment",
                                "maxLength":2048,
                                "minLength":0,
                                "type":"string",
                                "description":"Additional comment captured for the audited update.",
                                "example":"Association adjusted after data reconciliation."
                            },
                            "id":{
                                "title":"SDF Property ID",
                                "type":"string",
                                "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the property entry.",
                                "format":"uuid"
                            },
                            "versionStart":{
                                "type":"string",
                                "format":"date-time"
                            },
                            "sdfId":{
                                "title":"SDF ID",
                                "type":"string",
                                "description":"Identifier of the SDF the property belongs to.",
                                "format":"uuid"
                            },
                            "propertyName":{
                                "title":"Property Name",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Key identifying the property.",
                                "example":"PRIMARY_CONTACT"
                            },
                            "propertyValue":{
                                "title":"Property Value",
                                "maxLength":100,
                                "minLength":0,
                                "type":"string",
                                "description":"Value stored for the property.",
                                "example":"ACTIVE"
                            }
                        },
                        "description":"Property metadata attached to an SDF.",
                        "example":[
                            {
                                "propertyName":"PRIMARY",
                                "propertyValue":"ACTIVE"
                            }
                        ]
                    }
                },
                "description":"Payload used to apply property updates across multiple sites."
            },
            "SDFPropertyRequest":{
                "title":"SDFPropertyRequest v1.0",
                "required":[
                    "sdfProperty"
                ],
                "type":"object",
                "properties":{
                    "sdfProperty":{
                        "$ref":"#/components/schemas/SDFPropertyDto"
                    }
                },
                "description":"Request payload that wraps a single SDF property."
            },
            "StudyVersionRequest":{
                "title":"StudyVersionRequest",
                "required":[
                    "newVersion",
                    "oldVersion"
                ],
                "type":"object",
                "properties":{
                    "oldVersion":{
                        "title":"Old Version",
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+)*$",
                        "type":"string",
                        "description":"Existing study version identifier.",
                        "example":"1.0"
                    },
                    "newVersion":{
                        "title":"New Version",
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+)*$",
                        "type":"string",
                        "description":"Target study version identifier.",
                        "example":"2.0"
                    }
                },
                "description":"Request to update study version associations."
            },
            "KitsCreateResponseV10Doc":{
                "title":"Kits Create Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by POST create kit."
            },
            "KitsGetAdvancedDosingCriteriaV10Doc":{
                "title":"Kits GET Advanced Dosing Criterion v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Criterion identifier.",
                        "format":"uuid"
                    },
                    "criteriaType":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Criterion type. `Question` evaluates a form response, `Dates` evaluates a date variable, `Cohort` matches cohort membership, `Treatment Arm` matches arm assignment, and `invalid` represents an unrecognized persisted value.",
                        "example":"Question",
                        "enum":[
                            "Question",
                            "Dates",
                            "Cohort",
                            "Treatment Arm",
                            "invalid"
                        ]
                    },
                    "visitName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit name associated with the criterion.",
                        "example":"Screening"
                    },
                    "visitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit identifier associated with the criterion.",
                        "format":"uuid"
                    },
                    "formName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Form name associated with the criterion.",
                        "example":"Demographics"
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form identifier associated with the criterion.",
                        "format":"uuid"
                    },
                    "questionName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Question name associated with the criterion.",
                        "example":"Age"
                    },
                    "questionId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Question identifier associated with the criterion.",
                        "format":"uuid"
                    },
                    "variable":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Variable label associated with the criterion.",
                        "example":"System Screening Date"
                    },
                    "variableId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Variable identifier associated with the criterion.",
                        "format":"uuid"
                    },
                    "timePeriod":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Time period qualifier used by date-based criteria. `After` means the event occurs after the supplied date, `Before` means it occurs before the supplied date, and `invalid` represents an unrecognized persisted value.",
                        "example":"Before",
                        "enum":[
                            "After",
                            "Before",
                            "invalid"
                        ]
                    },
                    "dateValue":{
                        "maxLength":10,
                        "minLength":10,
                        "type":"string",
                        "description":"Date value used by date-based criteria in `YYYY-MM-DD` format.",
                        "example":"2026-01-15"
                    },
                    "answer":{
                        "minItems":0,
                        "type":"array",
                        "description":"Selected answer values for choice-based criteria.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetLabelValueV10Doc"
                        }
                    },
                    "rule":{
                        "$ref":"#/components/schemas/KitsGetRuleV10Doc"
                    }
                },
                "description":"Advanced dosing group criterion."
            },
            "KitsGetAdvancedDosingGroupV10Doc":{
                "title":"Kits GET Advanced Dosing Group v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced dosing group identifier.",
                        "format":"uuid"
                    },
                    "groupName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced dosing group name.",
                        "example":"Adults"
                    },
                    "groupCriteria":{
                        "minItems":0,
                        "type":"array",
                        "description":"Criteria that determine whether the group applies.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetAdvancedDosingCriteriaV10Doc"
                        }
                    },
                    "kitSettings":{
                        "minItems":0,
                        "type":"array",
                        "description":"Kit settings applied when the group criteria are satisfied.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetAdvancedDosingKitSettingsV10Doc"
                        }
                    },
                    "instructions":{
                        "maxLength":2000,
                        "minLength":1,
                        "type":"string",
                        "description":"Instructions shown for the advanced dosing group.",
                        "example":"Dispense one kit when the adult criteria are met."
                    }
                },
                "description":"Advanced dosing group definition."
            },
            "KitsGetAdvancedDosingKitSettingsV10Doc":{
                "title":"Kits GET Advanced Dosing Kit Settings v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced dosing kit settings identifier.",
                        "format":"uuid"
                    },
                    "kitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit identifier.",
                        "format":"uuid"
                    },
                    "kitName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit name displayed in the advanced dosing group.",
                        "example":"Standard treatment kit"
                    },
                    "dosingId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosing identifier referenced by this advanced dosing group.",
                        "format":"uuid"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitsGetKitUnitSettingsV10Doc"
                    },
                    "dosings":{
                        "minItems":0,
                        "type":"array",
                        "description":"Calculated dosing definitions for the selected kit.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetKitDosingV10Doc"
                        }
                    },
                    "dosingLabel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Dosing label displayed for the advanced dosing kit setting.",
                        "example":"Dose 1"
                    },
                    "quantity":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Quantity of kits to dispense for this setting.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Kit settings used inside an advanced dosing group."
            },
            "KitsGetDoseSettingsV10Doc":{
                "title":"Kits GET Dose Settings v10.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of decimal places retained for the calculated dose.",
                        "format":"int32",
                        "example":1
                    },
                    "roundUp":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Rounding direction flag for the calculated dose.",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "maxLength":128,
                        "minLength":1,
                        "type":"string",
                        "description":"Dosing frequency label.",
                        "example":"Daily"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Whether leftover units are carried into the next dose.",
                        "example":false
                    }
                },
                "description":"Dose calculation settings."
            },
            "KitsGetDosingMeasurementV10Doc":{
                "title":"Kits GET Dosing Measurement v10.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitsGetValueUnitsV10Doc"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitsGetValueUnitsV10Doc"
                    }
                },
                "description":"Kit and subject measurements used for dose calculation."
            },
            "KitsGetDosingQuestionV10Doc":{
                "title":"Kits GET Dosing Question v10.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form identifier.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Question identifier.",
                        "format":"uuid"
                    }
                },
                "description":"Form question reference used by a dosing definition."
            },
            "KitsGetDosingVisitV10Doc":{
                "title":"Kits GET Dosing Visit v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit identifier.",
                        "format":"uuid"
                    },
                    "type":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit type for the dosing source visit. Allowed values: ScreeningVisit, ScheduleAbleVisit, SubjectWithdrawalVisit, SubjectCompletionVisit, UnScheduleAbleVisit, Event, AdverseEvent, ScreenFailureVisit, ReScreeningEvent.",
                        "example":"ScreeningVisit",
                        "enum":[
                            "ScreeningVisit",
                            "ScheduleAbleVisit",
                            "SubjectWithdrawalVisit",
                            "SubjectCompletionVisit",
                            "UnScheduleAbleVisit",
                            "Event",
                            "AdverseEvent",
                            "ScreenFailureVisit",
                            "ReScreeningEvent"
                        ]
                    }
                },
                "description":"Visit reference used by a dosing definition."
            },
            "KitsGetErrorDetailsDoc":{
                "title":"Kits GET Error Details",
                "type":"object",
                "properties":{
                    "studyId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Study identifier from the request.",
                        "format":"uuid"
                    },
                    "version":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Study version from the request.",
                        "example":"1.0.0.1"
                    },
                    "kitType":{
                        "maxLength":21,
                        "minLength":3,
                        "type":"string",
                        "description":"Kit type filter from the request. Allowed values: `ALL` for every kit type, `STANDARD` for standard kits, `TITRATION` for titration kits, `DEVICE` for device kits, and `advancedDispensation` for advanced dispensation kits.",
                        "example":"ALL",
                        "enum":[
                            "ALL",
                            "STANDARD",
                            "TITRATION",
                            "DEVICE",
                            "advancedDispensation"
                        ]
                    },
                    "kitTypeExclude":{
                        "type":"boolean",
                        "description":"Whether the request excluded the selected kit type instead of including it.",
                        "example":false
                    }
                },
                "description":"Request values echoed back in the error payload for troubleshooting.",
                "example":{
                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                    "version":"1.0.0.1",
                    "kitType":"ALL",
                    "kitTypeExclude":false
                }
            },
            "KitsGetErrorDoc":{
                "title":"Kits GET Error",
                "type":"object",
                "properties":{
                    "errorCode":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Application error code.",
                        "example":"C1-500"
                    },
                    "errorMessage":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable explanation of the failure.",
                        "example":"Unable to retrieve kits for the requested study version."
                    },
                    "details":{
                        "$ref":"#/components/schemas/KitsGetErrorDetailsDoc"
                    }
                },
                "description":"Error payload returned inside the Designer response envelope.",
                "example":{
                    "errorCode":"C1-500",
                    "errorMessage":"Unable to retrieve kits for the requested study version.",
                    "details":{
                        "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                        "version":"1.0.0.1",
                        "kitType":"ALL",
                        "kitTypeExclude":false
                    }
                }
            },
            "KitsGetKitDosingV10Doc":{
                "title":"Kits GET Kit Dosing v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosing identifier.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Display name for the dosing definition.",
                        "example":"Weight-based dose"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitsGetDosingQuestionV10Doc"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitsGetDosingVisitV10Doc"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitsGetDoseSettingsV10Doc"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitsGetDosingMeasurementV10Doc"
                    }
                },
                "description":"Calculated dosing definition returned by GET kits."
            },
            "KitsGetKitSettingsV10Doc":{
                "title":"Kits GET Kit Settings v10.0",
                "type":"object",
                "properties":{
                    "deviceType":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Device type for device kits. Allowed values: ActivityWatch, BloodPressureMonitor, WeightScale, ECGReader, Spirometer, MobileApp, SmartPillBottle, PulseOximeter, WearablePatch, Other, GlucoseMonitor.",
                        "example":"ActivityWatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConn":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Device connectivity type for device kits. `CloudtoCloud` means the device syncs through a third-party cloud service, `DevicetoCloud` means the device sends data directly to the platform cloud, and `NoConnection` means the device has no connectivity requirement.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Whether the kit uses calculated dosing.",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Whether the kit supports titration dosing.",
                        "example":false
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Whether the kit itself is a titration kit.",
                        "example":false
                    },
                    "distributionSetting":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Distribution setting for the kit. `BLINDED` hides treatment assignment, `UNBLINDED` exposes treatment assignment, and `UNBLINDEDPHARMAC` is unblinded for pharmacy-managed dispensing workflows.",
                        "example":"BLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED",
                            "UNBLINDEDPHARMAC"
                        ]
                    },
                    "kitTypeId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit type identifier.",
                        "example":"KIT_STD_001"
                    },
                    "kitDescription":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit description displayed to users.",
                        "example":"Standard treatment kit"
                    },
                    "storageSetting":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Storage setting for the kit. `AMBIENT` means room-temperature storage, `FROZEN` means frozen storage, and `REFRIGERATED` means refrigerated storage.",
                        "example":"AMBIENT",
                        "enum":[
                            "AMBIENT",
                            "FROZEN",
                            "REFRIGERATED"
                        ]
                    },
                    "trialSupplyType":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Trial supply type for the kit. Allowed values: BLISTERPACK, BOTTLE, DEVICE, SYRINGE, OINTMENT, VIAL, INHALER, INFUSION, BOX, OTHER.",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "minShipUnits":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Minimum number of ship units required for this kit.",
                        "format":"int64",
                        "example":10
                    },
                    "serialized":{
                        "type":"boolean",
                        "description":"Whether the kit is serialized.",
                        "example":true
                    },
                    "hazardousMaterial":{
                        "type":"boolean",
                        "description":"Whether the kit is hazardous material.",
                        "example":false
                    },
                    "controlSubstance":{
                        "type":"boolean",
                        "description":"Whether the kit is a controlled substance.",
                        "example":false
                    },
                    "bufferdays":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Buffer days for dispensing calculations.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Whether the kit can be dispensed outside the visit window.",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Whether titration dosing frequency is configured.",
                        "example":true
                    },
                    "doseChangeInUnschVisit":{
                        "type":"boolean",
                        "description":"Whether dose changes are allowed at unscheduled visits.",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of total dose changes.",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of up-titration dose changes.",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of down-titration dose changes.",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of total dose changes allowed for unscheduled visits.",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of up-titration dose changes allowed for unscheduled visits.",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum number of down-titration dose changes allowed for unscheduled visits.",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Unit used for the time between up-dose changes. `Days` measures the interval in calendar days and `Hours` measures the interval in hours.",
                        "example":"Days",
                        "enum":[
                            "Days",
                            "Hours"
                        ]
                    },
                    "timeBetweenUpDoseChanges":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Minimum time required between up-dose changes.",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenUpDoseChangesException":{
                        "type":"boolean",
                        "description":"Whether an exception is allowed for the time between up-dose changes.",
                        "example":true
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Unit used for the time between down-dose changes. `Days` measures the interval in calendar days and `Hours` measures the interval in hours.",
                        "example":"Days",
                        "enum":[
                            "Days",
                            "Hours"
                        ]
                    },
                    "timeBetweenDownDoseChanges":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Minimum time required between down-dose changes.",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesException":{
                        "type":"boolean",
                        "description":"Whether an exception is allowed for the time between down-dose changes.",
                        "example":true
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Whether to dispense on an up-titration request when the subject is already at the highest dose.",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Whether to dispense on a down-titration request when the subject is already at the lowest dose.",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Message shown when a subject is already at the highest dose.",
                        "example":"Subject is already at the highest dose."
                    },
                    "dispenseOnLowestDoseMsg":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Message shown when a subject is already at the lowest dose.",
                        "example":"Subject is already at the lowest dose."
                    }
                },
                "description":"Kit settings returned by GET kits."
            },
            "KitsGetKitUnitSettingsV10Doc":{
                "title":"Kits GET Kit Unit Settings v10.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "minimum":0,
                        "type":"number",
                        "description":"Number of units per kit.",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitsGetValueUnitsV10Doc"
                    }
                },
                "description":"Unit settings returned by GET kits."
            },
            "KitsGetKitV10Doc":{
                "title":"Kits GET Kit v10.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit identifier.",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitsGetKitSettingsV10Doc"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitsGetKitUnitSettingsV10Doc"
                    },
                    "kitTitrations":{
                        "minItems":0,
                        "type":"array",
                        "description":"Titration rows configured for the kit.",
                        "example":[
                            {
                                "rowId":"81B8327AFAA6412287106192AB5984EF",
                                "titrationKitId":"B1B8327AFAA6412287106192AB5984EF",
                                "titrationKitLabel":"Low Dose",
                                "titrationKitSeq":1,
                                "titrationKitJson":{
                                    "titrationKitItems":[
                                        {
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitSeq":1,
                                            "kitDosage":"QD",
                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                },
                                "upTitrationKitJson":{
                                    "titrationKitItems":[
                                        {
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitSeq":1,
                                            "kitDosage":"QD",
                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                },
                                "maintainTitrationKitJson":{
                                    "titrationKitItems":[
                                        {
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitSeq":1,
                                            "kitDosage":"QD",
                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                },
                                "downTitrationKitJson":{
                                    "titrationKitItems":[
                                        {
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "kitSeq":1,
                                            "kitDosage":"QD",
                                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                        }
                                    ]
                                }
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitsGetTitrationGroupV10Doc"
                        }
                    },
                    "dosings":{
                        "minItems":0,
                        "type":"array",
                        "description":"Calculated dosing definitions associated with the kit.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetKitDosingV10Doc"
                        }
                    },
                    "dosage":{
                        "minimum":0,
                        "type":"number",
                        "description":"Legacy dosage value returned for backward compatibility.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Whether this kit is the default kit for the current configuration.",
                        "example":true
                    },
                    "versionStart":{
                        "maxLength":40,
                        "minLength":20,
                        "type":"string",
                        "description":"Version start timestamp for the kit record.",
                        "format":"date-time",
                        "example":"2026-01-15T10:15:30Z"
                    },
                    "versionEnd":{
                        "maxLength":40,
                        "minLength":20,
                        "type":"string",
                        "description":"Version end timestamp for the kit record.",
                        "format":"date-time",
                        "example":"3099-12-31T00:00:00Z"
                    },
                    "studyId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Study identifier.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "maxLength":40,
                        "minLength":20,
                        "type":"string",
                        "description":"Study version start timestamp.",
                        "format":"date-time",
                        "example":"2026-01-15T10:15:30Z"
                    },
                    "studyVersionEnd":{
                        "maxLength":40,
                        "minLength":20,
                        "type":"string",
                        "description":"Study version end timestamp.",
                        "format":"date-time",
                        "example":"3099-12-31T00:00:00Z"
                    },
                    "exceptions":{
                        "minItems":0,
                        "type":"array",
                        "description":"Titration exceptions configured for the kit.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetTitrationExceptionV10Doc"
                        }
                    },
                    "advancedDosing":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Advanced dosing flag for the kit. `0` means disabled and `1` means enabled.",
                        "format":"int32",
                        "example":1
                    },
                    "advancedDosingGroups":{
                        "minItems":0,
                        "type":"array",
                        "description":"Advanced dosing groups that define criteria-based kit selection rules.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetAdvancedDosingGroupV10Doc"
                        }
                    },
                    "libraryKitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Library kit identifier when the kit is based on a library kit.",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Pooling identifier for pooled kits.",
                        "example":"POOL12"
                    }
                },
                "description":"Kit details returned by the GET kits endpoint.",
                "example":{
                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                    "kitSettings":{
                        "deviceType":"ActivityWatch",
                        "deviceConn":"DevicetoCloud",
                        "calculatingDoses":true,
                        "titratingDoses":false,
                        "titrationKit":false,
                        "distributionSetting":"BLINDED",
                        "kitTypeId":"KIT_STD_001",
                        "kitDescription":"Standard treatment kit",
                        "storageSetting":"AMBIENT",
                        "trialSupplyType":"BOTTLE",
                        "minShipUnits":10,
                        "serialized":true,
                        "hazardousMaterial":false,
                        "controlSubstance":false,
                        "bufferdays":5,
                        "dispenseOutsideWindow":false
                    },
                    "kitUnitSettings":{
                        "unitsPerKit":20,
                        "singleUnitDose":{
                            "value":10,
                            "units":"mg"
                        }
                    },
                    "dosings":[
                        {
                            "id":"D1B8327AFAA6412287106192AB5984EF",
                            "name":"Weight-based dose",
                            "question":{
                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                            },
                            "visit":{
                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                "type":"ScreeningVisit"
                            },
                            "dose":{
                                "precision":1,
                                "roundUp":1,
                                "frequency":"Daily",
                                "leftOverUnits":false
                            },
                            "measurement":{
                                "kit":{
                                    "value":10,
                                    "units":"mg"
                                },
                                "subject":{
                                    "value":70,
                                    "units":"kg"
                                }
                            }
                        }
                    ],
                    "exceptions":[
                        {
                            "id":"91B8327AFAA6412287106192AB5984EF",
                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                            "sequence":1,
                            "startingDoseJson":{
                                "titrationKitExceptionItems":[
                                    {
                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                        "kitSeq":1,
                                        "kitDosage":"QD",
                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                    }
                                ]
                            },
                            "endingDoseJson":{
                                "titrationKitExceptionItems":[
                                    {
                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                        "kitSeq":2,
                                        "kitDosage":"BID",
                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                    }
                                ]
                            },
                            "minTimeBetweenDoseChangesUnit":"Days",
                            "minTimeBetweenDoseChanges":2,
                            "exceptionType":"UP_EXCEPTION"
                        }
                    ],
                    "advancedDosing":1,
                    "advancedDosingGroups":[
                        {
                            "id":"71B8327AFAA6412287106192AB5984EF",
                            "groupName":"Adults",
                            "groupCriteria":[
                                {
                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                    "criteriaType":"Question",
                                    "visitName":"Screening",
                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                    "formName":"Demographics",
                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                    "questionName":"Age",
                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                    "variable":"System Screening Date",
                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                    "timePeriod":"Before",
                                    "dateValue":"2026-01-15",
                                    "answer":[
                                        {
                                            "value":"18_PLUS",
                                            "label":"18 years or older"
                                        }
                                    ],
                                    "rule":{
                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                        "ruleName":"Greater Than Or Equal To",
                                        "value":"18",
                                        "valueList":[
                                            {
                                                "value":"18",
                                                "label":"18"
                                            }
                                        ],
                                        "lower":{
                                            "value":"18",
                                            "inclusive":true
                                        },
                                        "upper":{
                                            "value":"120",
                                            "inclusive":true
                                        }
                                    }
                                }
                            ],
                            "kitSettings":[
                                {
                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                    "kitName":"Standard treatment kit",
                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                    "kitUnitSettings":{
                                        "unitsPerKit":20,
                                        "singleUnitDose":{
                                            "value":10,
                                            "units":"mg"
                                        }
                                    },
                                    "dosings":[
                                        {
                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                            "name":"Weight-based dose",
                                            "question":{
                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                            },
                                            "visit":{
                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                "type":"ScreeningVisit"
                                            },
                                            "dose":{
                                                "precision":1,
                                                "roundUp":1,
                                                "frequency":"Daily",
                                                "leftOverUnits":false
                                            },
                                            "measurement":{
                                                "kit":{
                                                    "value":10,
                                                    "units":"mg"
                                                },
                                                "subject":{
                                                    "value":70,
                                                    "units":"kg"
                                                }
                                            }
                                        }
                                    ],
                                    "dosingLabel":"Dose 1",
                                    "quantity":1
                                }
                            ],
                            "instructions":"Dispense one kit when the adult criteria are met."
                        }
                    ],
                    "versionStart":"2026-01-15T10:15:30Z",
                    "versionEnd":"3099-12-31T00:00:00Z",
                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                    "studyVersionStart":"2026-01-15T10:15:30Z",
                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                    "poolingId":"POOL12",
                    "isDefault":true,
                    "dosage":50
                }
            },
            "KitsGetLabelValueV10Doc":{
                "title":"Kits GET Label Value v10.0",
                "type":"object",
                "properties":{
                    "value":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Stored value.",
                        "example":"18_PLUS"
                    },
                    "label":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Display label.",
                        "example":"18 years or older"
                    }
                },
                "description":"Label and value pair used across advanced dosing rules."
            },
            "KitsGetRangeRuleBoundaryV10Doc":{
                "title":"Kits GET Range Rule Boundary v10.0",
                "type":"object",
                "properties":{
                    "value":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Boundary value.",
                        "example":"18"
                    },
                    "inclusive":{
                        "type":"boolean",
                        "description":"Whether the boundary is inclusive.",
                        "example":true
                    }
                },
                "description":"Boundary value for a range-based rule."
            },
            "KitsGetRuleV10Doc":{
                "title":"Kits GET Rule v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Rule identifier.",
                        "format":"uuid"
                    },
                    "ruleName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Rule display name.",
                        "example":"Greater Than Or Equal To"
                    },
                    "value":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Single rule value when the rule accepts one value.",
                        "example":"18"
                    },
                    "valueList":{
                        "minItems":0,
                        "type":"array",
                        "description":"List of allowed rule values for list-based rules.",
                        "items":{
                            "$ref":"#/components/schemas/KitsGetLabelValueV10Doc"
                        }
                    },
                    "lower":{
                        "$ref":"#/components/schemas/KitsGetRangeRuleBoundaryV10Doc"
                    },
                    "upper":{
                        "$ref":"#/components/schemas/KitsGetRangeRuleBoundaryV10Doc"
                    }
                },
                "description":"Advanced dosing evaluation rule."
            },
            "KitsGetTitrationExceptionItemsV10Doc":{
                "title":"Kits GET Titration Exception Items v10.0",
                "type":"object",
                "properties":{
                    "titrationKitExceptionItems":{
                        "minItems":0,
                        "type":"array",
                        "description":"Titration kit items used by the exception.",
                        "example":[
                            {
                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                "kitSeq":1,
                                "kitDosage":"QD",
                                "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitsGetTitrationKitItemV10Doc"
                        }
                    }
                },
                "description":"Collection of titration kit items used by an exception.",
                "example":{
                    "titrationKitExceptionItems":[
                        {
                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                            "kitSeq":1,
                            "kitDosage":"QD",
                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                        }
                    ]
                }
            },
            "KitsGetTitrationExceptionV10Doc":{
                "title":"Kits GET Titration Exception v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Exception identifier.",
                        "format":"uuid"
                    },
                    "kitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Identifier of the kit that owns the exception.",
                        "format":"uuid"
                    },
                    "sequence":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Display order for the exception.",
                        "format":"int64",
                        "example":1
                    },
                    "startingDoseJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationExceptionItemsV10Doc"
                    },
                    "endingDoseJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationExceptionItemsV10Doc"
                    },
                    "minTimeBetweenDoseChangesUnit":{
                        "maxLength":16,
                        "minLength":1,
                        "type":"string",
                        "description":"Minimum time-between-dose-changes unit for the exception. `Days` measures the interval in calendar days and `Hours` measures the interval in hours.",
                        "example":"Days",
                        "enum":[
                            "Days",
                            "Hours"
                        ]
                    },
                    "minTimeBetweenDoseChanges":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Minimum time between dose changes for the exception.",
                        "format":"int64",
                        "example":2
                    },
                    "exceptionType":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Exception type. `UP_EXCEPTION` applies when moving to a higher dose and `DOWN_EXCEPTION` applies when moving to a lower dose.",
                        "example":"UP_EXCEPTION",
                        "enum":[
                            "UP_EXCEPTION",
                            "DOWN_EXCEPTION"
                        ]
                    }
                },
                "description":"Titration exception returned by GET kits."
            },
            "KitsGetTitrationGroupV10Doc":{
                "title":"Kits GET Titration Group v10.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Titration row identifier.",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Current titration kit identifier.",
                        "format":"uuid"
                    },
                    "titrationKitLabel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Dose level label for the titration row.",
                        "example":"Low Dose"
                    },
                    "titrationKitSeq":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence of the titration row inside the kit.",
                        "format":"int64",
                        "example":1
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationItemsV10Doc"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationItemsV10Doc"
                    },
                    "maintainTitrationKitJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationItemsV10Doc"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/KitsGetTitrationItemsV10Doc"
                    }
                },
                "description":"Titration group row returned by GET kits."
            },
            "KitsGetTitrationItemsV10Doc":{
                "title":"Kits GET Titration Items v10.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "minItems":0,
                        "type":"array",
                        "description":"Titration kit items in the current group.",
                        "example":[
                            {
                                "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                "kitSeq":1,
                                "kitDosage":"QD",
                                "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitsGetTitrationKitItemV10Doc"
                        }
                    }
                },
                "description":"Collection of titration kit items.",
                "example":{
                    "titrationKitItems":[
                        {
                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                            "kitSeq":1,
                            "kitDosage":"QD",
                            "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                        }
                    ]
                }
            },
            "KitsGetTitrationKitItemV10Doc":{
                "title":"Kits GET Titration Kit Item v10.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit identifier.",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence of the kit inside the titration list.",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Dosage label for the kit.",
                        "example":"QD"
                    },
                    "dosageId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosage identifier for the kit.",
                        "format":"uuid"
                    }
                },
                "description":"Titration kit item returned by GET kits."
            },
            "KitsGetValueUnitsV10Doc":{
                "title":"Kits GET Value Units v10.0",
                "type":"object",
                "properties":{
                    "value":{
                        "minimum":0,
                        "type":"number",
                        "description":"Numeric value for the measurement.",
                        "format":"double",
                        "example":10
                    },
                    "units":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Measurement units.",
                        "example":"mg"
                    }
                },
                "description":"Value and unit pair used by dosing and kit unit settings."
            },
            "AdvancedDosingGroupCriteriaDtoV1":{
                "title":"Advanced Dosing Group Criteria v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Group Criteria GUID",
                        "format":"uuid"
                    },
                    "Criteria type value":{
                        "type":"string",
                        "description":"Criteria type value",
                        "example":"Variable",
                        "enum":[
                            "Question",
                            "Dates",
                            "Cohort",
                            "Treatment Arm",
                            "invalid"
                        ]
                    },
                    "Visit name":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Screening"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "Form name":{
                        "type":"string",
                        "description":"Form name",
                        "example":"Demographics"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "Question name":{
                        "type":"string",
                        "description":"Question name",
                        "example":"Gender"
                    },
                    "questionId":{
                        "type":"string",
                        "description":"Question GUID",
                        "format":"uuid"
                    },
                    "Variable type value":{
                        "type":"string",
                        "description":"Variable type value",
                        "example":"System Screening Date"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable codelist GUID",
                        "format":"uuid"
                    },
                    "timePeriod":{
                        "type":"string",
                        "description":"Timeframe for variable",
                        "example":"Before"
                    },
                    "Date Value":{
                        "type":"string",
                        "description":"Date Value for variable",
                        "example":"2023-03-15"
                    },
                    "Answer":{
                        "type":"array",
                        "description":"Answer for choice question name",
                        "example":"Female",
                        "items":{
                            "$ref":"#/components/schemas/GenericAttributeDtoV1"
                        }
                    },
                    "rule":{
                        "$ref":"#/components/schemas/AdvancedDosingRuleDtoV1"
                    }
                },
                "description":"Advanced Dosing Group Criteria details"
            },
            "AdvancedDosingGroupDtoV1":{
                "title":"Advanced Dosing Group v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Advanced dosing group GUID",
                        "format":"uuid"
                    },
                    "Group name":{
                        "type":"string",
                        "description":"Group name",
                        "example":"Group A"
                    },
                    "Group criteria":{
                        "type":"array",
                        "description":"Group criteria",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupCriteriaDtoV1"
                        }
                    },
                    "Kit settings":{
                        "type":"array",
                        "description":"Kit settings",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingKitSettingsDtoV1"
                        }
                    },
                    "Instructions":{
                        "type":"string",
                        "description":"Instructions",
                        "example":"Group amndatory details should be provided"
                    }
                },
                "description":"Advanced Dosing Group details"
            },
            "AdvancedDosingKitSettingsDtoV1":{
                "title":"Advanced Dosing Kit Settings v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kits settings GUID",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "Kit name":{
                        "type":"string",
                        "description":"Kit name",
                        "example":"Kit a"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV10"
                    },
                    "dosings":{
                        "type":"array",
                        "description":"Calculated dosing definitions for the kit",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV10"
                        }
                    },
                    "Dosing Label":{
                        "type":"string",
                        "description":"Dosing Label",
                        "example":"Dose3"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Advanced Dosing Kit Settings details"
            },
            "AdvancedDosingRuleDtoV1":{
                "title":"Advanced Dosing Rule v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Rule Unique GUID",
                        "format":"uuid"
                    },
                    "ruleName":{
                        "type":"string",
                        "description":"Rule name",
                        "example":"Greater Than Or Equal To"
                    },
                    "Rule value":{
                        "type":"string",
                        "description":"Rule value",
                        "example":"2"
                    },
                    "Rule value list":{
                        "type":"string",
                        "description":"Rule value list"
                    },
                    "lower":{
                        "$ref":"#/components/schemas/RangeRuleValues"
                    },
                    "upper":{
                        "$ref":"#/components/schemas/RangeRuleValues"
                    }
                },
                "description":"Advanced Dosing rule details"
            },
            "GenericAttributeDtoV1":{
                "title":"Generic Attribute v1.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Attribute value. For example, Cohort1 UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Attribute label",
                        "example":"Cohort1"
                    }
                },
                "description":"Generic attribute name, value and label details",
                "example":"Female"
            },
            "KitDosingDoseDtoV10":{
                "title":"KitDosingDoseDto v10.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV10":{
                "title":"KitDosingDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV10"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV10"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV10"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV10"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV10":{
                "title":"KitDosingMeasurementDto v10.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV10"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV10"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV10":{
                "title":"KitDosingQuestionDto v10.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV10":{
                "title":"KitDosingValueUnitsDto v10.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV10":{
                "title":"KitDosingVisitDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitSettingsDtoV10":{
                "title":"KitSettingsDto v10.0",
                "type":"object",
                "properties":{
                    "deviceType":{
                        "type":"string",
                        "description":"Indicates type of device in case of device kit",
                        "example":"Blood pressure monitor"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Indicates device connection in case of device kit",
                        "example":"Cloud to Cloud"
                    },
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has titrating doses",
                        "example":true
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates if the kit is a titration kit",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    },
                    "serialized":{
                        "type":"boolean",
                        "description":"Is kit serialized?",
                        "example":true
                    },
                    "hazardousMaterial":{
                        "type":"boolean",
                        "description":"Is kit hazardous?",
                        "example":false
                    },
                    "controlSubstance":{
                        "type":"boolean",
                        "description":"Is kit a control substance?",
                        "example":false
                    },
                    "bufferdays":{
                        "type":"integer",
                        "description":"The number of buffer days",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates if the kit may be dispensed outside the window",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Indicates if the titration kit has dosing frequencies defined",
                        "example":true
                    },
                    "doseChangeUnschVisit":{
                        "type":"boolean",
                        "description":"Indicates if dosage change is allowed in an unscheduled visit for the titration kit",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between up dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "description":"Time between up dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenUpDoseChangesException":{
                        "type":"boolean",
                        "description":"Time between up dosage changes exception",
                        "format":"true",
                        "example":true
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between down dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "description":"Time between down dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesException":{
                        "type":"boolean",
                        "description":"Time between down dosage changes exception",
                        "format":"true",
                        "example":true
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on up titrate when already on highest dose",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on down titrate when already on lowest dose",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on up titrate when subject is on highest dose",
                        "example":"Message when subject is on highest dose"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on down titrate when subject is on lowest dose",
                        "example":"Message when subject is on lowest dose"
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitTitrationsDtoV10":{
                "title":"KitTitrationsDto v10.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "description":"Id of the titration row",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "description":"Id of the current titration kit",
                        "format":"uuid"
                    },
                    "titrationKitLabel":{
                        "type":"string",
                        "description":"Custom optional Dose Level title to indicate a dose level for a row within a Titration Group",
                        "example":"Low Dose"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "description":"Sequence number of the current titration row within the kit",
                        "format":"int64",
                        "example":5
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV10"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV10"
                    },
                    "maintainTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV10"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV10"
                    }
                },
                "description":"Contains titrations information on the titration kit."
            },
            "KitUnitSettingsDtoV10":{
                "title":"KitUnitSettingsDto v10.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV10"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "RangeRuleValues":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Boundary value for range",
                        "example":"1"
                    },
                    "inclusive":{
                        "type":"boolean",
                        "description":"Flag that indicates whether boundary condition value is inclusive while consideration",
                        "example":true
                    }
                },
                "description":"Range rule upper boundary details"
            },
            "RqstKitDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV10"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV10"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV10"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV10"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    },
                    "exceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV10"
                        }
                    },
                    "advancedDosing":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "advancedDosingGroups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupDtoV1"
                        }
                    },
                    "libraryKitId":{
                        "type":"string",
                        "description":"Library Kit GUID",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string",
                        "description":"Pooling Kit ID",
                        "example":"POL12"
                    }
                }
            },
            "TitrationKitItemDtoV10":{
                "title":"TitrationKitItemDto v10.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    },
                    "dosageId":{
                        "type":"string",
                        "description":"Dosage Id",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemsDtoV10":{
                "title":"TitrationKitItemsDto v10.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/TitrationKitItemDtoV10"
                        }
                    }
                },
                "description":"Titration Kit Items"
            },
            "KitsDeleteResponseV10Doc":{
                "title":"Kits Delete Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Deletion status message returned by the service.",
                        "example":"Kit deleted successfully."
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by DELETE kit."
            },
            "KitsGetByIdResponseV10Doc":{
                "title":"Kits GET By Id Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by GET kit by id."
            },
            "KitsGetResponseV10Doc":{
                "title":"Kits GET Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "minItems":0,
                        "type":"array",
                        "description":"List of kits returned for the requested study version.",
                        "example":[
                            {
                                "kitId":"B1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitsGetKitV10Doc"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by GET kits."
            },
            "KitsUpdateResponseV10Doc":{
                "title":"Kits Update Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by PUT update kit."
            },
            "VisitArmKitVisitBlindedInfoV10Doc":{
                "title":"Visit Arm Kit Visit Blinded Info v10.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit identifier.",
                        "format":"uuid"
                    },
                    "armid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Treatment arm identifier.",
                        "format":"uuid"
                    },
                    "visitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit identifier.",
                        "format":"uuid"
                    },
                    "adGroupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced dispensation group identifier when advanced dosing selected this row.",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosing identifier associated with the row.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Quantity of kits or dose to dispense for the visit row.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Do-not-dispense threshold in days before kit expiration.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Whether the kit can be dispensed outside the visit window.",
                        "example":false
                    },
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dispensation row identifier.",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Whether titration is allowed for the row.",
                        "example":true
                    },
                    "titrationKits":{
                        "minItems":0,
                        "type":"array",
                        "description":"Titration kits associated with the row.",
                        "items":{
                            "$ref":"#/components/schemas/VisitArmKitVisitTitrationV10Doc"
                        }
                    },
                    "blindedInfo":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    }
                },
                "description":"Visit kit dispensation row with blinded kit information."
            },
            "VisitArmKitVisitTitrationV10Doc":{
                "title":"Visit Arm Kit Visit Titration v10.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit type label for the titration kit.",
                        "example":"KIT_STD_001"
                    },
                    "kitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Titration kit identifier.",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Quantity of kits dispensed for this titration entry.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Titration kit summary associated with a visit row."
            },
            "VisitKitsBlindedInfoResponseV10Doc":{
                "title":"Visit Kits Blinded Info Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "minItems":0,
                        "type":"array",
                        "description":"Visit kit rows with blinded kit information for the requested visit.",
                        "example":[
                            {
                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                "armid":"C1B8327AFAA6412287106192AB5984EF",
                                "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                "quantity":1,
                                "dnd":5,
                                "dispenseoutsidewindow":false,
                                "id":"E1B8327AFAA6412287106192AB5984EF",
                                "allowTitration":true,
                                "titrationKits":[
                                    {
                                        "kitTypeId":"KIT_STD_001",
                                        "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                        "kitQuantity":1
                                    }
                                ],
                                "blindedInfo":{
                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                    "kitSettings":{
                                        "deviceType":"ActivityWatch",
                                        "deviceConn":"DevicetoCloud",
                                        "calculatingDoses":true,
                                        "titratingDoses":false,
                                        "titrationKit":false,
                                        "distributionSetting":"BLINDED",
                                        "kitTypeId":"KIT_STD_001",
                                        "kitDescription":"Standard treatment kit",
                                        "storageSetting":"AMBIENT",
                                        "trialSupplyType":"BOTTLE",
                                        "minShipUnits":10,
                                        "serialized":true,
                                        "hazardousMaterial":false,
                                        "controlSubstance":false,
                                        "bufferdays":5,
                                        "dispenseOutsideWindow":false
                                    },
                                    "kitUnitSettings":{
                                        "unitsPerKit":20,
                                        "singleUnitDose":{
                                            "value":10,
                                            "units":"mg"
                                        }
                                    },
                                    "dosings":[
                                        {
                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                            "name":"Weight-based dose",
                                            "question":{
                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                            },
                                            "visit":{
                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                "type":"ScreeningVisit"
                                            },
                                            "dose":{
                                                "precision":1,
                                                "roundUp":1,
                                                "frequency":"Daily",
                                                "leftOverUnits":false
                                            },
                                            "measurement":{
                                                "kit":{
                                                    "value":10,
                                                    "units":"mg"
                                                },
                                                "subject":{
                                                    "value":70,
                                                    "units":"kg"
                                                }
                                            }
                                        }
                                    ],
                                    "exceptions":[
                                        {
                                            "id":"91B8327AFAA6412287106192AB5984EF",
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sequence":1,
                                            "startingDoseJson":{
                                                "titrationKitExceptionItems":[
                                                    {
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitSeq":1,
                                                        "kitDosage":"QD",
                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ]
                                            },
                                            "endingDoseJson":{
                                                "titrationKitExceptionItems":[
                                                    {
                                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                        "kitSeq":2,
                                                        "kitDosage":"BID",
                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ]
                                            },
                                            "minTimeBetweenDoseChangesUnit":"Days",
                                            "minTimeBetweenDoseChanges":2,
                                            "exceptionType":"UP_EXCEPTION"
                                        }
                                    ],
                                    "advancedDosing":1,
                                    "advancedDosingGroups":[
                                        {
                                            "id":"71B8327AFAA6412287106192AB5984EF",
                                            "groupName":"Adults",
                                            "groupCriteria":[
                                                {
                                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                                    "criteriaType":"Question",
                                                    "visitName":"Screening",
                                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                    "formName":"Demographics",
                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "questionName":"Age",
                                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                    "variable":"System Screening Date",
                                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                    "timePeriod":"Before",
                                                    "dateValue":"2026-01-15",
                                                    "answer":[
                                                        {
                                                            "value":"18_PLUS",
                                                            "label":"18 years or older"
                                                        }
                                                    ],
                                                    "rule":{
                                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                                        "ruleName":"Greater Than Or Equal To",
                                                        "value":"18",
                                                        "valueList":[
                                                            {
                                                                "value":"18",
                                                                "label":"18"
                                                            }
                                                        ],
                                                        "lower":{
                                                            "value":"18",
                                                            "inclusive":true
                                                        },
                                                        "upper":{
                                                            "value":"120",
                                                            "inclusive":true
                                                        }
                                                    }
                                                }
                                            ],
                                            "kitSettings":[
                                                {
                                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitName":"Standard treatment kit",
                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "kitUnitSettings":{
                                                        "unitsPerKit":20,
                                                        "singleUnitDose":{
                                                            "value":10,
                                                            "units":"mg"
                                                        }
                                                    },
                                                    "dosings":[
                                                        {
                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                            "name":"Weight-based dose",
                                                            "question":{
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                            },
                                                            "visit":{
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"ScreeningVisit"
                                                            },
                                                            "dose":{
                                                                "precision":1,
                                                                "roundUp":1,
                                                                "frequency":"Daily",
                                                                "leftOverUnits":false
                                                            },
                                                            "measurement":{
                                                                "kit":{
                                                                    "value":10,
                                                                    "units":"mg"
                                                                },
                                                                "subject":{
                                                                    "value":70,
                                                                    "units":"kg"
                                                                }
                                                            }
                                                        }
                                                    ],
                                                    "dosingLabel":"Dose 1",
                                                    "quantity":1
                                                }
                                            ],
                                            "instructions":"Dispense one kit when the adult criteria are met."
                                        }
                                    ],
                                    "versionStart":"2026-01-15T10:15:30Z",
                                    "versionEnd":"3099-12-31T00:00:00Z",
                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                    "studyVersionStart":"2026-01-15T10:15:30Z",
                                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                    "poolingId":"POOL12",
                                    "isDefault":true,
                                    "dosage":50
                                }
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/VisitArmKitVisitBlindedInfoV10Doc"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by GET visit kits blinded info."
            },
            "VisitDispensingsResponseV10Doc":{
                "title":"Visit Dispensings Response v10.0",
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Envelope status returned by this endpoint. Allowed value: `success`, which indicates the Designer response wrapper was created successfully for this request.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "minItems":0,
                        "type":"array",
                        "description":"Visit dispensation rows for the requested visit.",
                        "example":[
                            {
                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                "armid":"C1B8327AFAA6412287106192AB5984EF",
                                "visitid":"A1B8327AFAA6412287106192AB5984EF",
                                "adGroupId":"71B8327AFAA6412287106192AB5984EF",
                                "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                "quantity":1,
                                "dnd":5,
                                "dispenseoutsidewindow":false,
                                "id":"E1B8327AFAA6412287106192AB5984EF",
                                "allowTitration":true,
                                "titrationKits":[
                                    {
                                        "kitTypeId":"KIT_STD_001",
                                        "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                        "kitQuantity":1
                                    }
                                ],
                                "blindedInfo":{
                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                    "kitSettings":{
                                        "deviceType":"ActivityWatch",
                                        "deviceConn":"DevicetoCloud",
                                        "calculatingDoses":true,
                                        "titratingDoses":false,
                                        "titrationKit":false,
                                        "distributionSetting":"BLINDED",
                                        "kitTypeId":"KIT_STD_001",
                                        "kitDescription":"Standard treatment kit",
                                        "storageSetting":"AMBIENT",
                                        "trialSupplyType":"BOTTLE",
                                        "minShipUnits":10,
                                        "serialized":true,
                                        "hazardousMaterial":false,
                                        "controlSubstance":false,
                                        "bufferdays":5,
                                        "dispenseOutsideWindow":false
                                    },
                                    "kitUnitSettings":{
                                        "unitsPerKit":20,
                                        "singleUnitDose":{
                                            "value":10,
                                            "units":"mg"
                                        }
                                    },
                                    "dosings":[
                                        {
                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                            "name":"Weight-based dose",
                                            "question":{
                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                            },
                                            "visit":{
                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                "type":"ScreeningVisit"
                                            },
                                            "dose":{
                                                "precision":1,
                                                "roundUp":1,
                                                "frequency":"Daily",
                                                "leftOverUnits":false
                                            },
                                            "measurement":{
                                                "kit":{
                                                    "value":10,
                                                    "units":"mg"
                                                },
                                                "subject":{
                                                    "value":70,
                                                    "units":"kg"
                                                }
                                            }
                                        }
                                    ],
                                    "exceptions":[
                                        {
                                            "id":"91B8327AFAA6412287106192AB5984EF",
                                            "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                            "sequence":1,
                                            "startingDoseJson":{
                                                "titrationKitExceptionItems":[
                                                    {
                                                        "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                        "kitSeq":1,
                                                        "kitDosage":"QD",
                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ]
                                            },
                                            "endingDoseJson":{
                                                "titrationKitExceptionItems":[
                                                    {
                                                        "kitId":"C1B8327AFAA6412287106192AB5984EF",
                                                        "kitSeq":2,
                                                        "kitDosage":"BID",
                                                        "dosageId":"D1B8327AFAA6412287106192AB5984EF"
                                                    }
                                                ]
                                            },
                                            "minTimeBetweenDoseChangesUnit":"Days",
                                            "minTimeBetweenDoseChanges":2,
                                            "exceptionType":"UP_EXCEPTION"
                                        }
                                    ],
                                    "advancedDosing":1,
                                    "advancedDosingGroups":[
                                        {
                                            "id":"71B8327AFAA6412287106192AB5984EF",
                                            "groupName":"Adults",
                                            "groupCriteria":[
                                                {
                                                    "id":"72B8327AFAA6412287106192AB5984EF",
                                                    "criteriaType":"Question",
                                                    "visitName":"Screening",
                                                    "visitId":"A1B8327AFAA6412287106192AB5984EF",
                                                    "formName":"Demographics",
                                                    "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                    "questionName":"Age",
                                                    "questionId":"F1B8327AFAA6412287106192AB5984EF",
                                                    "variable":"System Screening Date",
                                                    "variableId":"73B8327AFAA6412287106192AB5984EF",
                                                    "timePeriod":"Before",
                                                    "dateValue":"2026-01-15",
                                                    "answer":[
                                                        {
                                                            "value":"18_PLUS",
                                                            "label":"18 years or older"
                                                        }
                                                    ],
                                                    "rule":{
                                                        "id":"74B8327AFAA6412287106192AB5984EF",
                                                        "ruleName":"Greater Than Or Equal To",
                                                        "value":"18",
                                                        "valueList":[
                                                            {
                                                                "value":"18",
                                                                "label":"18"
                                                            }
                                                        ],
                                                        "lower":{
                                                            "value":"18",
                                                            "inclusive":true
                                                        },
                                                        "upper":{
                                                            "value":"120",
                                                            "inclusive":true
                                                        }
                                                    }
                                                }
                                            ],
                                            "kitSettings":[
                                                {
                                                    "id":"75B8327AFAA6412287106192AB5984EF",
                                                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                                                    "kitName":"Standard treatment kit",
                                                    "dosingId":"D1B8327AFAA6412287106192AB5984EF",
                                                    "kitUnitSettings":{
                                                        "unitsPerKit":20,
                                                        "singleUnitDose":{
                                                            "value":10,
                                                            "units":"mg"
                                                        }
                                                    },
                                                    "dosings":[
                                                        {
                                                            "id":"D1B8327AFAA6412287106192AB5984EF",
                                                            "name":"Weight-based dose",
                                                            "question":{
                                                                "formId":"E1B8327AFAA6412287106192AB5984EF",
                                                                "itemId":"F1B8327AFAA6412287106192AB5984EF"
                                                            },
                                                            "visit":{
                                                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                                                "type":"ScreeningVisit"
                                                            },
                                                            "dose":{
                                                                "precision":1,
                                                                "roundUp":1,
                                                                "frequency":"Daily",
                                                                "leftOverUnits":false
                                                            },
                                                            "measurement":{
                                                                "kit":{
                                                                    "value":10,
                                                                    "units":"mg"
                                                                },
                                                                "subject":{
                                                                    "value":70,
                                                                    "units":"kg"
                                                                }
                                                            }
                                                        }
                                                    ],
                                                    "dosingLabel":"Dose 1",
                                                    "quantity":1
                                                }
                                            ],
                                            "instructions":"Dispense one kit when the adult criteria are met."
                                        }
                                    ],
                                    "versionStart":"2026-01-15T10:15:30Z",
                                    "versionEnd":"3099-12-31T00:00:00Z",
                                    "studyId":"CF1E6500073D4AD298F4DA93DA670786",
                                    "studyVersionStart":"2026-01-15T10:15:30Z",
                                    "studyVersionEnd":"3099-12-31T00:00:00Z",
                                    "libraryKitId":"C1B8327AFAA6412287106192AB5984EF",
                                    "poolingId":"POOL12",
                                    "isDefault":true,
                                    "dosage":50
                                }
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/VisitArmKitVisitBlindedInfoV10Doc"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/KitsGetErrorDoc"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by GET visit dispensings."
            },
            "FormsRandomizationFactorAdvancedPropRuleV13":{
                "type":"object",
                "properties":{
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property rule name.",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property rule value.",
                        "example":"91A0C3E0D0B5445A95BA3AB2D84D6755"
                    },
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property rule label shown in the UI.",
                        "example":"Yes"
                    }
                },
                "description":"Advanced property rule details for a randomization factor form item."
            },
            "FormsRandomizationFactorAdvancedPropV13":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced property unique identifier.",
                        "format":"uuid"
                    },
                    "type":{
                        "maxLength":30,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property type. Allowed values: RolloverQuestion = rollover-study question mapping, CodeQuestion = coded-question mapping, ShowQuestion = conditional show rule for a question, ShowForm = conditional show rule for a form, ShowVisit = conditional show rule for a visit, ShowSection = conditional show rule for a section, StatusRule = status-driven rule, DataClassification = data classification mapping, VISITBRANCH = assigned visit-branch mapping, LinkForm = linked form action, AssignedVisits = assigned visit mapping, TriggerSafetyCase = safety case trigger mapping, EHRMapping = EHR field mapping, E2BR3Mapping = E2B(R3) field mapping.",
                        "example":"RolloverQuestion",
                        "enum":[
                            "RolloverQuestion",
                            "CodeQuestion",
                            "ShowQuestion",
                            "ShowForm",
                            "ShowVisit",
                            "ShowSection",
                            "StatusRule",
                            "DataClassification",
                            "VISITBRANCH",
                            "LinkForm",
                            "AssignedVisits",
                            "TriggerSafetyCase",
                            "EHRMapping",
                            "E2BR3Mapping"
                        ]
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name.",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property label shown in the UI.",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "description":"Rules attached to the advanced property.",
                        "example":[
                            {
                                "name":"RolloverQuestionAnswer",
                                "value":"91A0C3E0D0B5445A95BA3AB2D84D6755",
                                "label":"Yes"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorAdvancedPropRuleV13"
                        }
                    },
                    "parentObjectId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Parent object identifier when the property is inherited from a parent object.",
                        "format":"uuid"
                    },
                    "parentObjectLevel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent object hierarchy level when present.",
                        "example":"FORM"
                    },
                    "parentObjectLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent object label when present.",
                        "example":"Demography"
                    }
                },
                "description":"Advanced property mapping details for a randomization factor form item."
            },
            "FormsRandomizationFactorItemV13":{
                "type":"object",
                "properties":{
                    "questionType":{
                        "maxLength":17,
                        "minLength":4,
                        "type":"string",
                        "description":"Question type. Allowed values: text = free-text question, instructionalText = read-only instructional content, numeric = numeric question, datetime = date or date-time question, choice = coded selection question, questionGroup = grouped child questions, table = tabular child question group, label = non-editable label-style choice item, section = section container for grouped questions, existingData = value sourced from existing study data, fileUpload = file attachment question.",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form item unique identifier.",
                        "format":"uuid"
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Parent form unique identifier.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Assigned visit unique identifier when the item is scoped to a single visit.",
                        "format":"uuid"
                    },
                    "visitIds":{
                        "type":"array",
                        "description":"Assigned visit identifiers when the item is scoped to multiple visits.",
                        "example":[
                            "E1D7C7D4D8444D60A5304F0E0A9967D1"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Assigned visit identifiers when the item is scoped to multiple visits.",
                            "example":"[\"E1D7C7D4D8444D60A5304F0E0A9967D1\"]"
                        }
                    },
                    "formTitle":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent form title.",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Question label displayed to study designers.",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Question hint shown in the UI when configured.",
                        "example":"Enter the subject age in years."
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Indicates whether the item is tagged for randomization.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Indicates whether the item is tagged as a strata factor.",
                        "example":true
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Indicates whether the item is tagged as a cohort factor.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stable form item reference name.",
                        "example":"AGE_01"
                    },
                    "applyChangeToVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Study version that should also receive the item change when apply-to-version is used.",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Indicates whether a response is required for the item.",
                        "example":true
                    },
                    "dynamic":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of leading questions that must be satisfied before this item is shown. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Indicates whether the item is hidden.",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Indicates whether the item is read-only.",
                        "example":false
                    },
                    "ruleSet":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"JSON-formatted rule set used to validate answers.",
                        "example":"{\"logicalOperator\":\"NONE\",\"rules\":[],\"numberIndex\":1}"
                    },
                    "sdvRequired":{
                        "maxLength":8,
                        "minLength":6,
                        "type":"string",
                        "description":"Source Data Verification requirement. Allowed values: NOTSET = no explicit SDV setting is configured, NEVER = SDV is not required, ALWAYS = SDV is always required, CRITICAL = SDV is required only for critical data.",
                        "example":"NEVER",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Item display order within the form. Negative values are not allowed.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Group display order for grouped items. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    },
                    "smartItemId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Linked smart item unique identifier.",
                        "format":"uuid"
                    },
                    "formula":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Smart item formula definition.",
                        "example":"[{\"ruleName\":\"AGE\",\"ruleExpression\":\"AgeInYears(AGE_DOB_01, visitDate)\"}]"
                    },
                    "smartObject":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Smart object identifier used by the formula.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "description":"Advanced property mappings configured for the form item.",
                        "example":[
                            {
                                "id":"2E2D8A4E3F5C4C2F96A43B9F0BEF5142",
                                "type":"RolloverQuestion",
                                "name":"RolloverQuestionStudyId",
                                "value":"B1B8327AFAA6412287106192AB5984EF",
                                "label":"Rollover Study BT-31",
                                "rules":[
                                    {
                                        "name":"RolloverQuestionAnswer",
                                        "value":"91A0C3E0D0B5445A95BA3AB2D84D6755",
                                        "label":"Yes"
                                    }
                                ],
                                "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                "parentObjectLevel":"FORM",
                                "parentObjectLabel":"Demography"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorAdvancedPropV13"
                        }
                    },
                    "sasVariable":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"SAS variable name used for downstream extracts.",
                        "example":"AGE"
                    },
                    "sasLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"SAS label used for downstream extracts.",
                        "example":"Subject Age"
                    },
                    "labNormalsTag":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Lab normals tag assigned to the item.",
                        "example":"LabTest"
                    },
                    "clLabNormalsTag":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Lab normals tag assigned through the linked code list.",
                        "example":"LabGender"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "description":"Data classification mappings associated with the item.",
                        "example":[
                            {
                                "id":"F5BBE9E730234785A64C593C3EE4F8AA",
                                "type":"DataClassification",
                                "name":"ClassificationId",
                                "value":"SUBJECT",
                                "label":"Subject Data",
                                "rules":[
                                    {
                                        "name":"Access",
                                        "value":"EDIT",
                                        "label":"Edit"
                                    }
                                ],
                                "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                "parentObjectLevel":"FORM",
                                "parentObjectLabel":"Demography"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorAdvancedPropV13"
                        }
                    },
                    "dataClassificationLevel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Assigned data classification level when present.",
                        "example":"edit"
                    },
                    "e2br3Mapping":{
                        "type":"array",
                        "description":"E2B(R3) mappings associated with the item.",
                        "example":[
                            {
                                "id":"5FDFAB0EEAE34950B0DEBFC2DD0B8D20",
                                "type":"E2BR3Mapping",
                                "name":"E2BR3Field",
                                "value":"patient.agegroup",
                                "label":"Patient Age Group",
                                "rules":[
                                    {
                                        "name":"Profile",
                                        "value":"DEFAULT",
                                        "label":"Default"
                                    }
                                ],
                                "parentObjectId":"7F6C4D52A1D04CF9A75D06B2F454A172",
                                "parentObjectLevel":"FORM",
                                "parentObjectLabel":"Demography"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorAdvancedPropV13"
                        }
                    },
                    "requiredScreening":{
                        "type":"boolean",
                        "description":"Indicates whether the item is required for screening.",
                        "example":false
                    },
                    "requiredRandomization":{
                        "type":"boolean",
                        "description":"Indicates whether the item is required for randomization.",
                        "example":true
                    },
                    "requiredDispensation":{
                        "type":"boolean",
                        "description":"Indicates whether the item is required for dispensation.",
                        "example":false
                    },
                    "requiredForCaseCreate":{
                        "type":"boolean",
                        "description":"Indicates whether the item is required for safety case creation.",
                        "example":false
                    },
                    "triggerFollowupCase":{
                        "type":"boolean",
                        "description":"Indicates whether the item can trigger a follow-up case.",
                        "example":false
                    },
                    "formCategory":{
                        "maxLength":3,
                        "minLength":3,
                        "type":"string",
                        "description":"Form category for the item.",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Form subcategory for the item when present.",
                        "example":"Baseline"
                    },
                    "display":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Choice display mode.",
                        "example":"selectbox"
                    },
                    "columnLayout":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Choice column layout identifier.",
                        "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                    },
                    "columnLayoutLabel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Choice column layout label.",
                        "example":"Single"
                    },
                    "options":{
                        "type":"array",
                        "description":"Choice options available for choice and label items.",
                        "example":[
                            {
                                "label":"Yes",
                                "value":"1",
                                "clCode":"Y",
                                "clDescription":"Yes",
                                "clValue":"Yes",
                                "clItemId":"91A0C3E0D0B5445A95BA3AB2D84D6755",
                                "hidden":false,
                                "optionSeq":"1"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorOptionV13"
                        }
                    },
                    "clTitle":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Linked code list title for choice items.",
                        "example":"Gender"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Linked code list description for choice items.",
                        "example":"Standard gender codelist"
                    },
                    "isCodeListReplaced":{
                        "type":"boolean",
                        "description":"Indicates whether the linked code list has been replaced.",
                        "example":false
                    },
                    "items":{
                        "type":"array",
                        "description":"Child items contained in a question group, table, or section item.",
                        "example":[
                            {
                                "questionType":"text",
                                "id":"D4F7297E3E2C4D8A91C09938F31A7AC1",
                                "questionLabel":"Weight comment",
                                "refname":"WEIGHT_COMMENT",
                                "required":false,
                                "sdvRequired":"NOTSET",
                                "maxlength":4000,
                                "multiline":true
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormsRandomizationFactorItemV13"
                        }
                    },
                    "allowAdditionalRows":{
                        "type":"boolean",
                        "description":"Indicates whether additional rows can be added to a table item.",
                        "example":false
                    },
                    "precision":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Numeric precision for numeric items. Negative values are not allowed.",
                        "format":"int32",
                        "example":0
                    },
                    "units":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Measurement units for numeric items.",
                        "example":"years"
                    },
                    "format":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Date or date-time format.",
                        "example":"yyyy-MM-dd"
                    },
                    "allowPartialDate":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Indicates whether partial dates are allowed. Allowed values are 0 and 1.",
                        "format":"int32",
                        "example":1
                    },
                    "partialDate":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Partial date format used when partial dates are allowed.",
                        "example":"MMM-yyyy"
                    },
                    "allowFutureDate":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Indicates whether future dates are allowed. Allowed values are 0 and 1.",
                        "format":"int32",
                        "example":1
                    },
                    "maxlength":{
                        "maximum":4000,
                        "minimum":0,
                        "type":"integer",
                        "description":"Maximum text length for text items. Negative values are not allowed.",
                        "format":"int32",
                        "example":4000
                    },
                    "multiline":{
                        "type":"boolean",
                        "description":"Indicates whether the text item supports multiple lines.",
                        "example":false
                    },
                    "existingDataCodeName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Existing-data code list name.",
                        "example":"EDLSite"
                    },
                    "existingDataCodeValue":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Existing-data code list value.",
                        "example":"SiteName"
                    }
                },
                "description":"Randomization factor form item details returned by the v13 forms randomization factors endpoint."
            },
            "FormsRandomizationFactorOptionV13":{
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Choice option label.",
                        "example":"Yes"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Choice option stored value.",
                        "example":"1"
                    },
                    "clCode":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Linked code list code.",
                        "example":"Y"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Linked code list description.",
                        "example":"Yes"
                    },
                    "clValue":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Linked code list display value.",
                        "example":"Yes"
                    },
                    "formCategory":{
                        "maxLength":3,
                        "minLength":3,
                        "type":"string",
                        "description":"Form category for the option when present.",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Form subcategory for the option when present.",
                        "example":"Baseline"
                    },
                    "instructionalText":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Instructional text associated with the option.",
                        "example":"Choose the option that applies."
                    },
                    "clItemId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Choice option code list item unique identifier.",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Indicates whether the option is hidden.",
                        "example":false
                    },
                    "optionSeq":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Choice option sequence value.",
                        "example":"1"
                    }
                },
                "description":"Choice option details for a randomization factor form item."
            },
            "RandomizationDetailsV3Doc":{
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization design title.",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization design description.",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "maxLength":31,
                        "minLength":4,
                        "type":"string",
                        "description":"Randomization algorithm. Allowed values: None = no randomization algorithm configured, Central = centrally managed randomization without stratification, CentralStratified = central stratified randomization, SiteBlockedFixed = site-blocked fixed randomization, SiteBlockedFixedStratified = site-blocked fixed stratified randomization, SiteBlockedDynamic = site-blocked dynamic randomization, SiteBlockedDynamicStratified = site-blocked dynamic stratified randomization, CountryBlockedFixed = country-blocked fixed randomization, CountryBlockedFixedStratified = country-blocked fixed stratified randomization, CountryBlockedDynamic = country-blocked dynamic randomization, CountryBlockedDynamicStratified = country-blocked dynamic stratified randomization, RegionBlockedFixed = region-blocked fixed randomization, RegionBlockedFixedStratified = region-blocked fixed stratified randomization, RegionBlockedDynamic = region-blocked dynamic randomization, RegionBlockedDynamicStratified = region-blocked dynamic stratified randomization, Minimization = minimization algorithm.",
                        "example":"Central",
                        "enum":[
                            "None",
                            "Central",
                            "CentralStratified",
                            "SiteBlockedFixed",
                            "SiteBlockedFixedStratified",
                            "SiteBlockedDynamic",
                            "SiteBlockedDynamicStratified",
                            "CountryBlockedFixed",
                            "CountryBlockedFixedStratified",
                            "CountryBlockedDynamic",
                            "CountryBlockedDynamicStratified",
                            "RegionBlockedFixed",
                            "RegionBlockedFixedStratified",
                            "RegionBlockedDynamic",
                            "RegionBlockedDynamicStratified",
                            "Minimization"
                        ]
                    },
                    "cohortType":{
                        "maxLength":10,
                        "minLength":7,
                        "type":"string",
                        "description":"Cohort behavior for the randomization design. Allowed values: NoCohort = no cohorting is applied, Adaptive = adaptive cohorts are used, Demography = demographic cohorts are used, invalid = unrecognized persisted value.",
                        "example":"NoCohort",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    },
                    "randomizationType":{
                        "maxLength":10,
                        "minLength":7,
                        "type":"string",
                        "description":"Randomization blinding type. Allowed values: Blinded = subject assignments remain blinded, Unblinded = subject assignments are visible, invalid = unrecognized persisted value.",
                        "example":"Blinded",
                        "enum":[
                            "Blinded",
                            "Unblinded",
                            "invalid"
                        ]
                    },
                    "reRandomization":{
                        "type":"boolean",
                        "description":"Indicates whether re-randomization is enabled.",
                        "example":true
                    },
                    "treatmentArms":{
                        "maxLength":10,
                        "minLength":4,
                        "type":"string",
                        "description":"Treatment arm assignment mode. Allowed values: Randomized = arms are assigned by the randomization algorithm, Mapped = arms are mapped explicitly, None = no treatment arms are configured, invalid = unrecognized persisted value.",
                        "example":"Randomized",
                        "enum":[
                            "Randomized",
                            "Mapped",
                            "None",
                            "invalid"
                        ]
                    }
                },
                "description":"Randomization design details returned with v3 randomization factors."
            },
            "RandomizationFactorGroupV3Doc":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Question or factor unique identifier.",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title containing the factor.",
                        "example":"Demography"
                    },
                    "questionTitle":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Question title displayed to study designers.",
                        "example":"Age"
                    },
                    "groupName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum or cohort group name.",
                        "example":"Group Name 1"
                    },
                    "groupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Stratum or cohort group unique identifier.",
                        "format":"uuid"
                    },
                    "formCategory":{
                        "maxLength":3,
                        "minLength":3,
                        "type":"string",
                        "description":"Form category for the factor.",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Form subcategory for the factor when present.",
                        "example":"Baseline"
                    },
                    "instructionalText":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Instructional text configured for the factor question.",
                        "example":"Select participant age range"
                    },
                    "parentCohortId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Parent cohort unique identifier when the factor belongs to a cohort.",
                        "format":"uuid"
                    },
                    "parentCohortName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent cohort name when the factor belongs to a cohort.",
                        "example":"Adult Cohort"
                    }
                },
                "description":"Form item group details returned for a randomization factor."
            },
            "RandomizationFactorsItemV3":{
                "type":"object",
                "properties":{
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV3Doc"
                    },
                    "groups":{
                        "minItems":0,
                        "type":"array",
                        "description":"Form item groups returned for the selected randomization factor type.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "formTitle":"Demography",
                                "questionTitle":"Age",
                                "groupName":"Group Name 1",
                                "groupId":"A1B8327AFAA6412287106192AB5984EF",
                                "formCategory":"DCS",
                                "formSubcategory":"Baseline",
                                "instructionalText":"Select participant age range",
                                "parentCohortId":"C1B8327AFAA6412287106192AB5984EF",
                                "parentCohortName":"Adult Cohort"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RandomizationFactorGroupV3Doc"
                        }
                    }
                },
                "description":"Randomization factor details returned by the v3 get randomization factors endpoint."
            },
            "StrataBulkFactorV3":{
                "type":"object",
                "properties":{
                    "type":{
                        "maxLength":6,
                        "minLength":5,
                        "type":"string",
                        "description":"Factor type. Allowed values: choice = factor based on one or more coded choice values, range = factor based on a numeric range.",
                        "example":"choice",
                        "enum":[
                            "choice",
                            "range"
                        ]
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form unique identifier that owns the factor item.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form item unique identifier for the factor item.",
                        "format":"uuid"
                    },
                    "groupName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Factor group display name.",
                        "example":"Age Group"
                    },
                    "groupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Factor group unique identifier.",
                        "format":"uuid"
                    },
                    "values":{
                        "type":"array",
                        "description":"Selected display values for a choice-based factor.",
                        "example":[
                            "18-40",
                            "41-65"
                        ],
                        "items":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"18-40"
                        }
                    },
                    "codelistitemIds":{
                        "type":"array",
                        "description":"Selected code list item identifiers for a choice-based factor.",
                        "example":[
                            "977443BF3EFB43888026788E7F7CCE96",
                            "877443BF3EFB43888026788E7F7CCE95"
                        ],
                        "items":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "min":{
                        "type":"number",
                        "description":"Minimum numeric value for a range-based factor. Negative values are allowed when the linked numeric form item permits them.",
                        "format":"double",
                        "example":18
                    },
                    "max":{
                        "type":"number",
                        "description":"Maximum numeric value for a range-based factor. Negative values are allowed when the linked numeric form item permits them.",
                        "format":"double",
                        "example":30
                    }
                },
                "description":"Stratification factor details used in bulk strata request and response payloads."
            },
            "StrataBulkItemV3":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Stratum unique identifier.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum display name.",
                        "example":"Stratum Group 1"
                    },
                    "parentCohortName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent cohort name when the stratum belongs to a cohort.",
                        "example":"Adult Cohort"
                    },
                    "parentCohortId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Parent cohort unique identifier when the stratum belongs to a cohort.",
                        "format":"uuid"
                    },
                    "factors":{
                        "type":"array",
                        "description":"Stratification factors associated with the stratum.",
                        "example":[
                            {
                                "type":"choice",
                                "formId":"D1B8327AFAA6412287106192AB5984EF",
                                "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                "groupName":"Age Group",
                                "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                "values":[
                                    "18-40",
                                    "41-65"
                                ],
                                "codelistitemIds":[
                                    "977443BF3EFB43888026788E7F7CCE96",
                                    "877443BF3EFB43888026788E7F7CCE95"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/StrataBulkFactorV3"
                        }
                    },
                    "weight":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Weight assigned to the stratum when weighted selection is used.",
                        "format":"int32",
                        "example":1
                    },
                    "randomizationType":{
                        "maxLength":19,
                        "minLength":10,
                        "type":"string",
                        "description":"Randomization type for the stratum. Allowed values: Stratified = standard stratified randomization stratum, Adaptive Stratified = adaptive stratified randomization stratum.",
                        "example":"Stratified",
                        "enum":[
                            "Stratified",
                            "Adaptive Stratified"
                        ]
                    },
                    "objectType":{
                        "maxLength":9,
                        "minLength":4,
                        "type":"string",
                        "description":"Object type used by adaptive strata. Allowed values: Code List = coded factor source, Site = site-based factor source, Country = country-based factor source, Region = region-based factor source.",
                        "example":"Code List",
                        "enum":[
                            "Code List",
                            "Site",
                            "Country",
                            "Region"
                        ]
                    },
                    "objectId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Object unique identifier associated with the objectType.",
                        "format":"uuid"
                    }
                },
                "description":"Bulk strata request and response payload item for the v3 strata APIs."
            },
            "RqstStratumDto":{
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Stratum Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum Name",
                        "example":"Stratum Group 1"
                    },
                    "parentCohortName":{
                        "type":"string",
                        "description":"Name of the Parent Cohort"
                    },
                    "parentCohortId":{
                        "type":"string",
                        "description":"Parent Cohort Id",
                        "format":"uuid"
                    },
                    "factors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/StratumFactorDtoV3"
                        }
                    },
                    "weight":{
                        "type":"string",
                        "description":"Weight of Stratum Group",
                        "example":"1"
                    },
                    "randomizationType":{
                        "type":"string",
                        "description":"Type of Stratum",
                        "example":"Stratified"
                    },
                    "objectType":{
                        "type":"string",
                        "description":"Type of Object",
                        "example":"Code List"
                    },
                    "objectId":{
                        "type":"string",
                        "description":"Value of Object GUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                }
            },
            "StratumChoiceFactorDtoV3":{
                "title":"StratumChoiceFactorDto v3.0",
                "required":[
                    "codelistitemIds",
                    "formId",
                    "itemId",
                    "values"
                ],
                "type":"object",
                "description":"Stratum Choice Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "values":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "maxLength":2147483647,
                                    "minLength":1,
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice values",
                                    "example":"1"
                                }
                            },
                            "codelistitemIds":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice codelistItem Ids",
                                    "format":"uuid"
                                }
                            }
                        }
                    }
                ]
            },
            "StratumFactorDtoV3":{
                "title":"StratumFactorDto v3.0",
                "required":[
                    "formId",
                    "itemId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Form item GUID",
                        "format":"uuid"
                    },
                    "groupName":{
                        "type":"string",
                        "description":"Stratum Name",
                        "example":"Stratum Group 1"
                    },
                    "groupId":{
                        "type":"string",
                        "description":"Stratum Group Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string"
                    }
                },
                "description":"Randomization Stratum Factor Information",
                "discriminator":{
                    "propertyName":"type",
                    "mapping":{
                        "choice":"#/components/schemas/StratumChoiceFactorDtoV3",
                        "range":"#/components/schemas/StratumRangeFactorDtoV3"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/StratumChoiceFactorDtoV3"
                    },
                    {
                        "$ref":"#/components/schemas/StratumRangeFactorDtoV3"
                    }
                ]
            },
            "StratumRangeFactorDtoV3":{
                "title":"StratumRangeFactorDto v3.0",
                "required":[
                    "formId",
                    "itemId",
                    "max",
                    "min"
                ],
                "type":"object",
                "description":"Stratum Range Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "min":{
                                "type":"number",
                                "description":"Stratum Factor Min value",
                                "format":"double",
                                "example":20
                            },
                            "max":{
                                "type":"number",
                                "description":"Stratum Factor Max value",
                                "format":"double",
                                "example":120
                            }
                        }
                    }
                ]
            },
            "StrataFactorV4":{
                "type":"object",
                "properties":{
                    "type":{
                        "maxLength":6,
                        "minLength":5,
                        "type":"string",
                        "description":"Factor type. Allowed values: choice = factor based on one or more coded choice values, range = factor based on a numeric range.",
                        "example":"choice",
                        "enum":[
                            "choice",
                            "range"
                        ]
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form unique identifier that owns the factor item.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Form item unique identifier for the factor item.",
                        "format":"uuid"
                    },
                    "groupName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Factor group display name.",
                        "example":"Age Group"
                    },
                    "groupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Factor group unique identifier.",
                        "format":"uuid"
                    },
                    "values":{
                        "type":"array",
                        "description":"Selected code list values for a choice factor.",
                        "example":[
                            "18-40",
                            "41-65"
                        ],
                        "items":{
                            "maxLength":255,
                            "minLength":1,
                            "type":"string",
                            "example":"18-40"
                        }
                    },
                    "codelistitemIds":{
                        "type":"array",
                        "description":"Identifiers of the selected code list items for a choice factor.",
                        "example":[
                            "977443BF3EFB43888026788E7F7CCE96",
                            "877443BF3EFB43888026788E7F7CCE95"
                        ],
                        "items":{
                            "maxLength":32,
                            "minLength":32,
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "min":{
                        "type":"number",
                        "description":"Minimum numeric value for a range factor. Negative values are allowed when supported by the linked numeric form item's validation range.",
                        "format":"double",
                        "example":-5
                    },
                    "max":{
                        "type":"number",
                        "description":"Maximum numeric value for a range factor. Negative values are allowed when supported by the linked numeric form item's validation range.",
                        "format":"double",
                        "example":30
                    }
                },
                "description":"Factor details returned for a v4 stratum."
            },
            "StrataItemV4":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Stratum unique identifier.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum display name.",
                        "example":"Minimization Group 1"
                    },
                    "parentCohortId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Parent cohort unique identifier when the stratum belongs to a cohort.",
                        "format":"uuid"
                    },
                    "parentCohortName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Parent cohort name when the stratum belongs to a cohort.",
                        "example":"Adult Cohort"
                    },
                    "weight":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Weight assigned to the stratum when weighted selection is used.",
                        "format":"int32",
                        "example":1
                    },
                    "randomizationType":{
                        "maxLength":14,
                        "minLength":7,
                        "type":"string",
                        "description":"Randomization type for the returned stratum. Allowed values: STRATUM = standard stratified randomization stratum, ADAPTIVESTRATUM = adaptive stratified randomization stratum, MINIMIZATION = minimization randomization stratum.",
                        "example":"MINIMIZATION",
                        "enum":[
                            "STRATUM",
                            "ADAPTIVESTRATUM",
                            "MINIMIZATION"
                        ]
                    },
                    "objectType":{
                        "maxLength":12,
                        "minLength":8,
                        "type":"string",
                        "description":"Object type for minimization strata. Allowed values: FORMITEM = minimization factor sourced from a form item, CLCODEVALUES = minimization factor sourced from configured code list values. This field can be null for non-minimization strata.",
                        "example":"CLCODEVALUES",
                        "enum":[
                            "FORMITEM",
                            "CLCODEVALUES"
                        ]
                    },
                    "objectId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Object unique identifier associated with the objectType.",
                        "format":"uuid"
                    },
                    "factors":{
                        "type":"array",
                        "description":"Stratification factors used to define the stratum.",
                        "example":[
                            {
                                "type":"choice",
                                "formId":"D1B8327AFAA6412287106192AB5984EF",
                                "itemId":"E1B8327AFAA6412287106192AB5984EF",
                                "groupName":"Age Group",
                                "groupId":"F1B8327AFAA6412287106192AB5984EF",
                                "values":[
                                    "18-40",
                                    "41-65"
                                ],
                                "codelistitemIds":[
                                    "977443BF3EFB43888026788E7F7CCE96",
                                    "877443BF3EFB43888026788E7F7CCE95"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/StrataFactorV4"
                        }
                    }
                },
                "description":"Stratum details returned by the v4 strata read APIs."
            },
            "KitsAllItemV6":{
                "type":"object",
                "properties":{
                    "kitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit unique identifier.",
                        "format":"uuid"
                    },
                    "kitTypeId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit type identifier.",
                        "example":"KIT_STD_001"
                    },
                    "kitDescription":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit description displayed to study designers.",
                        "example":"Standard treatment kit"
                    },
                    "distributionSetting":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Distribution setting for the kit. Allowed values: BLINDED = treatment assignment remains hidden, UNBLINDED = treatment assignment is visible, UNBLINDEDPHARMAC = treatment assignment is visible for pharmacy-managed workflows.",
                        "example":"UNBLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED",
                            "UNBLINDEDPHARMAC"
                        ]
                    },
                    "deviceType":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Device type for device kits. Allowed values: ActivityWatch, BloodPressureMonitor, WeightScale, ECGReader, Spirometer, MobileApp, SmartPillBottle, PulseOximeter, WearablePatch, Other, GlucoseMonitor.",
                        "example":"WeightScale",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConn":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Device connectivity type. Allowed values: CloudtoCloud = sync through an external cloud, DevicetoCloud = device sends data directly to the platform cloud, NoConnection = no connectivity is required.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "trialSupplyType":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Trial supply type for the kit. Allowed values: BLISTERPACK, BOTTLE, DEVICE, SYRINGE, OINTMENT, VIAL, INHALER, INFUSION, BOX, OTHER.",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates whether the kit is configured as a titration kit.",
                        "example":false
                    },
                    "libraryKitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Library kit unique identifier when the kit is based on a library kit.",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Pooling identifier for pooled kit configurations.",
                        "example":"POOL12"
                    },
                    "serialized":{
                        "type":"boolean",
                        "description":"Indicates whether the kit is serialized.",
                        "example":true
                    }
                },
                "description":"Kit summary returned by the v6 get-all-kits endpoint."
            },
            "RandomizationArmV6Doc":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Treatment arm unique identifier.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Treatment arm name.",
                        "example":"Arm A"
                    },
                    "ratio":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"Treatment arm allocation ratio. Allowed numeric range is 1 through 99. Zero and negative values are not allowed.",
                        "format":"int32",
                        "example":2
                    }
                },
                "description":"Treatment arm ratio configured for the randomization design."
            },
            "RandomizationDetailsV6Doc":{
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization title.",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization design description.",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "maxLength":31,
                        "minLength":4,
                        "type":"string",
                        "description":"Randomization algorithm. Allowed values: None = no randomization algorithm configured, Central = centrally managed randomization without stratification, CentralStratified = central stratified randomization, SiteBlockedFixed = site-blocked fixed randomization, SiteBlockedFixedStratified = site-blocked fixed stratified randomization, SiteBlockedDynamic = site-blocked dynamic randomization, SiteBlockedDynamicStratified = site-blocked dynamic stratified randomization, CountryBlockedFixed = country-blocked fixed randomization, CountryBlockedFixedStratified = country-blocked fixed stratified randomization, CountryBlockedDynamic = country-blocked dynamic randomization, CountryBlockedDynamicStratified = country-blocked dynamic stratified randomization, RegionBlockedFixed = region-blocked fixed randomization, RegionBlockedFixedStratified = region-blocked fixed stratified randomization, RegionBlockedDynamic = region-blocked dynamic randomization, RegionBlockedDynamicStratified = region-blocked dynamic stratified randomization, Minimization = minimization algorithm.",
                        "example":"Central",
                        "enum":[
                            "None",
                            "Central",
                            "CentralStratified",
                            "SiteBlockedFixed",
                            "SiteBlockedFixedStratified",
                            "SiteBlockedDynamic",
                            "SiteBlockedDynamicStratified",
                            "CountryBlockedFixed",
                            "CountryBlockedFixedStratified",
                            "CountryBlockedDynamic",
                            "CountryBlockedDynamicStratified",
                            "RegionBlockedFixed",
                            "RegionBlockedFixedStratified",
                            "RegionBlockedDynamic",
                            "RegionBlockedDynamicStratified",
                            "Minimization"
                        ]
                    },
                    "cohortType":{
                        "maxLength":10,
                        "minLength":7,
                        "type":"string",
                        "description":"Cohort behavior for the randomization design. Allowed values: NoCohort = no cohorting is applied, Adaptive = adaptive cohorts are used, Demography = demographic cohorts are used, invalid = unrecognized persisted value.",
                        "example":"NoCohort",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    },
                    "randomizationType":{
                        "maxLength":9,
                        "minLength":7,
                        "type":"string",
                        "description":"Randomization blinding type. Allowed values: Blinded = subject assignments remain blinded, Unblinded = subject assignments are visible, invalid = unrecognized persisted value.",
                        "example":"Blinded",
                        "enum":[
                            "Blinded",
                            "Unblinded",
                            "invalid"
                        ]
                    },
                    "reRandomization":{
                        "type":"boolean",
                        "description":"Indicates whether re-randomization is enabled.",
                        "example":true
                    },
                    "treatmentArms":{
                        "maxLength":10,
                        "minLength":4,
                        "type":"string",
                        "description":"Treatment arm assignment mode. Allowed values: Randomized = arms are assigned by the randomization algorithm, Mapped = arms are mapped explicitly, None = no treatment arms are configured, invalid = unrecognized persisted value.",
                        "example":"Randomized",
                        "enum":[
                            "Randomized",
                            "Mapped",
                            "None",
                            "invalid"
                        ]
                    }
                },
                "description":"Details for the randomization design.",
                "example":{
                    "title":"Rand 001",
                    "description":"Method to assign study participants to a treatment group.",
                    "algorithm":"Central",
                    "cohortType":"NoCohort",
                    "randomizationType":"Blinded",
                    "reRandomization":true,
                    "treatmentArms":"Randomized"
                }
            },
            "RandomizationErrorV6":{
                "type":"object",
                "properties":{
                    "errorCode":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Application error code.",
                        "example":"C1-400"
                    },
                    "errorMessage":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable error message.",
                        "example":"Randomization details are invalid"
                    },
                    "details":{
                        "type":"object",
                        "description":"Request-specific error details object.",
                        "example":{
                            "field":"details.title",
                            "message":"must not be blank"
                        }
                    }
                },
                "description":"Error payload returned by the v6 randomization endpoints.",
                "nullable":true,
                "example":{
                    "errorCode":"C1-400",
                    "errorMessage":"Randomization details are invalid",
                    "details":{
                        "field":"details.title",
                        "message":"must not be blank"
                    }
                }
            },
            "RandomizationPayloadV6":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Randomization unique identifier.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "maxLength":40,
                        "minLength":20,
                        "type":"string",
                        "description":"Version start timestamp for the randomization design.",
                        "format":"date-time",
                        "example":"2025-01-17T15:41:10.733Z"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV6Doc"
                    },
                    "arms":{
                        "type":"array",
                        "description":"Treatment arms configured for the randomization design.",
                        "example":[
                            {
                                "id":"C1B8327AFAA6412287106192AB5984EF",
                                "name":"Arm A",
                                "ratio":2
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV6Doc"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visits that participate in randomization.",
                        "example":[
                            {
                                "visitId":"E1B8327AFAA6412287106192AB5984EF",
                                "visitName":"Week 1",
                                "branchId":"F1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV6Doc"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV6Doc"
                    }
                },
                "description":"Randomization design payload used by the v6 create and update randomization endpoints."
            },
            "RandomizationResponseV6":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":7,
                        "minLength":7,
                        "type":"string",
                        "description":"Envelope status returned by the endpoint. Allowed value: success.",
                        "example":"success",
                        "enum":[
                            "success"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/RandomizationPayloadV6"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/RandomizationErrorV6"
                    },
                    "version":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Envelope version for the shared Designer response wrapper.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Designer response envelope returned by the v6 randomization create and update endpoints."
            },
            "RandomizationSettingsV6Doc":{
                "type":"object",
                "properties":{
                    "randomizeSubjectsIfSitesOutOfKits":{
                        "type":"boolean",
                        "description":"Indicates whether randomization should continue when sites are out of kits.",
                        "example":false
                    },
                    "assignSkippedRandomizationNumbers":{
                        "type":"boolean",
                        "description":"Indicates whether skipped randomization numbers should be assigned.",
                        "example":false
                    },
                    "randomizeNumberBlinded":{
                        "type":"boolean",
                        "description":"Indicates whether randomization numbers are blinded.",
                        "example":true
                    },
                    "randomizeLimitsToCountEarlyTerminated":{
                        "type":"boolean",
                        "description":"Indicates whether early terminated subjects count toward randomization limits.",
                        "example":false
                    },
                    "assignNewRandomizeNumbers":{
                        "type":"boolean",
                        "description":"Indicates whether new randomization numbers are assigned to all subjects.",
                        "example":true
                    },
                    "allowOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates whether randomization is allowed outside the schedule window.",
                        "example":false
                    }
                },
                "description":"Settings that control randomization number handling and visit-window behavior.",
                "example":{
                    "randomizeSubjectsIfSitesOutOfKits":false,
                    "assignSkippedRandomizationNumbers":false,
                    "randomizeNumberBlinded":true,
                    "randomizeLimitsToCountEarlyTerminated":false,
                    "assignNewRandomizeNumbers":true,
                    "allowOutsideWindow":false
                }
            },
            "RandomizationVisitV6Doc":{
                "type":"object",
                "properties":{
                    "visitId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit unique identifier.",
                        "format":"uuid"
                    },
                    "visitName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit name.",
                        "example":"Week 1"
                    },
                    "branchId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Branch unique identifier for the visit path.",
                        "format":"uuid"
                    }
                },
                "description":"Visit included in the randomization design."
            },
            "RandomizationArmV5":{
                "title":"RandomizationArm v5.0",
                "required":[
                    "id",
                    "ratio"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Arm1"
                    },
                    "ratio":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"The ratio defined for the treatment arm",
                        "format":"int32",
                        "example":2,
                        "enum":[
                            null
                        ]
                    }
                },
                "description":"Randomization Design Treatment Arm Ratio"
            },
            "RandomizationDetailsV5":{
                "title":"RandomizationDetails v5.0",
                "required":[
                    "algorithm",
                    "cohortType",
                    "randomizationType",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization Title",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization Design Description",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"The algorithm of the randomization design",
                        "example":"Central",
                        "enum":[
                            "NONE",
                            "CENTRAL",
                            "CENTRAL_STRATIFIED",
                            "SITE_BLOCKED_FIXED",
                            "SITE_BLOCKED_FIXED_STRATIFIED",
                            "SITE_BLOCKED_DYNAMIC",
                            "SITE_BLOCKED_DYNAMIC_STRATIFIED",
                            "COUNTRY_BLOCKED_FIXED",
                            "COUNTRY_BLOCKED_FIXED_STRATIFIED",
                            "COUNTRY_BLOCKED_DYNAMIC",
                            "COUNTRY_BLOCKED_DYNAMIC_STRATIFIED",
                            "REGION_BLOCKED_FIXED",
                            "REGION_BLOCKED_FIXED_STRATIFIED",
                            "REGION_BLOCKED_DYNAMIC",
                            "REGION_BLOCKED_DYNAMIC_STRATIFIED",
                            "MINIMIZATION"
                        ]
                    },
                    "cohortType":{
                        "type":"string",
                        "description":"The cohort type of the randomization design",
                        "example":"None",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    },
                    "randomizationType":{
                        "type":"string",
                        "description":"Type of the randomization design",
                        "example":"Blinded",
                        "enum":[
                            "Blinded",
                            "Unblinded",
                            "invalid"
                        ]
                    },
                    "reRandomization":{
                        "type":"boolean",
                        "description":"Whether to use re-randomization on the randomization design",
                        "example":true
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Whether to use randomized or mapped on the randomization design",
                        "example":"Randomized",
                        "enum":[
                            "Randomized",
                            "Mapped",
                            "None",
                            "invalid"
                        ]
                    }
                },
                "description":"Details of the randomization design."
            },
            "RandomizationSettingsV5":{
                "title":"RandomizationSettings v5.0",
                "type":"object",
                "properties":{
                    "randomizeSubjectsIfSitesOutOfKits":{
                        "type":"boolean",
                        "description":"Whether to restrict randomization numbers to available kit types",
                        "example":false
                    },
                    "assignSkippedRandomizationNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign skipped randomization numbers",
                        "example":false
                    },
                    "randomizeNumberBlinded":{
                        "type":"boolean",
                        "description":"Whether to use blinded randomization numbers",
                        "example":false
                    },
                    "randomizeLimitsToCountEarlyTerminated":{
                        "type":"boolean",
                        "description":"Whether limits include withdrawn subjects",
                        "example":false
                    },
                    "assignNewRandomizeNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign new randomization numbers to all subjects",
                        "example":false
                    },
                    "allowOutsideWindow":{
                        "type":"boolean",
                        "description":"Whether to allow randomization outside schedule window",
                        "example":false
                    }
                },
                "description":"The settings for the randomization design."
            },
            "RandomizationVisitV5":{
                "title":"RandomizationVisit v5.0",
                "required":[
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Week 3"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Randomization Visit"
            },
            "RqstRandomizationDto":{
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Randomization VersionStart",
                        "format":"date-time",
                        "example":"2021-01-17T15:41:10.733Z"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV5"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV5"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV5"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV5"
                    }
                }
            },
            "DispensingErrorParamListV7":{
                "type":"object",
                "properties":{
                    "ErrorParam":{
                        "type":"array",
                        "description":"Error parameters associated with the row.",
                        "example":[
                            {
                                "key":"A1B8327AFAA6412287106192AB5984EF",
                                "type":"Visit",
                                "id":"A1B8327AFAA6412287106192AB5984EF",
                                "name":"Week 1"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensingErrorParamV7"
                        }
                    }
                },
                "description":"Collection of error parameters associated with a dispensation row."
            },
            "DispensingErrorParamV7":{
                "type":"object",
                "properties":{
                    "key":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Unique key for the missing or invalid object reference.",
                        "format":"uuid"
                    },
                    "type":{
                        "maxLength":6,
                        "minLength":4,
                        "type":"string",
                        "description":"Object type associated with the error. Allowed values: Dosing = missing dosing reference, Visit = missing visit reference, Form = missing form reference.",
                        "example":"Visit",
                        "enum":[
                            "Dosing",
                            "Visit",
                            "Form"
                        ]
                    },
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Unique identifier of the referenced object.",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Display name of the referenced object.",
                        "example":"Week 1"
                    }
                },
                "description":"Error parameter identifying a missing or invalid object reference."
            },
            "DispensingRowResponseV7":{
                "type":"object",
                "properties":{
                    "kitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit unique identifier.",
                        "format":"uuid"
                    },
                    "armid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Treatment arm unique identifier.",
                        "format":"uuid"
                    },
                    "visitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit unique identifier.",
                        "format":"uuid"
                    },
                    "adGroupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced dosing group unique identifier when advanced dosing selected this row.",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosing unique identifier associated with the row.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "maximum":9999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Quantity of kits or dose to dispense. Allowed numeric range is 1 through 9999. Zero and negative values are not allowed.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Do-not-dispense threshold in days before kit expiration. Allowed numeric range is 0 through 9999. Negative values are not allowed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Indicates whether the kit can be dispensed outside the visit window.",
                        "example":false
                    },
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dispensing row unique identifier.",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates whether titration is allowed for the row.",
                        "example":true
                    },
                    "titrationKits":{
                        "type":"array",
                        "description":"Titration kits associated with the dispensation row.",
                        "example":[
                            {
                                "kitTypeId":"KIT_STD_001",
                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                "kitQuantity":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensingTitrationKitV7"
                        }
                    },
                    "blindedInfo":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    },
                    "errorParamList":{
                        "type":"array",
                        "description":"Validation or resolution error parameter groups associated with the dispensation row.",
                        "example":[
                            {
                                "ErrorParam":[
                                    {
                                        "key":"A1B8327AFAA6412287106192AB5984EF",
                                        "type":"Visit",
                                        "id":"A1B8327AFAA6412287106192AB5984EF",
                                        "name":"Week 1"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensingErrorParamListV7"
                        }
                    }
                },
                "description":"Dispensing visit row returned by the v7 get and update dispensings endpoints."
            },
            "DispensingTitrationKitV7":{
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Kit type identifier for the titration kit.",
                        "example":"KIT_STD_001"
                    },
                    "kitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Titration kit unique identifier.",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "maximum":9999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Quantity of kits dispensed for the titration entry. Allowed numeric range is 1 through 9999. Zero and negative values are not allowed.",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Titration kit summary associated with a dispensation row."
            },
            "DispensingRowRequestV7":{
                "type":"object",
                "properties":{
                    "kitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Kit unique identifier.",
                        "format":"uuid"
                    },
                    "armid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Treatment arm unique identifier.",
                        "format":"uuid"
                    },
                    "visitid":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Visit unique identifier.",
                        "format":"uuid"
                    },
                    "adGroupId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Advanced dosing group unique identifier when advanced dosing selected this row.",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dosing unique identifier associated with the row.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "maximum":9999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Quantity of kits or dose to dispense. Allowed numeric range is 1 through 9999. Zero and negative values are not allowed.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Do-not-dispense threshold in days before kit expiration. Allowed numeric range is 0 through 9999. Negative values are not allowed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Indicates whether the kit can be dispensed outside the visit window.",
                        "example":false
                    },
                    "id":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Dispensing row unique identifier.",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates whether titration is allowed for the row.",
                        "example":true
                    },
                    "titrationKits":{
                        "type":"array",
                        "description":"Titration kits associated with the dispensation row.",
                        "example":[
                            {
                                "kitTypeId":"KIT_STD_001",
                                "kitid":"B1B8327AFAA6412287106192AB5984EF",
                                "kitQuantity":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensingTitrationKitV7"
                        }
                    },
                    "blindedInfo":{
                        "$ref":"#/components/schemas/KitsGetKitV10Doc"
                    }
                },
                "description":"Dispensing visit row used by the v7 update dispensings endpoint."
            },
            "ValidationResult":{
                "type":"object",
                "properties":{
                    "message":{
                        "type":"object",
                        "properties":{
                            "empty":{
                                "type":"boolean"
                            },
                            "length":{
                                "type":"integer",
                                "format":"int32",
                                "writeOnly":true
                            }
                        }
                    },
                    "valid":{
                        "type":"boolean"
                    }
                }
            },
            "BaseResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Response status for the request; typically 'success' or 'error'.",
                        "example":"success"
                    },
                    "result":{
                        "type":"object",
                        "description":"Generic result for all request entity types. The type returned depends on endpoint. May be ExecutionLog, list, or error data."
                    },
                    "ErrorResponseData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                },
                "description":"Base response object for all reporting service endpoints, providing a standard structure for status, result, and errorData."
            },
            "NotificationPayload":{
                "type":"object",
                "properties":{
                    "fieldKey":{
                        "type":"string",
                        "description":"Unique field identifier/key for the notification.",
                        "example":"subjectId"
                    },
                    "fieldName":{
                        "type":"string",
                        "description":"Display name for the notification field.",
                        "example":"Subject ID"
                    },
                    "fieldValue":{
                        "type":"string",
                        "description":"Value for the notification field.",
                        "example":"SUBJ001"
                    }
                },
                "description":"Represents a notification detail with key and value."
            },
            "NotificationPayloadWrapper":{
                "type":"object",
                "properties":{
                    "notificationPayloads":{
                        "type":"array",
                        "writeOnly":true,
                        "items":{
                            "$ref":"#/components/schemas/NotificationPayload"
                        }
                    }
                },
                "description":"Request payload wrapper for notification: a map from notification field key to NotificationPayload."
            },
            "notificationPayloadMap":{
                "type":"object",
                "description":"Map from notification key to notification payload.",
                "example":{
                    "subjectId":{
                        "fieldKey":"subjectId",
                        "fieldName":"Subject ID",
                        "fieldValue":"SUBJ001"
                    },
                    "visit":{
                        "fieldKey":"visit",
                        "fieldName":"Visit",
                        "fieldValue":"SCREENING"
                    }
                }
            },
            "ExecutionLog":{
                "required":[
                    "rptFormat",
                    "rptKickoffDatetime",
                    "rptName",
                    "userId",
                    "versionEnd",
                    "versionStart"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Primary key. Unique job execution identifier (UUID). Example: 'BBAACF7D12C245A2A59B1C23DEADBEEF'",
                        "format":"uuid"
                    },
                    "rptId":{
                        "type":"string",
                        "description":"Report template identifier (UUID). Example: 'AABB1234DD884FA1A9DC1AFDECBA1A35'",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Job execution version start timestamp (ISO-8601 date/time). Example: '2025-10-27T10:00:00.123Z'",
                        "format":"date-time",
                        "example":"2025-10-27T10:00:00.123Z"
                    },
                    "runDuration":{
                        "type":"integer",
                        "description":"Job execution run duration in milliseconds",
                        "format":"int64"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User identifier (UUID) who initiated or owns the job. Example: '123E4567E89B12D3A456426614174000'",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Job execution version end timestamp (ISO-8601 date/time). Example: '2025-10-27T10:30:00.789Z'",
                        "format":"date-time",
                        "example":"2025-10-27T10:30:00.789Z"
                    },
                    "operationType":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Database action or type of operation represented by this job record. (E.g. INSERT, UPDATE, DELETE)"
                    },
                    "reason":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for status or operation (e.g. failed status explanation)"
                    },
                    "comment":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"User-provided free-form comment about this execution"
                    },
                    "rptKickoffDatetime":{
                        "type":"string",
                        "description":"Date/time the report run started (ISO-8601 date/time). Example: '2025-10-27T10:00:00.000Z'",
                        "format":"date-time",
                        "example":"2025-10-27T10:00:00Z"
                    },
                    "rptName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Report name. Example: 'Subject Listing'",
                        "example":"Subject Listing"
                    },
                    "rptStatCd":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Report status code (business state of run, e.g. SUCCESS, FAILED, SUBMITTED, IN_PROGRESS)",
                        "example":"SUCCESS"
                    },
                    "rptFormat":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Format of generated report. Enumerated (PDF, XLSX, etc.)",
                        "example":"PDF"
                    },
                    "recCount":{
                        "type":"integer",
                        "description":"Total number of records in this report run (if known)",
                        "format":"int32"
                    },
                    "currSearchSpec":{
                        "maxLength":32000,
                        "minLength":0,
                        "type":"string",
                        "description":"Search specification filter string for this run (may be large)"
                    },
                    "currSortSpec":{
                        "maxLength":512,
                        "minLength":0,
                        "type":"string",
                        "description":"Sort specification string for this report run"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version field (for optimistic concurrency/locking)"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software/application version field (build or runtime version, if needed)"
                    },
                    "fileStorageId":{
                        "type":"string",
                        "description":"ID of the associated report file blob in storage (UUID)",
                        "format":"uuid"
                    }
                }
            },
            "DirectReportPayload":{
                "type":"object",
                "properties":{
                    "reportSection":{
                        "$ref":"#/components/schemas/DirectReportSection"
                    }
                },
                "description":"Payload object for direct report generation. Contains report sections details."
            },
            "DirectReportSection":{
                "type":"object",
                "properties":{
                    "rptName":{
                        "type":"string",
                        "description":"Name of the report section.",
                        "example":"Subject Visit"
                    },
                    "rptSeq":{
                        "type":"integer",
                        "description":"Section sequence number.",
                        "format":"int32",
                        "example":1
                    },
                    "result":{
                        "$ref":"#/components/schemas/SectionData"
                    },
                    "sectiondata":{
                        "$ref":"#/components/schemas/SectionData"
                    }
                },
                "description":"Section in a direct report payload, includes report name, sequence, and results."
            },
            "SectionData":{
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Total number of data rows in this section.",
                        "format":"int32",
                        "example":2
                    },
                    "data":{
                        "type":"array",
                        "description":"2D array representing the tabular data for the section, matching the columns and rows.",
                        "example":[
                            [
                                "1001",
                                "2025-11-04",
                                "BASELINE"
                            ],
                            [
                                "1002",
                                "2025-11-05",
                                "SCREENING"
                            ]
                        ],
                        "items":{
                            "type":"array",
                            "description":"2D array representing the tabular data for the section, matching the columns and rows.",
                            "example":[
                                [
                                    "1001",
                                    "2025-11-04",
                                    "BASELINE"
                                ],
                                [
                                    "1002",
                                    "2025-11-05",
                                    "SCREENING"
                                ]
                            ],
                            "items":{
                                "type":"string",
                                "description":"2D array representing the tabular data for the section, matching the columns and rows.",
                                "example":"[[\"1001\",\"2025-11-04\",\"BASELINE\"],[\"1002\",\"2025-11-05\",\"SCREENING\"]]"
                            }
                        }
                    },
                    "columns":{
                        "type":"array",
                        "description":"Column headers for the data grid.",
                        "example":[
                            "Subject Id",
                            "Visit Date",
                            "Visit Type"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Column headers for the data grid.",
                            "example":"[\"Subject Id\",\"Visit Date\",\"Visit Type\"]"
                        }
                    },
                    "headers":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"object",
                            "description":"Additional metadata headers for this report section, such as site info or investigator.",
                            "example":{
                                "siteNumbr":"S01",
                                "investigator":"Dr. Smith",
                                "shipmentNumbr":"123ABCXYZ"
                            }
                        },
                        "description":"Additional metadata headers for this report section, such as site info or investigator.",
                        "example":{
                            "siteNumbr":"S01",
                            "investigator":"Dr. Smith",
                            "shipmentNumbr":"123ABCXYZ"
                        }
                    }
                }
            },
            "ExtFieldSpecs":{
                "type":"object",
                "properties":{
                    "fieldSpecsList":{
                        "required":[
                            "fieldName",
                            "fieldType",
                            "fieldValueList"
                        ],
                        "type":"object",
                        "properties":{
                            "fieldName":{
                                "maxLength":255,
                                "minLength":1,
                                "type":"string",
                                "description":"Field name to evaluate. Examples include STUDYID, SITEID, ruleState, and dateRange.",
                                "example":"ruleState"
                            },
                            "fieldType":{
                                "maxLength":16,
                                "minLength":4,
                                "type":"string",
                                "description":"Field value classification. Use list for enumerations, date for calendar values, date-time for timestamps, number for numeric filters, string for textual filters, or boolean for true/false.",
                                "example":"list",
                                "enum":[
                                    "list",
                                    "date",
                                    "date-time",
                                    "number",
                                    "string",
                                    "boolean"
                                ]
                            },
                            "fieldSequence":{
                                "maximum":2147483647,
                                "minimum":0,
                                "type":"integer",
                                "description":"Sequence/order of the field. Provide a non-negative integer.",
                                "format":"int32",
                                "example":1
                            },
                            "fieldValueList":{
                                "type":"array",
                                "description":"List of values for the Field. Provide GUIDs for identifier filters or literal values for textual filters.",
                                "example":[
                                    {
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                ],
                                "items":{
                                    "maxLength":256,
                                    "minLength":1,
                                    "type":"string",
                                    "example":"publish"
                                }
                            }
                        },
                        "description":"Generic representation of a report filter. Each entry specifies the field to evaluate, its data type, and the values to use when filtering.",
                        "example":{
                            "fieldName":"ruleState",
                            "fieldType":"list",
                            "fieldSequence":1,
                            "fieldValueList":[
                                "approved"
                            ]
                        }
                    },
                    "extFieldSpecsList":{
                        "required":[
                            "fieldName",
                            "fieldType",
                            "fieldValueList"
                        ],
                        "type":"object",
                        "properties":{
                            "fieldName":{
                                "maxLength":255,
                                "minLength":1,
                                "type":"string",
                                "description":"Field name to evaluate. Examples include STUDYID, SITEID, ruleState, and dateRange.",
                                "example":"ruleState"
                            },
                            "fieldType":{
                                "maxLength":16,
                                "minLength":4,
                                "type":"string",
                                "description":"Field value classification. Use list for enumerations, date for calendar values, date-time for timestamps, number for numeric filters, string for textual filters, or boolean for true/false.",
                                "example":"list",
                                "enum":[
                                    "list",
                                    "date",
                                    "date-time",
                                    "number",
                                    "string",
                                    "boolean"
                                ]
                            },
                            "fieldSequence":{
                                "maximum":2147483647,
                                "minimum":0,
                                "type":"integer",
                                "description":"Sequence/order of the field. Provide a non-negative integer.",
                                "format":"int32",
                                "example":1
                            },
                            "fieldValueList":{
                                "type":"array",
                                "description":"List of values for the Field. Provide GUIDs for identifier filters or literal values for textual filters.",
                                "example":[
                                    {
                                        "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                                    }
                                ],
                                "items":{
                                    "maxLength":256,
                                    "minLength":1,
                                    "type":"string",
                                    "example":"publish"
                                }
                            }
                        },
                        "description":"Generic representation of a report filter. Each entry specifies the field to evaluate, its data type, and the values to use when filtering.",
                        "example":{
                            "fieldName":"ruleState",
                            "fieldType":"list",
                            "fieldSequence":1,
                            "fieldValueList":[
                                "approved"
                            ]
                        }
                    }
                },
                "description":"Specifies fields for report generation"
            },
            "JobRequest":{
                "type":"object",
                "properties":{
                    "fieldSpecsList":{
                        "$ref":"#/components/schemas/ReportField"
                    },
                    "extFieldSpecsList":{
                        "$ref":"#/components/schemas/ReportField"
                    }
                },
                "description":"Job request payload for report generation, specifying lists of Field specifications.",
                "example":{
                    "fieldSpecsList":[
                        {
                            "fldId":"546A77A696BE11EABB370242AC130002",
                            "fieldType":"list",
                            "fieldName":"fileName",
                            "fieldValueList":[
                                "Study Name_Form Name_Timestamp (CSV only)"
                            ]
                        },
                        {
                            "fieldType":"list",
                            "fieldName":"siteId",
                            "fldId":"546A79C296BE11EABB370242AC130002",
                            "fieldValueList":[
                                "549AD8CA793C46688ECF6332C8926319"
                            ]
                        }
                    ],
                    "extFieldSpecsList":[
                        {
                            "fldId":"546A77A696BE11EABB370242AC130002",
                            "fieldName":"File Name",
                            "fieldType":"list",
                            "fieldValueList":[
                                "Study Name_Form Name_Timestamp (CSV only)"
                            ]
                        },
                        {
                            "fldId":"546A79C296BE11EABB370242AC130002",
                            "fieldName":"Site",
                            "fieldType":"list",
                            "fieldValueList":[
                                "Site001 - Site002"
                            ]
                        }
                    ]
                }
            },
            "ReportField":{
                "required":[
                    "fieldId",
                    "fieldName",
                    "fieldType",
                    "fieldValueList"
                ],
                "type":"object",
                "properties":{
                    "fieldId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique 32 character identifier for the report field definition.",
                        "example":"C62C9522D70F41FDBB57FC92B05D6D02"
                    },
                    "fieldName":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Report field name being filtered. Examples include ruleState, ruleEnabled, siteIds, and dateRange.",
                        "example":"ruleState"
                    },
                    "fieldType":{
                        "maxLength":16,
                        "minLength":4,
                        "type":"string",
                        "description":"Data classification for the supplied field values. Use list for discrete enumerations, date for calendar values, date-time for timestamp ranges, number for numeric filters, or string for textual filters.",
                        "example":"list",
                        "enum":[
                            "list",
                            "date",
                            "date-time",
                            "number",
                            "string",
                            "boolean"
                        ]
                    },
                    "fieldSequence":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"Zero-based order in which the field should be evaluated. Provide a non-negative integer.",
                        "format":"int32",
                        "example":1
                    },
                    "fieldValueList":{
                        "type":"array",
                        "description":"List of values used when filtering the report for this field. Supply GUIDs for identifier fields and literal values for other types.",
                        "items":{
                            "maxLength":256,
                            "minLength":1,
                            "type":"string",
                            "example":"approved"
                        }
                    }
                },
                "description":"Field metadata supplied when generating a Rule Designer report. Every entry identifies a report filter or column definition and provides the values to apply.",
                "example":{
                    "fldId":"C62C9522D70F41FDBB57FC92B05D6D02",
                    "fieldName":"ruleState",
                    "fieldType":"list",
                    "fieldSequence":1,
                    "fieldValueList":[
                        "approved",
                        "publish"
                    ]
                }
            },
            "PaginatedReportRunStatus":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"string",
                        "description":"If true, more results are available beyond this page.",
                        "example":"true"
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of report runs available.",
                        "format":"int32",
                        "example":200
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of report runs in this page.",
                        "format":"int32",
                        "example":50
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Page size requested.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Page offset in result set.",
                        "format":"int32",
                        "example":0
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Reporting template UUID corresponding to these runs.",
                        "format":"uuid"
                    },
                    "reportRunStatus":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ReportRunStatus"
                        }
                    }
                },
                "description":"Reports a paginated list of executed report runs for a given reporting template."
            },
            "ReportRunStatus":{
                "type":"object",
                "properties":{
                    "rptKickoffDatetime":{
                        "type":"string",
                        "description":"Timestamp when report generation started (UTC).",
                        "format":"date-time",
                        "example":"2025-10-27T10:00:00Z"
                    },
                    "rptFormat":{
                        "type":"string",
                        "description":"File format for the report, e.g., PDF, XLSX.",
                        "example":"PDF"
                    },
                    "currSearchSpec":{
                        "type":"string",
                        "description":"Current search/filter specification string.",
                        "example":"siteId:SITE001"
                    },
                    "currSortSpec":{
                        "type":"string",
                        "description":"Current sort specification string.",
                        "example":"subjectId"
                    },
                    "downloadId":{
                        "type":"string",
                        "description":"Unique identifier for this download/run (UUID, upper-case hex).",
                        "format":"uuid"
                    },
                    "rptId":{
                        "type":"string",
                        "description":"Report ID for this run (UUID).",
                        "format":"uuid"
                    }
                },
                "description":"Execution status/details for a report run."
            },
            "FormStatusDto":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":0
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    }
                },
                "description":"Represents the status of a form for a given event and instance including outer repeat and event instance number."
            },
            "FormDetails":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Represents filter criteria for a single form entry including event, form and event instance number",
                "example":[
                    {
                        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                        "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                        "eventInstanceNum":1
                    }
                ]
            },
            "FormDetailsRequestDto":{
                "type":"object",
                "properties":{
                    "formDetails":{
                        "type":"array",
                        "description":"List of form details specifying event, form and instance filters",
                        "example":[
                            {
                                "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
                                "formId":"40DB4EF4847849CCB24EFCCB71CDA436",
                                "eventInstanceNum":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormDetails"
                        }
                    }
                },
                "description":"Request DTO containing a list of form filters used to retrieve form status for a subject. Each entry specifies eventId, formId and optionally eventInstanceNum."
            },
            "LockedStatusDTO":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string)  representing the record.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"225B79C982104415886DE02BC73C1E1E"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":300
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason provided for the lock or action.",
                        "example":"Site audit lock"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment or note about the action.",
                        "example":"Locked by monitor for review"
                    },
                    "siteID":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"A1B2C3D4E5F647839ABCDEF012345678"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D4E5F6A1B2C347839ABCDEF012345678"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Internal repeat sequence number for item or visit repeats.",
                        "format":"int",
                        "example":0
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"0F1E2D3C4B5A69788796A5B4C3D2E1F0"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF12ABCDEF12ABCDEF12ABCDEF12"
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int",
                        "example":0
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int",
                        "example":0
                    },
                    "action":{
                        "type":"string",
                        "description":"Action taken on the visit start date value.Acceptable values are LOCKED, UNLOCKED, NEVER_LOCKED.",
                        "example":"LOCKED"
                    },
                    "visitStartDateAction":{
                        "type":"string",
                        "description":"Action to be taken for the visit. The value may be SCREEN_ENABLE, SCREEN_DISABLE, RANDOMIZE_ENABLE, RANDOMIZE_DISABLE, DISPENSE_ENABLE, DISPENSE_DISABLE, COMPLETE_STUDY_ENABLE and COMPLETE_STUDY_DISABLE.",
                        "example":"COMPLETE_STUDY_DISABLE"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int",
                        "example":1
                    }
                }
            },
            "SubjectLockRequestDTO":{
                "title":"SubjectLockRequestDTO",
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of subject identifiers in UUID, 32-character uppercase hexadecimal string",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "2ABC8A2C11045A584ADEA8760F72B114"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of subject identifiers in UUID, 32-character uppercase hexadecimal string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Contains a list of subjects to get lock status details"
            },
            "FieldSet":{
                "required":[
                    "fieldType"
                ],
                "type":"object",
                "properties":{
                    "fieldName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the field.",
                        "example":"studyVersion"
                    },
                    "fieldType":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Type of the field.",
                        "example":"list"
                    },
                    "fieldSequence":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence/order of the field.",
                        "format":"int32",
                        "example":1
                    },
                    "fieldValueList":{
                        "type":"array",
                        "description":"List of values used for filtering the field",
                        "example":"[1.0.0.1]",
                        "items":{
                            "type":"string",
                            "description":"List of values used for filtering the field",
                            "example":"[1.0.0.1]"
                        }
                    },
                    "fieldNameList":{
                        "type":"array",
                        "description":"List of field names when specifying multiple fields together",
                        "example":[
                            "dataElementId",
                            "versionStart"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of field names when specifying multiple fields together",
                            "example":"[\"dataElementId\",\"versionStart\"]"
                        }
                    },
                    "fieldValueSets":{
                        "type":"array",
                        "description":"List of value sets corresponding to fieldNameList order. Each inner list contains values or operators as applicable.",
                        "example":[
                            [
                                "299BC76CF0F943E6BAC1D209BC3D1CDC",
                                "2018-11-21 11:45:31.854"
                            ]
                        ],
                        "items":{
                            "type":"array",
                            "description":"List of value sets corresponding to fieldNameList order. Each inner list contains values or operators as applicable.",
                            "example":[
                                [
                                    "299BC76CF0F943E6BAC1D209BC3D1CDC",
                                    "2018-11-21 11:45:31.854"
                                ]
                            ],
                            "items":{
                                "type":"object",
                                "description":"List of value sets corresponding to fieldNameList order. Each inner list contains values or operators as applicable.",
                                "example":[
                                    [
                                        "299BC76CF0F943E6BAC1D209BC3D1CDC",
                                        "2018-11-21 11:45:31.854"
                                    ]
                                ]
                            }
                        }
                    }
                },
                "description":"Defines a search field and optional lists of values for reporting queries.",
                "example":[
                    {
                        "fieldName":"VisitName",
                        "fieldType":"STRING",
                        "fieldSequence":1,
                        "fieldValueList":[
                            "SCREENED",
                            "ENROLLED"
                        ]
                    }
                ]
            },
            "SearchSpecsSet":{
                "type":"object",
                "properties":{
                    "limit":{
                        "maximum":10000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int32",
                        "example":10000
                    },
                    "offset":{
                        "maximum":2147483647,
                        "minimum":0,
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int32",
                        "example":0
                    },
                    "fieldSpecsList":{
                        "type":"array",
                        "description":"List of field specifications used to filter or select data",
                        "example":[
                            {
                                "fieldName":"VisitName",
                                "fieldType":"STRING",
                                "fieldSequence":1,
                                "fieldValueList":[
                                    "SCREENED",
                                    "ENROLLED"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FieldSet"
                        }
                    }
                },
                "description":"Search specification wrapper including pagination and a list of field filters for reporting queries."
            },
            "SignEligibilityDTO":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the eligibility history record",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-02T09:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for eligibility determination",
                        "example":"All inclusion and no exclusion criteria met"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Free-form comment providing additional context",
                        "example":"Eligibility approved by investigator"
                    },
                    "configId":{
                        "type":"string",
                        "description":"Signature configuration identifier (UUID, 32-character uppercase hexadecimal string).",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "startEligibibleDate":{
                        "type":"string",
                        "description":"Date from which subject becomes eligible",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "requiredOn":{
                        "type":"string",
                        "description":"Entity on which signature is required Example - SUBJECT/FORM/CASEBOOK)",
                        "example":"SUBJECT"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int64",
                        "example":1
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":0
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":0
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":0
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2A5E92F1C2D54DDA9F1C0A9E7B3C2D1A"
                    },
                    "status":{
                        "type":"string",
                        "description":"Eligibility status.Values can be SIGNED,UNSIGNED or NEVER_SIGNED.",
                        "example":"NEVER_SIGNED"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.3"
                    }
                },
                "description":"Eligibility history record capturing audit metadata, target objects and status within a specific study version."
            },
            "SubjectVisitVerifyHistoryDto2":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Subject identifier",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Study event identifier",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "verifyStatus":{
                        "type":"string",
                        "description":"Verification status of the subject's visit, Example values can be SIGNED, VERIFIED, UNSIGNED, UNVERIFIED, NEVER_SIGNED, NEVER_VERIFIED, VERIFY_REQUIRED, NOT_APPLICABLE, FROZEN, UNFROZEN, NEVER_FROZEN, PARTIAL_SIGNED",
                        "example":"VERIFIED"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Instance number of the event",
                        "format":"int64",
                        "example":1
                    },
                    "versionSatrt":{
                        "type":"string",
                        "description":"Start of version validity window (inclusive)",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End of version validity window (exclusive, if present)",
                        "format":"date-time",
                        "example":"2023-01-31T09:00:00Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version string",
                        "example":"3.0.0.1"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site identifier where the visit verification occurred",
                        "example":"SITE001"
                    }
                },
                "description":"Visit verification history for a subject and event including version window, siteId and study version."
            },
            "SignVerifyFreezeDTOv40":{
                "type":"object",
                "properties":{
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"0C50E26E482246B2BB9646C739E97CAA"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) for the Sign/Verify/Freeze record in UUID format",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-02T17:30:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":100
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"reason to make this change",
                        "example":"Other"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comments if provided",
                        "example":"Data discrepancy observed and clarified"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"7978B7DD0A0A4CA899C485990994300C"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"C39E34A9152148E0BB831239BAA3E502"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"AF77C6450BE94DE293C9630142E0AFAD"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int64",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "example":"33CAF3CB1DF64DF5A353A337CBE6B50A"
                    },
                    "signed":{
                        "type":"string",
                        "description":"Signed status can be of SIGNED, UNSIGNED, NEVER_SIGNED, PARTIAL_SIGNED ",
                        "example":"2C3F40649C654D0F995A7FDBBCEA4FAB"
                    },
                    "verify":{
                        "type":"string",
                        "description":"Verify status can be UNVERIFIED, VERIFIED, NEVER_VERIFIED, VERIFY_REQUIRED",
                        "example":"VERIFIED"
                    },
                    "freeze":{
                        "type":"string",
                        "description":"Freeze status can be of FROZEN, UNFROZEN, NEVER_FROZEN",
                        "example":"FROZEN"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"2.0.0.38"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":3
                    },
                    "repeatFormNumber":{
                        "type":"integer",
                        "description":"Represents the ordinal number assigned to a repeated instance of a data collection form. It uniquely identifies each occurrence of a repeating form for a subject when multiple instances of the form.",
                        "format":"int64",
                        "example":0
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int64",
                        "example":0
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int64",
                        "example":0
                    }
                }
            },
            "SDVGroupInfoDTOv20":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier  (UUID, 32-character uppercase hexadecimal string) for the SDV group info record.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-06-01T09:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"9F86D081884C7D659A2FEAA0C55AD015"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":30
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Initial SDV strategy creation"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Configured for screening visits"
                    },
                    "attributeValue":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Value for a configurable attribute associated with this SDV group. The acceptable values are - All Questions, Critical Questions Only or it can be a number like 30.",
                        "example":"50"
                    },
                    "attributeKey":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Key for a configurable attribute associated with this SDV group. Values may be REMAINING_SUBJECTS_PERCENTAGE, REMAINING_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_SDV_TYPE, INITIAL_SUBJECTS_COUNT.",
                        "example":"INITIAL_SUBJECTS_COUNT"
                    },
                    "sdvGroupName":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Human readable name of the SDV group.",
                        "example":"Screening Group"
                    },
                    "sdvGroupId":{
                        "type":"string",
                        "description":"ID of the Source Data Verification (SDV) group. The format is UUID, 32-character uppercase hexadecimal string.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                },
                "description":"Represents Source Data Verification (SDV) group information including audit and versioning details."
            },
            "SubjectsVisitScheduleDto70":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectRespDto13"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Status entries of visits for the subject",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto12"
                        }
                    },
                    "scheduledVisits":{
                        "type":"array",
                        "description":"Scheduled visits derived for the subject",
                        "items":{
                            "$ref":"#/components/schemas/ScheduledVisitsDto20"
                        }
                    },
                    "crntStateStudyVrsn":{
                        "type":"string",
                        "description":"Current state study version in which the subject resides",
                        "example":"3.0.0.1"
                    }
                },
                "description":"Subject with visit status and scheduled visit information for a specific study version"
            },
            "SubjectNumberTransferDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the subject number transfer record.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"42CE52A1AF9A48EBABA25A361F6EC0FE"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "newSubjectNumber":{
                        "type":"string",
                        "description":"New subject number after transfer or renumbering.",
                        "example":"SUBJ-0001-NEW"
                    },
                    "fromSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred from.",
                        "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                    },
                    "toSiteId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical site the subject is transferred to.",
                        "example":"699EF3745FC545589F186D2198F3C65E"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for the subject number transfer.",
                        "example":"Site change"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Additional comment or note about the transfer.",
                        "example":"Automated renumber after transfer"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":300
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2023-01-01T09:00:00Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2023-01-01T10:00:00Z"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"225B79C982104415886DE02BC73C1E1E"
                    },
                    "randNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"R-000123"
                    }
                }
            },
            "RestResponseSubjectVisitsStatusResponse70":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse70"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "VisitsStatusDto10":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the record",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Start timestamp of the version record",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "visitStatus":{
                        "type":"string",
                        "description":"Status of the visit. The Value of the status can be NEW, COMPLETE, COMPLETE_ERR, INPROGRESS, INCOMPLETE, INCOMPLETE_ERR, SKIPPED, UNDO_SKIP and NOT_STARTED.",
                        "example":"COMPLETE"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the visit status",
                        "example":"Subject completed the visit successfully"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Additional comment for the visit status",
                        "example":"All data verified"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date timestamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "visitType":{
                        "type":"string",
                        "description":"Type of visit as per the visit type enumeration. The acceptable values are: SCREENING, RANDOMIZATION, DISPENSATION, NON_DISPENSATION, OPTIONAL, OPTIONAL_DISPENSATION, WITHDRAW, SCREENDISP, SCREENRAND, SUBJECT_COMPLETE, UNSCHEDULED, UNSCHEDULED_DISPENSATION, ADVERSE_EVENT, SCREENFAILURE, RESCREENING and RESCREENDISP.",
                        "example":"SCREENING"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event type corresponding to the visit. The acceptable values are: Visit_Not_Started, Visit_Started, Visit_Complete, Visit_Skipped, Visit_Skip_Undone, Visit_Date_Changed, Visit_Inserted, Visit_Show, Visit_Hide, VisitDateEntered and VisitDateCleared.",
                        "example":"Visit_Not_Started"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "repeatingFormCount":{
                        "type":"number",
                        "description":"Number of repeating form instances for the visit.",
                        "example":2
                    },
                    "scheduledWindowStartDate":{
                        "type":"string",
                        "description":"Scheduled window start date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "scheduledWindowEndDate":{
                        "type":"string",
                        "description":"Scheduled window end date for the visit",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "associatedStudyVersion":{
                        "type":"string",
                        "description":"Study version with which the visit status is associated",
                        "example":"3.0.0.1"
                    },
                    "display":{
                        "type":"string",
                        "description":"Display label of the visit status",
                        "example":"Baseline Visit"
                    },
                    "leadingDataelementId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string) of the leading data element for the visit.",
                        "example":"93CC828113AC439181071CB44D2C6FE5"
                    }
                },
                "description":"Visit status with display text and leading data element identifier for UI rendering"
            },
            "DataElementDtoV60":{
                "required":[
                    "studyVersion"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the data element",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionStart":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing began.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "transactionEnd":{
                        "type":"string",
                        "description":"The date and time at which the transaction processing completed.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "validationStatus":{
                        "maxLength":25,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation status of the data element. The validation status can be null or SUCCESS.",
                        "example":"SUCCESS"
                    },
                    "validationFailure":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Validation failure details if any",
                        "example":"Incorrect values not allowed"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "studyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Study name",
                        "example":"STUDY-ABC"
                    },
                    "studyVersion":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"10F75668189F422F9A461A315D211111"
                    },
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "format":"UUID",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "formSectionId":{
                        "type":"string",
                        "description":"Unique identifier of the table within a two section form or lab form. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA"
                    },
                    "repeatSequenceNumber":{
                        "type":"integer",
                        "description":"Indicates the order of occurrence for a repeating form instance, used to distinguish between multiple repetitions of the same form.",
                        "format":"int32",
                        "example":1
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the question within a form. This ID corresponds to the reference code set by the study designer when creating or updating a form question in draft mode.",
                        "format":"UUID",
                        "example":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"UUID",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "variableId":{
                        "type":"string",
                        "description":"Variable identifier (UUID, 32-character uppercase hexadecimal string) in uppercase hex format.",
                        "format":"UUID",
                        "example":"0123456789ABCDEF0123456789ABCDEF"
                    },
                    "originatorId":{
                        "type":"string",
                        "description":"An identifier representing the system, or user that initiated the transaction (UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"FEDCBA9876543210FEDCBA9876543210"
                    },
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code if provided",
                        "example":"VENDOR1"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Raw value captured for the item",
                        "example":"120"
                    },
                    "measureUnit":{
                        "maxLength":64,
                        "minLength":0,
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg/dL"
                    },
                    "normalizedValue":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Normalized value if applicable",
                        "example":"120"
                    },
                    "normalizedUnitId":{
                        "type":"string",
                        "description":"Identifier of normalized unit",
                        "example":"A78AD8C31CD843CD8B847C06C0420FF5"
                    },
                    "numValue":{
                        "type":"integer",
                        "description":"Numeric integer value",
                        "format":"int32",
                        "example":120
                    },
                    "floatValue":{
                        "type":"number",
                        "description":"Numeric decimal value",
                        "format":"decimal",
                        "example":12.34
                    },
                    "dateTimeValueUTC":{
                        "type":"string",
                        "description":"Date-time value in UTC",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "monthValue":{
                        "type":"integer",
                        "description":"Month part of date",
                        "format":"int32",
                        "example":10
                    },
                    "dayValue":{
                        "type":"integer",
                        "description":"Day part of date",
                        "format":"int32",
                        "example":16
                    },
                    "yearValue":{
                        "type":"integer",
                        "description":"Year part of date",
                        "format":"int32",
                        "example":2025
                    },
                    "hourValue":{
                        "type":"integer",
                        "description":"Hour part of time",
                        "format":"int32",
                        "example":14
                    },
                    "minuteValue":{
                        "type":"integer",
                        "description":"Minute part of time",
                        "format":"int32",
                        "example":30
                    },
                    "secondValue":{
                        "type":"integer",
                        "description":"Second part of time",
                        "format":"int32",
                        "example":31
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason associated with the data element change",
                        "example":"Initial entry"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for the data element change",
                        "example":"Captured by device"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "dataFlag":{
                        "type":"string",
                        "description":"Unique Data flag identifier(UUID, 32-character uppercase hexadecimal string).",
                        "format":"UUID",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    }
                }
            },
            "FormStatusDto2":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "outerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of the primary or outer repeating form. This value identifies each top-level occurrence of a repeating form and serves as the parent context for any nested inner repeats.",
                        "format":"int32",
                        "example":0
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "formStatus":{
                        "type":"string",
                        "description":"Status of the form. Status can be NEW, OPTIONAL, COMPLETED, COMPLETED_WITH_ERROR, IN_PROGRESS, IN_PROGRESS_WITH_ERROR, INCOMPLETE, INCOMPLETE_WITH_ERROR or DELETED.",
                        "example":"COMPLETED"
                    },
                    "innerRepeat":{
                        "type":"integer",
                        "description":"Indicates the repeat sequence number of a nested or inner repeating form within an outer repeating structure. This value is used to distinguish multiple occurrences of the same inner form for a given outer repeat instance.",
                        "format":"int32",
                        "example":0
                    },
                    "formStart3":{
                        "type":"string",
                        "description":"Form start timestamp based on latest computation in this version.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "formCompletion3":{
                        "type":"string",
                        "description":"Form completion timestamp based on latest computation in this version.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "formLastUpdate3":{
                        "type":"string",
                        "description":"Form last update timestamp based on latest computation in this version.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "formStart":{
                        "type":"string",
                        "description":"Form start timestamp.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "formCompletion":{
                        "type":"string",
                        "description":"Form completion timestamp.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "formLastUpdate":{
                        "type":"string",
                        "description":"Form last update timestamp.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Extends FormStatusDto with inner repeat and timestamps for form start, completion and last update. All timestamps are in UTC."
            },
            "FormDetails2":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ADF5A7800A954FA5B831E7B6B9CA39A9"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.",
                        "example":"40DB4EF4847849CCB24EFCCB71CDA436"
                    },
                    "eventInstanceNum":{
                        "type":"integer",
                        "description":"Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.",
                        "format":"int32",
                        "example":1
                    },
                    "usePersistence":{
                        "type":"boolean",
                        "description":"Indicates whether persisted cached values should be used when computing status, by default the flag is false",
                        "example":false
                    }
                },
                "description":"Represents filter criteria for a single form entry including event, form, event instance number and persistence usage flag."
            },
            "FormDetailsRequestDto2":{
                "type":"object",
                "properties":{
                    "formDetails":{
                        "type":"array",
                        "description":"List of form entries for which status is requested.",
                        "items":{
                            "$ref":"#/components/schemas/FormDetails2"
                        }
                    }
                },
                "description":"Contains a list of form entries used to request form status for a subject."
            },
            "SubjectDto110":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject",
                        "example":"RND-001"
                    }
                }
            },
            "SubjectDto101":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject if applicable.",
                        "example":"RND-001"
                    }
                }
            },
            "RestResponseSubjectVisitsStatusResponse90":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "$ref":"#/components/schemas/SubjectVisitsStatusResponse90"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "SubjectDto30":{
                "required":[
                    "state",
                    "studyVersion",
                    "subjectNumber"
                ],
                "type":"object",
                "properties":{
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date if applicable",
                        "format":"date-time",
                        "example":"2025-10-01T10:00:00Z"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event Type for Subject, can have value New, Screened, Randomized, Withdrawn, Undo_Withdrawn, Randomization_Replaced, Transferred, Screen_Failed, Undo_Randomization.",
                        "example":"Screened"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"Unique Identifier(UUID, 32-character uppercase hexadecimal string) of a subject transfer if applicable",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":14
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"Unique Identifier (UUID, 32-character uppercase hexadecimal string)  of the subject in mHealth system.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "fromStudyId":{
                        "type":"string",
                        "description":"Origin study identifier (UUID, 32-character uppercase hexadecimal string) from which the subject was transferred",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "subjNumSiteOrgId":{
                        "type":"string",
                        "description":"Subject number site organization identifier (UUID, 32-character uppercase hexadecimal string) ",
                        "example":"5D5F9311C591424F852B99FD902E98A4"
                    },
                    "signedStatus":{
                        "type":"string",
                        "description":"Signed status for workflow, the acceptable values are:  NEVER_SIGNED, SIGNED, UNSIGNED, NEVER_SIGNED.",
                        "example":"SIGNED"
                    },
                    "verifiedStatus":{
                        "type":"string",
                        "description":"Verified status for review workflow,the acceptable values are: NEVER_VEIFIED, VERIFIED, UNVERIFIED, NOT_APPLICABLE.",
                        "example":"VERIFIED"
                    },
                    "freezedStatus":{
                        "type":"string",
                        "description":"Frozen status of the record can have values NOT_APPLICABLE, FROZEN, UNFREEZE.",
                        "example":"FROZEN"
                    },
                    "lastSigned":{
                        "type":"string",
                        "description":"Timestamp when the subject was last signed",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number associated with the event",
                        "example":14
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "subjectStudySerialNumber":{
                        "type":"string",
                        "description":"Study-level serial number assigned to the subject",
                        "example":"STUDY-0001-001"
                    },
                    "subjectSiteSerialNumber":{
                        "type":"string",
                        "description":"Site-level serial number assigned to the subject",
                        "example":"SITE-0001-001"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"End timestamp of the subject version record",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "previousSubjectNumber":{
                        "type":"string",
                        "description":"Previous subject number if renumbered or transferred",
                        "example":"SUBJECT-0001-OLD"
                    },
                    "screenFailureDate":{
                        "type":"string",
                        "description":"Date when the subject was marked as screen failure",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the subject",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "description":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Free text description for the subject",
                        "example":"Screened subject"
                    },
                    "subjectNumber":{
                        "maxLength":500,
                        "minLength":0,
                        "type":"string",
                        "description":"Unique subject Number representing the patient/participant enrolled in the study.",
                        "example":"SUBJ-0001"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"ABCDEF1234567890ABCDEF1234567890"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth",
                        "format":"date-time"
                    },
                    "state":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Lifecycle state of the subject in the study.  Reflects the subject???s current status. Common values include: <ul><li>New</li><li>Active</li><li>Screening_Initiated</li><li>Screen_Failed</li><li>Withdrawn</li><li>Auto_Screen_Failed</li><li>Complete</li><li>Enrolled</li></ul>",
                        "example":"Active"
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Timestamp when the subject transitioned to current state",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "screeningFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for screening failure, if any",
                        "example":"Inclusion criteria not met"
                    },
                    "enrollmentFailure":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for enrollment failure, if any",
                        "example":"Consent withdrawn"
                    },
                    "enrollmentOverride":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"If subject enrollment is overridden.",
                        "example":"Subject Enrollment Overridden"
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date-time",
                        "example":"2025-09-25T09:00:00Z"
                    },
                    "gender":{
                        "maxLength":10,
                        "minLength":0,
                        "type":"string",
                        "description":"Gender value",
                        "example":"[{\"value\":\"1\",\"label\":\"male\"}]"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason for latest subject update",
                        "example":"Protocol break happened"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment for latest subject update",
                        "example":"Initial enrollment"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"3.0.0.1"
                    },
                    "sourceTimeStamp":{
                        "type":"string",
                        "description":"Source system timestamp for the subject payload",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    },
                    "randomizationNumber":{
                        "type":"string",
                        "description":"Randomization number assigned to the subject",
                        "example":"RND-001"
                    },
                    "screeningNumber":{
                        "type":"string",
                        "description":"Screening number assigned to the subject",
                        "example":"SCR-0001"
                    }
                }
            },
            "RestResponseListSubjectRespDto15":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectRespDto15"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "RestResponseListSubjectRespDto16":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectRespDto16"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32",
                        "writeOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    }
                }
            },
            "Error Response":{
                "type":"object",
                "properties":{
                    "errorCode":{
                        "type":"string",
                        "description":"Application-specific error code representing the failure reason.",
                        "readOnly":true,
                        "example":"VALIDATION_ERROR"
                    },
                    "errorMessage":{
                        "type":"string",
                        "description":"Human-readable message describing the error.",
                        "readOnly":true,
                        "example":"Request payload validation failed"
                    },
                    "details":{
                        "type":"object",
                        "description":"Optional additional details about the error for diagnostics.",
                        "nullable":true,
                        "readOnly":true
                    }
                },
                "description":"Standard error body containing code, message and optional details.",
                "nullable":true,
                "readOnly":true
            },
            "NotificationResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Status of the request processing. SUCCESS indicates the request was processed without errors. Any other value indicates failure.",
                        "readOnly":true,
                        "example":"success",
                        "enum":[
                            "success, Failed"
                        ]
                    },
                    "result":{
                        "type":"object",
                        "description":"Result payload for the request. The concrete type depends on the endpoint and is described in the corresponding API documentation.",
                        "readOnly":true
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/Error Response"
                    }
                },
                "description":"Standard wrapper for API responses. Contains the request processing status, the result payload for successful requests, and error details when a request fails."
            },
            "EmailTemplateDto1":{
                "required":[
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "type":"string",
                        "description":"Email subject line to use when sending the template",
                        "example":"Training Status Reminder"
                    },
                    "users":{
                        "type":"array",
                        "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "C5770247BEF54CE0923B7C7CA3B659C8",
                            "DBF0480DD86446CE8482BE016726393C"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"C5770247BEF54CE0923B7C7CA3B659C8\",\"DBF0480DD86446CE8482BE016726393C\"]"
                        }
                    },
                    "placeHolderValueMap":{
                        "type":"object",
                        "description":"Map of placeholder variables to be replaced in the template body",
                        "example":{
                            "userTrainingDetails":" ",
                            "redirectUrl":"",
                            "username":"system",
                            "studyName":"AutomationStudy"
                        }
                    },
                    "placeHolderImageMap":{
                        "type":"object",
                        "description":"Map of placeholder image variables to URLs or resource identifiers",
                        "example":{
                            "image5":"NOTIFICATION.EMAIL.IMAGE5",
                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                            "image2":"NOTIFICATION.EMAIL.IMAGE2"
                        }
                    }
                },
                "description":"Request body for sending an email based on a predefined template. Includes subject override, recipient users, and placeholder maps for text and images."
            },
            "EmailTemplateDto2":{
                "required":[
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "type":"string",
                        "description":"Email subject line to use when sending the template",
                        "example":"Training Status Reminder"
                    },
                    "users":{
                        "type":"array",
                        "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "C5770247BEF54CE0923B7C7CA3B659C8",
                            "DBF0480DD86446CE8482BE016726393C"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"C5770247BEF54CE0923B7C7CA3B659C8\",\"DBF0480DD86446CE8482BE016726393C\"]"
                        }
                    },
                    "placeHolderValueMap":{
                        "type":"object",
                        "description":"Map of placeholder variables to be replaced in the template body",
                        "example":{
                            "userTrainingDetails":" ",
                            "redirectUrl":"",
                            "username":"system",
                            "studyName":"AutomationStudy"
                        }
                    },
                    "placeHolderImageMap":{
                        "type":"object",
                        "description":"Map of placeholder image variables to URLs or resource identifiers",
                        "example":{
                            "image5":"NOTIFICATION.EMAIL.IMAGE5",
                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                            "image2":"NOTIFICATION.EMAIL.IMAGE2"
                        }
                    },
                    "emailAddresses":{
                        "type":"array",
                        "description":"Additional recipient email addresses not associated with users",
                        "example":[
                            "john.doe@oracle.com"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Additional recipient email addresses not associated with users",
                            "example":"[\"john.doe@oracle.com\"]"
                        }
                    }
                },
                "description":"Request body for sending an email based on a predefined template by allowing direct recipient email addresses in addition to users and placeholder maps."
            },
            "EmailTemplateDto3":{
                "required":[
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "type":"string",
                        "description":"Email subject line to use when sending the template",
                        "example":"Training Status Reminder"
                    },
                    "users":{
                        "type":"array",
                        "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "C5770247BEF54CE0923B7C7CA3B659C8",
                            "DBF0480DD86446CE8482BE016726393C"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"C5770247BEF54CE0923B7C7CA3B659C8\",\"DBF0480DD86446CE8482BE016726393C\"]"
                        }
                    },
                    "placeHolderValueMap":{
                        "type":"object",
                        "description":"Map of placeholder variables to be replaced in the template body",
                        "example":{
                            "userTrainingDetails":" ",
                            "redirectUrl":"",
                            "username":"system",
                            "studyName":"AutomationStudy"
                        }
                    },
                    "placeHolderImageMap":{
                        "type":"object",
                        "description":"Map of placeholder image variables to URLs or resource identifiers",
                        "example":{
                            "image5":"NOTIFICATION.EMAIL.IMAGE5",
                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                            "image2":"NOTIFICATION.EMAIL.IMAGE2"
                        }
                    },
                    "emailAddresses":{
                        "type":"array",
                        "description":"Additional recipient email addresses not associated with users",
                        "example":[
                            "john.doe@oracle.com"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Additional recipient email addresses not associated with users",
                            "example":"[\"john.doe@oracle.com\"]"
                        }
                    },
                    "studyRoleIds":{
                        "type":"array",
                        "description":"List of study role identifiers to target (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "1BC29B36F5D64B1B95F4BD32CEA481BE",
                            "8F14E45FC1EA167A5A36D5DD4BEA2543"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role identifiers to target (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"1BC29B36F5D64B1B95F4BD32CEA481BE\",\"8F14E45FC1EA167A5A36D5DD4BEA2543\"]"
                        }
                    }
                },
                "description":"Supporting study role based targeting in addition to direct email addresses and users."
            },
            "EmailTemplateDto4":{
                "required":[
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "type":"string",
                        "description":"Email subject line to use when sending the template",
                        "example":"Training Status Reminder"
                    },
                    "users":{
                        "type":"array",
                        "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "C5770247BEF54CE0923B7C7CA3B659C8",
                            "DBF0480DD86446CE8482BE016726393C"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of recipient user identifiers (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"C5770247BEF54CE0923B7C7CA3B659C8\",\"DBF0480DD86446CE8482BE016726393C\"]"
                        }
                    },
                    "placeHolderValueMap":{
                        "type":"object",
                        "description":"Map of placeholder variables to be replaced in the template body",
                        "example":{
                            "userTrainingDetails":" ",
                            "redirectUrl":"",
                            "username":"system",
                            "studyName":"AutomationStudy"
                        }
                    },
                    "placeHolderImageMap":{
                        "type":"object",
                        "description":"Map of placeholder image variables to URLs or resource identifiers",
                        "example":{
                            "image5":"NOTIFICATION.EMAIL.IMAGE5",
                            "image3":"NOTIFICATION.EMAIL.IMAGE3",
                            "image4":"NOTIFICATION.EMAIL.IMAGE4",
                            "image1":"NOTIFICATION.EMAIL.IMAGE1",
                            "image2":"NOTIFICATION.EMAIL.IMAGE2"
                        }
                    },
                    "emailAddresses":{
                        "type":"array",
                        "description":"Additional recipient email addresses not associated with users",
                        "example":[
                            "john.doe@oracle.com"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Additional recipient email addresses not associated with users",
                            "example":"[\"john.doe@oracle.com\"]"
                        }
                    },
                    "studyRoleIds":{
                        "type":"array",
                        "description":"List of study role identifiers to target (UUID, 32-character uppercase hexadecimal string)",
                        "example":[
                            "1BC29B36F5D64B1B95F4BD32CEA481BE",
                            "8F14E45FC1EA167A5A36D5DD4BEA2543"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role identifiers to target (UUID, 32-character uppercase hexadecimal string)",
                            "example":"[\"1BC29B36F5D64B1B95F4BD32CEA481BE\",\"8F14E45FC1EA167A5A36D5DD4BEA2543\"]"
                        }
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique Identifier of the site (UUID, 32-character uppercase hexadecimal string)",
                        "example":"97EF9A19358D4EEC9224429DD6053609"
                    }
                },
                "description":"Adding the site identifier to further scope notifications broadcasts."
            },
            "AnchorValues":{
                "type":"object",
                "properties":{
                    "keyValues":{
                        "type":"array",
                        "description":"List of key-value entries used to substitute placeholders for this anchor",
                        "items":{
                            "$ref":"#/components/schemas/KeyValues"
                        }
                    }
                },
                "description":"Container for key-value parameters that provide substitution values for a given anchor key."
            },
            "Anchors":{
                "type":"object",
                "properties":{
                    "anchorKey":{
                        "type":"string",
                        "description":"Unique subject anchor key within the export payload. Some examples: NTF_ORS_DEPOT_LOW_KIT, NTF_ORS_BODY_STUDY_NAME, NTF_ORS_BODY_STUDY_ID, NTF_ORS_BODY_STUDY_MODE, NTF_ORS_MODE_ACTIVE, NTF_ORS_MODE_TEST, NTF_ORS_MODE_TRAINING, NTF_ORS_NEW_SHIPMENT_DEPOT_ID, NTF_ORS_NEW_SHIPMENT_DEPOT_NAME, NTF_ORS_DEPOT_ADDRESS, NTF_ORS_DATE_ALERT_RAISED, NTF_ORS_KIT_TYPE_ID, NTF_ORS_KIT_TYPE_DESCRIPTION, NTF_ORS_CURRENT_INVENTORY_AVAILABLE.",
                        "example":"NTF_SIGN_OVERDUE"
                    },
                    "anchorValues":{
                        "$ref":"#/components/schemas/AnchorValues"
                    }
                },
                "description":"Anchor mapping used within template properties for text substitution. Associates an anchor key with its parameter values."
            },
            "EmailTemplateNotificationDto":{
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/Subject"
                    },
                    "users":{
                        "type":"array",
                        "description":"List of recipient user email addresses",
                        "example":[
                            "C5770247BEF54CE0923B7C7CA3B659C8",
                            "DBF0480DD86446CE8482BE016726393C"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of recipient user email addresses",
                            "example":"[\"C5770247BEF54CE0923B7C7CA3B659C8\",\"DBF0480DD86446CE8482BE016726393C\"]"
                        }
                    },
                    "placeHolderValueMap":{
                        "$ref":"#/components/schemas/PlaceHolderValueMap"
                    },
                    "placeHolderImageMap":{
                        "type":"object",
                        "description":"Placeholder images map used by the template, mapping keys to image URLs or identifiers",
                        "example":{
                            "logo":"https://cdn.example.com/assets/logo.png"
                        }
                    },
                    "emailAddresses":{
                        "type":"array",
                        "description":"Additional direct recipient email addresses",
                        "example":[
                            "user.surname@email.com"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Additional direct recipient email addresses",
                            "example":"[\"user.surname@email.com\"]"
                        }
                    },
                    "studyRoleIds":{
                        "type":"array",
                        "description":"List of study role identifiers to target",
                        "example":[
                            "1BC29B36F5D64B1B95F4BD765EA481BE"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of study role identifiers to target",
                            "example":"[\"1BC29B36F5D64B1B95F4BD765EA481BE\"]"
                        }
                    }
                },
                "description":"Request body for sending localized email based on template with subject structure, recipients, placeholder maps, and optional direct email addresses and study role IDs."
            },
            "KeyValues":{
                "type":"object",
                "properties":{
                    "key":{
                        "type":"integer",
                        "description":"Integer key representing the position or identifier of the parameter in the anchor.",
                        "format":"int32",
                        "example":0
                    },
                    "value":{
                        "type":"string",
                        "description":"Parameter value to substitute.",
                        "example":"ACTIVE"
                    },
                    "type":{
                        "type":"string",
                        "description":"Type of the value for rendering or validation. Typical values: TEXT, DATE.",
                        "example":"TEXT"
                    }
                },
                "description":"Represents a single parameter for anchor substitution with an integer key, a value, and a type describing how to interpret the value."
            },
            "PlaceHolderValueMap":{
                "type":"object",
                "properties":{
                    "properties":{
                        "type":"array",
                        "description":"List of placeholder properties to substitute within the template body.",
                        "items":{
                            "$ref":"#/components/schemas/Properties"
                        }
                    }
                },
                "description":"Container for placeholder properties used to build localized email content. Each property may define anchors for parameterized substitution."
            },
            "Properties":{
                "type":"object",
                "properties":{
                    "propertyName":{
                        "type":"string",
                        "description":"Name of the placeholder property in the template body. Some examples: NTF_DCS_ADV_EVENT, NTF_SIGN_OVERDUE, NTF_HEADER_C1, NTF_HEADER_SITE_NAME, NTF_HEADER_STUDY_MODE, NTF_HEADER_STUDY_NAME etc",
                        "example":"NTF_HEADER_SITE_NAME"
                    },
                    "propertyValue":{
                        "type":"string",
                        "description":"Value of the placeholder property prior to anchor substitution. Some examples: NTF_DCS_ADV_EVENT, NTF_SIGN_OVERDUE, NTF_HEADER_C1, NTF_HEADER_SITE_NAME, NTF_HEADER_STUDY_MODE, NTF_HEADER_STUDY_NAME etc ",
                        "example":"NTF_HEADER_SITE_NAME"
                    },
                    "anchors":{
                        "type":"array",
                        "description":"Anchors used to substitute dynamic portions within the property value",
                        "items":{
                            "$ref":"#/components/schemas/Anchors"
                        }
                    }
                },
                "description":"Represents a single placeholder property in the template body, optionally including anchors for parameterized substitution."
            },
            "Subject":{
                "type":"object",
                "properties":{
                    "anchorKey":{
                        "type":"string",
                        "description":"Message key used to resolve the localized email subject text.",
                        "example":"NTF_SIGN_OVERDUE"
                    },
                    "anchorValues":{
                        "$ref":"#/components/schemas/AnchorValues"
                    }
                },
                "description":"Structured subject definition for i18n templates. Provides a message key and a collection of anchor values for substitution."
            },
            "NotificationLogDto":{
                "required":[
                    "approvalFlag",
                    "category",
                    "createdBy",
                    "entityType",
                    "immediateFlag",
                    "priority",
                    "serviceName"
                ],
                "type":"object",
                "properties":{
                    "serviceName":{
                        "type":"string",
                        "description":"Service name that generated the notification",
                        "example":"dc",
                        "enum":[
                            "dc",
                            "ors",
                            "reporting",
                            "ruledesigner",
                            "sites"
                        ]
                    },
                    "messageSubject":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject/title of the notification",
                        "example":"Cancellation Shipment Request"
                    },
                    "messageDescription":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Detailed message body of the notification",
                        "example":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot."
                    },
                    "priority":{
                        "type":"string",
                        "description":"Priority of the notification",
                        "example":"HIGH",
                        "enum":[
                            "LOW",
                            "HIGH",
                            "0",
                            "1"
                        ]
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Entity type associated with the notification. Some examples: Study, Site, Subject.",
                        "example":"Site"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "privilege":{
                        "type":"string",
                        "description":"Business right or privilege associated with this notification. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "example":"SiteStatusChangeNotification"
                    },
                    "createdBy":{
                        "type":"string",
                        "description":"User or process that created the notification",
                        "example":"Eva, Hulshagen"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Inventory control system failure"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Shipment Failure Notification"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "approvalFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Approval flag indicating if approval is required",
                        "example":"Y",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Creation timestamp of the notification",
                        "format":"date-time",
                        "example":"2025-03-21T10:20:30Z"
                    },
                    "userList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of user identifiers targeted by this notification",
                        "example":"1BC29B36F5D64B1B95F4B987CEA481BE,1BC29B36F5D64B1B95F4BD234EA481BE"
                    },
                    "immediateFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Immediate processing flag",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2025-03-20T10:20:30.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the notification log record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"33D0D74837F6454B836AAB5BA2574D28"
                    },
                    "SoftwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "ObjectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                },
                "description":"Notification log record describing the notification content, recipients, audit fields, and versioning metadata"
            },
            "NotificationLogDto2":{
                "required":[
                    "approvalFlag",
                    "category",
                    "createdBy",
                    "entityType",
                    "immediateFlag",
                    "priority",
                    "serviceName"
                ],
                "type":"object",
                "properties":{
                    "serviceName":{
                        "type":"string",
                        "description":"Service name that generated the notification",
                        "example":"dc",
                        "enum":[
                            "dc",
                            "ors",
                            "reporting",
                            "ruledesigner",
                            "sites"
                        ]
                    },
                    "messageSubject":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject/title of the notification",
                        "example":"Cancellation Shipment Request"
                    },
                    "messageDescription":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Detailed message body of the notification",
                        "example":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot."
                    },
                    "priority":{
                        "type":"string",
                        "description":"Priority of the notification",
                        "example":"HIGH",
                        "enum":[
                            "LOW",
                            "HIGH",
                            "0",
                            "1"
                        ]
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Entity type associated with the notification. Some examples: Study, Site, Subject.",
                        "example":"Site"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "privilege":{
                        "type":"string",
                        "description":"Business right or privilege associated with this notification. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "example":"SiteStatusChangeNotification"
                    },
                    "createdBy":{
                        "type":"string",
                        "description":"User or process that created the notification",
                        "example":"Eva, Hulshagen"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Inventory control system failure"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Shipment Failure Notification"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "approvalFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Approval flag indicating if approval is required",
                        "example":"Y",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Creation timestamp of the notification",
                        "format":"date-time",
                        "example":"2025-03-21T10:20:30Z"
                    },
                    "userList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of user identifiers targeted by this notification",
                        "example":"1BC29B36F5D64B1B95F4B987CEA481BE,1BC29B36F5D64B1B95F4BD234EA481BE"
                    },
                    "immediateFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Immediate processing flag",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2025-03-20T10:20:30.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the notification log record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"33D0D74837F6454B836AAB5BA2574D28"
                    },
                    "emailAddressList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of email addresses",
                        "example":"john.doe@oracle.com,jane.doe@oracle.com"
                    },
                    "attachment":{
                        "type":"string",
                        "description":"Attachment content as base64 encoded bytes",
                        "example":"SGVsbG8gd29ybGQh11"
                    },
                    "emailOnlyFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Send only email without in-app notification",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "attachmentUrl":{
                        "type":"string",
                        "description":"Attachment URL reference when content is not embedded",
                        "example":"null"
                    },
                    "attachmentUrlProvider":{
                        "type":"string",
                        "description":"Provider of the attachment URL",
                        "example":"null"
                    },
                    "attachmentProviderVersion":{
                        "type":"string",
                        "description":"Provider API version used to generate the attachment URL",
                        "example":"null"
                    },
                    "SoftwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "ObjectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                },
                "description":"Notification log v2 payload with email delivery fields including attachments and provider metadata"
            },
            "NotificationLogDto3":{
                "required":[
                    "approvalFlag",
                    "category",
                    "createdBy",
                    "entityType",
                    "immediateFlag",
                    "priority",
                    "serviceName"
                ],
                "type":"object",
                "properties":{
                    "serviceName":{
                        "type":"string",
                        "description":"Service name that generated the notification",
                        "example":"dc",
                        "enum":[
                            "dc",
                            "ors",
                            "reporting",
                            "ruledesigner",
                            "sites"
                        ]
                    },
                    "messageSubject":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject/title of the notification",
                        "example":"Cancellation Shipment Request"
                    },
                    "messageDescription":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Detailed message body of the notification",
                        "example":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot."
                    },
                    "priority":{
                        "type":"string",
                        "description":"Priority of the notification",
                        "example":"HIGH",
                        "enum":[
                            "LOW",
                            "HIGH",
                            "0",
                            "1"
                        ]
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Entity type associated with the notification. Some examples: Study, Site, Subject.",
                        "example":"Site"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "privilege":{
                        "type":"string",
                        "description":"Business right or privilege associated with this notification. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "example":"SiteStatusChangeNotification"
                    },
                    "createdBy":{
                        "type":"string",
                        "description":"User or process that created the notification",
                        "example":"Eva, Hulshagen"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Inventory control system failure"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Shipment Failure Notification"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "approvalFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Approval flag indicating if approval is required",
                        "example":"Y",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Creation timestamp of the notification",
                        "format":"date-time",
                        "example":"2025-03-21T10:20:30Z"
                    },
                    "userList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of user identifiers targeted by this notification",
                        "example":"1BC29B36F5D64B1B95F4B987CEA481BE,1BC29B36F5D64B1B95F4BD234EA481BE"
                    },
                    "immediateFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Immediate processing flag",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2025-03-20T10:20:30.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the notification log record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"33D0D74837F6454B836AAB5BA2574D28"
                    },
                    "emailAddressList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of email addresses",
                        "example":"john.doe@oracle.com,jane.doe@oracle.com"
                    },
                    "attachment":{
                        "type":"string",
                        "description":"Attachment content as base64 encoded bytes",
                        "example":"SGVsbG8gd29ybGQh11"
                    },
                    "emailOnlyFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Send only email without in-app notification",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "attachmentUrl":{
                        "type":"string",
                        "description":"Attachment URL reference when content is not embedded",
                        "example":"null"
                    },
                    "attachmentUrlProvider":{
                        "type":"string",
                        "description":"Provider of the attachment URL",
                        "example":"null"
                    },
                    "attachmentProviderVersion":{
                        "type":"string",
                        "description":"Provider API version used to generate the attachment URL",
                        "example":"null"
                    },
                    "targetList":{
                        "type":"array",
                        "description":"List on ORS site information",
                        "items":{
                            "$ref":"#/components/schemas/NotificationLogTargetDto"
                        }
                    },
                    "SoftwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "ObjectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                },
                "description":"Notification log v3 payload with list of notification logs target."
            },
            "NotificationLogTargetDto":{
                "required":[
                    "targetId",
                    "targetType"
                ],
                "type":"object",
                "properties":{
                    "targetType":{
                        "type":"string",
                        "description":"Type of notification target. Some examples: SITE, DEPOT USER",
                        "example":"SITE"
                    },
                    "targetId":{
                        "type":"string",
                        "description":"Unique identifier(UUID, 32-character uppercase hexadecimal string) for the coding result target.",
                        "example":"515D8531E6A94B1BB238E58A572D8C80"
                    }
                },
                "description":"Target mapping linking a notification to an entity such as a site or depot"
            },
            "BodyDto":{
                "required":[
                    "anchors"
                ],
                "type":"object",
                "properties":{
                    "htmlContent":{
                        "type":"string",
                        "description":"HTML content template for the notification body",
                        "example":"<!DOCTYPE html><html><head><meta charset=\"UTF-8\"><title>Clinical One</title></head><body><table cellspacing=\"0\" style=\"width:1000px;border-collapse:collapse; font-size: 16px;\" border=\"0\"><tbody><tr><td width=\"1000px\" colspan=\"3\"></td></tr><tr><td style=\"font-weight:700;vertical-align:top;width:600px\">NTF_ORS_DEPOT_LOW_KIT</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_BODY_STUDY_NAME: Rave_Study</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_BODY_STUDY_ID: Rave_Study</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_BODY_STUDY_MODE: NTF_ORS_MODE_ACTIVE</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_NEW_SHIPMENT_DEPOT_ID: DEPO01</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_NEW_SHIPMENT_DEPOT_NAME: DEPO-01</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:150px\">NTF_ORS_DEPOT_ADDRESS: #6700, Park Street,Opposite to Redfort,Noida,IN,Delhi,577126</td></tr><tr><td width=\"1000px\" colspan=\"3\" style=\"height: 6px;\"></td></tr> <tr><td style=\"font-weight:400;vertical-align:top;width:1000px\">NTF_ORS_KIT_TYPE_ID: KitB | NTF_ORS_KIT_TYPE_DESCRIPTION: KitB_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0</td></tr><tr><td style=\"font-weight:400;vertical-align:top;width:1000px\">NTF_ORS_KIT_TYPE_ID: KitA | NTF_ORS_KIT_TYPE_DESCRIPTION: KitA_Desc | NTF_ORS_CURRENT_INVENTORY_AVAILABLE: 0</td></tr><tr><td width=\"1000px\" colspan=\"3\" style=\"height: 6px;\"></td></tr><tr><td style=\"font-weight:400\">NTF_ORS_DATE_ALERT_RAISED: NTF_ORS_DATE_PERFORMED</td></tr></tbody></table></body></html>"
                    },
                    "anchors":{
                        "type":"array",
                        "description":"List of body anchors and their substitution values",
                        "items":{
                            "$ref":"#/components/schemas/NotificationAnchorDto"
                        }
                    }
                },
                "description":"Notification body template including HTML content and anchors for variable substitution"
            },
            "MessageLanguageSupportedDto":{
                "required":[
                    "body",
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto"
                    },
                    "body":{
                        "$ref":"#/components/schemas/BodyDto"
                    }
                },
                "description":"Structure holding localized message subject and body content with anchor keys and value substitutions"
            },
            "NotificationAnchorDto":{
                "type":"object",
                "properties":{
                    "anchorKey":{
                        "type":"string",
                        "description":"Unique subject anchor key within the export payload. Some examples: NTF_ORS_DEPOT_LOW_KIT, NTF_ORS_BODY_STUDY_NAME, NTF_ORS_BODY_STUDY_ID, NTF_ORS_BODY_STUDY_MODE, NTF_ORS_MODE_ACTIVE, NTF_ORS_MODE_TEST, NTF_ORS_MODE_TRAINING, NTF_ORS_NEW_SHIPMENT_DEPOT_ID, NTF_ORS_NEW_SHIPMENT_DEPOT_NAME, NTF_ORS_DEPOT_ADDRESS, NTF_ORS_DATE_ALERT_RAISED, NTF_ORS_KIT_TYPE_ID, NTF_ORS_KIT_TYPE_DESCRIPTION, NTF_ORS_CURRENT_INVENTORY_AVAILABLE.",
                        "example":"NTF_ORS_DEPOT_LOW_KIT"
                    },
                    "values":{
                        "type":"array",
                        "description":"List of substitution values for this anchor",
                        "items":{
                            "$ref":"#/components/schemas/ValueDto"
                        }
                    }
                },
                "description":"Anchor replacement entry for localized message body with indexed anchors."
            },
            "NotificationLogDto4":{
                "required":[
                    "approvalFlag",
                    "category",
                    "createdBy",
                    "entityType",
                    "immediateFlag",
                    "priority",
                    "serviceName"
                ],
                "type":"object",
                "properties":{
                    "serviceName":{
                        "type":"string",
                        "description":"Service name that generated the notification",
                        "example":"dc",
                        "enum":[
                            "dc",
                            "ors",
                            "reporting",
                            "ruledesigner",
                            "sites"
                        ]
                    },
                    "messageSubject":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject/title of the notification",
                        "example":"Cancellation Shipment Request"
                    },
                    "messageDescription":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Detailed message body of the notification",
                        "example":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot."
                    },
                    "priority":{
                        "type":"string",
                        "description":"Priority of the notification",
                        "example":"HIGH",
                        "enum":[
                            "LOW",
                            "HIGH",
                            "0",
                            "1"
                        ]
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Entity type associated with the notification. Some examples: Study, Site, Subject.",
                        "example":"Site"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "privilege":{
                        "type":"string",
                        "description":"Business right or privilege associated with this notification. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "example":"SiteStatusChangeNotification"
                    },
                    "createdBy":{
                        "type":"string",
                        "description":"User or process that created the notification",
                        "example":"Eva, Hulshagen"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Inventory control system failure"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Shipment Failure Notification"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "approvalFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Approval flag indicating if approval is required",
                        "example":"Y",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Creation timestamp of the notification",
                        "format":"date-time",
                        "example":"2025-03-21T10:20:30Z"
                    },
                    "userList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of user identifiers targeted by this notification",
                        "example":"1BC29B36F5D64B1B95F4B987CEA481BE,1BC29B36F5D64B1B95F4BD234EA481BE"
                    },
                    "immediateFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Immediate processing flag",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2025-03-20T10:20:30.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the notification log record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"33D0D74837F6454B836AAB5BA2574D28"
                    },
                    "emailAddressList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of email addresses",
                        "example":"john.doe@oracle.com,jane.doe@oracle.com"
                    },
                    "attachment":{
                        "type":"string",
                        "description":"Attachment content as base64 encoded bytes",
                        "example":"SGVsbG8gd29ybGQh11"
                    },
                    "emailOnlyFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Send only email without in-app notification",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "attachmentUrl":{
                        "type":"string",
                        "description":"Attachment URL reference when content is not embedded",
                        "example":"null"
                    },
                    "attachmentUrlProvider":{
                        "type":"string",
                        "description":"Provider of the attachment URL",
                        "example":"null"
                    },
                    "attachmentProviderVersion":{
                        "type":"string",
                        "description":"Provider API version used to generate the attachment URL",
                        "example":"null"
                    },
                    "targetList":{
                        "type":"array",
                        "description":"List on ORS site information",
                        "items":{
                            "$ref":"#/components/schemas/NotificationLogTargetDto"
                        }
                    },
                    "messageLanguageSupported":{
                        "$ref":"#/components/schemas/MessageLanguageSupportedDto"
                    },
                    "SoftwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "ObjectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                }
            },
            "SubjectDto":{
                "type":"object",
                "properties":{
                    "anchorKey":{
                        "type":"string",
                        "description":"Unique subject anchor key within the export payload. Some examples: NTF_ORS_DEPOT_LOW_KIT, NTF_ORS_BODY_STUDY_NAME, NTF_ORS_BODY_STUDY_ID, NTF_ORS_BODY_STUDY_MODE, NTF_ORS_MODE_ACTIVE, NTF_ORS_MODE_TEST, NTF_ORS_MODE_TRAINING, NTF_ORS_NEW_SHIPMENT_DEPOT_ID, NTF_ORS_NEW_SHIPMENT_DEPOT_NAME, NTF_ORS_DEPOT_ADDRESS, NTF_ORS_DATE_ALERT_RAISED, NTF_ORS_KIT_TYPE_ID, NTF_ORS_KIT_TYPE_DESCRIPTION, NTF_ORS_CURRENT_INVENTORY_AVAILABLE.",
                        "example":"NTF_ORS_DEPOT_LOW_KIT"
                    },
                    "values":{
                        "type":"array",
                        "description":"Collection of key-type-name entries for this subject",
                        "items":{
                            "$ref":"#/components/schemas/ValueDto"
                        }
                    }
                },
                "description":"Subject anchor and associated value entries",
                "example":{
                    "anchorKey":"NTF_ORS_DEPOT_LOW_KIT",
                    "values":[
                        {
                            "key":"101",
                            "keyType":"VISIT",
                            "name":"Visit 1"
                        }
                    ]
                }
            },
            "ValueDto":{
                "required":[
                    "keyType"
                ],
                "type":"object",
                "properties":{
                    "key":{
                        "type":"string",
                        "description":"Numeric key associated with the entry",
                        "example":"1"
                    },
                    "keyType":{
                        "type":"string",
                        "description":"Type/category for the key",
                        "example":"TEXT or DATE"
                    },
                    "name":{
                        "type":"string",
                        "description":"Human-readable label for the entry",
                        "example":"Visit 1"
                    }
                },
                "description":"Key, type, and display name entry for a subject"
            },
            "BodyDto2":{
                "required":[
                    "anchors"
                ],
                "type":"object",
                "properties":{
                    "htmlContent":{
                        "type":"string",
                        "description":"HTML content template for the notification body",
                        "example":"Study updated"
                    },
                    "anchors":{
                        "type":"array",
                        "description":"List of body anchors with index and their substitution values",
                        "items":{
                            "$ref":"#/components/schemas/NotificationAnchorDto2"
                        }
                    }
                },
                "description":"Notification body template for v5 including HTML content and indexed anchors for deterministic replacement"
            },
            "MessageLanguageSupportedDto2":{
                "required":[
                    "body",
                    "subject"
                ],
                "type":"object",
                "properties":{
                    "subject":{
                        "$ref":"#/components/schemas/SubjectDto"
                    },
                    "body":{
                        "$ref":"#/components/schemas/BodyDto2"
                    }
                },
                "description":"Structure holding localized message subject and body with indexed anchors for deterministic replacement order"
            },
            "NotificationAnchorDto2":{
                "required":[
                    "anchorIndex"
                ],
                "type":"object",
                "properties":{
                    "anchorKey":{
                        "type":"string",
                        "description":"Unique subject anchor key within the export payload. Some examples: NTF_ORS_DEPOT_LOW_KIT, NTF_ORS_BODY_STUDY_NAME, NTF_ORS_BODY_STUDY_ID, NTF_ORS_BODY_STUDY_MODE, NTF_ORS_MODE_ACTIVE, NTF_ORS_MODE_TEST, NTF_ORS_MODE_TRAINING, NTF_ORS_NEW_SHIPMENT_DEPOT_ID, NTF_ORS_NEW_SHIPMENT_DEPOT_NAME, NTF_ORS_DEPOT_ADDRESS, NTF_ORS_DATE_ALERT_RAISED, NTF_ORS_KIT_TYPE_ID, NTF_ORS_KIT_TYPE_DESCRIPTION, NTF_ORS_CURRENT_INVENTORY_AVAILABLE.",
                        "example":"NTF_ORS_BODY_STUDY_NAME"
                    },
                    "anchorIndex":{
                        "type":"integer",
                        "description":"0-based index of the anchor occurrence within the message body.",
                        "example":0
                    },
                    "values":{
                        "type":"array",
                        "description":"List of substitution values for this anchor",
                        "items":{
                            "$ref":"#/components/schemas/ValueDto"
                        }
                    }
                },
                "description":"Anchor replacement entry for localized message body with indexed anchors."
            },
            "NotificationLogDto5":{
                "required":[
                    "approvalFlag",
                    "category",
                    "createdBy",
                    "entityType",
                    "immediateFlag",
                    "priority",
                    "serviceName"
                ],
                "type":"object",
                "properties":{
                    "serviceName":{
                        "type":"string",
                        "description":"Service name that generated the notification",
                        "example":"dc",
                        "enum":[
                            "dc",
                            "ors",
                            "reporting",
                            "ruledesigner",
                            "sites"
                        ]
                    },
                    "messageSubject":{
                        "maxLength":1024,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject/title of the notification",
                        "example":"Cancellation Shipment Request"
                    },
                    "messageDescription":{
                        "maxLength":32767,
                        "minLength":0,
                        "type":"string",
                        "description":"Detailed message body of the notification",
                        "example":"Drug Order ID: 09009 Original Request Date: Eastern Time (US & Canada): 21-May-2012 9:45 PM Manual Request Date: Eastern Time (US & Canada): 19-Jul-2016 3:56 PM Site ID: 50 Site Name: UAT, Claudia Darija Site Address: 12 West RD, Phoenix, AZ Requestor Name: Eva, Haulage Email: eva.hulshagen@oracle.com Please complete the manual request here. If you do not have the access to the drug supply system, please contact the sponsor to verify you have received the cancel request and the drugs listed in this shipment have not left the possession of the depot."
                    },
                    "priority":{
                        "type":"string",
                        "description":"Priority of the notification",
                        "example":"HIGH",
                        "enum":[
                            "LOW",
                            "HIGH",
                            "0",
                            "1"
                        ]
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Entity type associated with the notification. Some examples: Study, Site, Subject.",
                        "example":"Site"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "privilege":{
                        "type":"string",
                        "description":"Business right or privilege associated with this notification. Some examples: SiteStatusChangeNotification, ReportNotification",
                        "example":"SiteStatusChangeNotification"
                    },
                    "createdBy":{
                        "type":"string",
                        "description":"User or process that created the notification",
                        "example":"Eva, Hulshagen"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"Inventory control system failure"
                    },
                    "comment":{
                        "maxLength":2048,
                        "minLength":0,
                        "type":"string",
                        "description":"Comment",
                        "example":"Shipment Failure Notification"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"1BC29B36F5D64B1B95F4BDBBCEA481BE"
                    },
                    "approvalFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Approval flag indicating if approval is required",
                        "example":"Y",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Creation timestamp of the notification",
                        "format":"date-time",
                        "example":"2025-03-21T10:20:30Z"
                    },
                    "userList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of user identifiers targeted by this notification",
                        "example":"1BC29B36F5D64B1B95F4B987CEA481BE,1BC29B36F5D64B1B95F4BD234EA481BE"
                    },
                    "immediateFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Immediate processing flag",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "example":"2025-03-20T10:20:30.000Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"CREATED"
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier of the notification log record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"33D0D74837F6454B836AAB5BA2574D28"
                    },
                    "emailAddressList":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Comma separated list of email addresses",
                        "example":"john.doe@oracle.com,jane.doe@oracle.com"
                    },
                    "attachment":{
                        "type":"string",
                        "description":"Attachment content as base64 encoded bytes",
                        "example":"SGVsbG8gd29ybGQh11"
                    },
                    "emailOnlyFlag":{
                        "maxLength":1,
                        "minLength":0,
                        "type":"string",
                        "description":"Send only email without in-app notification",
                        "example":"n",
                        "enum":[
                            "y",
                            "n"
                        ]
                    },
                    "attachmentUrl":{
                        "type":"string",
                        "description":"Attachment URL reference when content is not embedded",
                        "example":"null"
                    },
                    "attachmentUrlProvider":{
                        "type":"string",
                        "description":"Provider of the attachment URL",
                        "example":"null"
                    },
                    "attachmentProviderVersion":{
                        "type":"string",
                        "description":"Provider API version used to generate the attachment URL",
                        "example":"null"
                    },
                    "targetList":{
                        "type":"array",
                        "description":"List on ORS site information",
                        "items":{
                            "$ref":"#/components/schemas/NotificationLogTargetDto"
                        }
                    },
                    "messageLanguageSupported":{
                        "$ref":"#/components/schemas/MessageLanguageSupportedDto2"
                    },
                    "SoftwareVersionNumber":{
                        "type":"number",
                        "description":"A number that represents an incremental increase every time a data point is modified.",
                        "example":1
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled",
                        "example":"2025-03-21T10:20:30.000Z"
                    },
                    "ObjectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                }
            },
            "NotificationPropertiesDto":{
                "type":"object",
                "properties":{
                    "notificationProperties":{
                        "type":"array",
                        "description":"List of notification properties",
                        "items":{
                            "$ref":"#/components/schemas/NotificationPropertyDto"
                        }
                    }
                },
                "description":"Collection of notification configuration properties for a study"
            },
            "NotificationPropertyDto":{
                "required":[
                    "propertyName",
                    "propertyValue"
                ],
                "type":"object",
                "properties":{
                    "propertyName":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Name of the notification property key",
                        "example":"showLogo",
                        "enum":[
                            "showLogo",
                            "helpdeskInfo"
                        ]
                    },
                    "propertyValue":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Value of the notification property",
                        "example":"For assistance, contact support@example.com or +1-800-123-4567"
                    }
                },
                "description":"Key-value pair to configure a single notification property"
            },
            "NotificationsBroadcast":{
                "required":[
                    "archiveDateTime",
                    "messageReadDateTime"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) representing broadcast notification id.",
                        "example":"24C9C2B19F1B46ED964CD6653FC10791"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start timestamp for this record.",
                        "format":"date-time",
                        "example":"2025-11-13T08:28:02.345Z"
                    },
                    "notificationLogId":{
                        "type":"string",
                        "description":"Unique id (UUID, 32-character uppercase hexadecimal string) linked to notification log.",
                        "example":"AB16747FB7DC4F26863979B26F58CBCD"
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"D79F8A8A1B9E4F9A9A25E3B3B1C2D3E4"
                    },
                    "userName":{
                        "type":"string",
                        "description":"Target user's display name.",
                        "example":"system ClinicalOne"
                    },
                    "userEmailAddress":{
                        "type":"string",
                        "description":"Target user's email address.",
                        "format":"email",
                        "example":"test.user1@oracle.com"
                    },
                    "subscription":{
                        "type":"string",
                        "description":"Subscription status for the user to this notification type",
                        "example":"YES",
                        "enum":[
                            "YES",
                            "NO"
                        ]
                    },
                    "messageReadDateTime":{
                        "type":"string",
                        "description":"Timestamp when the message was read.",
                        "example":"Sun Dec 31 00:00:00 GMT 3099"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end timestamp for this record.",
                        "format":"date-time",
                        "example":"3099-12-31T00:00:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"New Report"
                    },
                    "archiveDateTime":{
                        "type":"string",
                        "description":"Timestamp when the message was archived.",
                        "example":"Sun Dec 31 00:00:00 GMT 3099"
                    },
                    "category":{
                        "type":"string",
                        "description":"Functional category of the notification. Some examples: Shipment Failure, Site state Change, Report Generation etc.",
                        "example":"Report Generation"
                    },
                    "emailAttemptDateTime":{
                        "type":"string",
                        "description":"Timestamp of the last email delivery attempt.",
                        "format":"date-time",
                        "example":"2025-11-13T08:28:02.345Z"
                    },
                    "updatedBy":{
                        "type":"string",
                        "description":"The user who last updated the record (UUID, 32-character uppercase hexadecimal string)",
                        "example":"225B79C982104415886DE02BC73C1E1E"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "example":1
                    },
                    "approvalFlag":{
                        "type":"string",
                        "description":"Approval flag indicating if approval is required.",
                        "example":"N",
                        "enum":[
                            "Y",
                            "N"
                        ]
                    },
                    "notificationDateTime":{
                        "type":"string",
                        "description":"Time when the notification was sent or scheduled.",
                        "example":"Thu Nov 13 08:28:02 GMT 2025"
                    },
                    "comments":{
                        "type":"string",
                        "description":"Additional comments for the notification event.",
                        "example":"New Report"
                    },
                    "actionId":{
                        "type":"string",
                        "description":"Same value as notification id (UUID, 32-character uppercase hexadecimal string)",
                        "example":"24C9C2B19F1B46ED964CD6653FC10791"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":2
                    }
                },
                "description":"Notification broadcast record representing a user-targeted notification with audit and delivery metadata"
            },
            "NotificationsDetailResponse":{
                "type":"object",
                "properties":{
                    "messageDescription":{
                        "type":"string",
                        "description":"Detailed notification message text.",
                        "example":"Study Design Report is now ready in Clinical One."
                    },
                    "messageSubject":{
                        "type":"string",
                        "description":"Subject or title of the notification message.",
                        "example":"S4-Copy | Study Design Report is ready in Clinical One"
                    },
                    "entityId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the entity for which the property applies.",
                        "example":"6153170BDE5244A0BB3DF169C4168483"
                    },
                    "entityType":{
                        "type":"string",
                        "description":"Type of entity associated with this notification. Some examples: STUDY, SUBJECT, SITE",
                        "example":"STUDY"
                    },
                    "notificationsBroadcast":{
                        "$ref":"#/components/schemas/NotificationsBroadcast"
                    }
                },
                "description":"Aggregated notification broadcast details combined with notification log metadata"
            },
            "NotificationCount":{
                "type":"object",
                "properties":{
                    "totalCount":{
                        "type":"number",
                        "description":"Total number of notifications available for the user and study.",
                        "example":12
                    },
                    "unreadCount":{
                        "type":"number",
                        "description":"Number of notifications that are unread for the user and study.",
                        "example":3
                    }
                },
                "description":"Counts of total notifications and unread notifications for the user and study."
            },
            "DataHubReportDto":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"string",
                        "description":"<p>String pagination flag (<code>\"true\"</code> or <code>\"false\"</code>) indicating whether more matching rows exist after the current page.</p><p>Returned as a string for backward compatibility.</p>",
                        "example":"false"
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"<p>Total number of matching rows across all pages after filters are applied.</p><p>This can be non-zero even when the current page is empty because the requested offset is beyond the last row.</p>",
                        "format":"int32",
                        "example":2
                    },
                    "count":{
                        "type":"integer",
                        "description":"<p>Number of rows returned in the current page.</p>",
                        "format":"int32",
                        "example":2
                    },
                    "limit":{
                        "type":"integer",
                        "description":"<p>Requested page size.</p><p>Dataset endpoints commonly use <code>0</code> to mean unpaginated or all rows.</p>",
                        "format":"int32",
                        "example":100
                    },
                    "offset":{
                        "type":"integer",
                        "description":"<p>Zero-based row offset applied to the result set.</p><p>Dataset endpoints that disable pagination with <code>limit = 0</code> typically echo <code>offset = 0</code> in the response.</p>",
                        "format":"int32",
                        "example":0
                    },
                    "columns":{
                        "type":"array",
                        "description":"<p>Ordered dataset column names selected by the client.</p><p>Each row in <code>data</code> uses this exact order.</p>",
                        "example":[
                            "STUDY_ID",
                            "RECORD_ID",
                            "STATUS"
                        ],
                        "items":{
                            "type":"string",
                            "description":"<p>Ordered dataset column names selected by the client.</p><p>Each row in <code>data</code> uses this exact order.</p>",
                            "example":"[\"STUDY_ID\",\"RECORD_ID\",\"STATUS\"]"
                        }
                    },
                    "data":{
                        "type":"array",
                        "description":"<p>Row data aligned positionally with <code>columns</code>.</p><p>Each cell is serialized as a JSON string or <code>null</code>, even for logical numbers and timestamps.</p>",
                        "example":[
                            [
                                "A86F2D0BB610404DB62D37AFA9C20B50",
                                "REC001",
                                "Active"
                            ],
                            [
                                "A86F2D0BB610404DB62D37AFA9C20B50",
                                "REC002",
                                "Inactive"
                            ]
                        ],
                        "items":{
                            "type":"array",
                            "description":"<p>Row data aligned positionally with <code>columns</code>.</p><p>Each cell is serialized as a JSON string or <code>null</code>, even for logical numbers and timestamps.</p>",
                            "example":[
                                [
                                    "A86F2D0BB610404DB62D37AFA9C20B50",
                                    "REC001",
                                    "Active"
                                ],
                                [
                                    "A86F2D0BB610404DB62D37AFA9C20B50",
                                    "REC002",
                                    "Inactive"
                                ]
                            ],
                            "items":{
                                "type":"string",
                                "description":"<p>Row data aligned positionally with <code>columns</code>.</p><p>Each cell is serialized as a JSON string or <code>null</code>, even for logical numbers and timestamps.</p>",
                                "example":"[[\"A86F2D0BB610404DB62D37AFA9C20B50\",\"REC001\",\"Active\"],[\"A86F2D0BB610404DB62D37AFA9C20B50\",\"REC002\",\"Inactive\"]]"
                            }
                        }
                    }
                },
                "description":"<p>Tabular dataset response for a dynamic Data Hub query.</p><p><code>columns</code> defines the selected output order, and each row in <code>data</code> aligns positionally to that list.</p>"
            },
            "DataHubResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"<p>Overall request processing status.</p><p>Allowed values are \"success\" and \"failed\".</p>",
                        "example":"success"
                    },
                    "result":{
                        "type":"object",
                        "description":"<p>Payload returned by the API when <code>status</code> is \"success\".</p><p>This field is null when <code>status</code> is \"failed\".</p>",
                        "example":{
                            "message":"Operation succeeded"
                        }
                    },
                    "errorData":{
                        "type":"object",
                        "description":"<p>Machine-readable error payload when <code>status</code> is \"failed\".</p><p>This field is null when <code>status</code> is \"success\".</p>",
                        "example":{
                            "errorCode":"VALIDATION_ERROR",
                            "errorMessage":"Invalid column name specified in the select columns: SITE_ID1",
                            "details":{
                                "field":"selectColumns"
                            }
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Envelope version number.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"<p>Standard Data Hub response envelope.</p><p>Successful responses return <code>status</code> as \"success\" and populate <code>result</code>. Failed responses return <code>status</code> as \"failed\" and populate <code>errorData</code>.</p>"
            },
            "Status":{
                "type":"object",
                "properties":{
                    "description":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    }
                }
            },
            "DataHubQueryDto":{
                "type":"object",
                "properties":{
                    "selectColumns":{
                        "type":"array",
                        "description":"<p>Required non-empty list of dataset column names to return.</p><p>Column validation is case-insensitive, and the response echoes canonical uppercase dataset column names in the same order.</p>",
                        "example":[
                            "STUDY_VERSION",
                            "STUDY_ID"
                        ],
                        "items":{
                            "type":"string",
                            "description":"<p>Required non-empty list of dataset column names to return.</p><p>Column validation is case-insensitive, and the response echoes canonical uppercase dataset column names in the same order.</p>",
                            "example":"[\"STUDY_VERSION\",\"STUDY_ID\"]"
                        }
                    },
                    "whereColumns":{
                        "type":"array",
                        "description":"<p>Optional structured filter predicates.</p><p>This is the request-body equivalent of a <code>WHERE</code> clause.</p><p>All predicate values are supplied as strings and are parsed according to the underlying dataset column type.</p>",
                        "example":[
                            {
                                "columnName":"STUDY_ID",
                                "operator":"=",
                                "value":[
                                    "A86F2D0BB610404DB62D37AFA9C20B50"
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/QueryPredicate"
                        }
                    },
                    "orderColumns":{
                        "type":"array",
                        "description":"<p>Optional sort instructions to apply to the result set.</p><p>Duplicate order-by columns are rejected.</p>",
                        "example":[
                            {
                                "columnName":"VERSION_START",
                                "sortOrder":"ASC"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/QueryOrder"
                        }
                    }
                },
                "description":"<p>Submit a structured query for a Data Hub dataset.</p>\n<ul>\n  <li><code>selectColumns</code> is required and must contain one or more valid column names exposed by the target dataset version.</li>\n  <li><code>whereColumns</code> is optional and provides structured filter predicates. Supported operators are <code>=</code>, <code>!=</code>, <code>&lt;&gt;</code>, <code>&gt;</code>, <code>&gt;=</code>, <code>&lt;</code>, <code>&lt;=</code>, <code>LIKE</code>, <code>NOT LIKE</code>, <code>IN</code>, <code>NOT IN</code>, <code>BETWEEN</code>, <code>NOT BETWEEN</code>, <code>IS</code>, and <code>IS NOT</code>.\n    <p><strong>Default behavior</strong>: Data is filtered based on the <code>STUDY_WID</code> column.</p>\n  </li>\n  <li><code>orderColumns</code> is optional and controls sort order. For stable multi-page retrieval, keep the same <code>orderColumns</code> across page requests.</li>\n</ul>\n"
            },
            "QueryOrder":{
                "type":"object",
                "properties":{
                    "columnName":{
                        "type":"string",
                        "description":"<p>Required dataset column name to sort by.</p><p>Column-name validation is case-insensitive.</p>",
                        "example":"VERSION_START"
                    },
                    "sortOrder":{
                        "type":"string",
                        "description":"<p>Optional sort direction.</p><p>If omitted, SQL default ascending order is used for that column. Allowed values are ASC and DESC.</p>",
                        "example":"ASC",
                        "enum":[
                            "ASC",
                            "DESC"
                        ]
                    }
                },
                "description":"<p>Sort instruction specifying a dataset column and optional order direction.</p>",
                "example":[
                    {
                        "columnName":"VERSION_START",
                        "sortOrder":"ASC"
                    }
                ]
            },
            "QueryPredicate":{
                "type":"object",
                "properties":{
                    "columnName":{
                        "type":"string",
                        "description":"Required dataset column name to filter on. Column-name validation is case-insensitive.",
                        "example":"STUDY_ID"
                    },
                    "operator":{
                        "type":"string",
                        "description":"Required comparison operator. Use one value for =, !=, <>, >, >=, <, <=, LIKE, and NOT LIKE; one or more values for IN and NOT IN; exactly two values for BETWEEN and NOT BETWEEN; and exactly one value equal to NULL for IS and IS NOT.",
                        "example":"=",
                        "enum":[
                            ">",
                            "<",
                            "=",
                            ">=",
                            "<=",
                            "<>",
                            "!=",
                            "IN",
                            "NOT IN",
                            "BETWEEN",
                            "NOT BETWEEN",
                            "LIKE",
                            "NOT LIKE",
                            "IS",
                            "IS NOT"
                        ]
                    },
                    "value":{
                        "type":"array",
                        "description":"Filter values as strings. Value cardinality depends on the operator: one for most operators, one or more for IN/NOT IN, exactly two for BETWEEN/NOT BETWEEN, and exactly one value equal to NULL for IS/IS NOT.",
                        "example":[
                            "A86F2D0BB610404DB62D37AFA9C20B50"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Filter values as strings. Value cardinality depends on the operator: one for most operators, one or more for IN/NOT IN, exactly two for BETWEEN/NOT BETWEEN, and exactly one value equal to NULL for IS/IS NOT.",
                            "example":"[\"A86F2D0BB610404DB62D37AFA9C20B50\"]"
                        }
                    }
                },
                "description":"Structured filter predicate used to constrain dataset results by column, operator, and value",
                "example":[
                    {
                        "columnName":"STUDY_ID",
                        "operator":"=",
                        "value":[
                            "A86F2D0BB610404DB62D37AFA9C20B50"
                        ]
                    }
                ]
            },
            "DHSyncDto":{
                "type":"object",
                "properties":{
                    "mode":{
                        "type":"string",
                        "description":"Mode of the Study. Valid values are design, test, active, or training.",
                        "example":"active"
                    },
                    "dhSyncTimestamp":{
                        "type":"string",
                        "description":"Datahub last sync up timstamp",
                        "format":"date-time",
                        "example":"2025-10-16T14:30:31.892Z"
                    }
                },
                "description":"Datahub Sync up details including last sync up timestamp and mode."
            },
            "DataHubSingleReportDto":{
                "type":"object",
                "properties":{
                    "columns":{
                        "type":"array",
                        "description":"Names of the columns included in each row",
                        "example":[
                            "STUDY_TITLE",
                            "STUDY_REFNAME",
                            "STUDY_ID"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Names of the columns included in each row",
                            "example":"[\"STUDY_TITLE\",\"STUDY_REFNAME\",\"STUDY_ID\"]"
                        }
                    },
                    "data":{
                        "type":"array",
                        "description":"Row data aligned with the columns list",
                        "example":[
                            "My study",
                            "MY_STUDY",
                            "E8230E450E844721A67F8EBFF71B160D"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Row data aligned with the columns list",
                            "example":"[\"My study\",\"MY_STUDY\",\"E8230E450E844721A67F8EBFF71B160D\"]"
                        }
                    }
                },
                "description":"Single report result of the dynamic query execution"
            },
            "Address":{
                "type":"object",
                "properties":{
                    "streetName":{
                        "type":"array",
                        "xml":{
                            "name":"StreetName"
                        },
                        "items":{
                            "$ref":"#/components/schemas/StreetName"
                        }
                    },
                    "city":{
                        "$ref":"#/components/schemas/City"
                    },
                    "stateProv":{
                        "$ref":"#/components/schemas/StateProv"
                    },
                    "country":{
                        "$ref":"#/components/schemas/Country"
                    },
                    "postalCode":{
                        "$ref":"#/components/schemas/PostalCode"
                    },
                    "otherText":{
                        "$ref":"#/components/schemas/OtherText"
                    }
                }
            },
            "AdminDataODMExtV1":{
                "type":"object",
                "properties":{
                    "adminData":{
                        "type":"object",
                        "properties":{
                            "user":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/User"
                                }
                            },
                            "location":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/Location"
                                }
                            },
                            "signatureDef":{
                                "type":"array",
                                "xml":{
                                    "name":"SignatureDef"
                                },
                                "items":{
                                    "$ref":"#/components/schemas/SignatureDef"
                                }
                            },
                            "studyOID":{
                                "type":"string",
                                "xml":{
                                    "name":"StudyOID",
                                    "attribute":true
                                }
                            }
                        },
                        "description":"List of AdminData sections with users, locations and related metadata.",
                        "example":[
                        ],
                        "xml":{
                            "name":"AdminData",
                            "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                        }
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Study mode for which data is requested.",
                        "example":"active",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeCOExtensions":{
                        "type":"string",
                        "description":"Whether to include Clinical One specific ODM extensions.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        },
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "excludeHiddenData":{
                        "type":"string",
                        "description":"Whether to exclude hidden data.",
                        "example":"false",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        },
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "fromDate":{
                        "type":"string",
                        "description":"Filter start timestamp for the extract.",
                        "format":"date-time",
                        "example":"2023-01-01T00:00:00Z",
                        "xml":{
                            "name":"fromTimestamp",
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "toDate":{
                        "type":"string",
                        "description":"Filter end timestamp for the extract.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59.999Z",
                        "xml":{
                            "name":"toTimestamp",
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version identifier.",
                        "example":"1.0",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersionSummary":{
                        "type":"boolean",
                        "description":"Indicates if only a summary of the study version is included.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeUsers":{
                        "type":"string",
                        "description":"Whether to include users in the extract.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        },
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "includeLocations":{
                        "type":"string",
                        "description":"Whether to include locations in the extract.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        },
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if additional results are available beyond the current page.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of results available for the request.",
                        "format":"int32",
                        "example":250,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of results included in this response.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "limit":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of results per page.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Index of the first result returned in this page.",
                        "format":"int32",
                        "example":0,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "description":{
                        "type":"string",
                        "description":"Human readable description of this extract.",
                        "example":"Administrative data extract",
                        "xml":{
                            "name":"Description",
                            "attribute":true
                        }
                    },
                    "fileType":{
                        "type":"string",
                        "description":"ODM file type that indicates whether the export is a full snapshot or a transactional change set.",
                        "example":"<ODM FileType=\"Snapshot\"/>",
                        "xml":{
                            "name":"FileType",
                            "attribute":true
                        },
                        "enum":[
                            "SNAPSHOT",
                            "TRANSACTIONAL",
                            "Snapshot",
                            "Transactional"
                        ]
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of ODM data export.",
                        "format":"string",
                        "example":"<Granularity>All</Granularity>",
                        "xml":{
                            "attribute":true
                        },
                        "enum":[
                            "ALL",
                            "METADATA",
                            "ADMIN_DATA",
                            "REFERENCE_DATA",
                            "ALL_CLINICAL_DATA",
                            "SINGLE_SITE",
                            "SINGLE_SUBJECT",
                            "All",
                            "Metadata",
                            "AdminData",
                            "ReferenceData",
                            "AllClinicalData",
                            "SingleSite",
                            "SingleSubject"
                        ]
                    },
                    "archival":{
                        "type":"string",
                        "description":"Indicates whether this is an archival extract.",
                        "example":"Yes",
                        "xml":{
                            "name":"Archival",
                            "attribute":true
                        }
                    },
                    "fileOID":{
                        "type":"string",
                        "description":"Unique identifier for the extract file.",
                        "example":"EC942244BB30163BE053BEC44C64CF34",
                        "xml":{
                            "name":"FileOID",
                            "attribute":true
                        }
                    },
                    "creationDateTime":{
                        "type":"string",
                        "description":"Timestamp when the file was created.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59.999Z",
                        "xml":{
                            "name":"CreationDateTime",
                            "attribute":true
                        }
                    },
                    "priorFileOID":{
                        "type":"string",
                        "description":"Identifier of the prior extract file, if applicable.",
                        "example":"F7D4C8B9E0E94485A4B3B2A3D6C7E8F9",
                        "xml":{
                            "name":"PriorFileOID",
                            "attribute":true
                        }
                    },
                    "asOfDateTime":{
                        "type":"string",
                        "description":"As-of timestamp for the snapshot.",
                        "format":"date-time",
                        "example":"2023-12-31T23:59:59.999Z",
                        "xml":{
                            "name":"AsOfDateTime",
                            "attribute":true
                        }
                    },
                    "odmVersion":{
                        "type":"string",
                        "description":"ODM specification version.",
                        "example":"1.3.2",
                        "xml":{
                            "name":"ODMVersion",
                            "attribute":true
                        }
                    },
                    "originator":{
                        "type":"string",
                        "description":"System or organization that originated the extract.",
                        "example":"ClinicalOne",
                        "xml":{
                            "name":"Originator",
                            "attribute":true
                        }
                    },
                    "sourceSystem":{
                        "type":"string",
                        "description":"Name of the source system.",
                        "example":"DataHub",
                        "xml":{
                            "name":"SourceSystem",
                            "attribute":true
                        }
                    },
                    "sourceSystemVersion":{
                        "type":"string",
                        "description":"Version of the source system.",
                        "example":"Admin Data ODM 1.0",
                        "xml":{
                            "name":"SourceSystemVersion",
                            "attribute":true
                        }
                    },
                    "id":{
                        "type":"string",
                        "description":"Identifier of this ODM root element instance.",
                        "example":"B4E5C6D7A8F90123ABCDEF4567890ABC",
                        "xml":{
                            "name":"ID",
                            "attribute":true
                        }
                    }
                },
                "description":"ODM AdminData response root element containing administrative data and Clinical One specific metadata including pagination and extract attributes.",
                "example":"<?xml version=\"1.0\"?>\n<ODM\n\txmlns=\"http://www.cdisc.org/ns/odm/v1.3\"\n\txmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"\n\txmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\" Description=\"STUDY01\" FileType=\"Snapshot\" FileOID=\"oracle/STUDY01/396A272FEA064663BB291B32D1FBA173\" CreationDateTime=\"2025-11-03T13:21:53.238Z\" ODMVersion=\"1.3.2\" Originator=\"system\" SourceSystem=\"Oracle Life Sciences Clinical One\" SourceSystemVersion=\"AdminData API v1.0\" co:studyMode=\"test\" co:includeCOExtensions=\"true\" co:fromTimestamp=\"2023-01-01T00:00:00Z\" co:toTimestamp=\"2030-01-01T00:00:00Z\" co:includeUsers=\"true\" co:includeLocations=\"true\">\n\t<AdminData>\n\t\t<Location OID=\"DATAHUB_AUT_Site2_Active\" Name=\"DATAHUB_AUT_Site2_Active\" LocationType=\"Site\" co:LocationStatus=\"Active\" co:LocationCountry=\"United States\" co:LocationTimezone=\"Asia/Kolkata\" co:InvestigatorFirstName=\"DatahubContact2\" co:InvestigatorLastName=\"Tester2\" co:GUID=\"3042285B08804CFF98F8F96B3626C843\" co:Revision=\"2025-10-29T12:51:29.724Z\">\n\t\t\t<MetaDataVersionRef StudyOID=\"STUDY01\" MetaDataVersionOID=\"STUDY01v1.0.0.3\" EffectiveDate=\"2025-10-29\"></MetaDataVersionRef>\n\t\t</Location>\n\t\t<Location OID=\"DATAHUB_AUT_Site1_Active\" Name=\"DATAHUB_AUT_Site1_Active\" LocationType=\"Site\" co:LocationStatus=\"Active\" co:LocationCountry=\"United States\" co:LocationTimezone=\"Asia/Kolkata\" co:InvestigatorFirstName=\"DatahubContact1\" co:InvestigatorLastName=\"Tester1\" co:GUID=\"AE8D00C1DD324CA99B2125E38DDF1B14\" co:Revision=\"2025-10-29T12:49:24.576Z\">\n\t\t\t<MetaDataVersionRef StudyOID=\"STUDY01\" MetaDataVersionOID=\"STUDY01v1.0.0.3\" EffectiveDate=\"2025-10-29\"></MetaDataVersionRef>\n\t\t</Location>\n\t</AdminData>\n</ODM>",
                "xml":{
                    "name":"ODM"
                }
            },
            "City":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Country":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "DisplayName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Email":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Fax":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "FirstName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "FullName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "LastName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "LegalReason":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Location":{
                "required":[
                    "metaDataVersionRef"
                ],
                "type":"object",
                "properties":{
                    "metaDataVersionRef":{
                        "type":"array",
                        "xml":{
                            "name":"MetaDataVersionRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/MetaDataVersionRef"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "locationType":{
                        "type":"string",
                        "xml":{
                            "name":"LocationType",
                            "attribute":true
                        },
                        "enum":[
                            "SPONSOR",
                            "SITE",
                            "CRO",
                            "LAB",
                            "OTHER"
                        ]
                    }
                },
                "xml":{
                    "name":"Location",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "LocationRef":{
                "type":"object",
                "properties":{
                    "locationOID":{
                        "type":"string",
                        "xml":{
                            "name":"LocationOID",
                            "attribute":true
                        }
                    }
                }
            },
            "LoginName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Meaning":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "MetaDataVersionRef":{
                "type":"object",
                "properties":{
                    "studyOID":{
                        "type":"string",
                        "xml":{
                            "name":"StudyOID",
                            "attribute":true
                        }
                    },
                    "metaDataVersionOID":{
                        "type":"string",
                        "xml":{
                            "name":"MetaDataVersionOID",
                            "attribute":true
                        }
                    },
                    "effectiveDate":{
                        "type":"string",
                        "format":"date-time",
                        "xml":{
                            "name":"EffectiveDate",
                            "attribute":true
                        }
                    }
                }
            },
            "Organization":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "OtherText":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Pager":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "Picture":{
                "type":"object",
                "properties":{
                    "pictureFileName":{
                        "type":"string",
                        "xml":{
                            "name":"PictureFileName",
                            "attribute":true
                        }
                    },
                    "imageType":{
                        "type":"string",
                        "xml":{
                            "name":"ImageType",
                            "attribute":true
                        }
                    }
                }
            },
            "PostalCode":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "SignatureDef":{
                "required":[
                    "legalReason",
                    "meaning"
                ],
                "type":"object",
                "properties":{
                    "meaning":{
                        "$ref":"#/components/schemas/Meaning"
                    },
                    "legalReason":{
                        "$ref":"#/components/schemas/LegalReason"
                    },
                    "oid":{
                        "type":"string",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "methodology":{
                        "type":"string",
                        "xml":{
                            "name":"Methodology",
                            "attribute":true
                        },
                        "enum":[
                            "DIGITAL",
                            "ELECTRONIC"
                        ]
                    }
                }
            },
            "StateProv":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "StreetName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "User":{
                "type":"object",
                "properties":{
                    "loginName":{
                        "$ref":"#/components/schemas/LoginName"
                    },
                    "displayName":{
                        "$ref":"#/components/schemas/DisplayName"
                    },
                    "fullName":{
                        "$ref":"#/components/schemas/FullName"
                    },
                    "firstName":{
                        "$ref":"#/components/schemas/FirstName"
                    },
                    "lastName":{
                        "$ref":"#/components/schemas/LastName"
                    },
                    "organization":{
                        "$ref":"#/components/schemas/Organization"
                    },
                    "address":{
                        "type":"array",
                        "xml":{
                            "name":"Address"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Address"
                        }
                    },
                    "email":{
                        "type":"array",
                        "xml":{
                            "name":"Email"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Email"
                        }
                    },
                    "picture":{
                        "$ref":"#/components/schemas/Picture"
                    },
                    "pager":{
                        "$ref":"#/components/schemas/Pager"
                    },
                    "fax":{
                        "type":"array",
                        "xml":{
                            "name":"Fax"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Fax"
                        }
                    },
                    "phone":{
                        "type":"array",
                        "xml":{
                            "name":"Phone"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Phone"
                        }
                    },
                    "locationRef":{
                        "type":"array",
                        "xml":{
                            "name":"LocationRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/LocationRef"
                        }
                    },
                    "certificate":{
                        "type":"array",
                        "xml":{
                            "name":"Certificate"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Certificate"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "userType":{
                        "type":"string",
                        "xml":{
                            "name":"UserType",
                            "attribute":true
                        },
                        "enum":[
                            "SPONSOR",
                            "INVESTIGATOR",
                            "LAB",
                            "OTHER"
                        ]
                    }
                },
                "xml":{
                    "name":"User",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "adminData":{
                "type":"object",
                "properties":{
                    "user":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/User"
                        }
                    },
                    "location":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Location"
                        }
                    },
                    "signatureDef":{
                        "type":"array",
                        "xml":{
                            "name":"SignatureDef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/SignatureDef"
                        }
                    },
                    "studyOID":{
                        "type":"string",
                        "xml":{
                            "name":"StudyOID",
                            "attribute":true
                        }
                    }
                },
                "description":"List of AdminData sections with users, locations and related metadata.",
                "example":[
                ],
                "xml":{
                    "name":"AdminData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "Annotation":{
                "type":"object",
                "properties":{
                    "comment":{
                        "$ref":"#/components/schemas/Comment"
                    },
                    "flag":{
                        "type":"array",
                        "xml":{
                            "name":"Flag"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Flag"
                        }
                    },
                    "seqNum":{
                        "type":"integer",
                        "xml":{
                            "name":"SeqNum",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "xml":{
                            "name":"ID",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"Annotation",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "Annotations":{
                "type":"object",
                "properties":{
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    }
                }
            },
            "ArchiveLayoutRef":{
                "type":"object",
                "properties":{
                    "archiveLayoutOID":{
                        "type":"string",
                        "xml":{
                            "name":"ArchiveLayoutOID",
                            "attribute":true
                        }
                    }
                }
            },
            "AuditRecord":{
                "required":[
                    "dateTimeStamp",
                    "locationRef",
                    "userRef"
                ],
                "type":"object",
                "properties":{
                    "userRef":{
                        "$ref":"#/components/schemas/UserRef"
                    },
                    "locationRef":{
                        "$ref":"#/components/schemas/LocationRef"
                    },
                    "dateTimeStamp":{
                        "$ref":"#/components/schemas/DateTimeStamp"
                    },
                    "reasonForChange":{
                        "$ref":"#/components/schemas/ReasonForChange"
                    },
                    "sourceID":{
                        "$ref":"#/components/schemas/SourceID"
                    },
                    "editPoint":{
                        "type":"string",
                        "xml":{
                            "name":"EditPoint",
                            "attribute":true
                        },
                        "enum":[
                            "MONITORING",
                            "DATA_MANAGEMENT",
                            "DB_AUDIT"
                        ]
                    },
                    "usedImputationMethod":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"UsedImputationMethod",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "xml":{
                            "name":"ID",
                            "attribute":true
                        }
                    }
                }
            },
            "AuditRecords":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "type":"array",
                        "xml":{
                            "name":"AuditRecord"
                        },
                        "items":{
                            "$ref":"#/components/schemas/AuditRecord"
                        }
                    }
                }
            },
            "ClinicalData":{
                "type":"object",
                "properties":{
                    "subjectData":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectData"
                        }
                    },
                    "auditRecords":{
                        "type":"array",
                        "xml":{
                            "name":"AuditRecords"
                        },
                        "items":{
                            "$ref":"#/components/schemas/AuditRecords"
                        }
                    },
                    "signatures":{
                        "type":"array",
                        "xml":{
                            "name":"Signatures"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Signatures"
                        }
                    },
                    "annotations":{
                        "type":"array",
                        "xml":{
                            "name":"Annotations"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotations"
                        }
                    },
                    "studyOID":{
                        "type":"string",
                        "xml":{
                            "name":"StudyOID",
                            "attribute":true
                        }
                    },
                    "metaDataVersionOID":{
                        "type":"string",
                        "xml":{
                            "name":"MetaDataVersionOID",
                            "attribute":true
                        }
                    }
                },
                "description":"List of ClinicalData elements describing study clinical content.",
                "xml":{
                    "name":"ClinicalData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "ClinicalDataODMExtV1":{
                "type":"object",
                "properties":{
                    "clinicalData":{
                        "type":"object",
                        "properties":{
                            "subjectData":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/SubjectData"
                                }
                            },
                            "auditRecords":{
                                "type":"array",
                                "xml":{
                                    "name":"AuditRecords"
                                },
                                "items":{
                                    "$ref":"#/components/schemas/AuditRecords"
                                }
                            },
                            "signatures":{
                                "type":"array",
                                "xml":{
                                    "name":"Signatures"
                                },
                                "items":{
                                    "$ref":"#/components/schemas/Signatures"
                                }
                            },
                            "annotations":{
                                "type":"array",
                                "xml":{
                                    "name":"Annotations"
                                },
                                "items":{
                                    "$ref":"#/components/schemas/Annotations"
                                }
                            },
                            "studyOID":{
                                "type":"string",
                                "xml":{
                                    "name":"StudyOID",
                                    "attribute":true
                                }
                            },
                            "metaDataVersionOID":{
                                "type":"string",
                                "xml":{
                                    "name":"MetaDataVersionOID",
                                    "attribute":true
                                }
                            }
                        },
                        "description":"List of ClinicalData elements describing study clinical content.",
                        "xml":{
                            "name":"ClinicalData",
                            "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                        }
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Study mode context in which the data is extracted. Possible values are test, active or training.",
                        "example":"active",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeCOExtensions":{
                        "type":"boolean",
                        "description":"Indicates whether Clinical One specific extensions are included in the payload.",
                        "example":true,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "excludeHiddenData":{
                        "type":"boolean",
                        "description":"If true, data marked as hidden is excluded from the response.",
                        "example":true,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "fromDate":{
                        "type":"string",
                        "description":"Filter results from this timestamp (inclusive). RFC 3339 format.",
                        "format":"date",
                        "example":"2023-01-01",
                        "xml":{
                            "name":"fromTimestamp",
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "toDate":{
                        "type":"string",
                        "description":"Filter results up to this timestamp (inclusive). RFC 3339 format.",
                        "format":"date",
                        "example":"2023-12-31",
                        "xml":{
                            "name":"toTimestamp",
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version identifier from which the data is produced.",
                        "example":"1.0.0.1",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersionSummary":{
                        "type":"boolean",
                        "description":"Indicates whether the study version summary is included.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeUsers":{
                        "type":"boolean",
                        "description":"Whether to include user information.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeLocations":{
                        "type":"boolean",
                        "description":"Whether to include location information.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more records beyond the current page.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of results matching the request.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of results returned in this response.",
                        "format":"int32",
                        "example":50,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "limit":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of items returned per page.",
                        "format":"int32",
                        "example":50,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Zero-based index of the first item returned.",
                        "format":"int32",
                        "example":0,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "description":{
                        "type":"string",
                        "description":"Free text description of the file content.",
                        "example":"Clinical data extract",
                        "xml":{
                            "name":"Description",
                            "attribute":true
                        }
                    },
                    "fileType":{
                        "type":"string",
                        "description":"ODM file type that indicates whether the export is a full snapshot or a transactional change set.",
                        "example":"<ODM FileType=\"Snapshot\"/>",
                        "xml":{
                            "name":"FileType",
                            "attribute":true
                        },
                        "enum":[
                            "SNAPSHOT",
                            "TRANSACTIONAL",
                            "Snapshot",
                            "Transactional"
                        ]
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of ODM data export.",
                        "format":"string",
                        "example":"<Granularity>All</Granularity>",
                        "xml":{
                            "attribute":true
                        },
                        "enum":[
                            "ALL",
                            "METADATA",
                            "ADMIN_DATA",
                            "REFERENCE_DATA",
                            "ALL_CLINICAL_DATA",
                            "SINGLE_SITE",
                            "SINGLE_SUBJECT",
                            "All",
                            "Metadata",
                            "AdminData",
                            "ReferenceData",
                            "AllClinicalData",
                            "SingleSite",
                            "SingleSubject"
                        ]
                    },
                    "archival":{
                        "type":"string",
                        "description":"Indicates archival state as per ODM YesOnly enumeration.",
                        "example":"Yes",
                        "xml":{
                            "name":"Archival",
                            "attribute":true
                        },
                        "enum":[
                            "YES"
                        ]
                    },
                    "fileOID":{
                        "type":"string",
                        "description":"Unique file identifier.",
                        "example":"B1A2C3D4E5F647B18123456789ABCDEF",
                        "xml":{
                            "name":"FileOID",
                            "attribute":true
                        }
                    },
                    "creationDateTime":{
                        "type":"string",
                        "description":"Creation timestamp of the file.",
                        "format":"date-time",
                        "example":"2023-06-05T12:34:56Z",
                        "xml":{
                            "name":"CreationDateTime",
                            "attribute":true
                        }
                    },
                    "priorFileOID":{
                        "type":"string",
                        "description":"Identifier of the prior file related to this extract.",
                        "example":"C1D2E3F4A5B647B18123456789ABCDEF",
                        "xml":{
                            "name":"PriorFileOID",
                            "attribute":true
                        }
                    },
                    "asOfDateTime":{
                        "type":"string",
                        "description":"Timestamp indicating as-of datetime for the extract.",
                        "format":"date-time",
                        "example":"2023-06-05T12:34:56Z",
                        "xml":{
                            "name":"AsOfDateTime",
                            "attribute":true
                        }
                    },
                    "odmVersion":{
                        "type":"string",
                        "description":"ODM version used for the payload.",
                        "example":"1.3.2",
                        "xml":{
                            "name":"ODMVersion",
                            "attribute":true
                        }
                    },
                    "originator":{
                        "type":"string",
                        "description":"Originator of the data extract.",
                        "example":"Clinical One",
                        "xml":{
                            "name":"Originator",
                            "attribute":true
                        }
                    },
                    "sourceSystem":{
                        "type":"string",
                        "description":"Source system from which the data is generated.",
                        "example":"ClinicalOne",
                        "xml":{
                            "name":"SourceSystem",
                            "attribute":true
                        }
                    },
                    "sourceSystemVersion":{
                        "type":"string",
                        "description":"Version of the source system that generated the data.",
                        "example":"Clinical Data Unblinded API v11.0",
                        "xml":{
                            "name":"SourceSystemVersion",
                            "attribute":true
                        }
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier for the ODM document.",
                        "example":"EC942244BB30163BE053BEC44C64CF34",
                        "xml":{
                            "name":"ID",
                            "attribute":true
                        }
                    }
                },
                "description":"CDISC ODM v1.3.2 Clinical Data response with Clinical One specific extensions for v11.0. Contains pagination, filtering attributes and ClinicalData elements.",
                "example":"<?xmlversion=\"1.0\"?>\n<ODM\n\txmlns=\"http://www.cdisc.org/ns/odm/v1.3\"\n\txmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"\n\txmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\"Description=\"STUDY01\"FileType=\"Snapshot\"FileOID=\"oracle/STUDY01/CB7500366CC3437BA7FD983A6EBFA926\"CreationDateTime=\"2025-10-30T21:13:24.921Z\"ODMVersion=\"1.3.2\"Originator=\"system\"SourceSystem=\"Oracle Life Sciences Clinical One\"SourceSystemVersion=\"Clinical Data Unblinded API v11.0\"co:studyMode=\"test\"co:includeCOExtensions=\"true\"co:excludeHiddenData=\"true\"co:fromTimestamp=\"2023-01-01T00:00:00Z\"co:toTimestamp=\"2050-01-01T23:59:59.999Z\"co:hasMore=\"true\"co:totalResults=\"19\"co:count=\"1\"co:limit=\"1\"co:offset=\"0\">\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\"co:SubjectStatus=\"Screening_Initiated\"co:SubjectAction=\"Screened\"co:ScreeningNumber=\"DATAHUB_AUT_Site2_Active01\">\n\t\t\t<AuditRecord>\n\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t</UserRef>\n\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t</LocationRef>\n\t\t\t\t<DateTimeStamp>2025-10-29T13:31:11.301Z</DateTimeStamp>\n\t\t\t</AuditRecord>\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<StudyEventDataStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitGUID=\"FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitSequence=\"0\"co:VisitStatus=\"COMPLETE\"co:VisitName=\"ScreeningForm\"co:VisitStartDate=\"2025-10-29T00:00:00.000Z\">\n\t\t\t\t<AuditRecord>\n\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t</UserRef>\n\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t</LocationRef>\n\t\t\t\t\t<DateTimeStamp>2025-10-29T13:31:11.372Z</DateTimeStamp>\n\t\t\t\t</AuditRecord>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitStatus=\"INPROGRESS\"co:VisitName=\"Baseline\"co:VisitStartDate=\"2025-10-29T00:00:00.000Z\">\n\t\t\t\t<AuditRecord>\n\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t</UserRef>\n\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t</LocationRef>\n\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.354Z</DateTimeStamp>\n\t\t\t\t</AuditRecord>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<StudyEventDataStudyEventOID=\"Week1_3279AFB1AA3C44CFB6D6C419AAAC8A84\"co:VisitGUID=\"3279AFB1AA3C44CFB6D6C419AAAC8A84\"co:VisitSequence=\"360\"co:VisitStatus=\"NEW\"co:VisitName=\"Week1\">\n\t\t\t\t<AuditRecord>\n\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t</UserRef>\n\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t</LocationRef>\n\t\t\t\t\t<DateTimeStamp>2025-10-29T13:50:50.244Z</DateTimeStamp>\n\t\t\t\t</AuditRecord>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitGUID=\"FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitSequence=\"0\"co:VisitName=\"ScreeningForm\">\n\t\t\t\t<FormDataFormOID=\"FORM_02_FC21BE51B8424A54907F2F3672E72C29\"co:FormGUID=\"FC21BE51B8424A54907F2F3672E72C29\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"SUBJECT_INITIALS_CF149710CBE24A6BB9266E52B5F5BA0F\"co:ItemGroupGUID=\"CF149710CBE24A6BB9266E52B5F5BA0F\">\n\t\t\t\t\t\t<ItemDataItemOID=\"SUBJECT_INITIALS_CF149710CBE24A6BB9266E52B5F5BA0F\"TransactionType=\"Upsert\"Value=\"ABC\"co:ItemGUID=\"CF149710CBE24A6BB9266E52B5F5BA0F\"co:DecodedValue=\"ABC\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:30:09.355Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitGUID=\"FD227430BECA4DECA5EA8B0E4DBE18CA\"co:VisitSequence=\"0\"co:VisitName=\"ScreeningForm\">\n\t\t\t\t<FormDataFormOID=\"FORM_02_FC21BE51B8424A54907F2F3672E72C29\"co:FormGUID=\"FC21BE51B8424A54907F2F3672E72C29\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"DATETIME_02_528E107E03E84E5EB7558F6696C05758\"co:ItemGroupGUID=\"528E107E03E84E5EB7558F6696C05758\">\n\t\t\t\t\t\t<ItemDataItemOID=\"DATETIME_02_528E107E03E84E5EB7558F6696C05758\"TransactionType=\"Upsert\"Value=\"09-Nov-2020 00:00\"co:ItemGUID=\"528E107E03E84E5EB7558F6696C05758\"co:DecodedValue=\"09-Nov-2020 00:00\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:30:09.393Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"IS_PREGNANT_94EDF14088B54C7AA78F6EE014F2AE61\"co:ItemGroupGUID=\"94EDF14088B54C7AA78F6EE014F2AE61\">\n\t\t\t\t\t\t<ItemDataItemOID=\"IS_PREGNANT_94EDF14088B54C7AA78F6EE014F2AE61\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;No&quot;}]\"co:ItemGUID=\"94EDF14088B54C7AA78F6EE014F2AE61\"co:DecodedValue=\"No\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.615Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"RACE_AA8E3292CE5646D696AF88915FCC216D\"co:ItemGroupGUID=\"AA8E3292CE5646D696AF88915FCC216D\">\n\t\t\t\t\t\t<ItemDataItemOID=\"RACE_AA8E3292CE5646D696AF88915FCC216D\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;1&quot;,&quot;label&quot;:&quot;NH&quot;}]\"co:ItemGUID=\"AA8E3292CE5646D696AF88915FCC216D\"co:DecodedValue=\"NH\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.623Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"ABOUT_YOU_F968ED26EFB14784A8C6F801BB7597B0\"co:ItemGroupGUID=\"F968ED26EFB14784A8C6F801BB7597B0\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ABOUT_YOU_F968ED26EFB14784A8C6F801BB7597B0\"TransactionType=\"Upsert\"Value=\"Xyz\"co:ItemGUID=\"F968ED26EFB14784A8C6F801BB7597B0\"co:DecodedValue=\"Xyz\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.628Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"GENDER_LAB_3C28F7079BE14AB0AF05F99367203658\"co:ItemGroupGUID=\"3C28F7079BE14AB0AF05F99367203658\">\n\t\t\t\t\t\t<ItemDataItemOID=\"GENDER_LAB_3C28F7079BE14AB0AF05F99367203658\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;1&quot;,&quot;label&quot;:&quot;Male&quot;}]\"co:ItemGUID=\"3C28F7079BE14AB0AF05F99367203658\"co:DecodedValue=\"Male\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.633Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"SMARTITEM_06_DOB_5EED4980C8A6431697432F0915219916\"co:ItemGroupGUID=\"5EED4980C8A6431697432F0915219916\">\n\t\t\t\t\t\t<ItemDataItemOID=\"SMARTITEM_06_DOB_5EED4980C8A6431697432F0915219916\"TransactionType=\"Upsert\"Value=\"07-May-1991\"co:ItemGUID=\"5EED4980C8A6431697432F0915219916\"co:DecodedValue=\"07-May-1991\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.649Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"RACE_LAB_F0AD42619DE14BCABD6EF726EC7C1BFD\"co:ItemGroupGUID=\"F0AD42619DE14BCABD6EF726EC7C1BFD\">\n\t\t\t\t\t\t<ItemDataItemOID=\"RACE_LAB_F0AD42619DE14BCABD6EF726EC7C1BFD\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;1&quot;,&quot;label&quot;:&quot;African American&quot;}]\"co:ItemGUID=\"F0AD42619DE14BCABD6EF726EC7C1BFD\"co:DecodedValue=\"African American\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:24.656Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"PREGNANCY_E243611973104C1CB86F4EE3207F74CD\"co:FormGUID=\"E243611973104C1CB86F4EE3207F74CD\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"IS_FIRST_DELIVERY_0826A6111AFC42D6B4FCD89752A38A7F\"co:ItemGroupGUID=\"0826A6111AFC42D6B4FCD89752A38A7F\">\n\t\t\t\t\t\t<ItemDataItemOID=\"IS_FIRST_DELIVERY_0826A6111AFC42D6B4FCD89752A38A7F\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;No&quot;}]\"co:ItemGUID=\"0826A6111AFC42D6B4FCD89752A38A7F\"co:DecodedValue=\"No\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:25.492Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"PREGNANCY_E243611973104C1CB86F4EE3207F74CD\"co:FormGUID=\"E243611973104C1CB86F4EE3207F74CD\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"ANY_PREV_COMP_326DFBE1FBCF45BF83F6A21D37B7838E\"co:ItemGroupGUID=\"326DFBE1FBCF45BF83F6A21D37B7838E\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ANY_PREV_COMP_326DFBE1FBCF45BF83F6A21D37B7838E\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;No&quot;}]\"co:ItemGUID=\"326DFBE1FBCF45BF83F6A21D37B7838E\"co:DecodedValue=\"No\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:25.498Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"NUMBER_01_E02AC4C530DE46A295FE60B4A9BF9B64\"co:ItemGroupGUID=\"E02AC4C530DE46A295FE60B4A9BF9B64\">\n\t\t\t\t\t\t<ItemDataItemOID=\"NUMBER_01_E02AC4C530DE46A295FE60B4A9BF9B64\"TransactionType=\"Upsert\"Value=\"172.00\"co:ItemGUID=\"E02AC4C530DE46A295FE60B4A9BF9B64\"co:DecodedValue=\"172.00\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.081Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"cm\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"NUMBER_02_8F70423FE2204ED5A3B0B00F363C3306\"co:ItemGroupGUID=\"8F70423FE2204ED5A3B0B00F363C3306\">\n\t\t\t\t\t\t<ItemDataItemOID=\"NUMBER_02_8F70423FE2204ED5A3B0B00F363C3306\"TransactionType=\"Upsert\"Value=\"78.0\"co:ItemGUID=\"8F70423FE2204ED5A3B0B00F363C3306\"co:DecodedValue=\"78.0\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.088Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"Kilogram\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"QUESTIONGROUP_01_04FE85DA44BF40BB8275CBADD3C86E54\"co:ItemGroupGUID=\"04FE85DA44BF40BB8275CBADD3C86E54\">\n\t\t\t\t\t\t<ItemDataItemOID=\"NUMBER_03_BC6AFAA0FA9C4DABBFA1C884A2033E55\"TransactionType=\"Upsert\"Value=\"80\"co:ItemGUID=\"BC6AFAA0FA9C4DABBFA1C884A2033E55\"co:DecodedValue=\"80\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.093Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"mmHg\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"QUESTIONGROUP_01_04FE85DA44BF40BB8275CBADD3C86E54\"co:ItemGroupGUID=\"04FE85DA44BF40BB8275CBADD3C86E54\">\n\t\t\t\t\t\t<ItemDataItemOID=\"NUMBER_04_E114B5FE929A41D0831E0E3154F35B91\"TransactionType=\"Upsert\"Value=\"120\"co:ItemGUID=\"E114B5FE929A41D0831E0E3154F35B91\"co:DecodedValue=\"120\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.099Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"mmHg\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"QUESTIONGROUP_01_04FE85DA44BF40BB8275CBADD3C86E54\"co:ItemGroupGUID=\"04FE85DA44BF40BB8275CBADD3C86E54\">\n\t\t\t\t\t\t<ItemDataItemOID=\"NUMBER_05_354C1D1BD9B844628595A9945E16B36C\"TransactionType=\"Upsert\"Value=\"72\"co:ItemGUID=\"354C1D1BD9B844628595A9945E16B36C\"co:DecodedValue=\"72\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.104Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"DATETIME_01_27804EDA73A948A08AE8E88C3D90033D\"co:ItemGroupGUID=\"27804EDA73A948A08AE8E88C3D90033D\">\n\t\t\t\t\t\t<ItemDataItemOID=\"DATETIME_01_27804EDA73A948A08AE8E88C3D90033D\"TransactionType=\"Upsert\"Value=\"08-Jun-2022 02:00\"co:ItemGUID=\"27804EDA73A948A08AE8E88C3D90033D\"co:DecodedValue=\"08-Jun-2022 02:00\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.109Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"co:FormGUID=\"3ADB1375C6714B8C97CA14AFA175D739\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"KNOWN_EFFECTS_2785D6BF274445B2B3A43AD4F4BB61D8\"co:ItemGroupGUID=\"2785D6BF274445B2B3A43AD4F4BB61D8\">\n\t\t\t\t\t\t<ItemDataItemOID=\"KNOWN_EFFECTS_2785D6BF274445B2B3A43AD4F4BB61D8\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;3&quot;,&quot;label&quot;:&quot;Ulser&quot;}]\"co:ItemGUID=\"2785D6BF274445B2B3A43AD4F4BB61D8\"co:DecodedValue=\"Ulser\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.115Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT1_E3D08DDF23CA4BD3B89C1232F107CE03\"co:FormGUID=\"E3D08DDF23CA4BD3B89C1232F107CE03\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"WEIGHT_A62588FFAAB24EFFBA0E1064CE21B5DE\"co:ItemGroupGUID=\"A62588FFAAB24EFFBA0E1064CE21B5DE\">\n\t\t\t\t\t\t<ItemDataItemOID=\"WEIGHT_A62588FFAAB24EFFBA0E1064CE21B5DE\"TransactionType=\"Upsert\"Value=\"100.0\"co:ItemGUID=\"A62588FFAAB24EFFBA0E1064CE21B5DE\"co:DecodedValue=\"100.0\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.821Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"Kilogram\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT1_E3D08DDF23CA4BD3B89C1232F107CE03\"co:FormGUID=\"E3D08DDF23CA4BD3B89C1232F107CE03\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"HEIGHT_8BA0DF3B813D4AEAA26FD20B7F7E2DA7\"co:ItemGroupGUID=\"8BA0DF3B813D4AEAA26FD20B7F7E2DA7\">\n\t\t\t\t\t\t<ItemDataItemOID=\"HEIGHT_8BA0DF3B813D4AEAA26FD20B7F7E2DA7\"TransactionType=\"Upsert\"Value=\"172.00\"co:ItemGUID=\"8BA0DF3B813D4AEAA26FD20B7F7E2DA7\"co:DecodedValue=\"172.00\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:26.827Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"cm\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"INCOMPLETE\"co:RepeatFormNumber=\"1\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"FLAT_TEXT_QUESTION_A6366295072544A8906515FBABE22429\"co:ItemGroupGUID=\"A6366295072544A8906515FBABE22429\">\n\t\t\t\t\t\t<ItemDataItemOID=\"FLAT_TEXT_QUESTION_A6366295072544A8906515FBABE22429\"TransactionType=\"Upsert\"Value=\"what are the symptoms\"co:ItemGUID=\"A6366295072544A8906515FBABE22429\"co:DecodedValue=\"what are the symptoms\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:27.557Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"INCOMPLETE\"co:RepeatFormNumber=\"1\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"QUESTIONGROUP_01_B2436CB18E414794AA180E4932B7200A\"co:ItemGroupGUID=\"B2436CB18E414794AA180E4932B7200A\">\n\t\t\t\t\t\t<ItemDataItemOID=\"WEIGHT_3EDB53AE87EB4766AE7674ED5BBF2AD8\"TransactionType=\"Upsert\"Value=\"67\"co:ItemGUID=\"3EDB53AE87EB4766AE7674ED5BBF2AD8\"co:DecodedValue=\"67\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:27.569Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"Kilogram\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"INCOMPLETE\"co:RepeatFormNumber=\"1\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"QUESTIONGROUP_01_B2436CB18E414794AA180E4932B7200A\"co:ItemGroupGUID=\"B2436CB18E414794AA180E4932B7200A\">\n\t\t\t\t\t\t<ItemDataItemOID=\"DATE_B045026450A94074BF235635BC1EBE91\"TransactionType=\"Upsert\"Value=\"07-Jul-2022\"co:ItemGUID=\"B045026450A94074BF235635BC1EBE91\"co:DecodedValue=\"07-Jul-2022\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:27.575Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"INCOMPLETE\"co:RepeatFormNumber=\"1\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"SHOW_REPEATING_SECTION_E062AF2EC4514D4CA3C21662A9975707\"co:ItemGroupGUID=\"E062AF2EC4514D4CA3C21662A9975707\">\n\t\t\t\t\t\t<ItemDataItemOID=\"SHOW_REPEATING_SECTION_E062AF2EC4514D4CA3C21662A9975707\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;1&quot;,&quot;label&quot;:&quot;Yes&quot;}]\"co:ItemGUID=\"E062AF2EC4514D4CA3C21662A9975707\"co:DecodedValue=\"Yes\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:27.580Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"1\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"1\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"REPEATING_TEXT_QUESTION_5EC1988D4FBD43AF82DA5429D6B284C1\"TransactionType=\"Upsert\"Value=\"Diaheria treatment\"co:ItemGUID=\"5EC1988D4FBD43AF82DA5429D6B284C1\"co:DecodedValue=\"Diaheria treatment\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.273Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"1\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"1\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ANY_COVID_EFFECTS_1366D3676BAC4B7CB0D2EA1E5362A6FC\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;5&quot;,&quot;label&quot;:&quot;Body Pain&quot;}]\"co:ItemGUID=\"1366D3676BAC4B7CB0D2EA1E5362A6FC\"co:DecodedValue=\"Body Pain\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.286Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"1\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"1\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"START_DATE_C02F3E3BE07048A883F19A87C7BFDD76\"TransactionType=\"Upsert\"Value=\"06-Jul-2022\"co:ItemGUID=\"C02F3E3BE07048A883F19A87C7BFDD76\"co:DecodedValue=\"06-Jul-2022\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.292Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"1\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"1\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"HOW_CRITICAL_A45D4B39283B475A944A111F710C6BED\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;Moderate&quot;}]\"co:ItemGUID=\"A45D4B39283B475A944A111F710C6BED\"co:DecodedValue=\"Moderate\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.297Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"1\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"1\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ADMITTED_IN_HOSPITAL_FF5672920CEF4525AAF29FB7D1A243D0\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;No&quot;}]\"co:ItemGUID=\"FF5672920CEF4525AAF29FB7D1A243D0\"co:DecodedValue=\"No\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:28.303Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"2\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"2\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"REPEATING_TEXT_QUESTION_5EC1988D4FBD43AF82DA5429D6B284C1\"TransactionType=\"Upsert\"Value=\"Diaheria treatment\"co:ItemGUID=\"5EC1988D4FBD43AF82DA5429D6B284C1\"co:DecodedValue=\"Diaheria treatment\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.021Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"2\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"2\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ANY_COVID_EFFECTS_1366D3676BAC4B7CB0D2EA1E5362A6FC\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;5&quot;,&quot;label&quot;:&quot;Body Pain&quot;}]\"co:ItemGUID=\"1366D3676BAC4B7CB0D2EA1E5362A6FC\"co:DecodedValue=\"Body Pain\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.032Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"2\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"2\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"START_DATE_C02F3E3BE07048A883F19A87C7BFDD76\"TransactionType=\"Upsert\"Value=\"18-Jun-2022\"co:ItemGUID=\"C02F3E3BE07048A883F19A87C7BFDD76\"co:DecodedValue=\"18-Jun-2022\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.037Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"2\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"2\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"HOW_CRITICAL_A45D4B39283B475A944A111F710C6BED\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;Moderate&quot;}]\"co:ItemGUID=\"A45D4B39283B475A944A111F710C6BED\"co:DecodedValue=\"Moderate\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.043Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"FormRepeatKey=\"2\"co:FormGUID=\"19E7EE6903814132A9427E3E7A297107\"co:FormStatus=\"IN_PROGRESS\"co:RepeatFormNumber=\"1\"co:InnerRepeat=\"2\"co:OuterRepeat=\"1\"co:FormSectionGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TABLE_01_6FBC8BAB894849AFAAE6AE8634BE72D2\"co:ItemGroupGUID=\"6FBC8BAB894849AFAAE6AE8634BE72D2\">\n\t\t\t\t\t\t<ItemDataItemOID=\"ADMITTED_IN_HOSPITAL_FF5672920CEF4525AAF29FB7D1A243D0\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;No&quot;}]\"co:ItemGUID=\"FF5672920CEF4525AAF29FB7D1A243D0\"co:DecodedValue=\"No\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.049Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"TEXT_03_5E3AFE6B8C5B4D9F904C8EB48040CB84\"co:ItemGroupGUID=\"5E3AFE6B8C5B4D9F904C8EB48040CB84\">\n\t\t\t\t\t\t<ItemDataItemOID=\"TEXT_03_5E3AFE6B8C5B4D9F904C8EB48040CB84\"TransactionType=\"Upsert\"Value=\"covid treatment\"co:ItemGUID=\"5E3AFE6B8C5B4D9F904C8EB48040CB84\"co:DecodedValue=\"covid treatment\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.749Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"PRESCRIPTION_6F28953972164690A35B2563CF82523C\"co:ItemGroupGUID=\"6F28953972164690A35B2563CF82523C\">\n\t\t\t\t\t\t<ItemDataItemOID=\"PRESCRIPTION_6F28953972164690A35B2563CF82523C\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;1&quot;,&quot;label&quot;:&quot;Prescribed by Investigator&quot;}]\"co:ItemGUID=\"6F28953972164690A35B2563CF82523C\"co:DecodedValue=\"Prescribed by Investigator\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.759Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"DOSAGE_8CD9E77FD4784A499E122DCCA2517274\"co:ItemGroupGUID=\"8CD9E77FD4784A499E122DCCA2517274\">\n\t\t\t\t\t\t<ItemDataItemOID=\"DOSAGE_8CD9E77FD4784A499E122DCCA2517274\"TransactionType=\"Upsert\"Value=\"120\"co:ItemGUID=\"8CD9E77FD4784A499E122DCCA2517274\"co:DecodedValue=\"120\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.767Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t\t<MeasurementUnitRefMeasurementUnitOID=\"mg\">\n\t\t\t\t\t\t\t</MeasurementUnitRef>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"DOSAGE_FREQUENCY_FED9EAB627E541EB9251F8CBB7FE3B46\"co:ItemGroupGUID=\"FED9EAB627E541EB9251F8CBB7FE3B46\">\n\t\t\t\t\t\t<ItemDataItemOID=\"DOSAGE_FREQUENCY_FED9EAB627E541EB9251F8CBB7FE3B46\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;Twice a day&quot;}]\"co:ItemGUID=\"FED9EAB627E541EB9251F8CBB7FE3B46\"co:DecodedValue=\"Twice a day\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.773Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"START_DATE_MEDICATION_9ABA8F3316FA4D6CAD019CF99A3B28CA\"co:ItemGroupGUID=\"9ABA8F3316FA4D6CAD019CF99A3B28CA\">\n\t\t\t\t\t\t<ItemDataItemOID=\"START_DATE_MEDICATION_9ABA8F3316FA4D6CAD019CF99A3B28CA\"TransactionType=\"Upsert\"Value=\"08-Jun-2022\"co:ItemGUID=\"9ABA8F3316FA4D6CAD019CF99A3B28CA\"co:DecodedValue=\"08-Jun-2022\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.779Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\"FormRepeatKey=\"1\"co:FormGUID=\"234478166C0D4394BA6FF6E4378D6AEF\"co:FormStatus=\"COMPLETED\"co:OuterRepeat=\"1\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"STOP_DATE_MEDICATION_16C802F711504BED96EFF2198AD02A34\"co:ItemGroupGUID=\"16C802F711504BED96EFF2198AD02A34\">\n\t\t\t\t\t\t<ItemDataItemOID=\"STOP_DATE_MEDICATION_16C802F711504BED96EFF2198AD02A34\"TransactionType=\"Upsert\"Value=\"24-Jun-2022\"co:ItemGUID=\"16C802F711504BED96EFF2198AD02A34\"co:DecodedValue=\"24-Jun-2022\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:29.785Z</DateTimeStamp>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n\t<ClinicalDataStudyOID=\"STUDY01\"MetaDataVersionOID=\"1.0.0.2\"co:StudyID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:StudyVersionStart=\"2025-10-29T13:01:17.592Z\">\n\t\t<SubjectDataSubjectKey=\"DATAHUB_AUT_Site2_Active01\"co:SubjectGUID=\"C6A18791060849BBBAE1F7A16A62B389\">\n\t\t\t<SiteRefLocationOID=\"DATAHUB_AUT_Site2_Active\"co:Country=\"US\">\n\t\t\t</SiteRef>\n\t\t\t<StudyEventDataStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitGUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\"co:VisitSequence=\"24\"co:VisitName=\"Baseline\">\n\t\t\t\t<FormDataFormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormGUID=\"3DC0796D51654FEBA0F1ED98EBE8A73B\"co:FormStatus=\"COMPLETED\">\n\t\t\t\t\t<ItemGroupDataItemGroupOID=\"GENDER_1A4A881F48114F51A7247CEBE773C521\"co:ItemGroupGUID=\"1A4A881F48114F51A7247CEBE773C521\">\n\t\t\t\t\t\t<ItemDataItemOID=\"GENDER_1A4A881F48114F51A7247CEBE773C521\"TransactionType=\"Upsert\"Value=\"[{&quot;value&quot;:&quot;2&quot;,&quot;label&quot;:&quot;Female&quot;}]\"co:ItemGUID=\"1A4A881F48114F51A7247CEBE773C521\"co:DecodedValue=\"Female\"co:ValidationStatus=\"SUCCESS\"co:SDVSelectionStatus=\"OBLIGATORY\">\n\t\t\t\t\t\t\t<AuditRecord>\n\t\t\t\t\t\t\t\t<UserRefUserOID=\"testuser3\">\n\t\t\t\t\t\t\t\t</UserRef>\n\t\t\t\t\t\t\t\t<LocationRefLocationOID=\"DATAHUB_AUT_Site2_Active\">\n\t\t\t\t\t\t\t\t</LocationRef>\n\t\t\t\t\t\t\t\t<DateTimeStamp>2025-10-29T13:43:39.046Z</DateTimeStamp>\n\t\t\t\t\t\t\t\t<ReasonForChange>TranscriptionError</ReasonForChange>\n\t\t\t\t\t\t\t</AuditRecord>\n\t\t\t\t\t\t</ItemData>\n\t\t\t\t\t</ItemGroupData>\n\t\t\t\t</FormData>\n\t\t\t</StudyEventData>\n\t\t</SubjectData>\n\t</ClinicalData>\n</ODM>",
                "xml":{
                    "name":"ODM"
                }
            },
            "Comment":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "sponsorOrSite":{
                        "type":"string",
                        "xml":{
                            "name":"SponsorOrSite",
                            "attribute":true
                        },
                        "enum":[
                            "SPONSOR",
                            "SITE"
                        ]
                    }
                }
            },
            "CryptoBindingManifest":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "DateTimeStamp":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "Flag":{
                "required":[
                    "flagValue"
                ],
                "type":"object",
                "properties":{
                    "flagValue":{
                        "$ref":"#/components/schemas/FlagValue"
                    },
                    "flagType":{
                        "$ref":"#/components/schemas/FlagType"
                    }
                }
            },
            "FlagType":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "codeListOID":{
                        "type":"string",
                        "xml":{
                            "name":"CodeListOID",
                            "attribute":true
                        }
                    }
                }
            },
            "FlagValue":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "codeListOID":{
                        "type":"string",
                        "xml":{
                            "name":"CodeListOID",
                            "attribute":true
                        }
                    }
                }
            },
            "FormData":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature"
                    },
                    "archiveLayoutRef":{
                        "$ref":"#/components/schemas/ArchiveLayoutRef"
                    },
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    },
                    "itemGroupData":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ItemGroupData"
                        }
                    },
                    "formOID":{
                        "type":"string",
                        "xml":{
                            "name":"FormOID",
                            "attribute":true
                        }
                    },
                    "formRepeatKey":{
                        "type":"string",
                        "xml":{
                            "name":"FormRepeatKey",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    }
                },
                "xml":{
                    "name":"FormData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "InvestigatorRef":{
                "type":"object",
                "properties":{
                    "userOID":{
                        "type":"string",
                        "xml":{
                            "name":"UserOID",
                            "attribute":true
                        }
                    }
                }
            },
            "ItemData":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature"
                    },
                    "measurementUnitRef":{
                        "$ref":"#/components/schemas/MeasurementUnitRef"
                    },
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    },
                    "itemOID":{
                        "type":"string",
                        "xml":{
                            "name":"ItemOID",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    },
                    "isNull":{
                        "type":"string",
                        "xml":{
                            "name":"IsNull",
                            "attribute":true
                        },
                        "enum":[
                            "YES"
                        ]
                    },
                    "value":{
                        "type":"string",
                        "xml":{
                            "name":"Value",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"ItemData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "ItemGroupData":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature"
                    },
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    },
                    "itemDataGroup":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ItemData"
                        }
                    },
                    "itemDataStarGroup":{
                        "type":"array",
                        "items":{
                            "type":"object"
                        }
                    },
                    "itemGroupOID":{
                        "type":"string",
                        "xml":{
                            "name":"ItemGroupOID",
                            "attribute":true
                        }
                    },
                    "itemGroupRepeatKey":{
                        "type":"string",
                        "xml":{
                            "name":"ItemGroupRepeatKey",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    }
                },
                "xml":{
                    "name":"ItemGroupData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "MeasurementUnitRef":{
                "type":"object",
                "properties":{
                    "measurementUnitOID":{
                        "type":"string",
                        "xml":{
                            "name":"MeasurementUnitOID",
                            "attribute":true
                        }
                    }
                }
            },
            "ReasonForChange":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                },
                "xml":{
                    "name":"ReasonForChange",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "Signature":{
                "required":[
                    "dateTimeStamp",
                    "locationRef",
                    "signatureRef",
                    "userRef"
                ],
                "type":"object",
                "properties":{
                    "userRef":{
                        "$ref":"#/components/schemas/UserRef"
                    },
                    "locationRef":{
                        "$ref":"#/components/schemas/LocationRef"
                    },
                    "signatureRef":{
                        "$ref":"#/components/schemas/SignatureRef"
                    },
                    "dateTimeStamp":{
                        "$ref":"#/components/schemas/DateTimeStamp"
                    },
                    "cryptoBindingManifest":{
                        "$ref":"#/components/schemas/CryptoBindingManifest"
                    },
                    "id":{
                        "type":"string",
                        "xml":{
                            "name":"ID",
                            "attribute":true
                        }
                    }
                }
            },
            "SignatureRef":{
                "type":"object",
                "properties":{
                    "signatureOID":{
                        "type":"string",
                        "xml":{
                            "name":"SignatureOID",
                            "attribute":true
                        }
                    }
                }
            },
            "Signatures":{
                "type":"object",
                "properties":{
                    "signature":{
                        "type":"array",
                        "xml":{
                            "name":"Signature"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Signature"
                        }
                    }
                }
            },
            "SiteRef":{
                "type":"object",
                "properties":{
                    "locationOID":{
                        "type":"string",
                        "xml":{
                            "name":"LocationOID",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"SiteRef",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "SourceID":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "StudyEventData":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature"
                    },
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    },
                    "formData":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormData"
                        }
                    },
                    "studyEventOID":{
                        "type":"string",
                        "xml":{
                            "name":"StudyEventOID",
                            "attribute":true
                        }
                    },
                    "studyEventRepeatKey":{
                        "type":"string",
                        "xml":{
                            "name":"StudyEventRepeatKey",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    }
                },
                "xml":{
                    "name":"StudyEventData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "SubjectData":{
                "type":"object",
                "properties":{
                    "auditRecord":{
                        "$ref":"#/components/schemas/AuditRecord"
                    },
                    "signature":{
                        "$ref":"#/components/schemas/Signature"
                    },
                    "investigatorRef":{
                        "$ref":"#/components/schemas/InvestigatorRef"
                    },
                    "siteRef":{
                        "$ref":"#/components/schemas/SiteRef"
                    },
                    "annotation":{
                        "type":"array",
                        "xml":{
                            "name":"Annotation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Annotation"
                        }
                    },
                    "studyEventData":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/StudyEventData"
                        }
                    },
                    "subjectKey":{
                        "type":"string",
                        "xml":{
                            "name":"SubjectKey",
                            "attribute":true
                        }
                    },
                    "transactionType":{
                        "type":"string",
                        "xml":{
                            "name":"TransactionType",
                            "attribute":true
                        },
                        "enum":[
                            "INSERT",
                            "UPDATE",
                            "REMOVE",
                            "UPSERT",
                            "CONTEXT"
                        ]
                    }
                },
                "xml":{
                    "name":"SubjectData",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "UserRef":{
                "type":"object",
                "properties":{
                    "userOID":{
                        "type":"string",
                        "xml":{
                            "name":"UserOID",
                            "attribute":true
                        }
                    }
                }
            },
            "Alias":{
                "type":"object",
                "properties":{
                    "context":{
                        "type":"string",
                        "description":"Naming context for the alias.",
                        "example":"CDISC",
                        "xml":{
                            "name":"Context",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Alias value within the given context.",
                        "example":"MG",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    }
                },
                "description":"Alternative naming context and value for an ODM element.",
                "example":"<Alias Context=\"CDISC\" Name=\"MG\"/>"
            },
            "ArchiveLayout":{
                "type":"object",
                "properties":{
                    "oid":{
                        "type":"string",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "pdfFileName":{
                        "type":"string",
                        "xml":{
                            "name":"PdfFileName",
                            "attribute":true
                        }
                    },
                    "presentationOID":{
                        "type":"string",
                        "xml":{
                            "name":"PresentationOID",
                            "attribute":true
                        }
                    }
                },
                "description":"Archive layout definitions for this form."
            },
            "BasicDefinitions":{
                "type":"object",
                "properties":{
                    "measurementUnit":{
                        "type":"array",
                        "description":"Units of measurement defined for this study.",
                        "xml":{
                            "name":"MeasurementUnit"
                        },
                        "items":{
                            "$ref":"#/components/schemas/MeasurementUnit"
                        }
                    }
                },
                "description":"Collection of units of measurement defined for this study."
            },
            "CheckValue":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                }
            },
            "CodeList":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "codeListItem":{
                        "type":"array",
                        "description":"Permissible values as coded items. Use when values are explicitly enumerated.",
                        "items":{
                            "$ref":"#/components/schemas/CodeListItem"
                        }
                    },
                    "externalCodeList":{
                        "$ref":"#/components/schemas/ExternalCodeList"
                    },
                    "enumeratedItem":{
                        "type":"array",
                        "description":"Alternate representation of permissible values as enumerated items.",
                        "xml":{
                            "name":"EnumeratedItem"
                        },
                        "items":{
                            "$ref":"#/components/schemas/EnumeratedItem"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases that provide cross-references (e.g., SDTM variable names).",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for this CodeList.",
                        "example":"CL.AGE",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name of the CodeList.",
                        "example":"AgeUnits",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "dataType":{
                        "type":"string",
                        "description":"Data type for values in this CodeList.",
                        "example":"text",
                        "xml":{
                            "name":"DataType",
                            "attribute":true
                        },
                        "enum":[
                            "INTEGER",
                            "FLOAT",
                            "TEXT",
                            "STRING"
                        ]
                    },
                    "sasformatName":{
                        "type":"string"
                    }
                },
                "description":"CodeList defining permissible values via CodeListItem/EnumeratedItem or referencing an external catalog.",
                "example":"<CodeList OID=\"CL.AGE\" Name=\"AgeUnits\" DataType=\"text\" SASFormatName=\"AGEFMT\"><Description>Age units used for subject age</Description><CodeListItem CodedValue=\"YEARS\"><Decode><TranslatedText xml:lang=\"en\">Years</TranslatedText></Decode></CodeListItem><CodeListItem CodedValue=\"MONTHS\"><Decode><TranslatedText xml:lang=\"en\">Months</TranslatedText></Decode></CodeListItem><Alias Context=\"SDTM\" Name=\"AGEU\"/></CodeList>"
            },
            "CodeListItem":{
                "required":[
                    "decode"
                ],
                "type":"object",
                "properties":{
                    "decode":{
                        "$ref":"#/components/schemas/Decode"
                    },
                    "alias":{
                        "type":"array",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "codedValue":{
                        "type":"string",
                        "xml":{
                            "name":"CodedValue",
                            "attribute":true
                        }
                    },
                    "rank":{
                        "type":"number",
                        "xml":{
                            "name":"Rank",
                            "attribute":true
                        }
                    },
                    "orderNumber":{
                        "type":"integer",
                        "xml":{
                            "name":"OrderNumber",
                            "attribute":true
                        }
                    }
                },
                "description":"Permissible values as coded items. Use when values are explicitly enumerated.",
                "xml":{
                    "name":"CodeListItem",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "CodeListRef":{
                "type":"object",
                "properties":{
                    "codeListOID":{
                        "type":"string",
                        "xml":{
                            "name":"CodeListOID",
                            "attribute":true
                        }
                    }
                },
                "description":"Reference to a CodeList that constrains values for this item."
            },
            "ConditionDef":{
                "required":[
                    "description"
                ],
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "formalExpression":{
                        "type":"array",
                        "description":"One or more formal expressions defining the condition logic.",
                        "xml":{
                            "name":"FormalExpression"
                        },
                        "items":{
                            "$ref":"#/components/schemas/FormalExpression"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Optional aliases for the condition.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier for the condition within the ODM context.",
                        "example":"COND.WEIGHT_CHECK",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name for the condition.",
                        "example":"Weight Check",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    }
                },
                "description":"Definition of a condition used within ODM to control logic, exceptions, or method execution.",
                "example":"<ConditionDef OID=\"COND.WEIGHT_CHECK\" Name=\"Weight Check\">\n  <Description>\n    <TranslatedText xml:lang=\"en\">Check weight-based dosing</TranslatedText>\n  </Description>\n  <FormalExpression Context=\"SAS\">if (WEIGHT GT 0) then DOSE=WEIGHT*CONC; else DOSE=.;</FormalExpression>\n  <Alias Context=\"bookmark\" Name=\"WeightCheck\"/>\n</ConditionDef>"
            },
            "Decode":{
                "required":[
                    "translatedText"
                ],
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"array",
                        "xml":{
                            "name":"TranslatedText"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TranslatedText"
                        }
                    }
                }
            },
            "Description":{
                "required":[
                    "translatedText"
                ],
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"array",
                        "description":"Localized description text entries.",
                        "xml":{
                            "name":"TranslatedText"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TranslatedText"
                        }
                    }
                },
                "description":"Localized description containing one or more translated text entries.",
                "example":"<Description>\n  <TranslatedText xml:lang=\"en\">Protocol overview</TranslatedText>\n</Description>"
            },
            "EnumeratedItem":{
                "type":"object",
                "properties":{
                    "alias":{
                        "type":"array",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "codedValue":{
                        "type":"string",
                        "xml":{
                            "name":"CodedValue",
                            "attribute":true
                        }
                    },
                    "rank":{
                        "type":"number",
                        "xml":{
                            "name":"Rank",
                            "attribute":true
                        }
                    },
                    "orderNumber":{
                        "type":"integer",
                        "xml":{
                            "name":"OrderNumber",
                            "attribute":true
                        }
                    }
                },
                "description":"Alternate representation of permissible values as enumerated items."
            },
            "ErrorMessage":{
                "required":[
                    "translatedText"
                ],
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"array",
                        "xml":{
                            "name":"TranslatedText"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TranslatedText"
                        }
                    }
                }
            },
            "ExternalCodeList":{
                "type":"object",
                "properties":{
                    "href":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ref":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "dictionary":{
                        "type":"string",
                        "xml":{
                            "name":"Dictionary",
                            "attribute":true
                        }
                    },
                    "version":{
                        "type":"string",
                        "xml":{
                            "name":"Version",
                            "attribute":true
                        }
                    }
                },
                "description":"Reference to an external catalog-based code list."
            },
            "ExternalQuestion":{
                "type":"object",
                "properties":{
                    "dictionary":{
                        "type":"string",
                        "xml":{
                            "name":"Dictionary",
                            "attribute":true
                        }
                    },
                    "version":{
                        "type":"string",
                        "xml":{
                            "name":"Version",
                            "attribute":true
                        }
                    },
                    "code":{
                        "type":"string",
                        "xml":{
                            "name":"Code",
                            "attribute":true
                        }
                    }
                },
                "description":"Optional external question metadata reference."
            },
            "FormDef":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "itemGroupRef":{
                        "type":"array",
                        "description":"References to item groups included in this form.",
                        "xml":{
                            "name":"ItemGroupRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ItemGroupRef"
                        }
                    },
                    "archiveLayout":{
                        "type":"array",
                        "description":"Archive layout definitions for this form.",
                        "xml":{
                            "name":"ArchiveLayout"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ArchiveLayout"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases providing cross-references, e.g., SDTM mapping.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the FormDef.",
                        "example":"FRM.DEMO",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name of the form.",
                        "example":"Demographics Form",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Repeating",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    }
                },
                "description":"Form definition containing item group references, archive layout, and metadata.",
                "example":"<FormDef OID=\"FRM.DEMO\" Name=\"Demographics Form\" Repeating=\"No\"><Description>Form capturing demographic information</Description><ItemGroupRef ItemGroupOID=\"IG.DEMO\" Mandatory=\"Yes\" OrderNumber=\"1\"/><ArchiveLayout Name=\"DefaultLayout\"/><Alias Context=\"SDTM\" Name=\"DM\"/></FormDef>",
                "xml":{
                    "name":"FormDef",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "FormalExpression":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Formal expression text.",
                        "example":"if (WEIGHT GT 0) then DOSE=WEIGHT*CONC; else DOSE=.;"
                    },
                    "context":{
                        "type":"string",
                        "description":"Execution context or language for the expression.",
                        "example":"SAS",
                        "xml":{
                            "name":"Context",
                            "attribute":true
                        }
                    }
                },
                "description":"Expression representing method logic in a specific execution context or language.",
                "example":"<FormalExpression Context=\"SAS\">if (WEIGHT GT 0) then DOSE=WEIGHT*CONC; else DOSE=.;</FormalExpression>"
            },
            "GlobalVariables":{
                "required":[
                    "protocolName",
                    "studyDescription",
                    "studyName"
                ],
                "type":"object",
                "properties":{
                    "studyName":{
                        "$ref":"#/components/schemas/StudyName"
                    },
                    "studyDescription":{
                        "$ref":"#/components/schemas/StudyDescription"
                    },
                    "protocolName":{
                        "$ref":"#/components/schemas/ProtocolName"
                    }
                },
                "description":"Global attributes of a study including human readable name, description and protocol identifier.",
                "example":"<GlobalVariables><StudyName>STUDY01</StudyName><StudyDescription>Study01</StudyDescription><ProtocolName>STUDY01</ProtocolName></GlobalVariables>"
            },
            "ImputationMethod":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Imputation method text content.",
                        "example":"Mean Imputation"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the ImputationMethod element.",
                        "example":"IMP001",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    }
                },
                "description":"ImputationMethod element describing how missing values are imputed.",
                "example":"<ImputationMethod OID=\"IMP001\">Mean Imputation</ImputationMethod>"
            },
            "Include":{
                "type":"object",
                "properties":{
                    "studyOID":{
                        "type":"string",
                        "description":"Referenced study OID.",
                        "example":"S_0001",
                        "xml":{
                            "name":"StudyOID",
                            "attribute":true
                        }
                    },
                    "metaDataVersionOID":{
                        "type":"string",
                        "description":"Referenced metadata version OID.",
                        "example":"MDV_0001",
                        "xml":{
                            "name":"MetaDataVersionOID",
                            "attribute":true
                        }
                    }
                },
                "description":"Reference to another study and metadata version within ODM.",
                "example":{
                    "studyOID":"S_0001",
                    "metaDataVersionOID":"MDV_0001"
                }
            },
            "ItemDef":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "question":{
                        "$ref":"#/components/schemas/Question"
                    },
                    "externalQuestion":{
                        "$ref":"#/components/schemas/ExternalQuestion"
                    },
                    "measurementUnitRef":{
                        "type":"array",
                        "description":"List of measurement units referenced by this item.",
                        "xml":{
                            "name":"MeasurementUnitRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/MeasurementUnitRef"
                        }
                    },
                    "rangeCheck":{
                        "type":"array",
                        "description":"Validation constraints for values of this item.",
                        "xml":{
                            "name":"RangeCheck"
                        },
                        "items":{
                            "$ref":"#/components/schemas/RangeCheck"
                        }
                    },
                    "codeListRef":{
                        "$ref":"#/components/schemas/CodeListRef"
                    },
                    "role":{
                        "type":"array",
                        "description":"Roles associated with this item.",
                        "xml":{
                            "name":"Role"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Role"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases providing cross-references, e.g., to SDTM.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the ItemDef.",
                        "example":"IT.AGE",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name of the item.",
                        "example":"Age",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "dataType":{
                        "type":"string",
                        "description":"Data type of the item value.",
                        "example":"integer",
                        "xml":{
                            "name":"DataType",
                            "attribute":true
                        },
                        "enum":[
                            "INTEGER",
                            "FLOAT",
                            "DATE",
                            "DATETIME",
                            "TIME",
                            "TEXT",
                            "STRING",
                            "DOUBLE",
                            "URI",
                            "BOOLEAN",
                            "HEX_BINARY",
                            "BASE_64_BINARY",
                            "HEX_FLOAT",
                            "BASE_64_FLOAT",
                            "PARTIAL_DATE",
                            "PARTIAL_TIME",
                            "PARTIAL_DATETIME",
                            "DURATION_DATETIME",
                            "INTERVAL_DATETIME",
                            "INCOMPLETE_DATETIME",
                            "INCOMPLETE_DATE",
                            "INCOMPLETE_TIME"
                        ]
                    },
                    "length":{
                        "type":"integer",
                        "description":"Maximum length for character or numeric fields.",
                        "example":3,
                        "xml":{
                            "name":"Length",
                            "attribute":true
                        }
                    },
                    "significantDigits":{
                        "type":"integer",
                        "description":"Number of significant digits for numeric values.",
                        "example":0,
                        "xml":{
                            "name":"SignificantDigits",
                            "attribute":true
                        }
                    },
                    "origin":{
                        "type":"string",
                        "description":"Origin of the item value (e.g., Collected, Derived).",
                        "example":"Collected",
                        "xml":{
                            "name":"Origin",
                            "attribute":true
                        }
                    },
                    "comment":{
                        "type":"string",
                        "description":"Optional comment regarding the item.",
                        "example":"Age of subject",
                        "xml":{
                            "name":"Comment",
                            "attribute":true
                        }
                    },
                    "sdsvarName":{
                        "type":"string"
                    },
                    "sasfieldName":{
                        "type":"string"
                    }
                },
                "description":"Item definition including data type, question text, range checks, code list reference, and metadata.",
                "example":"<ItemDef OID=\"IT.AGE\" Name=\"Age\" DataType=\"integer\" Length=\"3\" SignificantDigits=\"0\" SASFieldName=\"AGE\" SDSVarName=\"AGE\" Origin=\"Collected\" Comment=\"Age of subject\"><Description>Subject age in years</Description><Question>What is the subject's age?</Question><MeasurementUnitRef MeasurementUnitOID=\"MU.YEARS\"/><RangeCheck Comparator=\"GE\" SoftHard=\"Soft\"><CheckValue>0</CheckValue></RangeCheck><RangeCheck Comparator=\"LE\" SoftHard=\"Soft\"><CheckValue>130</CheckValue></RangeCheck><CodeListRef CodeListOID=\"CL.AGEU\"/><Role>Demographics</Role><Alias Context=\"SDTM\" Name=\"AGE\"/></ItemDef>",
                "xml":{
                    "name":"ItemDef",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "ItemGroupDef":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "itemRef":{
                        "type":"array",
                        "description":"References to items included in this group.",
                        "xml":{
                            "name":"ItemRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ItemRef"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases providing cross-references, e.g., to SDTM.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the ItemGroupDef.",
                        "example":"IG.DEMO",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name of the item group.",
                        "example":"Demographics",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Repeating",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "isReferenceData":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"IsReferenceData",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "domain":{
                        "type":"string",
                        "description":"Domain value used in SDTM mapping.",
                        "example":"DM",
                        "xml":{
                            "name":"Domain",
                            "attribute":true
                        }
                    },
                    "origin":{
                        "type":"string",
                        "description":"Origin of the data represented by this group (e.g., Collected, Derived).",
                        "example":"Collected",
                        "xml":{
                            "name":"Origin",
                            "attribute":true
                        }
                    },
                    "role":{
                        "type":"string",
                        "description":"Role of this group within the form.",
                        "example":"Form",
                        "xml":{
                            "name":"Role",
                            "attribute":true
                        }
                    },
                    "purpose":{
                        "type":"string",
                        "description":"Purpose of this item group.",
                        "example":"CRF",
                        "xml":{
                            "name":"Purpose",
                            "attribute":true
                        }
                    },
                    "comment":{
                        "type":"string",
                        "description":"Optional comment.",
                        "example":"Demographics group",
                        "xml":{
                            "name":"Comment",
                            "attribute":true
                        }
                    },
                    "sasdatasetName":{
                        "type":"string"
                    }
                },
                "description":"Item group definition aggregating item references, attributes, and metadata.",
                "example":"<ItemGroupDef OID=\"IG.DEMO\" Name=\"Demographics\" Repeating=\"No\" IsReferenceData=\"No\" SASDatasetName=\"DM\" Domain=\"DM\" Origin=\"Collected\" Role=\"Form\" Purpose=\"CRF\" Comment=\"Demographics group\"><Description>Demographics item group</Description><ItemRef ItemOID=\"IT.AGE\" Mandatory=\"Yes\" OrderNumber=\"1\"/><ItemRef ItemOID=\"IT.SEX\" Mandatory=\"Yes\" OrderNumber=\"2\"/><Alias Context=\"SDTM\" Name=\"DMIG\"/></ItemGroupDef>",
                "xml":{
                    "name":"ItemGroupDef",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "ItemGroupRef":{
                "type":"object",
                "properties":{
                    "orderNumber":{
                        "type":"integer",
                        "xml":{
                            "name":"OrderNumber",
                            "attribute":true
                        }
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Mandatory",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "xml":{
                            "name":"CollectionExceptionConditionOID",
                            "attribute":true
                        }
                    },
                    "itemGroupOID":{
                        "type":"string",
                        "xml":{
                            "name":"ItemGroupOID",
                            "attribute":true
                        }
                    }
                },
                "description":"References to item groups included in this form."
            },
            "ItemRef":{
                "type":"object",
                "properties":{
                    "orderNumber":{
                        "type":"integer",
                        "xml":{
                            "name":"OrderNumber",
                            "attribute":true
                        }
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Mandatory",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "xml":{
                            "name":"CollectionExceptionConditionOID",
                            "attribute":true
                        }
                    },
                    "itemOID":{
                        "type":"string",
                        "xml":{
                            "name":"ItemOID",
                            "attribute":true
                        }
                    },
                    "keySequence":{
                        "type":"integer",
                        "xml":{
                            "name":"KeySequence",
                            "attribute":true
                        }
                    },
                    "methodOID":{
                        "type":"string",
                        "xml":{
                            "name":"MethodOID",
                            "attribute":true
                        }
                    },
                    "imputationMethodOID":{
                        "type":"string",
                        "xml":{
                            "name":"ImputationMethodOID",
                            "attribute":true
                        }
                    },
                    "role":{
                        "type":"string",
                        "xml":{
                            "name":"Role",
                            "attribute":true
                        }
                    },
                    "roleCodeListOID":{
                        "type":"string",
                        "xml":{
                            "name":"RoleCodeListOID",
                            "attribute":true
                        }
                    }
                },
                "description":"References to items included in this group."
            },
            "MeasurementUnit":{
                "required":[
                    "symbol"
                ],
                "type":"object",
                "properties":{
                    "symbol":{
                        "$ref":"#/components/schemas/Symbol"
                    },
                    "alias":{
                        "type":"array",
                        "description":"Zero or more aliases for this unit.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier for the measurement unit within ODM context.",
                        "example":"mg",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Human friendly name of the unit.",
                        "example":"mg",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    }
                },
                "description":"Definition of a measurement unit including symbol and optional aliases.",
                "example":"<MeasurementUnit OID=\"mg\" Name=\"mg\"><Symbol><TranslatedText>mg</TranslatedText></Symbol></MeasurementUnit>"
            },
            "MetaDataVersion":{
                "type":"object",
                "properties":{
                    "include":{
                        "$ref":"#/components/schemas/Include"
                    },
                    "protocol":{
                        "$ref":"#/components/schemas/Protocol"
                    },
                    "studyEventDef":{
                        "type":"array",
                        "description":"Definitions of study events or visits.",
                        "items":{
                            "$ref":"#/components/schemas/StudyEventDef"
                        }
                    },
                    "formDef":{
                        "type":"array",
                        "description":"Form definitions contained in events.",
                        "items":{
                            "$ref":"#/components/schemas/FormDef"
                        }
                    },
                    "itemGroupDef":{
                        "type":"array",
                        "description":"Item group definitions within forms.",
                        "items":{
                            "$ref":"#/components/schemas/ItemGroupDef"
                        }
                    },
                    "itemDef":{
                        "type":"array",
                        "description":"Item definitions used across the study.",
                        "items":{
                            "$ref":"#/components/schemas/ItemDef"
                        }
                    },
                    "codeList":{
                        "type":"array",
                        "description":"Code lists used by item definitions.",
                        "xml":{
                            "name":"CodeList"
                        },
                        "items":{
                            "$ref":"#/components/schemas/CodeList"
                        }
                    },
                    "imputationMethod":{
                        "type":"array",
                        "description":"Imputation methods available to handle missing data.",
                        "xml":{
                            "name":"ImputationMethod"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ImputationMethod"
                        }
                    },
                    "presentation":{
                        "type":"array",
                        "description":"Presentation configurations for items and forms.",
                        "xml":{
                            "name":"Presentation"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Presentation"
                        }
                    },
                    "conditionDef":{
                        "type":"array",
                        "description":"Conditional logic definitions used in the study.",
                        "xml":{
                            "name":"ConditionDef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ConditionDef"
                        }
                    },
                    "methodDef":{
                        "type":"array",
                        "description":"Method definitions for derivations or calculations.",
                        "xml":{
                            "name":"MethodDef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/MethodDef"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier for this metadata version.",
                        "example":"MDV_0001",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Human friendly name for this metadata version.",
                        "example":"Base Metadata",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "description":{
                        "type":"string",
                        "description":"Optional description for this metadata version.",
                        "example":"Initial metadata version",
                        "xml":{
                            "name":"Description",
                            "attribute":true
                        }
                    }
                },
                "description":"Defines the study design and data structures including events, forms, items, code lists and methods.",
                "example":"<MetaDataVersionOID=\"STUDY01v1.0.0.3\"Name=\"STUDY01\"co:StudyWid=\"25\"co:GUID=\"0C7CBA3F70034C47947E2FAB086BFBF5\"co:VersionStart=\"2025-10-29T14:37:54.638Z\"><Protocol><StudyEventRefStudyEventOID=\"AE_DBB3A65B0A97454DAFEAEDDAB37395A1\"OrderNumber=\"1\"Mandatory=\"No\"></StudyEventRef><StudyEventRefStudyEventOID=\"SCR_FD227430BECA4DECA5EA8B0E4DBE18CA\"OrderNumber=\"2\"Mandatory=\"Yes\"></StudyEventRef><StudyEventRefStudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\"OrderNumber=\"3\"Mandatory=\"Yes\"></StudyEventRef></Protocol><StudyEventDefOID=\"CBVisit2_AD5ACD1ED5E346129C6FABE4FA2E7DBE\"Name=\"CBVISIT2\"Repeating=\"No\"Type=\"Scheduled\"Category=\"ScheduleAbleVisit\"co:StudyEventWid=\"248\"co:GUID=\"AD5ACD1ED5E346129C6FABE4FA2E7DBE\"co:VersionStart=\"2025-10-29T14:37:55.423Z\"co:DelayDays=\"4\"co:DelayHours=\"0\"co:DelayWindowBeforeDays=\"2\"co:DelayWindowBeforeHours=\"0\"co:DelayWindowAfterDays=\"2\"co:DelayWindowAfterHours=\"0\"><FormRefFormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\"OrderNumber=\"1\"Mandatory=\"Yes\"></FormRef><FormRefFormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\"OrderNumber=\"2\"Mandatory=\"Yes\"></FormRef></StudyEventDef><FormDefOID=\"DECISION_FORM_FOR_BRANCH_026521949ED24C69B0A82084832A3262\"Name=\"DecisionFrom For Branch\"Repeating=\"No\"><ItemGroupRefOrderNumber=\"1\"Mandatory=\"No\"ItemGroupOID=\"IG_DATE_TIME_6ED56EC23ADD4841B8AC22ECB6205774\"></ItemGroupRef><ItemGroupRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemGroupOID=\"IG_ENABLE_DYNAMIC_VISIT_18936986318C4B00AAF89CDA492E6876\"></ItemGroupRef></FormDef><ItemGroupDefOID=\"IG_LAB_FORM_XRAY_E98F15D6F16F425A8F0EC3B92C8B718F\"Name=\"Lab Form - XRAY\"Repeating=\"Yes\"><ItemRefOrderNumber=\"1\"Mandatory=\"No\"ItemOID=\"LB_TEST_0267AEECE55441088516DA2C0E1B2EDC\"></ItemRef><ItemRefOrderNumber=\"2\"Mandatory=\"Yes\"ItemOID=\"LB_RESULT_DE498EE22C884D55A50D285580AB674D\"></ItemRef><ItemRefOrderNumber=\"3\"Mandatory=\"No\"ItemOID=\"LB_UNIT_00C6D2BF3F8B4178AAB25EBD3304E39E\"></ItemRef><ItemRefOrderNumber=\"4\"Mandatory=\"No\"ItemOID=\"LB_LOW_RANGE_C8B8EEFE75F543299542C222ED94C28F\"></ItemRef><ItemRefOrderNumber=\"5\"Mandatory=\"No\"ItemOID=\"LB_HIGH_RANGE_5CE74A4A9E97435B933B6C28645342AA\"></ItemRef><ItemRefOrderNumber=\"6\"Mandatory=\"No\"ItemOID=\"NORMAL_TEXT_RESULT_746B6577A50C4D0A9DB53E1CD6B60551\"></ItemRef></ItemGroupDef><ItemDefOID=\"SUBJECT_INITIALS_CF149710CBE24A6BB9266E52B5F5BA0F\"Name=\"Subject_Initials\"DataType=\"string\"Length=\"3\"co:ItemWid=\"618\"co:GUID=\"CF149710CBE24A6BB9266E52B5F5BA0F\"co:ItemVersionStart=\"2025-10-29T14:37:55.044Z\"co:Precision=\"0\"co:AllowFutureDate=\"No\"><Question><TranslatedText>SubjectInitials</TranslatedText></Question></ItemDef><CodeListOID=\"GENDER_LAB_GENDER_0056B65135E24D8B960E3E9C4B68E280\"Name=\"Gender\"DataType=\"string\"><CodeListItemCodedValue=\"C46\"co:SelectionOID=\"GENDER_LAB_GENDER_0056B65135E24D8B960E3E9C4B68E280_GENDER_LA2\"><Decode><TranslatedText>Female</TranslatedText></Decode></CodeListItem></CodeList></MetaDataVersion>",
                "xml":{
                    "name":"MetaDataVersion",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "MethodDef":{
                "required":[
                    "description"
                ],
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "formalExpression":{
                        "type":"array",
                        "description":"One or more formal expressions describing the method logic and its execution context.",
                        "xml":{
                            "name":"FormalExpression"
                        },
                        "items":{
                            "$ref":"#/components/schemas/FormalExpression"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases providing alternative names in different contexts.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Unique identifier for the method within the ODM metadata.",
                        "example":"MD.METH001",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Human-readable method name.",
                        "example":"DoseComputation",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "type":{
                        "type":"string",
                        "description":"Classification of the method.",
                        "xml":{
                            "name":"Type",
                            "attribute":true
                        },
                        "enum":[
                            "COMPUTATION",
                            "IMPUTATION",
                            "TRANSPOSE",
                            "OTHER",
                            "Computation",
                            "Imputation",
                            "Transpose",
                            "Other"
                        ]
                    }
                },
                "description":"Definition of a computation or derivation used within the ODM metadata, including description, formal expressions, aliases, and attributes.",
                "example":"<MethodDef OID=\"MD.METH001\" Name=\"DoseComputation\" Type=\"Computation\">\n  <Description>\n    <TranslatedText xml:lang=\"en\">Compute derived dose based on weight and concentration</TranslatedText>\n  </Description>\n  <FormalExpression Context=\"SAS\">if (WEIGHT GT 0) then DOSE=WEIGHT*CONC; else DOSE=.;</FormalExpression>\n <Alias Context=\"CDISC\" Name=\"DRVDose\"/>\n</MethodDef>"
            },
            "Presentation":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Presentation text content.",
                        "example":"Tablet, 50 mg"
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the Presentation element.",
                        "example":"PRES001",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "lang":{
                        "type":"string",
                        "description":"Language code per IETF BCP 47 (xml:lang).",
                        "format":"language",
                        "example":"en",
                        "xml":{
                            "namespace":"http://www.w3.org/XML/1998/namespace",
                            "attribute":true
                        }
                    }
                },
                "description":"Presentation element containing display text and metadata.",
                "example":"<Presentation OID=\"PRES001\" xml:lang=\"en\">Tablet, 50 mg</Presentation>"
            },
            "Protocol":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "studyEventRef":{
                        "type":"array",
                        "description":"References to study events that constitute the schedule of assessments.",
                        "xml":{
                            "name":"StudyEventRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/StudyEventRef"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Optional aliases for the protocol.",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    }
                },
                "description":"Study protocol definition including description and references to study events.",
                "example":{
                    "description":{
                        "translatedText":[
                            {
                                "value":"Protocol overview",
                                "lang":"en"
                            }
                        ]
                    },
                    "studyEventRef":[
                        {
                            "studyEventOID":"SE_VISIT1",
                            "orderNumber":1,
                            "mandatory":"Yes",
                            "collectionExceptionConditionOID":"COND_001"
                        }
                    ],
                    "alias":[
                        {
                            "context":"SPONSOR",
                            "name":"PROTO-001"
                        }
                    ]
                }
            },
            "ProtocolName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Protocol identifier or shorthand title.",
                        "example":"STUDY01"
                    }
                },
                "description":"Protocol identifier or shorthand title container.",
                "example":"<ProtocolName>STUDY01</ProtocolName>"
            },
            "Question":{
                "required":[
                    "translatedText"
                ],
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"array",
                        "xml":{
                            "name":"TranslatedText"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TranslatedText"
                        }
                    }
                },
                "description":"Primary question text associated with the ItemDef."
            },
            "RangeCheck":{
                "type":"object",
                "properties":{
                    "checkValue":{
                        "type":"array",
                        "xml":{
                            "name":"CheckValue"
                        },
                        "items":{
                            "$ref":"#/components/schemas/CheckValue"
                        }
                    },
                    "formalExpression":{
                        "type":"array",
                        "xml":{
                            "name":"FormalExpression"
                        },
                        "items":{
                            "$ref":"#/components/schemas/FormalExpression"
                        }
                    },
                    "measurementUnitRef":{
                        "$ref":"#/components/schemas/MeasurementUnitRef"
                    },
                    "errorMessage":{
                        "$ref":"#/components/schemas/ErrorMessage"
                    },
                    "comparator":{
                        "type":"string",
                        "xml":{
                            "name":"Comparator",
                            "attribute":true
                        },
                        "enum":[
                            "LT",
                            "LE",
                            "GT",
                            "GE",
                            "EQ",
                            "NE",
                            "IN",
                            "NOTIN"
                        ]
                    },
                    "softHard":{
                        "type":"string",
                        "xml":{
                            "name":"SoftHard",
                            "attribute":true
                        },
                        "enum":[
                            "SOFT",
                            "HARD"
                        ]
                    }
                },
                "description":"Validation constraints for values of this item."
            },
            "Role":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    }
                },
                "description":"Roles associated with this item."
            },
            "StudyDescription":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Free text description content.",
                        "example":"Randomized double-blind trial across 25 sites"
                    }
                },
                "description":"Description of the study.",
                "example":"<StudyDescription>Randomized double-blind trial across 25 sites</StudyDescription>"
            },
            "StudyEventDef":{
                "type":"object",
                "properties":{
                    "description":{
                        "$ref":"#/components/schemas/Description"
                    },
                    "formRef":{
                        "type":"array",
                        "description":"References to forms associated with this study event.",
                        "xml":{
                            "name":"FormRef"
                        },
                        "items":{
                            "$ref":"#/components/schemas/FormRef"
                        }
                    },
                    "alias":{
                        "type":"array",
                        "description":"Aliases providing cross-references (e.g., SDTM).",
                        "xml":{
                            "name":"Alias"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Alias"
                        }
                    },
                    "oid":{
                        "type":"string",
                        "description":"Object identifier for the StudyEventDef.",
                        "example":"SE.VISIT1",
                        "xml":{
                            "name":"OID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "description":"Display name of the study event.",
                        "example":"Visit 1",
                        "xml":{
                            "name":"Name",
                            "attribute":true
                        }
                    },
                    "repeating":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Repeating",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "type":{
                        "type":"string",
                        "description":"Type of study event (e.g., Scheduled, Unscheduled).",
                        "example":"Scheduled",
                        "xml":{
                            "name":"Type",
                            "attribute":true
                        },
                        "enum":[
                            "SCHEDULED",
                            "UNSCHEDULED",
                            "COMMON"
                        ]
                    },
                    "category":{
                        "type":"string",
                        "description":"Optional category for the event.",
                        "example":"Screening",
                        "xml":{
                            "name":"Category",
                            "attribute":true
                        }
                    }
                },
                "description":"Study event definition containing form references, scheduling attributes, and metadata.",
                "example":"<StudyEventDef OID=\"SE.VISIT1\" Name=\"Visit 1\" Repeating=\"No\" Type=\"Scheduled\" Category=\"Screening\"><Description>Initial screening visit</Description><FormRef FormOID=\"FRM.DEMO\" Mandatory=\"Yes\" OrderNumber=\"1\"/><Alias Context=\"SDTM\" Name=\"SV\"/></StudyEventDef>",
                "xml":{
                    "name":"StudyEventDef",
                    "namespace":"http://www.cdisc.org/ns/odm/v1.3"
                }
            },
            "StudyEventRef":{
                "type":"object",
                "properties":{
                    "studyEventOID":{
                        "type":"string",
                        "description":"OID of the referenced StudyEventDef.",
                        "example":"SE_VISIT1",
                        "xml":{
                            "name":"StudyEventOID",
                            "attribute":true
                        }
                    },
                    "orderNumber":{
                        "type":"integer",
                        "description":"Order number of the study event within the schedule.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "name":"OrderNumber",
                            "attribute":true
                        }
                    },
                    "mandatory":{
                        "type":"string",
                        "description":"Represents a Yes or No value.",
                        "example":"Yes",
                        "xml":{
                            "name":"Mandatory",
                            "attribute":true
                        },
                        "enum":[
                            "YES",
                            "NO",
                            "Yes",
                            "No"
                        ]
                    },
                    "collectionExceptionConditionOID":{
                        "type":"string",
                        "description":"Optional condition OID that defines exceptions for data collection.",
                        "example":"COND_001",
                        "xml":{
                            "name":"CollectionExceptionConditionOID",
                            "attribute":true
                        }
                    }
                },
                "description":"Reference to a study event within the protocol schedule, including ordering and mandatory collection attributes.",
                "example":{
                    "studyEventOID":"SE_VISIT1",
                    "orderNumber":1,
                    "mandatory":"Yes",
                    "collectionExceptionConditionOID":"COND_001"
                }
            },
            "StudyName":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Human readable study name.",
                        "example":"STUDY01"
                    }
                },
                "description":"Official study name.",
                "example":"<StudyName>STUDY01</StudyName>"
            },
            "StudyODMExtV1":{
                "type":"object",
                "properties":{
                    "study":{
                        "type":"array",
                        "description":"List of ODM Study elements.",
                        "example":[
                        ],
                        "xml":{
                            "name":"Study"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Study"
                        }
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Requested study data mode value. Allowed values are test, active or training.",
                        "example":"active",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeCOExtensions":{
                        "type":"string",
                        "description":"Whether to include Clinical One extension attributes in the payload.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "excludeHiddenData":{
                        "type":"string",
                        "description":"Whether hidden data is excluded from the payload.",
                        "example":"false",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "fromTimestamp":{
                        "type":"string",
                        "description":"Start timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "toTimestamp":{
                        "type":"string",
                        "description":"End timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-12-31T23:59:59Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version identifier.",
                        "example":"1.0.0",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersionSummary":{
                        "type":"boolean",
                        "description":"If true, include study version summary instead of full detail.",
                        "example":true,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeUsers":{
                        "type":"string",
                        "description":"User inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeLocations":{
                        "type":"string",
                        "description":"Location inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates whether more results are available for pagination.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of results available.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of results in current page.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "limit":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Page size for pagination.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination.",
                        "format":"int32",
                        "example":0,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "Description":{
                        "type":"string",
                        "description":"Description of the ODM export file.",
                        "example":"Study metadata export",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "fileType":{
                        "type":"string",
                        "description":"ODM file type that indicates whether the export is a full snapshot or a transactional change set.",
                        "example":"<ODM FileType=\"Snapshot\"/>",
                        "xml":{
                            "name":"FileType",
                            "attribute":true
                        },
                        "enum":[
                            "SNAPSHOT",
                            "TRANSACTIONAL",
                            "Snapshot",
                            "Transactional"
                        ]
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of ODM data export.",
                        "format":"string",
                        "example":"<Granularity>All</Granularity>",
                        "xml":{
                            "attribute":true
                        },
                        "enum":[
                            "ALL",
                            "METADATA",
                            "ADMIN_DATA",
                            "REFERENCE_DATA",
                            "ALL_CLINICAL_DATA",
                            "SINGLE_SITE",
                            "SINGLE_SUBJECT",
                            "All",
                            "Metadata",
                            "AdminData",
                            "ReferenceData",
                            "AllClinicalData",
                            "SingleSite",
                            "SingleSubject"
                        ]
                    },
                    "Archival":{
                        "type":"string",
                        "description":"Indicates archival export.",
                        "example":"Yes",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "FileOID":{
                        "type":"string",
                        "description":"Unique identifier for the exported file.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "CreationDateTime":{
                        "type":"string",
                        "description":"Timestamp when the payload was generated.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "PriorFileOID":{
                        "type":"string",
                        "description":"Identifier of the prior exported file if any.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "AsOfDateTime":{
                        "type":"string",
                        "description":"Effective timestamp for the data represented.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ODMVersion":{
                        "type":"string",
                        "description":"ODM version of the payload.",
                        "example":"1.3.2",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "Originator":{
                        "type":"string",
                        "description":"Name of the system originating the payload.",
                        "example":"ClinicalOne",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystem":{
                        "type":"string",
                        "description":"Name of the source system.",
                        "example":"ClinicalOne DataHub",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystemVersion":{
                        "type":"string",
                        "description":"Version of the source system.",
                        "example":"8.0",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ID":{
                        "type":"string",
                        "description":"Unique identifier of the ODM document.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    }
                },
                "description":"Clinical One ODM 1.3.2 study metadata container including pagination and export attributes.",
                "example":"<ODM\n\txmlns=\"http://www.cdisc.org/ns/odm/v1.3\"\n\txmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"\n\txmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\" Description=\"STUDY01\" FileType=\"Transactional\" FileOID=\"oracle/STUDY01/BF400E2655C4493799A17C7B947557F0\" CreationDateTime=\"2025-11-03T18:14:02.559Z\" ODMVersion=\"1.3.2\" Originator=\"system\" SourceSystem=\"Oracle Life Sciences Clinical One\" SourceSystemVersion=\"MetaData API v8.0\" co:studyMode=\"test\" co:includeCOExtensions=\"true\" co:fromTimestamp=\"2024-01-01T00:00:00Z\" co:studyVersion=\"1.0.0.3\" co:studyVersionSummary=\"false\" co:hasMore=\"false\" co:totalResults=\"1\" co:count=\"1\" co:limit=\"1\" co:offset=\"0\">\n\t<Study OID=\"STUDY01\" co:SafetyIntegrationEnabled=\"false\">\n\t\t<GlobalVariables>\n\t\t\t<StudyName>STUDY01</StudyName>\n\t\t\t<StudyDescription>Study01</StudyDescription>\n\t\t\t<ProtocolName>STUDY01</ProtocolName>\n\t\t</GlobalVariables>\n\t\t<BasicDefinitions>\n\t\t\t<MeasurementUnit OID=\"Kilogram\" Name=\"Kilogram\">\n\t\t\t\t<Symbol>\n\t\t\t\t\t<TranslatedText>Kilogram</TranslatedText>\n\t\t\t\t</Symbol>\n\t\t\t</MeasurementUnit>\n\t\t</BasicDefinitions>\n\t\t<MetaDataVersion OID=\"STUDY01v1.0.0.3\" Name=\"STUDY01\" co:StudyWid=\"25\" co:GUID=\"0C7CBA3F70034C47947E2FAB086BFBF5\" co:VersionStart=\"2025-10-29T14:37:54.638Z\">\n\t\t\t<Protocol>\n\t\t\t\t<StudyEventRef StudyEventOID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\" OrderNumber=\"3\" Mandatory=\"Yes\"></StudyEventRef>\n\t\t\t</Protocol>\n\t\t\t<StudyEventDef OID=\"Baseline_5DF278EB00F24820B9CEFE7BFD7A3078\" Name=\"BASELINE\" Repeating=\"No\" Type=\"Scheduled\" Category=\"ScheduleAbleVisit\" co:StudyEventWid=\"42\" co:GUID=\"5DF278EB00F24820B9CEFE7BFD7A3078\" co:VersionStart=\"2025-10-29T14:37:55.423Z\" co:DelayDays=\"1\" co:DelayHours=\"0\" co:DelayWindowBeforeDays=\"1\" co:DelayWindowBeforeHours=\"0\" co:DelayWindowAfterDays=\"1\" co:DelayWindowAfterHours=\"0\">\n\t\t\t\t<FormRef FormOID=\"DEMOG_3DC0796D51654FEBA0F1ED98EBE8A73B\" OrderNumber=\"1\" Mandatory=\"Yes\"></FormRef>\n\t\t\t\t<FormRef FormOID=\"PREGNANCY_E243611973104C1CB86F4EE3207F74CD\" OrderNumber=\"2\" Mandatory=\"Yes\"></FormRef>\n\t\t\t\t<FormRef FormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT_3ADB1375C6714B8C97CA14AFA175D739\" OrderNumber=\"3\" Mandatory=\"Yes\"></FormRef>\n\t\t\t\t<FormRef FormOID=\"VITAL_SIGNS_FORM_TO_COLLECT_MEASUREMENT1_E3D08DDF23CA4BD3B89C1232F107CE03\" OrderNumber=\"4\" Mandatory=\"Yes\"></FormRef>\n\t\t\t\t<FormRef FormOID=\"TWOSECTIONF1_19E7EE6903814132A9427E3E7A297107\" OrderNumber=\"5\" Mandatory=\"Yes\"></FormRef>\n\t\t\t\t<FormRef FormOID=\"CONCOMITANT_MEDICATIONS_FORM_234478166C0D4394BA6FF6E4378D6AEF\" OrderNumber=\"6\" Mandatory=\"Yes\"></FormRef>\n\t\t\t</StudyEventDef>\n\t\t\t<FormDef OID=\"AE_REPEATINGFORM_FB76018539144E6C9B0C0655A2770C70\" Name=\"AE(Repeating Form)\" Repeating=\"Yes\">\n\t\t\t\t<ItemGroupRef OrderNumber=\"1\" Mandatory=\"No\" ItemGroupOID=\"IG_DROPDOWN_03_4C9BA8F0C71C4D97B1A8C4F570E375DF\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"2\" Mandatory=\"No\" ItemGroupOID=\"IG_DROPDOWN_04_B9C2862780944AC59ACD64C89E82FB57\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"3\" Mandatory=\"No\" ItemGroupOID=\"IG_COMMENTS_4EF72907BB594060A23894AC1992A409\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"4\" Mandatory=\"No\" ItemGroupOID=\"IG_FORM_ASSOCIATION_QUES_35766308CA2F465FB6CE7AFDF1B484AC\"></ItemGroupRef>\n\t\t\t</FormDef>\n\t\t\t<ItemGroupDef OID=\"IG_LAB_FORM_XRAY_E98F15D6F16F425A8F0EC3B92C8B718F\" Name=\"Lab Form - XRAY\" Repeating=\"Yes\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"LB_TEST_0267AEECE55441088516DA2C0E1B2EDC\"></ItemRef>\n\t\t\t\t<ItemRef OrderNumber=\"2\" Mandatory=\"Yes\" ItemOID=\"LB_RESULT_DE498EE22C884D55A50D285580AB674D\"></ItemRef>\n\t\t\t\t<ItemRef OrderNumber=\"3\" Mandatory=\"No\" ItemOID=\"LB_UNIT_00C6D2BF3F8B4178AAB25EBD3304E39E\"></ItemRef>\n\t\t\t\t<ItemRef OrderNumber=\"4\" Mandatory=\"No\" ItemOID=\"LB_LOW_RANGE_C8B8EEFE75F543299542C222ED94C28F\"></ItemRef>\n\t\t\t\t<ItemRef OrderNumber=\"5\" Mandatory=\"No\" ItemOID=\"LB_HIGH_RANGE_5CE74A4A9E97435B933B6C28645342AA\"></ItemRef>\n\t\t\t\t<ItemRef OrderNumber=\"6\" Mandatory=\"No\" ItemOID=\"NORMAL_TEXT_RESULT_746B6577A50C4D0A9DB53E1CD6B60551\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DATE_TIME_078905CDD6ED4654A5FEF583F83BB0DF\" Name=\"Date and Time\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"DATE_TIME_078905CDD6ED4654A5FEF583F83BB0DF\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemDef OID=\"SMARTITEM_06_DOB_5EED4980C8A6431697432F0915219916\" Name=\"SMARTITEM_06_DOB\" DataType=\"date\" co:ItemWid=\"871\" co:GUID=\"5EED4980C8A6431697432F0915219916\" co:ItemVersionStart=\"2025-10-29T14:37:54.941Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Age_SMARTITEM_06_DOB</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef OID=\"RACE_LAB_F0AD42619DE14BCABD6EF726EC7C1BFD\" Name=\"RACE_LAB\" DataType=\"string\" co:ItemWid=\"886\" co:GUID=\"F0AD42619DE14BCABD6EF726EC7C1BFD\" co:ItemVersionStart=\"2025-10-29T14:37:54.941Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Race Lab</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"RACE_LAB_RACE_7F07A4A380AF40C790FA695DC656CB67\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef OID=\"WEIGHT_A62588FFAAB24EFFBA0E1064CE21B5DE\" Name=\"WEIGHT\" DataType=\"float\" co:ItemWid=\"111\" co:GUID=\"A62588FFAAB24EFFBA0E1064CE21B5DE\" co:ItemVersionStart=\"2025-10-29T14:37:54.979Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Weight</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<MeasurementUnitRef MeasurementUnitOID=\"kg\"></MeasurementUnitRef>\n\t\t\t</ItemDef>\n\t\t\t<CodeList OID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B\" Name=\"ANY_COVID_EFFECTS\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT6\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Tiredness</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT4\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Fever</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT5\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Body Pain</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT7\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Sleepless</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT8\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Breathing Problem</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT2\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Cold</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT1\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Cough</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"ANY_COVID_EFFECTS_ANY_COVID_EFFECTS_92363094B1D245E3A52289ACF37F953B_ANY_COVID_EFFECT3\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Throat Infection</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t</MetaDataVersion>\n\t</Study>\n</ODM>",
                "xml":{
                    "name":"ODM"
                }
            },
            "Symbol":{
                "required":[
                    "translatedText"
                ],
                "type":"object",
                "properties":{
                    "translatedText":{
                        "type":"array",
                        "description":"Translated symbol values with language codes.",
                        "xml":{
                            "name":"TranslatedText"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TranslatedText"
                        }
                    }
                },
                "description":"Symbol for a measurement unit represented as a list of translated text entries.",
                "example":"<Symbol><TranslatedText>mg</TranslatedText></Symbol>"
            },
            "TranslatedText":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string",
                        "description":"Text value.",
                        "example":"mg"
                    },
                    "lang":{
                        "type":"string",
                        "description":"BCP 47 language code for the text value.",
                        "example":"en",
                        "xml":{
                            "namespace":"http://www.w3.org/XML/1998/namespace",
                            "attribute":true
                        }
                    }
                },
                "description":"Localized text value with associated language code.",
                "example":"<TranslatedText>mg</TranslatedText>"
            },
            "StudyODMExtV10":{
                "type":"object",
                "properties":{
                    "study":{
                        "type":"array",
                        "description":"List of ODM Study elements.",
                        "example":[
                        ],
                        "xml":{
                            "name":"Study"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Study"
                        }
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Requested study data mode value. Allowed values are test, active or training.",
                        "example":"active",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeCOExtensions":{
                        "type":"string",
                        "description":"Whether to include Clinical One extension attributes in the payload.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "excludeHiddenData":{
                        "type":"string",
                        "description":"Whether hidden data is excluded from the payload.",
                        "example":"false",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "fromTimestamp":{
                        "type":"string",
                        "description":"Start timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "toTimestamp":{
                        "type":"string",
                        "description":"End timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-12-31T23:59:59Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version identifier.",
                        "example":"1.0.0",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersionSummary":{
                        "type":"boolean",
                        "description":"If true, include study version summary instead of full detail.",
                        "example":true,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeUsers":{
                        "type":"string",
                        "description":"User inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeLocations":{
                        "type":"string",
                        "description":"Location inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates whether more results are available for pagination.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of results available.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of results in current page.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "limit":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Page size for pagination.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination.",
                        "format":"int32",
                        "example":0,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "Description":{
                        "type":"string",
                        "description":"Description of the ODM export file.",
                        "example":"Study metadata export",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "fileType":{
                        "type":"string",
                        "description":"ODM file type that indicates whether the export is a full snapshot or a transactional change set.",
                        "example":"<ODM FileType=\"Snapshot\"/>",
                        "xml":{
                            "name":"FileType",
                            "attribute":true
                        },
                        "enum":[
                            "SNAPSHOT",
                            "TRANSACTIONAL",
                            "Snapshot",
                            "Transactional"
                        ]
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of ODM data export.",
                        "format":"string",
                        "example":"<Granularity>All</Granularity>",
                        "xml":{
                            "attribute":true
                        },
                        "enum":[
                            "ALL",
                            "METADATA",
                            "ADMIN_DATA",
                            "REFERENCE_DATA",
                            "ALL_CLINICAL_DATA",
                            "SINGLE_SITE",
                            "SINGLE_SUBJECT",
                            "All",
                            "Metadata",
                            "AdminData",
                            "ReferenceData",
                            "AllClinicalData",
                            "SingleSite",
                            "SingleSubject"
                        ]
                    },
                    "Archival":{
                        "type":"string",
                        "description":"Indicates archival export.",
                        "example":"Yes",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "FileOID":{
                        "type":"string",
                        "description":"Unique identifier for the exported file.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "CreationDateTime":{
                        "type":"string",
                        "description":"Timestamp when the payload was generated.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "PriorFileOID":{
                        "type":"string",
                        "description":"Identifier of the prior exported file if any.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "AsOfDateTime":{
                        "type":"string",
                        "description":"Effective timestamp for the data represented.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ODMVersion":{
                        "type":"string",
                        "description":"ODM version of the payload.",
                        "example":"1.3.2",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "Originator":{
                        "type":"string",
                        "description":"Name of the system originating the payload.",
                        "example":"ClinicalOne",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystem":{
                        "type":"string",
                        "description":"Name of the source system.",
                        "example":"ClinicalOne DataHub",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystemVersion":{
                        "type":"string",
                        "description":"Version of the source system.",
                        "example":"8.0",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ID":{
                        "type":"string",
                        "description":"Unique identifier of the ODM document.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    }
                },
                "description":"Clinical One ODM 1.3.2 study metadata container including pagination and export attributes.",
                "example":"<ODM\n\txmlns=\"http://www.cdisc.org/ns/odm/v1.3\"\n\txmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"\n\txmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\" Description=\"T15\" FileType=\"Transactional\" FileOID=\"oracle/T15/BF400E2655C4493799A17C7B947557F0\" CreationDateTime=\"2025-11-03T18:14:02.559Z\" ODMVersion=\"1.3.2\" Originator=\"system\" SourceSystem=\"Oracle Life Sciences Clinical One\" SourceSystemVersion=\"MetaData API v10.0\" co:studyMode=\"test\" co:includeCOExtensions=\"true\" co:fromTimestamp=\"2024-01-01T00:00:00Z\" co:studyVersion=\"1.0.0.3\" co:studyVersionSummary=\"false\" co:hasMore=\"false\" co:totalResults=\"1\" co:count=\"1\" co:limit=\"1\" co:offset=\"0\">\n\t<Study OID=\"T15\" co:SafetyIntegrationEnabled=\"false\">\n\t\t<GlobalVariables>\n\t\t\t<StudyName>T15</StudyName>\n\t\t\t<StudyDescription>Test15</StudyDescription>\n\t\t\t<ProtocolName>T15</ProtocolName>\n\t\t</GlobalVariables>\n\t\t<BasicDefinitions>\n\t\t\t<MeasurementUnit OID=\"kg/m2\" Name=\"kg/m2\">\n\t\t\t\t<Symbol>\n\t\t\t\t\t<TranslatedText>kg/m2</TranslatedText>\n\t\t\t\t</Symbol>\n\t\t\t</MeasurementUnit>\n\t\t\t<MeasurementUnit OID=\"Years\" Name=\"Years\">\n\t\t\t\t<Symbol>\n\t\t\t\t\t<TranslatedText>Years</TranslatedText>\n\t\t\t\t</Symbol>\n\t\t\t</MeasurementUnit>\n\t\t</BasicDefinitions>\n\t\t<MetaDataVersion co:StudyWid=\"582\" co:GUID=\"FE9ABAA632634DFA84D1863365689C42\" co:VersionStart=\"2023-06-08T10:54:02.478Z\" OID=\"T15v1.0.0.1\" Name=\"T15\">\n\t\t\t<Protocol>\n\t\t\t\t<StudyEventRef StudyEventOID=\"AE_517E14D0AC2C4319B16D57B54F42CD28\" OrderNumber=\"1\" Mandatory=\"No\"></StudyEventRef>\n\t\t\t\t<StudyEventRef StudyEventOID=\"SV01_32781214B9394105AC61CDE66D28E8D4\" OrderNumber=\"2\" Mandatory=\"Yes\"></StudyEventRef>\n\t\t\t\t<StudyEventRef StudyEventOID=\"BV01_944101E4D1ED4DC8B04D81670969D5B0\" OrderNumber=\"3\" Mandatory=\"Yes\"></StudyEventRef>\n\t\t\t</Protocol>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1557\" co:GUID=\"517E14D0AC2C4319B16D57B54F42CD28\" co:VersionStart=\"2023-06-08T10:54:04.642Z\" OID=\"AE_517E14D0AC2C4319B16D57B54F42CD28\" Name=\"ADVERSEEVENT\" Repeating=\"No\" Type=\"Unscheduled\" Category=\"AdverseEvent\" co:AlertOutsideVisitWindow=\"off\"></StudyEventDef>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1559\" co:GUID=\"32781214B9394105AC61CDE66D28E8D4\" co:VersionStart=\"2023-06-14T16:50:55.978Z\" co:DelayDays=\"0\" co:DelayHours=\"0\" co:DelayWindowBeforeDays=\"0\" co:DelayWindowBeforeHours=\"0\" co:DelayWindowAfterDays=\"0\" co:DelayWindowAfterHours=\"0\" co:DelayWindowHardStop=\"0\" co:DelayWindowVisitApproval=\"0\" OID=\"SV01_32781214B9394105AC61CDE66D28E8D4\" Name=\"SCREENINGVISIT\" Repeating=\"No\" Type=\"Scheduled\" Category=\"ScreeningVisit\" co:AlertOutsideVisitWindow=\"off\">\n\t\t\t\t<FormRef FormOID=\"FORM_01_9EF4AB0095C646638639BE29015BE12B\" OrderNumber=\"1\" Mandatory=\"Yes\"></FormRef>\n\t\t\t</StudyEventDef>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1558\" co:GUID=\"944101E4D1ED4DC8B04D81670969D5B0\" co:VersionStart=\"2023-06-14T16:51:40.385Z\" co:DelayDays=\"1\" co:DelayHours=\"0\" co:DelayWindowBeforeDays=\"0\" co:DelayWindowBeforeHours=\"0\" co:DelayWindowAfterDays=\"0\" co:DelayWindowAfterHours=\"0\" OID=\"BV01_944101E4D1ED4DC8B04D81670969D5B0\" Name=\"BASELINEVISIT\" Repeating=\"No\" Type=\"Scheduled\" Category=\"ScheduleAbleVisit\">\n\t\t\t\t<FormRef FormOID=\"FORM_02_C7A1E7351E7C4E8EB047E76CB5B20AFB\" OrderNumber=\"1\" Mandatory=\"Yes\"></FormRef>\n\t\t\t</StudyEventDef>\n\t\t\t<FormDef OID=\"FORM_01_9EF4AB0095C646638639BE29015BE12B\" Name=\"ScreeningForm\" Repeating=\"No\">\n\t\t\t\t<ItemGroupRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"2\" Mandatory=\"Yes\" ItemGroupOID=\"IG_RADIOSET_01_39B1292322524D08ACD5102CD149EA54\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"3\" Mandatory=\"Yes\" ItemGroupOID=\"IG_SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"4\" Mandatory=\"Yes\" ItemGroupOID=\"IG_SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"5\" Mandatory=\"Yes\" ItemGroupOID=\"IG_CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"6\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DROPDOWN_03_EB54E6654075424C802062CDA1F05679\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"7\" Mandatory=\"Yes\" ItemGroupOID=\"IG_RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"8\" Mandatory=\"No\" ItemGroupOID=\"IG_TEXT_34_8D6DCDCC63964661BB25E40319A310D3\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"9\" Mandatory=\"Yes\" ItemGroupOID=\"IG_NUMBER_04_0F473394D64C420DACDBD90F7819489A\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"10\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\"></ItemGroupRef>\n\t\t\t</FormDef>\n\t\t\t<FormDef OID=\"FORM_02_C7A1E7351E7C4E8EB047E76CB5B20AFB\" Name=\"ConMed Form\" Repeating=\"Yes\">\n\t\t\t\t<ItemGroupRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_01_876B1FFEB83242D1919462E349E08463\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"2\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"3\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"4\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"5\" Mandatory=\"Yes\" ItemGroupOID=\"IG_NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"6\" Mandatory=\"No\" ItemGroupOID=\"IG_TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\"></ItemGroupRef>\n\t\t\t</FormDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_01_876B1FFEB83242D1919462E349E08463\" Name=\"Procedure Name\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_01_876B1FFEB83242D1919462E349E08463\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\" Name=\"Date Of Procedure\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\" Name=\"Reason For Procedure\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\" Name=\"Dose Recommended\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\" Name=\"Dose Units\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\" Name=\"Dose Period\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\" Name=\"Screening date\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_RADIOSET_01_39B1292322524D08ACD5102CD149EA54\" Name=\"Gender\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"RADIOSET_01_39B1292322524D08ACD5102CD149EA54\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\" Name=\"Age\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\" Name=\"Age_SMARTITEM_02_DOB\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\" Name=\"Fasting\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DROPDOWN_03_EB54E6654075424C802062CDA1F05679\" Name=\"Race\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DROPDOWN_03_EB54E6654075424C802062CDA1F05679\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\" Name=\"Is RollOver Question?\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_34_8D6DCDCC63964661BB25E40319A310D3\" Name=\"Screening Initials\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"TEXT_34_8D6DCDCC63964661BB25E40319A310D3\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_NUMBER_04_0F473394D64C420DACDBD90F7819489A\" Name=\"Body Mass Index(BMI)\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"NUMBER_04_0F473394D64C420DACDBD90F7819489A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\" Name=\"Symptoms\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemDef co:ItemWid=\"6373\" co:GUID=\"876B1FFEB83242D1919462E349E08463\" co:ItemVersionStart=\"2023-06-14T16:28:31.523Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_01_876B1FFEB83242D1919462E349E08463\" Name=\"TEXT_01\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Procedure Name</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6372\" co:GUID=\"4BA5316F99404220A8EC0E2EC856A642\" co:ItemVersionStart=\"2023-06-14T16:28:31.517Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\" Name=\"DATETIME_02\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Date Of Procedure</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6381\" co:GUID=\"0654B2AF1E2C4FE9912098CC89B7E0A0\" co:ItemVersionStart=\"2023-06-14T16:28:31.515Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\" Name=\"TEXT_03\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Reason For Procedure</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6369\" co:GUID=\"0B7FA31FB3DC418D97C729EE55E1065A\" co:ItemVersionStart=\"2023-06-14T16:28:31.510Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\" Name=\"TEXT_04\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Recommended</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6370\" co:GUID=\"2BB97DE583734CB2A03D35F2DC694312\" co:ItemVersionStart=\"2023-06-14T16:28:31.450Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\" Name=\"NUMBER_01\" DataType=\"integer\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Units</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6368\" co:GUID=\"465DE0BE9D5F41A5A1D69CC7F1F2674A\" co:ItemVersionStart=\"2023-06-14T16:47:12.375Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\" Name=\"TEXT_33\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Period</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6378\" co:GUID=\"F908F5EB04CB48D9999F9253E90AC0E0\" co:ItemVersionStart=\"2023-06-14T16:47:59.124Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\" Name=\"DATETIME_01\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Screening date</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6367\" co:GUID=\"39B1292322524D08ACD5102CD149EA54\" co:ItemVersionStart=\"2023-06-14T16:50:02.321Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"RADIOSET_01_39B1292322524D08ACD5102CD149EA54\" Name=\"RADIOSET_01\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Gender</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6379\" co:GUID=\"629460FD54724C588E81A9E8F45C88D7\" co:ItemVersionStart=\"2023-06-14T16:50:02.360Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" co:DataClassification='Sponsor Data' OID=\"SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\" Name=\"SMARTITEM_01_AGE\" DataType=\"integer\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Age</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<MeasurementUnitRef MeasurementUnitOID=\"Years\"></MeasurementUnitRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6375\" co:GUID=\"4E18C108F99242EF92D2EF97C32FF439\" co:ItemVersionStart=\"2023-06-14T16:50:02.404Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" co:DataClassification='Sponsor Data' OID=\"SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\" Name=\"SMARTITEM_02_DOB\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Age_SMARTITEM_02_DOB</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6371\" co:GUID=\"CAD07B7C05BB4A00B152847CC3D046CD\" co:ItemVersionStart=\"2023-06-14T16:47:59.131Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" co:CodelistLinkType=\"STATIC\" OID=\"CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\" Name=\"CHECKBOX_01\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Fasting</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6376\" co:GUID=\"EB54E6654075424C802062CDA1F05679\" co:ItemVersionStart=\"2023-06-14T16:50:02.489Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" co:CodelistLinkType=\"STATIC\" OID=\"DROPDOWN_03_EB54E6654075424C802062CDA1F05679\" Name=\"DROPDOWN_03\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Race</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6374\" co:GUID=\"A0B7DDDDABDD413C8ADE7E4A956E8181\" co:ItemVersionStart=\"2023-06-14T16:50:02.542Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" co:CodelistLinkType=\"DYNAMIC\" OID=\"RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\" Name=\"RADIOSET_04\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Is RollOver Question?</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6380\" co:GUID=\"8D6DCDCC63964661BB25E40319A310D3\" co:ItemVersionStart=\"2023-06-14T16:47:59.115Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_34_8D6DCDCC63964661BB25E40319A310D3\" Name=\"TEXT_34\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Screening Initials</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6377\" co:GUID=\"0F473394D64C420DACDBD90F7819489A\" co:ItemVersionStart=\"2023-06-14T16:47:59.126Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"NUMBER_04_0F473394D64C420DACDBD90F7819489A\" Name=\"NUMBER_04\" DataType=\"float\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Body Mass Index(BMI)</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<MeasurementUnitRef MeasurementUnitOID=\"kg/m2\"></MeasurementUnitRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6430\" co:GUID=\"6A91A1AE09E14A979D5840A16D0FC8D5\" co:ItemVersionStart=\"2024-04-23T11:45:54.330Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\" Name=\"TEXT_35\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Symptoms</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<CodeList OID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1\" Name=\"Gender\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1_RADIOSET_01\" CodedValue=\"C45\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Male</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1_RADIOSET_02\" CodedValue=\"C46\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Female</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F\" Name=\"Fasting\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F_CHECKBOX_01\" CodedValue=\"C10\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Yes</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F_CHECKBOX_02\" CodedValue=\"C11\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>No</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19\" Name=\"Fasting\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19_RADIOSET_01\" CodedValue=\"C10\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Yes</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19_RADIOSET_02\" CodedValue=\"C11\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>No</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503\" Name=\"Race\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_01\" CodedValue=\"C89\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>African American</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_02\" CodedValue=\"C90\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>American Indian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_03\" CodedValue=\"C91\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Asian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_04\" CodedValue=\"C92\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Caucasian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_05\" CodedValue=\"C93\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Pacific Islander</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"AssociationAction\" Name=\"AssociationAction\" DataType=\"text\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"AssociationAction.Created\" CodedValue=\"Created\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Created</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"AssociationAction.Removed\" CodedValue=\"Removed\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Removed</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"FlagType\" Name=\"FlagType\" DataType=\"text\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"FlagType.Association\" CodedValue=\"Association\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Association</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t</MetaDataVersion>\n\t</Study>\n</ODM>",
                "xml":{
                    "name":"ODM"
                }
            },
            "StudyODMExtV9":{
                "type":"object",
                "properties":{
                    "study":{
                        "type":"array",
                        "description":"List of ODM Study elements.",
                        "example":[
                        ],
                        "xml":{
                            "name":"Study"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Study"
                        }
                    },
                    "studyMode":{
                        "type":"string",
                        "description":"Requested study data mode value. Allowed values are test, active or training.",
                        "example":"active",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeCOExtensions":{
                        "type":"string",
                        "description":"Whether to include Clinical One extension attributes in the payload.",
                        "example":"true",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "excludeHiddenData":{
                        "type":"string",
                        "description":"Whether hidden data is excluded from the payload.",
                        "example":"false",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "fromTimestamp":{
                        "type":"string",
                        "description":"Start timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-01-01T00:00:00Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "toTimestamp":{
                        "type":"string",
                        "description":"End timestamp filter for changes included in payload.",
                        "format":"date-time",
                        "example":"2024-12-31T23:59:59Z",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version identifier.",
                        "example":"1.0.0",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "studyVersionSummary":{
                        "type":"boolean",
                        "description":"If true, include study version summary instead of full detail.",
                        "example":true,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeUsers":{
                        "type":"string",
                        "description":"User inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "includeLocations":{
                        "type":"string",
                        "description":"Location inclusion filter for metadata export.",
                        "example":"all",
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates whether more results are available for pagination.",
                        "example":false,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of results available.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Number of results in current page.",
                        "format":"int32",
                        "example":1,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "limit":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Page size for pagination.",
                        "format":"int32",
                        "example":100,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset for pagination.",
                        "format":"int32",
                        "example":0,
                        "xml":{
                            "namespace":"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1",
                            "attribute":true
                        }
                    },
                    "Description":{
                        "type":"string",
                        "description":"Description of the ODM export file.",
                        "example":"Study metadata export",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "fileType":{
                        "type":"string",
                        "description":"ODM file type that indicates whether the export is a full snapshot or a transactional change set.",
                        "example":"<ODM FileType=\"Snapshot\"/>",
                        "xml":{
                            "name":"FileType",
                            "attribute":true
                        },
                        "enum":[
                            "SNAPSHOT",
                            "TRANSACTIONAL",
                            "Snapshot",
                            "Transactional"
                        ]
                    },
                    "Granularity":{
                        "type":"string",
                        "description":"Granularity of ODM data export.",
                        "format":"string",
                        "example":"<Granularity>All</Granularity>",
                        "xml":{
                            "attribute":true
                        },
                        "enum":[
                            "ALL",
                            "METADATA",
                            "ADMIN_DATA",
                            "REFERENCE_DATA",
                            "ALL_CLINICAL_DATA",
                            "SINGLE_SITE",
                            "SINGLE_SUBJECT",
                            "All",
                            "Metadata",
                            "AdminData",
                            "ReferenceData",
                            "AllClinicalData",
                            "SingleSite",
                            "SingleSubject"
                        ]
                    },
                    "Archival":{
                        "type":"string",
                        "description":"Indicates archival export.",
                        "example":"Yes",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "FileOID":{
                        "type":"string",
                        "description":"Unique identifier for the exported file.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "CreationDateTime":{
                        "type":"string",
                        "description":"Timestamp when the payload was generated.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "PriorFileOID":{
                        "type":"string",
                        "description":"Identifier of the prior exported file if any.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "AsOfDateTime":{
                        "type":"string",
                        "description":"Effective timestamp for the data represented.",
                        "format":"date-time",
                        "example":"2024-06-15T10:30:00Z",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ODMVersion":{
                        "type":"string",
                        "description":"ODM version of the payload.",
                        "example":"1.3.2",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "Originator":{
                        "type":"string",
                        "description":"Name of the system originating the payload.",
                        "example":"ClinicalOne",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystem":{
                        "type":"string",
                        "description":"Name of the source system.",
                        "example":"ClinicalOne DataHub",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "SourceSystemVersion":{
                        "type":"string",
                        "description":"Version of the source system.",
                        "example":"8.0",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "ID":{
                        "type":"string",
                        "description":"Unique identifier of the ODM document.",
                        "format":"uuid",
                        "xml":{
                            "attribute":true
                        }
                    }
                },
                "description":"Clinical One ODM 1.3.2 study metadata container including pagination and export attributes.",
                "example":"<ODM\n\txmlns=\"http://www.cdisc.org/ns/odm/v1.3\"\n\txmlns:co=\"https://docs.oracle.com/en/industries/life-sciences/clinical-one/odm/extensions/v1\"\n\txmlns:ns0=\"http://www.w3.org/2000/09/xmldsig#\" Description=\"T15\" FileType=\"Transactional\" FileOID=\"oracle/T15/BF400E2655C4493799A17C7B947557F0\" CreationDateTime=\"2025-11-03T18:14:02.559Z\" ODMVersion=\"1.3.2\" Originator=\"system\" SourceSystem=\"Oracle Life Sciences Clinical One\" SourceSystemVersion=\"MetaData API v9.0\" co:studyMode=\"test\" co:includeCOExtensions=\"true\" co:fromTimestamp=\"2024-01-01T00:00:00Z\" co:studyVersion=\"1.0.0.3\" co:studyVersionSummary=\"false\" co:hasMore=\"false\" co:totalResults=\"1\" co:count=\"1\" co:limit=\"1\" co:offset=\"0\">\n\t<Study OID=\"T15\" co:SafetyIntegrationEnabled=\"false\">\n\t\t<GlobalVariables>\n\t\t\t<StudyName>T15</StudyName>\n\t\t\t<StudyDescription>Test15</StudyDescription>\n\t\t\t<ProtocolName>T15</ProtocolName>\n\t\t</GlobalVariables>\n\t\t<BasicDefinitions>\n\t\t\t<MeasurementUnit OID=\"kg/m2\" Name=\"kg/m2\">\n\t\t\t\t<Symbol>\n\t\t\t\t\t<TranslatedText>kg/m2</TranslatedText>\n\t\t\t\t</Symbol>\n\t\t\t</MeasurementUnit>\n\t\t\t<MeasurementUnit OID=\"Years\" Name=\"Years\">\n\t\t\t\t<Symbol>\n\t\t\t\t\t<TranslatedText>Years</TranslatedText>\n\t\t\t\t</Symbol>\n\t\t\t</MeasurementUnit>\n\t\t</BasicDefinitions>\n\t\t<MetaDataVersion co:StudyWid=\"582\" co:GUID=\"FE9ABAA632634DFA84D1863365689C42\" co:VersionStart=\"2023-06-08T10:54:02.478Z\" OID=\"T15v1.0.0.1\" Name=\"T15\">\n\t\t\t<Protocol>\n\t\t\t\t<StudyEventRef StudyEventOID=\"AE_517E14D0AC2C4319B16D57B54F42CD28\" OrderNumber=\"1\" Mandatory=\"No\"></StudyEventRef>\n\t\t\t\t<StudyEventRef StudyEventOID=\"SV01_32781214B9394105AC61CDE66D28E8D4\" OrderNumber=\"2\" Mandatory=\"Yes\"></StudyEventRef>\n\t\t\t\t<StudyEventRef StudyEventOID=\"BV01_944101E4D1ED4DC8B04D81670969D5B0\" OrderNumber=\"3\" Mandatory=\"Yes\"></StudyEventRef>\n\t\t\t</Protocol>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1557\" co:GUID=\"517E14D0AC2C4319B16D57B54F42CD28\" co:VersionStart=\"2023-06-08T10:54:04.642Z\" OID=\"AE_517E14D0AC2C4319B16D57B54F42CD28\" Name=\"ADVERSEEVENT\" Repeating=\"No\" Type=\"Unscheduled\" Category=\"AdverseEvent\" co:AlertOutsideVisitWindow=\"off\"></StudyEventDef>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1559\" co:GUID=\"32781214B9394105AC61CDE66D28E8D4\" co:VersionStart=\"2023-06-14T16:50:55.978Z\" co:DelayDays=\"0\" co:DelayHours=\"0\" co:DelayWindowBeforeDays=\"0\" co:DelayWindowBeforeHours=\"0\" co:DelayWindowAfterDays=\"0\" co:DelayWindowAfterHours=\"0\" co:DelayWindowHardStop=\"0\" co:DelayWindowVisitApproval=\"0\" OID=\"SV01_32781214B9394105AC61CDE66D28E8D4\" Name=\"SCREENINGVISIT\" Repeating=\"No\" Type=\"Scheduled\" Category=\"ScreeningVisit\" co:AlertOutsideVisitWindow=\"off\">\n\t\t\t\t<FormRef FormOID=\"FORM_01_9EF4AB0095C646638639BE29015BE12B\" OrderNumber=\"1\" Mandatory=\"Yes\"></FormRef>\n\t\t\t</StudyEventDef>\n\t\t\t<StudyEventDef co:StudyEventWid=\"1558\" co:GUID=\"944101E4D1ED4DC8B04D81670969D5B0\" co:VersionStart=\"2023-06-14T16:51:40.385Z\" co:DelayDays=\"1\" co:DelayHours=\"0\" co:DelayWindowBeforeDays=\"0\" co:DelayWindowBeforeHours=\"0\" co:DelayWindowAfterDays=\"0\" co:DelayWindowAfterHours=\"0\" OID=\"BV01_944101E4D1ED4DC8B04D81670969D5B0\" Name=\"BASELINEVISIT\" Repeating=\"No\" Type=\"Scheduled\" Category=\"ScheduleAbleVisit\">\n\t\t\t\t<FormRef FormOID=\"FORM_02_C7A1E7351E7C4E8EB047E76CB5B20AFB\" OrderNumber=\"1\" Mandatory=\"Yes\"></FormRef>\n\t\t\t</StudyEventDef>\n\t\t\t<FormDef OID=\"FORM_01_9EF4AB0095C646638639BE29015BE12B\" Name=\"ScreeningForm\" Repeating=\"No\">\n\t\t\t\t<ItemGroupRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"2\" Mandatory=\"Yes\" ItemGroupOID=\"IG_RADIOSET_01_39B1292322524D08ACD5102CD149EA54\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"3\" Mandatory=\"Yes\" ItemGroupOID=\"IG_SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"4\" Mandatory=\"Yes\" ItemGroupOID=\"IG_SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"5\" Mandatory=\"Yes\" ItemGroupOID=\"IG_CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"6\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DROPDOWN_03_EB54E6654075424C802062CDA1F05679\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"7\" Mandatory=\"Yes\" ItemGroupOID=\"IG_RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"8\" Mandatory=\"No\" ItemGroupOID=\"IG_TEXT_34_8D6DCDCC63964661BB25E40319A310D3\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"9\" Mandatory=\"Yes\" ItemGroupOID=\"IG_NUMBER_04_0F473394D64C420DACDBD90F7819489A\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"10\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\"></ItemGroupRef>\n\t\t\t</FormDef>\n\t\t\t<FormDef OID=\"FORM_02_C7A1E7351E7C4E8EB047E76CB5B20AFB\" Name=\"ConMed Form\" Repeating=\"Yes\">\n\t\t\t\t<ItemGroupRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_01_876B1FFEB83242D1919462E349E08463\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"2\" Mandatory=\"Yes\" ItemGroupOID=\"IG_DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"3\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"4\" Mandatory=\"Yes\" ItemGroupOID=\"IG_TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"5\" Mandatory=\"Yes\" ItemGroupOID=\"IG_NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\"></ItemGroupRef>\n\t\t\t\t<ItemGroupRef OrderNumber=\"6\" Mandatory=\"No\" ItemGroupOID=\"IG_TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\"></ItemGroupRef>\n\t\t\t</FormDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_01_876B1FFEB83242D1919462E349E08463\" Name=\"Procedure Name\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_01_876B1FFEB83242D1919462E349E08463\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\" Name=\"Date Of Procedure\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\" Name=\"Reason For Procedure\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\" Name=\"Dose Recommended\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\" Name=\"Dose Units\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\" Name=\"Dose Period\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\" Name=\"Screening date\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_RADIOSET_01_39B1292322524D08ACD5102CD149EA54\" Name=\"Gender\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"RADIOSET_01_39B1292322524D08ACD5102CD149EA54\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\" Name=\"Age\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\" Name=\"Age_SMARTITEM_02_DOB\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\" Name=\"Fasting\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_DROPDOWN_03_EB54E6654075424C802062CDA1F05679\" Name=\"Race\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"DROPDOWN_03_EB54E6654075424C802062CDA1F05679\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\" Name=\"Is RollOver Question?\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_34_8D6DCDCC63964661BB25E40319A310D3\" Name=\"Screening Initials\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"No\" ItemOID=\"TEXT_34_8D6DCDCC63964661BB25E40319A310D3\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_NUMBER_04_0F473394D64C420DACDBD90F7819489A\" Name=\"Body Mass Index(BMI)\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"NUMBER_04_0F473394D64C420DACDBD90F7819489A\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemGroupDef OID=\"IG_TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\" Name=\"Symptoms\" Repeating=\"No\">\n\t\t\t\t<ItemRef OrderNumber=\"1\" Mandatory=\"Yes\" ItemOID=\"TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\"></ItemRef>\n\t\t\t</ItemGroupDef>\n\t\t\t<ItemDef co:ItemWid=\"6373\" co:GUID=\"876B1FFEB83242D1919462E349E08463\" co:ItemVersionStart=\"2023-06-14T16:28:31.523Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_01_876B1FFEB83242D1919462E349E08463\" Name=\"TEXT_01\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Procedure Name</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6372\" co:GUID=\"4BA5316F99404220A8EC0E2EC856A642\" co:ItemVersionStart=\"2023-06-14T16:28:31.517Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"DATETIME_02_4BA5316F99404220A8EC0E2EC856A642\" Name=\"DATETIME_02\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Date Of Procedure</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6381\" co:GUID=\"0654B2AF1E2C4FE9912098CC89B7E0A0\" co:ItemVersionStart=\"2023-06-14T16:28:31.515Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_03_0654B2AF1E2C4FE9912098CC89B7E0A0\" Name=\"TEXT_03\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Reason For Procedure</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6369\" co:GUID=\"0B7FA31FB3DC418D97C729EE55E1065A\" co:ItemVersionStart=\"2023-06-14T16:28:31.510Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_04_0B7FA31FB3DC418D97C729EE55E1065A\" Name=\"TEXT_04\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Recommended</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6370\" co:GUID=\"2BB97DE583734CB2A03D35F2DC694312\" co:ItemVersionStart=\"2023-06-14T16:28:31.450Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"NUMBER_01_2BB97DE583734CB2A03D35F2DC694312\" Name=\"NUMBER_01\" DataType=\"integer\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Units</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6368\" co:GUID=\"465DE0BE9D5F41A5A1D69CC7F1F2674A\" co:ItemVersionStart=\"2023-06-14T16:47:12.375Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_33_465DE0BE9D5F41A5A1D69CC7F1F2674A\" Name=\"TEXT_33\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Dose Period</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6378\" co:GUID=\"F908F5EB04CB48D9999F9253E90AC0E0\" co:ItemVersionStart=\"2023-06-14T16:47:59.124Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"DATETIME_01_F908F5EB04CB48D9999F9253E90AC0E0\" Name=\"DATETIME_01\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Screening date</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6367\" co:GUID=\"39B1292322524D08ACD5102CD149EA54\" co:ItemVersionStart=\"2023-06-14T16:50:02.321Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"RADIOSET_01_39B1292322524D08ACD5102CD149EA54\" Name=\"RADIOSET_01\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Gender</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6379\" co:GUID=\"629460FD54724C588E81A9E8F45C88D7\" co:ItemVersionStart=\"2023-06-14T16:50:02.360Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" co:DataClassification='Sponsor Data' OID=\"SMARTITEM_01_AGE_629460FD54724C588E81A9E8F45C88D7\" Name=\"SMARTITEM_01_AGE\" DataType=\"integer\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Age</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<MeasurementUnitRef MeasurementUnitOID=\"Years\"></MeasurementUnitRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6375\" co:GUID=\"4E18C108F99242EF92D2EF97C32FF439\" co:ItemVersionStart=\"2023-06-14T16:50:02.404Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" co:DataClassification='Sponsor Data' OID=\"SMARTITEM_02_DOB_4E18C108F99242EF92D2EF97C32FF439\" Name=\"SMARTITEM_02_DOB\" DataType=\"date\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Age_SMARTITEM_02_DOB</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6371\" co:GUID=\"CAD07B7C05BB4A00B152847CC3D046CD\" co:ItemVersionStart=\"2023-06-14T16:47:59.131Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"CHECKBOX_01_CAD07B7C05BB4A00B152847CC3D046CD\" Name=\"CHECKBOX_01\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Fasting</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6376\" co:GUID=\"EB54E6654075424C802062CDA1F05679\" co:ItemVersionStart=\"2023-06-14T16:50:02.489Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"DROPDOWN_03_EB54E6654075424C802062CDA1F05679\" Name=\"DROPDOWN_03\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Race</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6374\" co:GUID=\"A0B7DDDDABDD413C8ADE7E4A956E8181\" co:ItemVersionStart=\"2023-06-14T16:50:02.542Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"RADIOSET_04_A0B7DDDDABDD413C8ADE7E4A956E8181\" Name=\"RADIOSET_04\" DataType=\"string\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Is RollOver Question?</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<CodeListRef CodeListOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19\"></CodeListRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6380\" co:GUID=\"8D6DCDCC63964661BB25E40319A310D3\" co:ItemVersionStart=\"2023-06-14T16:47:59.115Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_34_8D6DCDCC63964661BB25E40319A310D3\" Name=\"TEXT_34\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Screening Initials</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6377\" co:GUID=\"0F473394D64C420DACDBD90F7819489A\" co:ItemVersionStart=\"2023-06-14T16:47:59.126Z\" co:Precision=\"1\" co:AllowFutureDate=\"No\" OID=\"NUMBER_04_0F473394D64C420DACDBD90F7819489A\" Name=\"NUMBER_04\" DataType=\"float\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Body Mass Index(BMI)</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t\t<MeasurementUnitRef MeasurementUnitOID=\"kg/m2\"></MeasurementUnitRef>\n\t\t\t</ItemDef>\n\t\t\t<ItemDef co:ItemWid=\"6430\" co:GUID=\"6A91A1AE09E14A979D5840A16D0FC8D5\" co:ItemVersionStart=\"2024-04-23T11:45:54.330Z\" co:Precision=\"0\" co:AllowFutureDate=\"No\" OID=\"TEXT_35_6A91A1AE09E14A979D5840A16D0FC8D5\" Name=\"TEXT_35\" DataType=\"string\" Length=\"4000\">\n\t\t\t\t<Question>\n\t\t\t\t\t<TranslatedText>Symptoms</TranslatedText>\n\t\t\t\t</Question>\n\t\t\t</ItemDef>\n\t\t\t<CodeList OID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1\" Name=\"Gender\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1_RADIOSET_01\" CodedValue=\"C45\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Male</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_01_GENDER_E0DF1B7FD6B34ABCB134AEA77F5C82E1_RADIOSET_02\" CodedValue=\"C46\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Female</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F\" Name=\"Fasting\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F_CHECKBOX_01\" CodedValue=\"C10\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Yes</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"CHECKBOX_01_FASTING_380D34D8478D45C9B72ED700A294D05F_CHECKBOX_02\" CodedValue=\"C11\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>No</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19\" Name=\"Fasting\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19_RADIOSET_01\" CodedValue=\"C10\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Yes</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"RADIOSET_04_FASTING_4F9EE6A9C16049B69F0023A632C0CD19_RADIOSET_02\" CodedValue=\"C11\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>No</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503\" Name=\"Race\" DataType=\"string\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_01\" CodedValue=\"C89\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>African American</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_02\" CodedValue=\"C90\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>American Indian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_03\" CodedValue=\"C91\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Asian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_04\" CodedValue=\"C92\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Caucasian</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"DROPDOWN_03_RACE_8CFA38D416E34DE08E2EC88A3E334503_DROPDOWN_05\" CodedValue=\"C93\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Pacific Islander</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"AssociationAction\" Name=\"AssociationAction\" DataType=\"text\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"AssociationAction.Created\" CodedValue=\"Created\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Created</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t\t<CodeListItem co:SelectionOID=\"AssociationAction.Removed\" CodedValue=\"Removed\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Removed</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t\t<CodeList OID=\"FlagType\" Name=\"FlagType\" DataType=\"text\">\n\t\t\t\t<CodeListItem co:SelectionOID=\"FlagType.Association\" CodedValue=\"Association\">\n\t\t\t\t\t<Decode>\n\t\t\t\t\t\t<TranslatedText>Association</TranslatedText>\n\t\t\t\t\t</Decode>\n\t\t\t\t</CodeListItem>\n\t\t\t</CodeList>\n\t\t</MetaDataVersion>\n\t</Study>\n</ODM>",
                "xml":{
                    "name":"ODM"
                }
            },
            "ObjectModel":{
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string"
                    },
                    "self":{
                        "type":"string"
                    },
                    "size":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "study":{
                        "type":"string"
                    },
                    "bucketName":{
                        "type":"string"
                    },
                    "getlifeCycle":{
                        "type":"string"
                    },
                    "createdOn":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "createdBy":{
                        "type":"string"
                    },
                    "checksum":{
                        "type":"string"
                    },
                    "status":{
                        "type":"string"
                    },
                    "guid":{
                        "type":"string"
                    },
                    "errorMsg":{
                        "type":"string"
                    },
                    "fileType":{
                        "type":"string"
                    },
                    "serviceName":{
                        "type":"string"
                    },
                    "notificationRequired":{
                        "type":"string"
                    }
                }
            },
            "ConfigurationModel":{
                "type":"object",
                "properties":{
                    "fileStorageLocation":{
                        "type":"string"
                    },
                    "retentionPeriod":{
                        "type":"string"
                    },
                    "maxZipExtractSize":{
                        "type":"string"
                    },
                    "simultaneousUploadLimit":{
                        "type":"string"
                    },
                    "allowedFileTypes":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "useBucketAndObjectName":{
                        "type":"string"
                    },
                    "maxFileSize":{
                        "type":"string"
                    },
                    "fileStorageType":{
                        "type":"string"
                    }
                }
            },
            "ObjectListModel":{
                "type":"object",
                "properties":{
                    "fileList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ObjectModel"
                        }
                    },
                    "nextPageStartId":{
                        "type":"integer",
                        "format":"int64"
                    }
                }
            },
            "BlindedLotId":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique Id for blinded lot.",
                        "format":"uuid"
                    }
                },
                "description":"Contains blinded lot id."
            },
            "ORSResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Status of request",
                        "example":"Success"
                    },
                    "result":{
                        "type":"object",
                        "description":"Result Object"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Common response object."
            },
            "BlindedLotRequest":{
                "title":"BlindedLotRequestV2.0",
                "required":[
                    "blindedLotNumber",
                    "expirationDate"
                ],
                "type":"object",
                "properties":{
                    "blindedLotNumber":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"Bld-Lt-AZ"
                    },
                    "shortName":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinded lot short name.",
                        "example":"BlindedLot-01"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date of the blinded lot.",
                        "format":"date",
                        "example":"2022-04-01"
                    },
                    "doNotShip":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":50
                    },
                    "doNotCount":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "manufacturingLotIds":{
                        "type":"array",
                        "description":"IDs of manufacturing lots associated with the blinded lot.",
                        "example":[
                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "settingsByCountry":{
                        "type":"array",
                        "example":[
                            {
                                "countryIso":"US",
                                "doNotShip":50,
                                "doNotCount":10
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/CountrySupplySettings"
                        }
                    }
                },
                "description":"Request object to create blinded lot with country-specific settings."
            },
            "BlindedLotsV2":{
                "title":"BlindedLots v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"Blot1001"
                    },
                    "shortName":{
                        "title":"Short Name",
                        "type":"string",
                        "description":"Blinded lot short name.",
                        "example":"Blot1001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "type":"string",
                        "description":"Blinded lot expiration date.",
                        "format":"date-time",
                        "example":"2026-12-31T00:00:00Z"
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "example":50
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "example":10
                    },
                    "manufacturingLotIds":{
                        "title":"Manufacturing Lot IDs",
                        "type":"array",
                        "description":"List of manufacturing lot IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Blinded lot version start date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Blinded lot version end date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"UPDATE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"double",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"double",
                        "example":1
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Audit"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated blinded lot details"
                    },
                    "inUse":{
                        "type":"boolean",
                        "description":"Indicates whether the lot is in use.",
                        "example":true
                    },
                    "settingsByCountry":{
                        "type":"array",
                        "description":"List of settings by country.",
                        "items":{
                            "$ref":"#/components/schemas/SettingsByCountryV2"
                        }
                    }
                },
                "description":"Contains blinded lot details."
            },
            "SettingsByCountryV2":{
                "title":"SettingsByCountry v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID",
                        "format":"uuid"
                    },
                    "countryIso":{
                        "type":"string",
                        "description":"Country ISO code.",
                        "example":"US"
                    },
                    "doNotCount":{
                        "type":"number",
                        "description":"Do Not Count (DNC) Days.",
                        "format":"double",
                        "example":10
                    },
                    "doNotShip":{
                        "type":"number",
                        "description":"Do Not Ship (DNS) Days.",
                        "format":"double",
                        "example":50
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains settings by country."
            },
            "BlindingGroupRequest":{
                "title":"BlindingGroupRequest",
                "required":[
                    "description",
                    "kitTypes",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinding group title.",
                        "example":"Blinded Group Lotion"
                    },
                    "description":{
                        "maxLength":2000,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinding group description.",
                        "example":"Blinded Group Lotion"
                    },
                    "kitTypes":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of kit types in the blinding group.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitType"
                        }
                    },
                    "groupDifferentPackageTypes":{
                        "title":"Group Different Package Types",
                        "type":"string",
                        "description":"Indicates whether different package types are grouped.",
                        "example":"Yes",
                        "enum":[
                            "Yes",
                            "No"
                        ]
                    },
                    "defaultBlindingKit":{
                        "title":"Default Blinding Kit",
                        "type":"string",
                        "description":"ID of the default kit in the blinding group.",
                        "example":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                    }
                },
                "description":"Blinding group parameters."
            },
            "KitType":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit type Id",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "countsPerPackage":{
                        "type":"number",
                        "description":"Counts per package.",
                        "format":"double",
                        "example":5
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description",
                        "example":"Non-Dosing"
                    },
                    "doNotDispense":{
                        "type":"number",
                        "description":"Value to indicate whether to dispense kits or not.",
                        "format":"double",
                        "example":1
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":1
                    },
                    "minShippingUnits":{
                        "type":"number",
                        "description":"Minimum Kits to Ship.",
                        "format":"double",
                        "example":10
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Indicate if kit is default.",
                        "example":true
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name",
                        "example":"Kit A"
                    },
                    "storageNeedId":{
                        "type":"number",
                        "description":"Storage need ID.",
                        "format":"double",
                        "example":1
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Id of the Study",
                        "format":"uuid"
                    },
                    "srcVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type Id",
                        "format":"uuid"
                    }
                },
                "description":"Kit types details object."
            },
            "BlindingGroup":{
                "title":"BlindingGroup",
                "type":"object",
                "properties":{
                    "title":{
                        "title":"Title",
                        "type":"string",
                        "description":"Blinding group title.",
                        "example":"Blinding Group Lotion"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Blinding group description.",
                        "example":"Some description."
                    },
                    "defaultBlindingKit":{
                        "title":"Default Blinding Kit",
                        "type":"string",
                        "description":"ID of the default kit in the blinding group.",
                        "example":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                    },
                    "id":{
                        "title":"Blinding Group ID",
                        "type":"string",
                        "description":"ID of blinding group.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"List of kit types in the blinding group.",
                        "example":[
                            {
                                "id":"kitA",
                                "kitTypeName":"Kit A",
                                "description":"Non dosing kit",
                                "packageTypeId":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/BlindingGroupResponse.KitTypeSummary"
                        }
                    }
                },
                "description":"Object containing blinding group details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "title":"Blinding Group Lotion",
                    "description":"Some description.",
                    "kitTypes":[
                        {
                            "id":"kitA",
                            "kitTypeName":"Kit A",
                            "description":"Non dosing kit",
                            "packageTypeId":5
                        }
                    ],
                    "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                }
            },
            "BlindingGroupResponse.KitTypeSummary":{
                "title":"KitTypeSummary",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"ID of the kit type.",
                        "example":"kitA"
                    },
                    "kitTypeName":{
                        "title":"Kit Type Name",
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageType":{
                        "type":"string",
                        "description":"Package Type",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "deviceType":{
                        "title":"mHealth Device Type",
                        "type":"string",
                        "description":"Type of the mHealth device.",
                        "example":"GlucoseMonitor",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"mHealth Device Connection Type",
                        "type":"string",
                        "description":"Connection type of the mHealth device.",
                        "example":"NoConnection",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "srcId":{
                        "title":"KitType Source ID",
                        "type":"string",
                        "description":"Kit type source ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    }
                },
                "description":"Object for kit type summary details.",
                "example":{
                    "id":"BOTTLE-A",
                    "kitTypeName":"Kit A",
                    "description":"Non dosing kit",
                    "packageTypeId":5
                }
            },
            "BlindingGroupResponse":{
                "type":"object",
                "properties":{
                    "blindingGroups":{
                        "title":"Blinding Groups",
                        "type":"array",
                        "description":"List of blinding groups.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "title":"Blinding Group Lotion",
                                "description":"Some description.",
                                "kitTypes":[
                                    {
                                        "id":"BOTTLE-A",
                                        "kitTypeName":"Kit A",
                                        "description":"Non dosing kit",
                                        "packageTypeId":5
                                    }
                                ],
                                "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/BlindingGroupResponse.BlindingGroup"
                        }
                    }
                }
            },
            "CohortEnrollments":{
                "title":"Cohort Enrollments",
                "type":"object",
                "properties":{
                    "cohortId":{
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid"
                    },
                    "randomizationLimit":{
                        "type":"number",
                        "description":"Maximum number of subjects who can be randomized for the study.",
                        "format":"double",
                        "example":5
                    },
                    "notificationLimit":{
                        "type":"number",
                        "description":"Notification limit value. Once value is reached a notification is sent.",
                        "format":"double",
                        "example":5
                    },
                    "randomizedSubjects":{
                        "type":"number",
                        "description":"Number of randomized subjects",
                        "format":"double",
                        "example":5
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Indicates if cohort is enabled.",
                        "example":true
                    },
                    "enrollmentLimitReached":{
                        "type":"boolean",
                        "description":"Indicate if enrollment limit is reached.",
                        "example":true
                    }
                },
                "description":"Response object containing cohort enrollment details."
            },
            "CohortLimit":{
                "required":[
                    "cohortId",
                    "enabled"
                ],
                "type":"object",
                "properties":{
                    "cohortId":{
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid"
                    },
                    "randomizationLimit":{
                        "minimum":1,
                        "type":"number",
                        "description":"Maximum number of subjects who can be randomized for the study.",
                        "format":"double",
                        "example":5
                    },
                    "notificationLimit":{
                        "maximum":100,
                        "minimum":1,
                        "type":"number",
                        "description":"Notification limit value. Once value is reached a notification is sent.",
                        "format":"double",
                        "example":5
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Indicates if cohort is enabled.",
                        "example":true
                    },
                    "stratumId":{
                        "type":"string",
                        "description":"Stratum ID.",
                        "format":"uuid"
                    },
                    "forcedRandLimit":{
                        "maximum":999999,
                        "minimum":1,
                        "type":"number",
                        "description":"Forced Randomization limit value.",
                        "format":"Integer",
                        "example":5
                    }
                }
            },
            "CohortLimitList":{
                "title":"CohortLimitList",
                "required":[
                    "cohortLimits"
                ],
                "type":"object",
                "properties":{
                    "cohortLimits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CohortLimitV3"
                        }
                    }
                },
                "description":"Contains list of cohort limits."
            },
            "ResupplyResponse":{
                "title":"ResupplyResponse",
                "type":"object",
                "properties":{
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"Order status.",
                        "example":"DESTROYED",
                        "enum":[
                            "PENDING",
                            "INTRANSIT",
                            "RECEIVED",
                            "CANCELLED",
                            "LOST",
                            "CONFIRMED",
                            "INVALID",
                            "PENDING_DESTRUCTION",
                            "RECEIVED_FOR_DESTRUCTION",
                            "DESTROYED"
                        ]
                    }
                },
                "description":"Response object containing resupply details."
            },
            "ReconShipmentKitsFilter":{
                "type":"object",
                "properties":{
                    "kitRange":{
                        "type":"string",
                        "description":"Range of kit numbers.",
                        "format":"KIT_NUMBER:XXX:XXX",
                        "example":"KIT_NUMBER:10:100"
                    },
                    "searchString":{
                        "type":"string",
                        "description":"Search string for kits.",
                        "example":"Some search string"
                    },
                    "inventoryStatusIds":{
                        "type":"array",
                        "description":"Contains inventory status IDs.",
                        "example":[
                            5
                        ],
                        "items":{
                            "type":"integer",
                            "format":"int32",
                            "example":5
                        }
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    }
                },
                "description":"Contains filters for kits for a reconciliation shipment.",
                "example":{
                    "kitRange":"KIT_NUMBER:10:100",
                    "searchString":"Some search string",
                    "inventoryStatusIds":[
                        5
                    ],
                    "subjectId":"B1B8327AFAA6412287106192AB5984EF"
                }
            },
            "ReconShipmentRequest":{
                "type":"object",
                "properties":{
                    "kits":{
                        "minItems":1,
                        "type":"array",
                        "description":"Contains kit IDs.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "kitsFilter":{
                        "$ref":"#/components/schemas/ReconShipmentKitsFilter"
                    },
                    "unblinded":{
                        "type":"boolean",
                        "description":"Indicates whether unblinded or blinded.",
                        "example":true
                    }
                },
                "description":"Request object to create a reconciliation shipment."
            },
            "IDResponseV1":{
                "title":"IDResponse v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID",
                        "format":"uuid"
                    }
                },
                "description":"Response containing the identifier."
            },
            "DNDExceptionRequestV1":{
                "title":"DNDExceptionRequest v1.0",
                "required":[
                    "allCountries",
                    "kitTypeSrcId",
                    "visitDND"
                ],
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source IDs",
                        "maxItems":2147483647,
                        "minItems":1,
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of kit type source IDs.",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "title":"Kit Type Source IDs",
                            "type":"string",
                            "description":"List of kit type source IDs.",
                            "format":"uuid"
                        }
                    },
                    "allCountries":{
                        "title":"All Countries",
                        "type":"boolean",
                        "description":"Indicates whether the exception applies to all countries.",
                        "example":true
                    },
                    "countries":{
                        "title":"Countries",
                        "type":"array",
                        "description":"ISO codes of countries.",
                        "items":{
                            "type":"string",
                            "format":"String",
                            "example":"US"
                        }
                    },
                    "visitDND":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "uniqueItems":true,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitDNDV1"
                        }
                    },
                    "siteIds":{
                        "title":"Site IDs",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of site IDs.",
                        "example":[
                            "6AF54DB79B764662B685D68C52AB0B84",
                            "6AF54DB79B764662B685D68C52AB0B84"
                        ],
                        "items":{
                            "title":"Site IDs",
                            "type":"string",
                            "description":"List of site IDs.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request to create a new DNDException."
            },
            "VisitDNDV1":{
                "title":"VisitDND v1.0",
                "required":[
                    "dnd",
                    "visitSrcId"
                ],
                "type":"object",
                "properties":{
                    "visitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "dnd":{
                        "title":"DND",
                        "maximum":99999,
                        "exclusiveMaximum":false,
                        "minimum":0,
                        "exclusiveMinimum":false,
                        "type":"number",
                        "description":"Do not dispense value.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Request to create a new VisitDND."
            },
            "DNDExceptionListResponse":{
                "title":"DNDExceptionListResponse",
                "type":"object",
                "properties":{
                    "dndExceptionId":{
                        "title":"DND Exception ID",
                        "type":"string",
                        "description":"Do Not Dispense exception identifier.",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source IDs",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of kit type source IDs.",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF",
                            "ABC8327AFAA6412287106192AB5984EF"
                        ],
                        "items":{
                            "title":"Kit Type Source IDs",
                            "type":"string",
                            "description":"List of kit type source IDs.",
                            "example":"[\"B1B8327AFAA6412287106192AB5984EF\",\"ABC8327AFAA6412287106192AB5984EF\"]"
                        }
                    },
                    "allCountries":{
                        "title":"All Countries",
                        "type":"boolean",
                        "description":"Indicates whether the exception applies to all countries.",
                        "example":true
                    },
                    "countries":{
                        "title":"Countries",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"ISO codes of countries.",
                        "example":[
                            "IN",
                            "US"
                        ],
                        "items":{
                            "title":"Countries",
                            "type":"string",
                            "description":"ISO codes of countries.",
                            "example":"[\"IN\",\"US\"]"
                        }
                    },
                    "siteIds":{
                        "title":"Site IDs",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"List of site IDs.",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF",
                            "ABC8327AFAA6412287106192AB5984EF"
                        ],
                        "items":{
                            "title":"Site IDs",
                            "type":"string",
                            "description":"List of site IDs.",
                            "example":"[\"B1B8327AFAA6412287106192AB5984EF\",\"ABC8327AFAA6412287106192AB5984EF\"]"
                        }
                    },
                    "visitDND":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitDNDV1"
                        }
                    }
                },
                "description":"Response object containing DND exceptions details."
            },
            "DNDExceptionsResponse":{
                "title":"DNDExceptionsResponse",
                "type":"object",
                "properties":{
                    "dndExceptions":{
                        "type":"array",
                        "example":[
                            {
                                "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF",
                                "kitTypeSrcId":[
                                    "6AF54DB79B764662B685D68C52AB0B84"
                                ],
                                "allCountries":false,
                                "countries":[
                                    "US"
                                ],
                                "siteIds":[
                                    "ABC8327AFAA6412287106192AB5984EF"
                                ],
                                "visitDND":[
                                    {
                                        "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                        "dnd":2
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DNDExceptionListResponse"
                        }
                    }
                },
                "description":"Response object containing list of DND exceptions."
            },
            "DepotShipmentKitRequest":{
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"string",
                        "description":"Kit quantity",
                        "example":"2"
                    }
                },
                "description":"Contains kit details for depot shipment creation.",
                "example":[
                    {
                        "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                        "quantity":"2"
                    }
                ]
            },
            "ManualDepotSupplyRequest":{
                "title":"Manual Depot Supply Request",
                "required":[
                    "shippedFrom",
                    "shippedTo"
                ],
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "kits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DepotShipmentKitRequest"
                        }
                    },
                    "shippedFrom":{
                        "type":"string",
                        "description":"Source depot ID.",
                        "format":"uuid"
                    },
                    "shippedTo":{
                        "type":"string",
                        "description":"Destination depot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Manual depot-to-depot supply request object."
            },
            "DoseHoldSettingsRequestV1":{
                "title":"DoseHoldSettingsRequest v1.0",
                "required":[
                    "enabled",
                    "kitTypeSrcId",
                    "startingVisitSrcId"
                ],
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled.",
                        "example":true
                    },
                    "frequencyUnlimited":{
                        "title":"Frequency Unlimited",
                        "type":"boolean",
                        "description":"Indicates whether frequency is unlimited.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"double",
                        "example":5
                    },
                    "maxDoseHolds":{
                        "title":"Maximum Dose Holds",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Maximum number of allowed dose holds.",
                        "format":"double",
                        "example":800
                    },
                    "frequencyLimitInSequence":{
                        "title":"Frequency Limit In Sequence",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Frequency limit within a sequence.",
                        "format":"double",
                        "example":800
                    },
                    "frequencyLimitInDays":{
                        "title":"Frequency Limit In Days",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Frequency limit in days.",
                        "format":"double",
                        "example":800
                    }
                },
                "description":"Request containing dose hold settings."
            },
            "DoseHoldResponse":{
                "title":"Dose Hold Response",
                "type":"object",
                "properties":{
                    "doseHoldId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Response containing the created or updated dose hold identifier."
            },
            "DoseHoldSettingsResponseTO":{
                "title":"DoseHoldSettingsResponseTO v1.0",
                "type":"object",
                "properties":{
                    "doseHoldID":{
                        "title":"Dose Hold ID",
                        "type":"string",
                        "description":"Dose hold ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal"
                    },
                    "userID":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal"
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled."
                    },
                    "maxDoseHolds":{
                        "title":"Maximum Dose Holds",
                        "type":"number",
                        "description":"Maximum number of allowed dose holds.",
                        "format":"BigDecimal"
                    },
                    "frequencyUnlimited":{
                        "title":"Frequency Unlimited",
                        "type":"boolean",
                        "description":"Indicates whether frequency is unlimited."
                    },
                    "frequencyLimitInSequence":{
                        "title":"Frequency Limit In Sequence",
                        "type":"number",
                        "description":"Frequency limit within a sequence.",
                        "format":"BigDecimal"
                    },
                    "frequencyLimitInDays":{
                        "title":"Frequency Limit In Days",
                        "type":"number",
                        "description":"Frequency limit in days.",
                        "format":"BigDecimal"
                    }
                },
                "description":"Response containing dose hold settings."
            },
            "ListResponse":{
                "type":"object",
                "properties":{
                    "Resources":{
                        "type":"array",
                        "items":{
                            "type":"object"
                        }
                    },
                    "schemas":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "totalResults":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "EventsByType":{
                "type":"object",
                "properties":{
                    "eventType":{
                        "type":"string",
                        "description":"Event type.",
                        "example":"New",
                        "enum":[
                            "New",
                            "Screened",
                            "Randomized"
                        ]
                    },
                    "ids":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Event IDs.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Event details.",
                "example":{
                    "eventType":"New",
                    "ids":[
                        "B1B8327AFAA6412287106192AB5984EF"
                    ]
                }
            },
            "EventsDTO":{
                "type":"object",
                "properties":{
                    "events":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/EventsByType"
                        }
                    }
                },
                "description":"Response object for Events API."
            },
            "KitStatusHistoryResponse":{
                "title":"KitStatusHistoryResponse",
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Inventory status.",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site"
                        ]
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason description.",
                        "example":"Some description"
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned Units of Kit.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing Units of Kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "userName":{
                        "title":"User Name",
                        "type":"string",
                        "description":"User name.",
                        "example":"jane.doe"
                    },
                    "modifiedDate":{
                        "title":"Modified Date",
                        "type":"string",
                        "description":"Date modified",
                        "format":"date-time",
                        "example":"2026-02-21T08:43:01Z"
                    }
                },
                "description":"Response object of kit status history."
            },
            "DepotKitDetailsResponseV1":{
                "title":"DepotKitDetailsResponse v1.0",
                "type":"object",
                "properties":{
                    "distinctInventoryStatusIds":{
                        "title":"Inventory Status IDs",
                        "type":"array",
                        "description":"Inventory status IDs.",
                        "example":"5,4",
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "enum":[
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10",
                            "11",
                            "12",
                            "13",
                            "14",
                            "15",
                            "16",
                            "17",
                            "18",
                            "19",
                            "20"
                        ]
                    },
                    "blindedLotsExistsInStudy":{
                        "title":"Blinded Lots Exist In Study",
                        "type":"boolean",
                        "description":"Indicates whether blinded lots exist in the study.",
                        "example":true
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Depot user kit reconciliation details.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "kitNumberUTF":"10001",
                                "sequenceNumber":1,
                                "blockNumber":"BLK-001",
                                "inventoryStatusId":5,
                                "inventoryStatus":"Available",
                                "unitsPerKit":30,
                                "kitDescription":"Bottle of tablets",
                                "distributionSetting":"BLINDED",
                                "barCode":"BAR-10001",
                                "blindedLotExpirationDate":"2026-12-31T00:00:00Z"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DepotUserKitReconciliationTOV1"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains depot kit details."
            },
            "DepotUserKitReconciliationTOV1":{
                "title":"DepotUserKitReconciliationTO v1.0",
                "type":"object",
                "properties":{
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"5"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "example":1
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"BLK-001"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Units per kit.",
                        "example":30
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Bottle of tablets"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Distribution setting",
                        "example":"BLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED"
                        ]
                    },
                    "barCode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"BarCode"
                    },
                    "blindedLotExpirationDate":{
                        "type":"string",
                        "description":"Blinded lot expiration date.",
                        "format":"date-time",
                        "example":"2026-12-31T00:00:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Depot user kit reconciliation details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "kitNumberUTF":"10001",
                    "sequenceNumber":1,
                    "blockNumber":"BLK-001",
                    "inventoryStatusId":5,
                    "inventoryStatus":"Available",
                    "unitsPerKit":30,
                    "kitDescription":"Bottle of tablets",
                    "distributionSetting":"BLINDED",
                    "barCode":"BAR-10001",
                    "blindedLotExpirationDate":"2026-12-31T00:00:00Z"
                }
            },
            "RelLink":{
                "type":"object",
                "properties":{
                    "rel":{
                        "type":"string",
                        "description":"link"
                    },
                    "href":{
                        "type":"string",
                        "description":"Realtive URL"
                    }
                },
                "description":"Object contains link detail."
            },
            "UpdateDepotKitsResponse":{
                "title":"UpdateDepotKitsResponse",
                "type":"object",
                "properties":{
                    "tempExcursionNumber":{
                        "title":"Temperature Excursion Number",
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"0000000000001"
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    }
                },
                "description":"Response object of update kit."
            },
            "DepotKitFiltersRequestV1":{
                "title":"DepotKitFiltersRequest v1.0",
                "type":"object",
                "properties":{
                    "searchByKitNumber":{
                        "title":"Kit Number",
                        "type":"string",
                        "description":"Kit number.",
                        "example":"KIT001"
                    },
                    "searchBySeqNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "example":1
                    },
                    "sequenceNumberMin":{
                        "type":"number",
                        "description":"Kit minimum sequence number.",
                        "example":1
                    },
                    "sequenceNumberMax":{
                        "type":"number",
                        "description":"Kit maximum sequence number.",
                        "example":1
                    },
                    "kitNumberMin":{
                        "type":"number",
                        "description":"Kit minimum number.",
                        "example":1
                    },
                    "kitNumberMax":{
                        "type":"number",
                        "description":"Kit maximum number.",
                        "example":1
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "shipmentNumber":{
                        "title":"Shipment Number",
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"Shipment1"
                    },
                    "quarantineId":{
                        "title":"Quarantine ID",
                        "type":"string",
                        "description":"Quarantine ID.",
                        "example":"0000000000001"
                    },
                    "inventoryStatusIds":{
                        "title":"Inventory Status IDs",
                        "type":"array",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":[
                            5,
                            10
                        ],
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                },
                "description":"Request object for depot kit filters.",
                "example":{
                    "searchByKitNumber":"KIT-0001",
                    "searchBySeqNumber":1,
                    "sequenceNumberMin":1,
                    "sequenceNumberMax":100,
                    "kitNumberMin":10001,
                    "kitNumberMax":10100,
                    "blindedLotId":"B1B8327AFAA6412287106192AB5984EF",
                    "shipmentNumber":"SHIP-0001",
                    "quarantineId":"0000000000001",
                    "inventoryStatusIds":[
                        5,
                        10
                    ]
                }
            },
            "UpdateDepotKitsRequestV1":{
                "title":"UpdateDepotKitsRequest v1.0",
                "required":[
                    "inventoryStatusId"
                ],
                "type":"object",
                "properties":{
                    "kitsFilter":{
                        "$ref":"#/components/schemas/DepotKitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "example":[
                            "1BC29B36F5D64B1B95F4BDBBCEA481BE",
                            "C36A3197FDEE433FB5547EE83DE99E4B"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    }
                },
                "description":"Request to update status of serialized and non-serialized kits."
            },
            "GenerateKitsResponse":{
                "title":"GenerateKitsResponse",
                "type":"object",
                "properties":{
                    "inventorySourceId":{
                        "title":"Inventory Source ID",
                        "type":"string",
                        "description":"Unique ID of the inventory source.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "noOfKitsGenerated":{
                        "title":"Number of Kits Generated",
                        "type":"integer",
                        "description":"Number of kits generated.",
                        "format":"int64",
                        "example":10
                    }
                },
                "description":"Response object for kit generation."
            },
            "GenerateKitsRequest":{
                "required":[
                    "kitNumberStart",
                    "kitTypes",
                    "sequenceNumberStart",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Title of kit.",
                        "example":"Comparative Cream--B"
                    },
                    "description":{
                        "maxLength":2000,
                        "minLength":0,
                        "type":"string",
                        "description":"Description of kit.",
                        "example":"Some description of kit"
                    },
                    "kitTypes":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "quantity":10
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitTypeQuantityTO"
                        }
                    },
                    "kitNumberStart":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Kit number start value.",
                        "format":"int64",
                        "example":5
                    },
                    "sequenceNumberStart":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Sequence number start.",
                        "format":"int64",
                        "example":5
                    },
                    "useKitNumberForBarcode":{
                        "type":"boolean",
                        "description":"Use kit number for barcode.",
                        "example":true
                    },
                    "useRandomNumberForBarcode":{
                        "type":"boolean",
                        "description":"Use random number for barcode.",
                        "example":true
                    }
                }
            },
            "KitTypeQuantityTO":{
                "title":"KitTypeQuantityTO",
                "required":[
                    "id",
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "quantity":{
                        "title":"quantity",
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Kit quantity.",
                        "format":"int64",
                        "example":5
                    },
                    "kitTypeVersionStart":{
                        "title":"kitTypeVersionStart",
                        "type":"string",
                        "description":"Kit type version start.",
                        "format":"date-time"
                    },
                    "id":{
                        "title":"id",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    }
                },
                "description":"Kit quantity object.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "quantity":10
                }
            },
            "InventoryStatus":{
                "type":"object",
                "properties":{
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Inventory status",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site",
                            " Conserved",
                            "Received for Destruction"
                        ]
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int64",
                        "example":1,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    }
                },
                "description":"Inventory status",
                "example":{
                    "inventoryStatusId":1,
                    "inventoryStatus":"Available"
                }
            },
            "InventoryDispensationResponseV1":{
                "title":"InventoryDispensationResponse v1.0",
                "type":"object",
                "properties":{
                    "subjectSrcId":{
                        "title":"Subject Source ID",
                        "type":"string",
                        "description":"Subject source identifier.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "visitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid",
                        "example":"7f2c9f12-3456-7890-abcd-1234567890ab"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "example":1001
                    }
                },
                "description":"Contains dispensation details."
            },
            "KitBarcodeTO":{
                "title":"KitNumberBarcodeTO v1.0",
                "type":"object",
                "properties":{
                    "barcode":{
                        "title":"Barcode",
                        "maxLength":1000,
                        "minLength":0,
                        "type":"string",
                        "description":"Barcode of the kit.",
                        "example":"61234"
                    }
                },
                "description":"Object containing kit number and barcode."
            },
            "KitDetailsTO":{
                "title":"KitDetailsTO v1.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location.",
                        "example":"1873CDF69E9B48B89B2D9E7951057D09"
                    },
                    "manufacturingLotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "labelGroupId":{
                        "title":"Label Group ID",
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"BLot1101"
                    },
                    "labelGroup":{
                        "title":"Label Group",
                        "type":"string",
                        "description":"Label group.",
                        "example":"Labelgroup1001"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit details."
            },
            "KitInfoResponse":{
                "title":"Kit Info Response",
                "type":"object",
                "properties":{
                    "kitDetails":{
                        "$ref":"#/components/schemas/KitDetailsTO"
                    }
                },
                "description":"Response containing kit details."
            },
            "KitStatusResponse":{
                "title":"KitStatusResponse",
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Inventory status.",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site",
                            "Conserved",
                            "Received for Destruction"
                        ]
                    }
                },
                "description":"Response object of kit status."
            },
            "KitListDetailsTOV1":{
                "title":"KitListDetailsTO v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"ID",
                        "type":"string",
                        "description":"Unique identifier of the kit list.",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Name",
                        "type":"string",
                        "description":"Kit list name.",
                        "example":"KitList-01"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Kit list description.",
                        "example":"Example kit list."
                    },
                    "statusId":{
                        "title":"Status ID",
                        "type":"integer",
                        "description":"Status ID of the kit list.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Object containing kit list details."
            },
            "KitsAuditResponseV1":{
                "title":"KitsAuditResponse v1.0",
                "type":"object",
                "properties":{
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number."
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number."
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number."
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days."
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days."
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number."
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit."
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit."
                    },
                    "verified":{
                        "type":"boolean",
                        "description":"Verified"
                    },
                    "deviceId":{
                        "type":"string",
                        "description":"deviceID"
                    },
                    "barCode":{
                        "type":"string",
                        "description":"Barcode."
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed."
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot."
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID."
                    },
                    "itemNumber":{
                        "title":"Item Number",
                        "type":"string",
                        "description":"Item number."
                    }
                },
                "description":"Response containing audit details for each kit."
            },
            "KitsAuditRequestV1":{
                "title":"Kits Audit Request",
                "type":"object",
                "properties":{
                    "kits":{
                        "title":"Kits",
                        "maxItems":2147483647,
                        "minItems":0,
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request object containing kit IDs."
            },
            "KitDetailsResponse":{
                "title":"KitDetailsResponse",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitTypeName":{
                        "title":"Kit Type Name",
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit1001"
                    },
                    "minKitNumber":{
                        "type":"integer",
                        "description":"Kit minimum number.",
                        "format":"int32",
                        "example":5
                    },
                    "maxKitNumber":{
                        "type":"integer",
                        "description":"Kit maximum number.",
                        "format":"int32",
                        "example":5
                    },
                    "minSequenceNumber":{
                        "type":"integer",
                        "description":"Kit minimum sequence number.",
                        "format":"int32",
                        "example":5
                    },
                    "maxSequenceNumber":{
                        "type":"integer",
                        "description":"Kit maximum sequence number.",
                        "format":"int32",
                        "example":5
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDetailsTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains kit detail response."
            },
            "KitsMaxResponse":{
                "title":"KitsMaxResponse",
                "type":"object",
                "properties":{
                    "suggestedKitNumber":{
                        "title":"Suggested kit number",
                        "type":"integer",
                        "description":"Suggested kit number.",
                        "format":"int64",
                        "example":10
                    },
                    "suggestedSequenceNumber":{
                        "title":"Suggested sequence number",
                        "type":"integer",
                        "description":"Suggested sequence number.",
                        "format":"int64",
                        "example":10
                    }
                },
                "description":"Response object of max kit."
            },
            "PackageType":{
                "type":"object",
                "properties":{
                    "packageType":{
                        "type":"string",
                        "description":"Package type",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "packageTypeId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"int64"
                    }
                },
                "description":"Contains package type detail"
            },
            "PendingDestructionKitCountResponseV1":{
                "title":"PendingDestructionKitCountResponse v1.0",
                "type":"object",
                "properties":{
                    "kitTypes":{
                        "title":"Kit Types Pending Destruction",
                        "type":"array",
                        "description":"List of kit types with pending destruction counts.",
                        "items":{
                            "$ref":"#/components/schemas/PendingDestructionKitCountTO"
                        }
                    }
                },
                "description":"Response object containing pending destruction kit counts."
            },
            "PendingDestructionKitCountTO":{
                "title":"PendingDestructionKitCountTO v1.0",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"ID OF THE KIT",
                        "format":"uuid"
                    },
                    "count":{
                        "title":"Pending Destruction Count",
                        "type":"number",
                        "description":"Number of kits pending destruction.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "kitTypeSourceId":{
                        "type":"string",
                        "format":"uuid",
                        "writeOnly":true
                    }
                },
                "description":"Pending destruction kit counts by kit type."
            },
            "KitDetailsExtTO":{
                "title":"Kit Details Extended",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location.",
                        "example":"1873CDF69E9B48B89B2D9E7951057D09"
                    },
                    "manufacturingLotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "labelGroupId":{
                        "title":"Label Group ID",
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"BLot1101"
                    },
                    "labelGroup":{
                        "title":"Label Group",
                        "type":"string",
                        "description":"Label group.",
                        "example":"Labelgroup1001"
                    },
                    "manufacturingLotExpirationDate":{
                        "type":"string",
                        "description":"Manufacturing lot expiration date.",
                        "format":"date-time"
                    },
                    "blindedLotExpirationDate":{
                        "type":"string",
                        "description":"Blinded lot expiration date.",
                        "format":"date-time"
                    },
                    "prevInventoryStatusId":{
                        "type":"number",
                        "description":"Previous inventory status ID.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "prevInventoryStatus":{
                        "type":"string",
                        "description":"Previous inventory status.",
                        "example":"Dispensed"
                    },
                    "locationChangeList":{
                        "type":"array",
                        "description":"List of objects containing location information.",
                        "items":{
                            "$ref":"#/components/schemas/LocationUpdateTO"
                        }
                    },
                    "prevManufacturingLotNumber":{
                        "type":"string",
                        "description":"Previous manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "prevBlindedLotNumber":{
                        "type":"string",
                        "description":"Previous blinded lot number.",
                        "example":"BLot1101"
                    },
                    "blockNumber":{
                        "type":"string",
                        "description":"Block number.",
                        "example":"1101"
                    },
                    "kitNumberUTF":{
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"KN1101"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Kit details with extended fields used by Integration Hub."
            },
            "LocationUpdateTO":{
                "title":"LocationUpdateTO v1.0",
                "type":"object",
                "properties":{
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location ID.",
                        "example":"1873CDF69E9B48B89B2D9E7951057D09"
                    },
                    "locationChangeDate":{
                        "title":"Location Change Date",
                        "type":"string",
                        "description":"Date when inventory site/depot changed.",
                        "format":"date-time"
                    }
                },
                "description":"Contains location (site/depot) info."
            },
            "SingleKitSetting":{
                "type":"object",
                "properties":{
                    "singleKitSetting":{
                        "type":"string",
                        "description":"Single kit setting"
                    },
                    "singleKitSettingId":{
                        "type":"integer",
                        "description":"Unique Id of single kits setting",
                        "format":"int64"
                    }
                },
                "description":"Contains single kit setting"
            },
            "SDFAddress":{
                "title":"shippingAddress",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique id for site/depot address",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "sdfId":{
                        "type":"string",
                        "description":"Unique id for site/depot",
                        "format":"uuid"
                    },
                    "addressType":{
                        "type":"string",
                        "description":"Type of address name",
                        "example":"Primary/Shipping"
                    },
                    "addressStreet1":{
                        "type":"string",
                        "description":"Address Street1 detail"
                    },
                    "addressStreet2":{
                        "type":"string",
                        "description":"Address Street2 detail"
                    },
                    "addressCity":{
                        "type":"string",
                        "description":"Address city"
                    },
                    "addressCounty":{
                        "type":"string",
                        "description":"Address county"
                    },
                    "addressStateOrProvOrCounty":{
                        "type":"string",
                        "description":"Address state/province/county"
                    },
                    "addressPostalcode":{
                        "type":"string",
                        "description":"Address postal code"
                    },
                    "addressCountry":{
                        "type":"string",
                        "description":"Address country"
                    },
                    "email":{
                        "type":"string",
                        "description":"Email Address"
                    },
                    "fax":{
                        "type":"string",
                        "description":"Fax number"
                    },
                    "phone":{
                        "type":"string",
                        "description":"Phone number"
                    },
                    "address":{
                        "type":"string"
                    }
                },
                "description":"Contains site/depot address."
            },
            "SDFModel":{
                "type":"object",
                "properties":{
                    "sdf":{
                        "$ref":"#/components/schemas/SDFs"
                    },
                    "sdfPropertyList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SDFProperty"
                        }
                    },
                    "sdfAddresses":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SDFAddress"
                        }
                    },
                    "primaryAddress":{
                        "$ref":"#/components/schemas/SDFAddress"
                    },
                    "shippingAddress":{
                        "$ref":"#/components/schemas/SDFAddress"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    },
                    "attention":{
                        "type":"string",
                        "description":"Attention"
                    },
                    "depot":{
                        "type":"boolean",
                        "description":"Is it depot",
                        "example":true
                    },
                    "prinicalInvestigator":{
                        "type":"string"
                    }
                },
                "description":"Contains site and depot detail"
            },
            "SDFs":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique id for site/depot",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "name":{
                        "type":"string",
                        "description":"Site name",
                        "example":"Site1001"
                    },
                    "status":{
                        "type":"string",
                        "description":"Site status",
                        "example":"new",
                        "enum":[
                            "new",
                            "active",
                            "retired"
                        ]
                    },
                    "sdfType":{
                        "type":"string",
                        "description":"Site/Depot type",
                        "example":"Site/Depot"
                    },
                    "studyOrgId":{
                        "type":"string",
                        "description":"Site/Depot org id",
                        "example":"Site1001"
                    },
                    "designId":{
                        "type":"string",
                        "description":"Unique id for design",
                        "format":"uuid"
                    },
                    "designVersionStart":{
                        "type":"string",
                        "description":"Design Version start",
                        "format":"date-time"
                    }
                },
                "description":"Contains site and depot detail"
            },
            "Consignment":{
                "title":"Consignment",
                "type":"object",
                "properties":{
                    "enableTemperatureExecursion":{
                        "type":"string",
                        "description":"Enable temperature excursion.",
                        "example":"N"
                    },
                    "notReceivedDaysToWaitBeforeSiteNotified":{
                        "type":"integer",
                        "description":"Days to wait before site to be notified.",
                        "format":"int32",
                        "example":5
                    },
                    "siteCanRequestManual":{
                        "type":"string",
                        "description":"Site can request manual.",
                        "example":"Y"
                    }
                },
                "description":"Contains consignment detail.",
                "example":{
                    "enableTemperatureExecursion":"N",
                    "notReceivedDaysToWaitBeforeSiteNotified":5,
                    "siteCanRequestManual":"Y"
                }
            },
            "DaysToRun":{
                "title":"DaysToRun",
                "type":"object",
                "properties":{
                    "sunday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Sunday.",
                        "example":true
                    },
                    "monday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Monday.",
                        "example":true
                    },
                    "tuesday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Tuesday.",
                        "example":true
                    },
                    "wednesday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Wednesday.",
                        "example":true
                    },
                    "thursday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Thursday.",
                        "example":true
                    },
                    "friday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Friday.",
                        "example":true
                    },
                    "saturday":{
                        "type":"boolean",
                        "description":"Is inventory to run on Saturday.",
                        "example":true
                    }
                },
                "description":"Days to run inventory detail.",
                "example":{
                    "sunday":false,
                    "monday":true,
                    "tuesday":true,
                    "wednesday":true,
                    "thursday":true,
                    "friday":true,
                    "saturday":false
                }
            },
            "InitialShipments":{
                "title":"InitialShipments",
                "type":"object",
                "properties":{
                    "whenToSend":{
                        "type":"string",
                        "description":"When to send initial shipment.",
                        "example":"AT_SITE_ACTIVATION"
                    },
                    "visitNumber":{
                        "type":"integer",
                        "description":"Visit number.",
                        "format":"int64",
                        "example":5
                    }
                },
                "description":"Contains initial shipment detail.",
                "example":{
                    "whenToSend":"AT_SITE_ACTIVATION",
                    "visitNumber":5
                }
            },
            "InventorySchedule":{
                "title":"InventorySchedule",
                "type":"object",
                "properties":{
                    "daysToRun":{
                        "$ref":"#/components/schemas/DaysToRun"
                    },
                    "timeToRun":{
                        "$ref":"#/components/schemas/TimeToRun"
                    }
                },
                "description":"Contains inventory schedule details.",
                "example":{
                    "daysToRun":{
                        "sunday":false,
                        "monday":true,
                        "tuesday":true,
                        "wednesday":true,
                        "thursday":true,
                        "friday":true,
                        "saturday":false
                    },
                    "timeToRun":{
                        "timeHour":2,
                        "timeMinute":30,
                        "timePeriod":"AM",
                        "timeZone":"UTC"
                    }
                }
            },
            "KitOrdering":{
                "title":"KitOrdering",
                "type":"object",
                "properties":{
                    "allowed":{
                        "type":"string",
                        "description":"Allowed.",
                        "example":"Y"
                    },
                    "blindingGroupsRequired":{
                        "type":"string",
                        "description":"Indicates whether blinding groups are required.",
                        "example":"Y"
                    },
                    "kitsToPreventUnblinding":{
                        "type":"string",
                        "description":"Kits to prevent unblinding.",
                        "example":"2"
                    },
                    "kitType":{
                        "type":"string",
                        "description":"Kit type.",
                        "example":"BOTTLE"
                    }
                },
                "description":"Contains kit ordering detail.",
                "example":{
                    "allowed":"Y",
                    "blindingGroupsRequired":"Y",
                    "kitsToPreventUnblinding":"2",
                    "kitType":"BOTTLE"
                }
            },
            "ResupplyType":{
                "title":"ResupplyType",
                "type":"object",
                "properties":{
                    "resupplyName":{
                        "type":"string",
                        "description":"Resupply name.",
                        "example":"Primary"
                    },
                    "resupplyType":{
                        "type":"string",
                        "description":"Resupply type.",
                        "example":"MINMAX"
                    }
                },
                "description":"Contains resupply detail."
            },
            "SupplySettingResponse":{
                "title":"SupplySettingResponse",
                "type":"object",
                "properties":{
                    "studyIdentifier":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time",
                        "example":"2026-02-21T08:43:01Z"
                    },
                    "initialShipments":{
                        "$ref":"#/components/schemas/InitialShipments"
                    },
                    "resupplyType":{
                        "title":"Resupply Types",
                        "type":"array",
                        "description":"Resupply types.",
                        "example":[
                            {
                                "resupplyName":"Primary",
                                "resupplyType":"MINMAX"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ResupplyType"
                        }
                    },
                    "inventory":{
                        "$ref":"#/components/schemas/InventorySchedule"
                    },
                    "kitOrdering":{
                        "$ref":"#/components/schemas/KitOrdering"
                    },
                    "labelGroups":{
                        "type":"string",
                        "description":"Label group.",
                        "example":"LG-01"
                    },
                    "shippingGroups":{
                        "type":"string",
                        "description":"Shipping group.",
                        "example":"SG-01"
                    },
                    "consignment":{
                        "$ref":"#/components/schemas/Consignment"
                    }
                },
                "description":"Contains supply setting response detail.",
                "example":{
                    "studyIdentifier":"B1B8327AFAA6412287106192AB5984EF",
                    "studyVersionStart":"2026-02-21T08:43:01Z",
                    "initialShipments":{
                        "whenToSend":"AT_SITE_ACTIVATION",
                        "visitNumber":5
                    },
                    "resupplyType":[
                        {
                            "resupplyName":"Primary",
                            "resupplyType":"MINMAX"
                        }
                    ],
                    "inventory":{
                        "daysToRun":{
                            "sunday":false,
                            "monday":true,
                            "tuesday":true,
                            "wednesday":true,
                            "thursday":true,
                            "friday":true,
                            "saturday":false
                        },
                        "timeToRun":{
                            "timeHour":2,
                            "timeMinute":30,
                            "timePeriod":"AM",
                            "timeZone":"UTC"
                        }
                    },
                    "kitOrdering":{
                        "allowed":"Y",
                        "blindingGroupsRequired":"Y",
                        "kitsToPreventUnblinding":"2",
                        "kitType":"BOTTLE"
                    },
                    "labelGroups":"LG-01",
                    "shippingGroups":"SG-01",
                    "consignment":{
                        "enableTemperatureExecursion":"N",
                        "notReceivedDaysToWaitBeforeSiteNotified":5,
                        "siteCanRequestManual":"Y"
                    }
                }
            },
            "TimeToRun":{
                "title":"TimeToRun",
                "type":"object",
                "properties":{
                    "timeHour":{
                        "type":"integer",
                        "description":"Time in hour.",
                        "format":"int32",
                        "example":5
                    },
                    "timeMinute":{
                        "type":"integer",
                        "description":"Time in minute.",
                        "format":"int32",
                        "example":5
                    },
                    "timePeriod":{
                        "type":"string",
                        "description":"Time period.",
                        "example":"AM"
                    },
                    "timeZone":{
                        "type":"string",
                        "description":"Time zone.",
                        "example":"UTC"
                    }
                },
                "description":"Time to run inventory detail.",
                "example":{
                    "timeHour":2,
                    "timeMinute":30,
                    "timePeriod":"AM",
                    "timeZone":"UTC"
                }
            },
            "InventoryUpdatedTO":{
                "title":"InventoryUpdatedTO v1.0",
                "type":"object",
                "properties":{
                    "inventoryUpdated":{
                        "title":"Inventory Updated",
                        "type":"integer",
                        "description":"Number of inventory records updated successfully.",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Object containing number of inventory records updated."
            },
            "KitNumberBarcodeTOV1":{
                "title":"KitNumberBarcodeTO v1.0",
                "type":"object",
                "properties":{
                    "barcode":{
                        "maxLength":1000,
                        "minLength":0,
                        "type":"string",
                        "description":"Barcode of the kit.",
                        "example":"61234"
                    },
                    "kitNumber":{
                        "type":"integer",
                        "description":"Kit number",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Object containing kit number and barcode."
            },
            "UpdateKitsResponseV1":{
                "title":"Update Kits Response v1.0",
                "type":"object",
                "properties":{
                    "noOfRowsUpdated":{
                        "title":"Number of Kits Updated",
                        "type":"integer",
                        "description":"Number of kits updated.",
                        "format":"int32",
                        "example":10
                    }
                },
                "description":"Response object of update kit."
            },
            "KitFiltersRequestV1":{
                "title":"KitFiltersRequest v1.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"ALL_SITES"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "kitStatus":{
                        "type":"string",
                        "description":"Kit status ID.",
                        "example":"1"
                    },
                    "kitRange":{
                        "type":"string",
                        "description":"Kit range.",
                        "example":"SEQUENCE_NUMBER:900:1200"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Request object for kit filters."
            },
            "UpdateKitAttributesRequestV1":{
                "title":"UpdateKitAttributesRequest v1.0",
                "type":"object",
                "properties":{
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "manufacturingLotId":{
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"30100000200000000000000000000005"
                    }
                },
                "description":"Request to update kit attributes."
            },
            "UpdateKitLabelGroupRequest":{
                "type":"object",
                "properties":{
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"ID of the label group.",
                        "format":"uuid"
                    }
                },
                "description":"Request object for kit label."
            },
            "UpdateKitLocationRequest":{
                "type":"object",
                "properties":{
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location of the kit.",
                        "format":"uuid"
                    }
                },
                "description":"Request object to update kit location."
            },
            "UpdateKitStatusRequestV1":{
                "title":"UpdateKitStatusRequest v1.0",
                "required":[
                    "inventoryStatusId"
                ],
                "type":"object",
                "properties":{
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Request to update kit status."
            },
            "SiteKitDetailsResponse":{
                "title":"Site Kit Details Response",
                "type":"object",
                "properties":{
                    "minKitNumber":{
                        "title":"Minimum Kit Number",
                        "type":"integer",
                        "description":"Minimum Kit number.",
                        "format":"int32",
                        "example":10
                    },
                    "maxKitNumber":{
                        "title":"Maximum Kit Number",
                        "type":"integer",
                        "description":"Maximum Kit number.",
                        "format":"int32",
                        "example":10
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Contains site user inventory.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "kitNumber":10001,
                                "inventoryStatusId":10,
                                "inventoryStatus":"Dispensed",
                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "shipmentNumber":"SHIP-0001",
                                "receivedDate":"2026-02-21T23:36:32.079Z",
                                "comment":"Received at site"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SiteUserInventoryTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains site kit detail."
            },
            "SiteUserInventoryTO":{
                "title":"SiteUserInventoryTO",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit/Lot number.",
                        "format":"double",
                        "example":10
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Inventory status.",
                        "example":"Dispensed"
                    },
                    "shipmentNumber":{
                        "title":"Shipment Number",
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"12345"
                    },
                    "receivedDate":{
                        "title":"Received Date",
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date-time",
                        "example":"2016-11-14T23:36:32.079Z"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment for shipment.",
                        "example":"Some description"
                    },
                    "id":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Unique ID for inventory.",
                        "format":"uuid"
                    },
                    "shipmentId":{
                        "title":"Shipment ID",
                        "type":"string",
                        "description":"Order (shipment) ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains site inventory detail.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "kitNumber":10001,
                    "inventoryStatusId":10,
                    "inventoryStatus":"Dispensed",
                    "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "shipmentNumber":"SHIP-0001",
                    "receivedDate":"2026-02-21T23:36:32.079Z",
                    "comment":"Received at site"
                }
            },
            "SiteUserUpdateKitStatusRequest":{
                "title":"SiteUserUpdateKitStatusRequestV1",
                "required":[
                    "inventoryStatusId"
                ],
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason for update",
                        "example":"Some description"
                    }
                },
                "description":"Contains site update kit status request."
            },
            "SiteUserVerifyKitRequest":{
                "required":[
                    "verified"
                ],
                "type":"object",
                "properties":{
                    "verified":{
                        "type":"boolean",
                        "description":"Indicates whether the kit is verified.",
                        "example":true
                    }
                },
                "description":"Contains site user verify kit request."
            },
            "UploadCSVHeaderResponse":{
                "title":"UploadCSVHeaderResponse",
                "type":"object",
                "properties":{
                    "headers":{
                        "title":"Headers",
                        "type":"array",
                        "description":"Contains headers.",
                        "example":[
                            "Kit Number",
                            "Kit Type",
                            "Lot Number"
                        ],
                        "items":{
                            "type":"string"
                        }
                    }
                },
                "description":"Contains CSV header response."
            },
            "InvUploadKitTypeResponse":{
                "title":"InvUploadKitTypeResponse",
                "type":"object",
                "properties":{
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"Contains kit types.",
                        "example":[
                            "KITTYPE-A",
                            "KITTYPE-B"
                        ],
                        "items":{
                            "type":"string"
                        }
                    }
                },
                "description":"Contains inventory upload kit type response."
            },
            "HeaderMapping":{
                "title":"HeaderMapping",
                "required":[
                    "dbHeader",
                    "fileHeader"
                ],
                "type":"object",
                "properties":{
                    "fileHeader":{
                        "type":"string",
                        "description":"File header",
                        "example":"Kit Number"
                    },
                    "dbHeader":{
                        "type":"string",
                        "description":"DB header",
                        "example":"Kit Number"
                    }
                },
                "description":"Contains header mapping.",
                "example":{
                    "fileHeader":"Kit Number",
                    "dbHeader":"KIT_NUMBER"
                }
            },
            "InventoryUploadRequest":{
                "required":[
                    "containsHeadersRow",
                    "fileId"
                ],
                "type":"object",
                "properties":{
                    "fileId":{
                        "type":"string",
                        "description":"ID of the file.",
                        "format":"uuid"
                    },
                    "containsHeadersRow":{
                        "pattern":"[yYnN]",
                        "type":"string",
                        "description":"Specify whether the headers row is included. Default value is 'y'.",
                        "example":"y",
                        "enum":[
                            "y",
                            "n",
                            "Y",
                            "N"
                        ]
                    },
                    "headerMappings":{
                        "title":"Header Mappings",
                        "type":"array",
                        "description":"Header mappings.",
                        "example":[
                            {
                                "fileHeader":"Kit Number",
                                "dbHeader":"KIT_NUMBER"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/HeaderMapping"
                        }
                    },
                    "kitTypeMappings":{
                        "title":"Kit Type Mappings",
                        "type":"array",
                        "description":"Kit type mappings.",
                        "example":[
                            {
                                "kitFromFile":"KITTYPE-A",
                                "kitTypeId":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitTypeMapping"
                        }
                    },
                    "headerMappingsMap":{
                        "type":"object",
                        "additionalProperties":{
                            "$ref":"#/components/schemas/HeaderMapping"
                        }
                    },
                    "containsHeader":{
                        "type":"boolean"
                    }
                },
                "description":"Contains inventory upload details."
            },
            "KitTypeMapping":{
                "title":"KitTypeMapping",
                "required":[
                    "kitFromFile",
                    "kitTypeId"
                ],
                "type":"object",
                "properties":{
                    "kitFromFile":{
                        "type":"string",
                        "description":"Kit upload from file",
                        "example":"Kit1001"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit type mapping.",
                "example":{
                    "kitFromFile":"KITTYPE-A",
                    "kitTypeId":"C36A3197FDEE433FB5547EE83DE99E4B"
                }
            },
            "FileUploadResponse":{
                "title":"FileUploadResponse",
                "type":"object",
                "properties":{
                    "fileId":{
                        "title":"File ID",
                        "type":"string",
                        "description":"Field ID.",
                        "example":"7074779C195A4BF2B5EB0CEFB34BD47F"
                    }
                },
                "description":"Contains file upload response."
            },
            "KitTypesResponse":{
                "title":"KitTypesResponse",
                "type":"object",
                "properties":{
                    "status":{
                        "title":"Status",
                        "type":"string",
                        "description":"Status string.",
                        "example":"success"
                    },
                    "result":{
                        "title":"Result",
                        "type":"array",
                        "description":"List of kit types.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "kitTypeName":"Kit A",
                                "description":"Non-Dosing",
                                "packageTypeId":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitTypesTO"
                        }
                    },
                    "errorData":{
                        "title":"Error Data",
                        "type":"string",
                        "description":"Error data.",
                        "example":"Some string"
                    },
                    "version":{
                        "title":"Version",
                        "type":"number",
                        "description":"Version.",
                        "format":"double",
                        "example":1
                    }
                },
                "description":"Response object containing kit types."
            },
            "KitTypesTO":{
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Kit dosage.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end.",
                        "format":"date-time"
                    },
                    "isDefault":{
                        "type":"string",
                        "description":"Indicate if kit type is default.",
                        "example":"1"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"kit_A"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Some description"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"Kit storage setting.",
                        "example":"REFRIGERATED",
                        "enum":[
                            "AMBIENT",
                            "REFRIGERATED",
                            "FROZEN"
                        ]
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Kit distribution setting.",
                        "example":"BLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED"
                        ]
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial supply type for the kit.",
                        "example":"BOTTLE"
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "minShipUnits":{
                        "type":"number",
                        "description":"Mininum kits to ship.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "bufferdays":{
                        "type":"number",
                        "description":"Buffer days.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"string",
                        "description":"Indicate whether to dispense kits outside window.",
                        "example":"1",
                        "enum":[
                            "0",
                            "1"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier",
                        "format":"uuid"
                    }
                },
                "description":"Contains details about kit types.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "kitTypeName":"Kit A",
                    "description":"Non-Dosing",
                    "packageTypeId":5
                }
            },
            "LabelGroupRequest":{
                "title":"Label Group Request",
                "required":[
                    "countries",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "name":{
                        "maxLength":50,
                        "minLength":1,
                        "type":"string",
                        "description":"Label group name.",
                        "example":"Label1001"
                    },
                    "countries":{
                        "title":"Countries",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of country IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Label group request parameters."
            },
            "LabelGroup":{
                "title":"Label Group",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"Label group name.",
                        "example":"Label1001"
                    },
                    "id":{
                        "type":"string",
                        "description":"ID of the label group.",
                        "format":"uuid"
                    },
                    "countries":{
                        "title":"labelGroupGeographies",
                        "type":"array",
                        "description":"Label group countries.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "name":"United States"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LabelGroupGeography"
                        }
                    }
                },
                "description":"Contains label group detail."
            },
            "LabelGroupGeography":{
                "title":"Label Group Geography",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique ID for label country.",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Label country.",
                        "example":"India"
                    }
                },
                "description":"Contains label group country detail."
            },
            "LabelGroupResponse":{
                "title":"Label Group Response",
                "type":"object",
                "properties":{
                    "labelGroups":{
                        "title":"Label Groups",
                        "type":"array",
                        "description":"Contains label group detail.",
                        "example":[
                            {
                                "id":"8ECE2C9D389645B09740DC7926DEFB69",
                                "name":"US Labels",
                                "countries":[
                                    {
                                        "id":"B1B8327AFAA6412287106192AB5984EF",
                                        "name":"United States"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LabelGroup"
                        }
                    }
                },
                "description":"Contains label group response."
            },
            "LocalSourceSettingsResponse":{
                "title":"LocalSourceSettingsResponse",
                "type":"object",
                "properties":{
                    "locallySourcedCountries":{
                        "type":"array",
                        "example":[
                            {
                                "localSourceId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "versionStart":"2026-01-10T09:15:00Z",
                                "versionEnd":"2026-12-31T23:59:59Z",
                                "operationType":"CREATE",
                                "objectVersionNumber":1,
                                "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                "reason":"Initial enablement.",
                                "comment":"Locally sourced kits enabled for the country.",
                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                "countryId":"B1C2D3E4F5064789A0B1C2D3E4F50647",
                                "enabled":true
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LocalSourceSettingsTo"
                        }
                    },
                    "sourcedBySiteCountries":{
                        "type":"array",
                        "example":[
                            {
                                "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                                "versionStart":"2026-01-10T09:15:00Z",
                                "versionEnd":"2026-12-31T23:59:59Z",
                                "operationType":"CREATE",
                                "objectVersionNumber":1,
                                "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                                "reason":"Initial enablement.",
                                "comment":"Sourced-by-site enabled for the country.",
                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                                "countryId":"9ABCDEF01234567890123456789ABCDE",
                                "enabled":true
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LocalSourceSettingsTo"
                        }
                    }
                },
                "description":"Contains Local Source Settings detail response."
            },
            "LocalSourceSettingsTo":{
                "title":"LocalSourceSettingsTo",
                "type":"object",
                "properties":{
                    "localSourceId":{
                        "title":"Local Source ID",
                        "type":"string",
                        "description":"Local source identifier.",
                        "format":"uuid",
                        "example":"aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time",
                        "example":"2025-01-01T00:00:00Z"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time",
                        "example":"2025-12-31T23:59:59Z"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATE"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"11111111-2222-3333-4444-555555555555"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason.",
                        "example":"Business justification."
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment.",
                        "example":"Additional details."
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid",
                        "example":"99999999-8888-7777-6666-555555555555"
                    },
                    "countryId":{
                        "title":"Country ID",
                        "type":"string",
                        "description":"Country identifier.",
                        "format":"uuid",
                        "example":"12345678-90ab-cdef-1234-567890abcdef"
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled.",
                        "example":true
                    }
                },
                "description":"Contains locally sourced kit settings.",
                "example":[
                    {
                        "localSourceId":"E0F1A2B3C4D567890123456789ABCDEF",
                        "versionStart":"2026-01-10T09:15:00Z",
                        "versionEnd":"2026-12-31T23:59:59Z",
                        "operationType":"CREATE",
                        "objectVersionNumber":1,
                        "userId":"6A1B2C3D4E5F67890123456789ABCDEF",
                        "reason":"Initial enablement.",
                        "comment":"Sourced-by-site enabled for the country.",
                        "kitTypeSrcId":"D313327EF13845169A8ADADDA435431F",
                        "countryId":"9ABCDEF01234567890123456789ABCDE",
                        "enabled":true
                    }
                ]
            },
            "LocalSourceSettingRequestV1":{
                "title":"LocalSourceSettingRequest v1.0",
                "required":[
                    "kitTypeSrcId"
                ],
                "type":"object",
                "properties":{
                    "locallySourcedCountries":{
                        "title":"Locally Sourced Countries",
                        "type":"array",
                        "description":"List of country IDs where kits are locally sourced.",
                        "example":[
                            "B1C2D3E4F5064789A0B1C2D3E4F50647"
                        ],
                        "items":{
                            "title":"Locally Sourced Countries",
                            "type":"string",
                            "description":"List of country IDs where kits are locally sourced.",
                            "format":"uuid"
                        }
                    },
                    "sourcedBySiteCountries":{
                        "title":"Sourced By Site Countries",
                        "type":"array",
                        "description":"List of country IDs where kits are sourced by site.",
                        "example":[
                            "9ABCDEF01234567890123456789ABCDE"
                        ],
                        "items":{
                            "title":"Sourced By Site Countries",
                            "type":"string",
                            "description":"List of country IDs where kits are sourced by site.",
                            "format":"uuid"
                        }
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type source identifier.",
                        "format":"uuid"
                    }
                },
                "description":"Request containing local source settings."
            },
            "ListResponseFactory":{
                "type":"object"
            },
            "LocalSourceSettingUpdateRequestV1":{
                "title":"LocalSourceSettingUpdateRequest v1.0",
                "required":[
                    "enabled"
                ],
                "type":"object",
                "properties":{
                    "locallySourcedCountries":{
                        "title":"Locally Sourced Countries",
                        "type":"array",
                        "description":"List of country IDs where kits are locally sourced.",
                        "example":[
                            "B1C2D3E4F5064789A0B1C2D3E4F50647"
                        ],
                        "items":{
                            "title":"Locally Sourced Countries",
                            "type":"string",
                            "description":"List of country IDs where kits are locally sourced.",
                            "format":"uuid"
                        }
                    },
                    "sourcedBySiteCountries":{
                        "title":"Sourced By Site Countries",
                        "type":"array",
                        "description":"List of country IDs where kits are sourced by site.",
                        "example":[
                        ],
                        "items":{
                            "title":"Sourced By Site Countries",
                            "type":"string",
                            "description":"List of country IDs where kits are sourced by site.",
                            "format":"uuid"
                        }
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether local sourcing is enabled.",
                        "example":true
                    }
                },
                "description":"Request to update local source settings."
            },
            "LotId":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique Id for lot.",
                        "format":"uuid"
                    }
                },
                "description":"Contains lot id."
            },
            "LotRequestV1":{
                "title":"Lot Request",
                "required":[
                    "expirationDate",
                    "manufacturingLotNumber"
                ],
                "type":"object",
                "properties":{
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"LOT-001"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Lot number.",
                        "example":"LOT-001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2}",
                        "type":"string",
                        "description":"Expiration date.",
                        "example":"2025-12-31"
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "maximum":999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "maximum":999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    }
                },
                "description":"Request containing lot details."
            },
            "ManufacturingLotTOV1":{
                "title":"Manufacturing Lot v1.0",
                "type":"object",
                "properties":{
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"Lot1001"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Manufacturing lot details."
            },
            "KitLotDetailsTO":{
                "title":"Kit Lot Details",
                "type":"object",
                "properties":{
                    "kitTypes":{
                        "type":"array",
                        "example":[
                            {
                                "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                                "lots":[
                                    {
                                        "quantity":10,
                                        "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                                        "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                                        "lotName":"LOT-1001"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/KitTypeLotsTO"
                        }
                    }
                },
                "description":"Contains kit types with lots information."
            },
            "KitTypeLotsTO":{
                "title":"Kit Type Lots",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "lots":{
                        "type":"array",
                        "example":[
                            {
                                "quantity":10,
                                "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                                "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                                "lotName":"LOT-1001"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/LotsTO"
                        }
                    }
                },
                "description":"Kit type with lots.",
                "example":[
                    {
                        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                        "lots":[
                            {
                                "quantity":10,
                                "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                                "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                                "lotName":"LOT-1001"
                            }
                        ]
                    }
                ]
            },
            "LotsTO":{
                "title":"Lots",
                "type":"object",
                "properties":{
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "effectiveExpirationDate":{
                        "title":"Effective Expiration Date",
                        "type":"string",
                        "description":"Effective expiration date.",
                        "format":"date-time"
                    },
                    "lotName":{
                        "title":"Lot Name",
                        "type":"string",
                        "description":"Lot name.",
                        "example":"Lot01"
                    }
                },
                "description":"Contains lot details for kits.",
                "example":[
                    {
                        "quantity":10,
                        "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                        "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                        "lotName":"LOT-1001"
                    }
                ]
            },
            "BootStrapCredResponseDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Device instance identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "accessId":{
                        "type":"string",
                        "description":"Client access code generated for a bootstrap device.",
                        "example":"ABC123"
                    },
                    "otp":{
                        "type":"string",
                        "description":"Time-sensitive, one-time authorization code generated by the mHealth Connector Cloud application to bootstrap a device.",
                        "example":"ABCD1234"
                    }
                },
                "description":"Contains details about bootstrap device."
            },
            "MHealthRegisterDeviceRequest":{
                "required":[
                    "inventoryId",
                    "mSubjectId"
                ],
                "type":"object",
                "properties":{
                    "vendorCode":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Vendor code of the cloud to cloud connection type device.",
                        "example":"XYZ123"
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"ID of the inventory.",
                        "format":"uuid"
                    },
                    "mSubjectId":{
                        "type":"string",
                        "description":"ID of the subject in mHealth.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "subjectNumber":{
                        "maxLength":100,
                        "minLength":0,
                        "type":"string",
                        "description":"Subject number.",
                        "example":"siteA-1"
                    }
                },
                "description":"Request object containing mHealth device registration details."
            },
            "NSAddQuantityToLotRequestV1":{
                "title":"NSAddQuantityToLotRequest v1.0",
                "required":[
                    "receivedKits"
                ],
                "type":"object",
                "properties":{
                    "receivedKits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/NSKitTypeQuantityToLotV1"
                        }
                    }
                },
                "description":"Request to add non-serialized kit type quantities to lot."
            },
            "NSKitTypeQuantityToLotV1":{
                "title":"NSKitTypeQuantityToLot v1.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "maximum":999999999,
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":10
                    }
                },
                "description":"KitType quantity object.",
                "example":[
                    {
                        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
                        "quantity":10
                    }
                ]
            },
            "NSKitsAuditResponseV1":{
                "title":"NSKitsAuditResponse v1.0",
                "type":"object",
                "properties":{
                    "nsInventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time",
                        "example":"2026-02-24T09:15:30Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time",
                        "example":"2026-02-24T10:15:30Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"UPDATE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "example":12
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "example":1
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Inventory status correction"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated inventory status to match physical count"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time",
                        "example":"2026-02-24T09:15:30Z"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time",
                        "example":"2026-02-24T09:15:30Z"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time",
                        "example":"2026-02-24T09:15:30Z"
                    },
                    "transactionId":{
                        "type":"string",
                        "description":"Audit transaction ID.",
                        "format":"uuid"
                    },
                    "sdfId":{
                        "type":"string",
                        "description":"Source identifier.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"number",
                        "description":"Kit quantity.",
                        "example":2
                    },
                    "restrictedQuantity":{
                        "type":"number",
                        "description":"Restricted quantity.",
                        "example":2
                    }
                },
                "description":"Response containing audit details for each kit."
            },
            "NsKitFilters":{
                "title":"NsKitFilters v1.0",
                "required":[
                    "kitTypeIds"
                ],
                "type":"object",
                "properties":{
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005 or ALL_SITES or ALL_DEPOTS"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "kitStatus":{
                        "type":"integer",
                        "description":"Kit status ID.",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeIds":{
                        "type":"array",
                        "description":"Kit Type IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Filter criteria for non-serialized kits.",
                "example":{
                    "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                    "location":"SITE",
                    "lotId":"LOT-001",
                    "labelGroupId":"LABEL-GRP-001",
                    "inventoryStatusId":1
                }
            },
            "NsKitFiltersUpdateRequestV1":{
                "title":"NsKitFiltersUpdateRequest v1.0",
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "example":15
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"new kits are available"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    },
                    "kitFilters":{
                        "$ref":"#/components/schemas/NsKitFilters"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request to update non-serialized kits using filters or explicit kit IDs."
            },
            "UpdateNSKitAttributesRequestV1":{
                "title":"UpdateNSKitAttributesRequest v1.0",
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "example":15
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"new kits are available"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "example":1
                    }
                },
                "description":"Request to update non-serialized kit attributes."
            },
            "InventoryDetailsDTO":{
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "rightsNeeded":{
                        "type":"string",
                        "description":"Required rights for the kit.",
                        "example":"ORSUnblinded,ORSUnblindedPharmacist"
                    },
                    "propertyValuesList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/InventoryProperties"
                        }
                    }
                },
                "description":"Contains kit details.",
                "example":{
                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                    "rightsNeeded":"ORSUnblinded"
                }
            },
            "InventoryDetailsResponse":{
                "type":"object",
                "properties":{
                    "kitDetails":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDetailsDTO"
                        }
                    }
                },
                "description":"Response object containing kit details."
            },
            "InventoryProperties":{
                "type":"object",
                "properties":{
                    "propertyName":{
                        "type":"string",
                        "description":"Property key.",
                        "example":"Kit Description"
                    },
                    "codeLIstId":{
                        "type":"string",
                        "description":"Code list identifier.",
                        "example":"KitType,InventoryStatus"
                    },
                    "propertyValue":{
                        "type":"string",
                        "description":"Property value.",
                        "example":"Returned to Site,Vial"
                    },
                    "rightsNeeded":{
                        "type":"string",
                        "description":"Rights string.",
                        "example":"ORSUnblinded,ORSUnblindedPharmacist,ORSBlindedDepotGet"
                    },
                    "codeListIdForBlindedValue":{
                        "type":"string",
                        "description":"Code list ID for blinded value.",
                        "example":"BlindedValues"
                    },
                    "codeListBlindedKeyValue":{
                        "type":"string",
                        "description":"Blinded code list key.",
                        "example":"blinded"
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Source identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "srcType":{
                        "type":"string",
                        "description":"Source type.",
                        "example":"DCSubject"
                    },
                    "propertyValueTimestamp":{
                        "type":"string",
                        "description":"Timestamp when the property value was recorded.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    }
                },
                "description":"Contains the property details.",
                "example":{
                    "propertyId":"TEMPERATURE",
                    "propertyValue":"2-8C"
                }
            },
            "NonSubjectFormRequest":{
                "title":"NonSubjectFormRequest",
                "required":[
                    "kitIds"
                ],
                "type":"object",
                "properties":{
                    "kitIds":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request object containing kit IDs."
            },
            "PartialDispensationSettingsResponseV1":{
                "title":"PartialDispensationSettingsResponse v1.0",
                "type":"object",
                "properties":{
                    "partialDispSettingId":{
                        "type":"string",
                        "description":"ID",
                        "format":"uuid"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason.",
                        "example":"Partial dispensation enabled for protocol"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated visit range for partial dispensation"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"UPDATE"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "startingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "endingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Ending Visit Id.",
                        "format":"uuid"
                    },
                    "endingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Ending Visit Instance Number.",
                        "example":3
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled.",
                        "example":true
                    }
                },
                "description":"Response containing partial dispensation settings."
            },
            "PartialDispensationSettingsRequestV1":{
                "title":"PartialDispensationSettingsRequest v1.0",
                "required":[
                    "enabled",
                    "kitTypeSrcIds",
                    "startingVisitSrcId"
                ],
                "type":"object",
                "properties":{
                    "kitTypeSrcIds":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "uniqueItems":true,
                        "type":"array",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "startingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "endingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Ending Visit Id.",
                        "format":"uuid"
                    },
                    "endingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Ending Visit Instance Number.",
                        "example":3
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Enabled",
                        "example":true
                    }
                },
                "description":"Request containing partial dispensation settings."
            },
            "PartialDispensationUpdateSettingsRequestV1":{
                "title":"PartialDispensationUpdateSettingsRequest v1.0",
                "required":[
                    "enabled",
                    "startingVisitSrcId"
                ],
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "startingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "endingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Ending Visit Id.",
                        "format":"uuid"
                    },
                    "endingVisitInstanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Ending Visit Instance Number.",
                        "example":10
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Enabled",
                        "example":true
                    }
                },
                "description":"Request containing partial dispensation settings to update."
            },
            "CancelReconShipmentRequest":{
                "title":"Cancel Reconciliation Shipment Request",
                "required":[
                    "shipmentIds"
                ],
                "type":"object",
                "properties":{
                    "shipmentIds":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "uniqueItems":true,
                        "type":"array",
                        "description":"Contains shipment IDs.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D",
                            "8ECE2C9D389645B09740DC7926DEFB69"
                        ],
                        "items":{
                            "type":"string",
                            "description":"Contains shipment IDs.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Cancel recon shipment parameters."
            },
            "ReconShipmentDestroyedRequest":{
                "type":"object",
                "description":"Request object containing details for destroying reconciliation shipment."
            },
            "LostShipmentRequest":{
                "required":[
                    "shipmentIds"
                ],
                "type":"object",
                "properties":{
                    "shipmentIds":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"Contains shipment IDs.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D",
                            "8ECE2C9D389645B09740DC7926DEFB69"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request object containing lost shipment details."
            },
            "ReconShipmentReceivedResponse":{
                "title":"ReconShipmentReceivedResponse",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "receivedDate":{
                        "type":"string",
                        "description":"Shipment received for destruction date.",
                        "format":"date-time"
                    },
                    "missingCount":{
                        "type":"integer",
                        "description":"Missing kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "receivedCount":{
                        "type":"integer",
                        "description":"Received kits count.",
                        "format":"int64",
                        "example":5
                    }
                },
                "description":"Received shipment details for destruction response object."
            },
            "ReconShipmentKitTO":{
                "title":"ReconShipmentKitTO",
                "required":[
                    "depotReturnedUnits",
                    "id"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID",
                        "format":"uuid"
                    },
                    "depotReturnedUnits":{
                        "title":"Depot Returned Units",
                        "minimum":0,
                        "type":"number",
                        "description":"Units returned to depot.",
                        "format":"double",
                        "example":5
                    }
                },
                "description":"Request payload to update reconciliation shipment kit details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "depotReturnedUnits":2
                }
            },
            "ReconShipmentReceiveRequest":{
                "required":[
                    "confirmReceiptPerKit"
                ],
                "type":"object",
                "properties":{
                    "receivedKits":{
                        "type":"array",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "depotReturnedUnits":2
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ReconShipmentKitTO"
                        }
                    },
                    "partialUpdate":{
                        "type":"boolean",
                        "description":"Indicates whether kits are updated partially.",
                        "example":true
                    },
                    "confirmReceiptPerKit":{
                        "type":"boolean",
                        "description":"Indicates whether receipt confirmation is per kit.",
                        "example":true
                    }
                },
                "description":"Request object containing shipment received for destruction details."
            },
            "ShipmentReceivedDateRequest":{
                "required":[
                    "receivedDate"
                ],
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "receivedDate":{
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date",
                        "example":"2019-06-17"
                    }
                },
                "description":"Shipment received date parameters."
            },
            "ShipmentShipDateRequest":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date in YYYY-MM-DD format.",
                        "format":"date",
                        "example":"2019-06-17"
                    }
                },
                "description":"Shipment ship date parameters."
            },
            "ShipmentTrackingDetailsRequest":{
                "title":"Shipment Tracking Details Request",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "trackingNumber":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "maxLength":2048,
                        "minLength":0,
                        "pattern":"^$|^(https?)://.+$",
                        "type":"string",
                        "description":"URL for tracking the shipment.",
                        "format":"uri",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Shipment Tracking Details parameters."
            },
            "ReportBaseResponse":{
                "title":"ReportBaseResponse",
                "type":"object",
                "properties":{
                    "result":{
                        "$ref":"#/components/schemas/PaginatedResponseDto"
                    },
                    "status":{
                        "title":"Status",
                        "type":"string",
                        "description":"Status of request.",
                        "example":"success"
                    },
                    "errorData":{
                        "title":"Error Data",
                        "type":"string",
                        "description":"Detail of error.",
                        "example":"Validation error"
                    }
                },
                "description":"Response object for report APIs."
            },
            "SiteResupply":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Resupply site id",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comments",
                        "example":"Some comments"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object Version Number.",
                        "format":"double",
                        "example":5
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"MODIFIED",
                        "enum":[
                            "CREATED",
                            "REMOVED",
                            "MODIFIED"
                        ]
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Some reason"
                    },
                    "resupplyId":{
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    },
                    "resupplyVersionStart":{
                        "type":"string",
                        "description":"Resupply version start",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software Version Number.",
                        "format":"double",
                        "example":2
                    },
                    "userId":{
                        "type":"string",
                        "description":"User id",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "subjectVisitId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Site resupply details."
            },
            "DepotResupplyRequestV1":{
                "title":"DepotResupplyRequest v1.0",
                "type":"object",
                "properties":{
                    "depotId":{
                        "title":"Depot ID",
                        "type":"string",
                        "description":"Depot ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Depot resupply request object."
            },
            "SiteResupplyResponse":{
                "title":"SiteResupplyResponse",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"ID",
                        "type":"string",
                        "description":"ID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment.",
                        "example":"Some comments"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "format":"double",
                        "example":5
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"MODIFIED",
                        "enum":[
                            "CREATED",
                            "REMOVED",
                            "MODIFIED"
                        ]
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason.",
                        "example":"Some reason"
                    },
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    },
                    "resupplyVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Resupply version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number.",
                        "format":"double",
                        "example":2
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "subjectVisitId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Site resupply details."
            },
            "SiteResupplyRequestV1":{
                "title":"SiteResupplyRequest v1.0",
                "type":"object",
                "properties":{
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Site resupply request object."
            },
            "ResupplyGroupRequest.KitTypeSummary":{
                "title":"KitTypeSummary v1.0",
                "required":[
                    "id"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "minBuffer":{
                        "minimum":0,
                        "type":"number",
                        "description":"The number of kits that trigger a shipment when the resupply strategy runs.",
                        "format":"double",
                        "example":5
                    },
                    "maxBuffer":{
                        "minimum":0,
                        "type":"number",
                        "description":"The number of kits that will be present at the site after a resupply shipment arrives.",
                        "format":"double",
                        "example":50
                    },
                    "initialShippingUnits":{
                        "maximum":99,
                        "minimum":0,
                        "type":"number",
                        "description":"The number of kits of each type that are in the initial shipment.",
                        "format":"double",
                        "example":50
                    },
                    "manualConsignment":{
                        "maximum":99,
                        "minimum":0,
                        "type":"number",
                        "description":"The number of kits of each type that are included in a manual shipment.",
                        "format":"double",
                        "example":50
                    },
                    "triggerWeeks":{
                        "maximum":99,
                        "minimum":0,
                        "type":"number",
                        "description":"The number of weeks that the resupply strategy looks out to determine the supply.",
                        "format":"double",
                        "example":3
                    },
                    "resupplyWeeks":{
                        "maximum":99,
                        "minimum":0,
                        "type":"number",
                        "description":"The number of weeks that the resupply strategy resupplies for.",
                        "format":"double",
                        "example":3
                    }
                },
                "description":"Kit type summary details object."
            },
            "ResupplyGroupRequestV1":{
                "title":"Resupply Group Request",
                "required":[
                    "kitTypes",
                    "resupplyName",
                    "resupplyTypeId"
                ],
                "type":"object",
                "properties":{
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    },
                    "resupplyName":{
                        "title":"Resupply Name",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Resupply name.",
                        "example":"Resupply 1"
                    },
                    "resupplyTypeId":{
                        "type":"integer",
                        "description":"Resupply group type.",
                        "format":"int32",
                        "example":2
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"Kit type summary.",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroupRequest.KitTypeSummary"
                        }
                    }
                },
                "description":"Request containing resupply group details."
            },
            "SiteResuppliesResponse":{
                "title":"SiteResuppliesResponse",
                "type":"object",
                "properties":{
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "resupplyName":{
                        "title":"Resupply Name",
                        "type":"string",
                        "description":"Resupply name.",
                        "example":"Resupply 1"
                    }
                },
                "description":"Site resupply response object."
            },
            "ResupplyGroup":{
                "title":"ResupplyGroup",
                "type":"object",
                "properties":{
                    "resupplyName":{
                        "title":"Resupply Name",
                        "type":"string",
                        "description":"Resupply name.",
                        "example":"Resupply 1"
                    },
                    "resupplyTypeId":{
                        "title":"Resupply Type ID",
                        "type":"number",
                        "description":"ID of the resupply type.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitTypes":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroupResponse.KitTypeSummary"
                        }
                    },
                    "type":{
                        "title":"Resupply Group Type",
                        "type":"string",
                        "description":"Resupply group type.",
                        "example":"Site"
                    },
                    "id":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    }
                },
                "description":"Resupply group details."
            },
            "ResupplyGroupResponse":{
                "title":"ResupplyGroupResponse",
                "type":"object",
                "properties":{
                    "resupplies":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroup"
                        }
                    }
                },
                "description":"Response object for resupply group."
            },
            "ResupplyGroupResponse.KitTypeSummary":{
                "title":"KitTypeSummary v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "example":"kitA"
                    },
                    "kitTypeName":{
                        "title":"Kit Type Name",
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "minBuffer":{
                        "type":"number",
                        "description":"The number of kits that trigger a shipment when the resupply strategy runs.",
                        "format":"double",
                        "example":5
                    },
                    "maxBuffer":{
                        "type":"number",
                        "description":"The number of kits that will be present at the site after a resupply shipment arrives.",
                        "format":"double",
                        "example":50
                    },
                    "initialShippingUnits":{
                        "type":"number",
                        "description":"The number of kits of each type that are in the initial shipment.",
                        "format":"double",
                        "example":50
                    },
                    "manualConsignment":{
                        "type":"number",
                        "description":"The number of kits of each type that are included in a manual shipment.",
                        "format":"double",
                        "example":50
                    },
                    "triggerWeeks":{
                        "type":"number",
                        "description":"The number of weeks that the resupply strategy looks out to determine the supply.",
                        "format":"double",
                        "example":3
                    },
                    "resupplyWeeks":{
                        "type":"number",
                        "description":"The number of weeks that the resupply strategy resupplies for.",
                        "format":"double",
                        "example":3
                    }
                },
                "description":"Kit type summary details object.",
                "example":{
                    "id":"938D23FA6B7241CCA41BD627E5DB60DA",
                    "name":"Dose Kit"
                }
            },
            "InitialResupplyRequest":{
                "required":[
                    "siteId"
                ],
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    }
                },
                "description":"Initial resupply request object."
            },
            "KitRequest":{
                "title":"Kit Request",
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "maximum":999,
                        "exclusiveMaximum":false,
                        "minimum":0,
                        "exclusiveMinimum":false,
                        "type":"number",
                        "description":"Kit quantity.",
                        "example":2
                    }
                },
                "description":"Request containing kits details."
            },
            "ManualSupplyRequestV1":{
                "title":"ManualSupplyRequest v1.0",
                "required":[
                    "siteId"
                ],
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "kits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitRequest"
                        }
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    }
                },
                "description":"Request containing manual supply details."
            },
            "ResupplyRequestV1":{
                "title":"ResupplyRequest v1.0",
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    }
                },
                "description":"Resupply request object."
            },
            "ManualResupplyResponse":{
                "title":"ManualResupplyResponse",
                "type":"object",
                "properties":{
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "status":{
                        "type":"string",
                        "description":"Order status.",
                        "example":"DESTROYED",
                        "enum":[
                            "PENDING",
                            "INTRANSIT",
                            "RECEIVED",
                            "CANCELLED",
                            "LOST",
                            "CONFIRMED",
                            "INVALID",
                            "PENDING_DESTRUCTION",
                            "RECEIVED_FOR_DESTRUCTION",
                            "DESTROYED"
                        ]
                    }
                },
                "description":"Manual resupply response object."
            },
            "DepotShipmentKitRequest_v2":{
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"string",
                        "description":"Kit quantity",
                        "example":"2"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"ID of the lot.",
                        "format":"uuid"
                    }
                },
                "description":"Contains lot details for depot shipment creation.",
                "example":[
                    {
                        "kitTypeId":"B1B8327AFAA6412287106192AB5984EF",
                        "quantity":"2"
                    }
                ]
            },
            "ManualDepotSupplyRequest_v2":{
                "title":"ManualDepotSupplyRequest v2.0",
                "required":[
                    "shippedFrom",
                    "shippedTo"
                ],
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "kits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DepotShipmentKitRequest_v2"
                        }
                    },
                    "shippedFrom":{
                        "type":"string",
                        "description":"Source depot ID.",
                        "format":"uuid"
                    },
                    "shippedTo":{
                        "type":"string",
                        "description":"Destination depot ID.",
                        "format":"uuid"
                    },
                    "transactionId":{
                        "type":"string",
                        "description":"Transaction ID.",
                        "format":"uuid"
                    }
                },
                "description":"Manual depot-to-depot supply v2 request object."
            },
            "Treatment":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the treatment",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "description":{
                        "type":"string",
                        "description":"Treatment description",
                        "example":"Treatment description"
                    },
                    "externalTreatmentId":{
                        "type":"string",
                        "description":"External treatment identifier.",
                        "example":"Treatment A"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Treatment short name",
                        "example":"TxA"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "format":"date-time"
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Internal ID of treatment",
                        "format":"uuid"
                    },
                    "srcVersionStart":{
                        "type":"string",
                        "description":"Internal version start of treatment",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type on the record, can have values CREATED, MODIFIED or REMOVED",
                        "example":"MODIFIED",
                        "enum":[
                            "CREATED",
                            "MODIFIED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Audit trail field that represents the version number of the data.",
                        "format":"double",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number",
                        "format":"double",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"Unique user identifier representing the clinicalone user who modified or interacted with the subject record. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason",
                        "example":"Some reason"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment",
                        "example":"Some comment"
                    },
                    "treatmentId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Contains treatment details."
            },
            "RndDesignListRequest":{
                "required":[
                    "randDesignSrcIds"
                ],
                "type":"object",
                "properties":{
                    "randDesignSrcIds":{
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Randomization design ID.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request object for randomization design list."
            },
            "GenerateResponse":{
                "title":"GenerateResponse",
                "type":"object",
                "properties":{
                    "listId":{
                        "title":"List ID",
                        "type":"string",
                        "description":"Unique ID of generated randomization list.",
                        "example":"9ECA4FA65076451DA7D47D59367D15A5"
                    },
                    "noOfRowsGenerated":{
                        "title":"Number of Rows Generated",
                        "type":"integer",
                        "description":"Number of rows generated for the randomization list.",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Response object for created randomization list."
            },
            "GenerateRndListRequest":{
                "required":[
                    "initialRandNumber",
                    "srcId",
                    "srcVersionStart",
                    "title",
                    "treatmentRatioMultiplier"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "title":"Title",
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization list title.",
                        "example":"Randomization List 001"
                    },
                    "description":{
                        "maxLength":2000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization list description.",
                        "example":"Randomization list with demographic cohort"
                    },
                    "treatmentRatioMultiplier":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"Multiplier for blocks.",
                        "format":"int32",
                        "example":5
                    },
                    "initialRandNumber":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Starting number.",
                        "format":"int64",
                        "example":1
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Unique ID.",
                        "format":"uuid"
                    },
                    "srcVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "noOfRows":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of rows.",
                        "format":"int32",
                        "example":5
                    },
                    "blocks":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerStratum":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per stratum.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerCohort":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per cohort.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerStratumPerCohort":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per stratum per cohort.",
                        "format":"int32",
                        "example":5
                    },
                    "mode":{
                        "type":"string",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "example":"test",
                        "enum":[
                            "test",
                            "active",
                            "training"
                        ]
                    }
                },
                "description":"Request object to create randomization list."
            },
            "RegionRandListTO":{
                "title":"RegionRandListTO",
                "type":"object",
                "properties":{
                    "regionId":{
                        "type":"string",
                        "description":"Unique ID for region.",
                        "format":"uuid"
                    },
                    "randListId":{
                        "type":"string",
                        "description":"Unique ID for randomization list.",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Region name.",
                        "example":"Asia, Europe"
                    }
                },
                "description":"Contains region rand list detail."
            },
            "RandNumStatusesResponse":{
                "title":"Random Number Statuses Response",
                "type":"object",
                "properties":{
                    "randNumberStatus":{
                        "title":"Random Number Status",
                        "type":"string",
                        "description":"Random Number status.",
                        "example":"Available",
                        "enum":[
                            "Unapproved",
                            "Available",
                            "Inactive",
                            "Assigned",
                            "Randomized in error"
                        ]
                    },
                    "id":{
                        "title":"ID",
                        "type":"integer",
                        "description":"Unique ID.",
                        "format":"int64",
                        "example":10
                    }
                },
                "description":"Contains Random number status detail."
            },
            "RandListBlockTO":{
                "title":"RandListBlockTO",
                "type":"object",
                "properties":{
                    "block":{
                        "type":"number",
                        "description":"Block number",
                        "format":"double",
                        "example":10
                    },
                    "blockedBy":{
                        "type":"string",
                        "description":"Unique ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Contains randomization list block details."
            },
            "RandListTO":{
                "title":"RandListTO v6.0",
                "type":"object",
                "properties":{
                    "randListId":{
                        "type":"string",
                        "description":"Unique ID for randomization list.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-01-01T12:34:56Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2025-01-02T08:00:00Z"
                    },
                    "name":{
                        "type":"string",
                        "description":"Name of randomization list",
                        "example":"UPL_RL191_V1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Description of randomization list",
                        "example":"Randomization list with demographic cohort"
                    },
                    "isStratified":{
                        "type":"string",
                        "description":"Is randomization list stratified",
                        "example":"n,y"
                    },
                    "isBlocked":{
                        "type":"string",
                        "description":"Is randomization list for blocked algorithm",
                        "example":"n,y"
                    },
                    "isDynamic":{
                        "type":"string",
                        "description":"Is randomization list dynamic",
                        "example":"n,y"
                    },
                    "inUse":{
                        "type":"string",
                        "description":"Is randomization list is in use",
                        "example":"n,y"
                    },
                    "blockedBy":{
                        "type":"string",
                        "description":"Randomization list blocked by type of randomization",
                        "example":"none,country,region,site"
                    },
                    "isCohortBased":{
                        "type":"string",
                        "description":"Indicates whether the randomization is cohort based.",
                        "example":"y"
                    },
                    "isMinimization":{
                        "title":"Minimization List",
                        "type":"string",
                        "description":"Is randomization list for minimization randomization design",
                        "example":"n,y"
                    },
                    "lastAssctdRandDesignSrcId":{
                        "title":"Last Associated Randomization Design ID",
                        "type":"string",
                        "description":"Unique Id for the last associated randomization design.",
                        "format":"uuid"
                    },
                    "lastAssctdStudyVersion":{
                        "title":"Last Associated Study Version",
                        "type":"string",
                        "description":"Version of the last associated study",
                        "format":"UUID",
                        "example":"1.0.1"
                    },
                    "useSequenceNumber":{
                        "type":"string",
                        "description":"Indicates whether the randomization list includes a sequence number.",
                        "example":"y"
                    },
                    "firstAssctdRandDesignSrcId":{
                        "title":"First Associated Randomization Design ID",
                        "type":"string",
                        "description":"Unique Id for the first associated randomization design.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "firstAssctdStudyVersion":{
                        "title":"First Associated Study Version",
                        "type":"string",
                        "description":"Version of the first associated study.",
                        "example":"1.0.1"
                    },
                    "cohortType":{
                        "title":"Cohort Type",
                        "type":"string",
                        "description":"Cohort type for the randomization list.",
                        "example":"Adaptive"
                    }
                },
                "description":"Contains randomization list details."
            },
            "RndListDesign":{
                "title":"RndListDesign",
                "type":"object",
                "properties":{
                    "randDesignSrcId":{
                        "type":"string",
                        "description":"Unique ID for randomization design.",
                        "format":"uuid"
                    },
                    "randDesignName":{
                        "type":"string",
                        "description":"Randomization design name",
                        "example":"UPL_RL191_V1001"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.1"
                    }
                },
                "description":"Contains Randomization design detail.",
                "example":{
                    "randDesignId":"8ECE2C9D389645B09740DC7926DEFB69",
                    "randDesignName":"Design A"
                }
            },
            "RndListDesignList":{
                "title":"RndListDesignList",
                "type":"object",
                "properties":{
                    "randListId":{
                        "type":"string",
                        "description":"Unique ID for randomization list.",
                        "format":"uuid"
                    },
                    "randListName":{
                        "type":"string",
                        "description":"Randomization list name",
                        "example":"UPL_RL191_V1001"
                    },
                    "randomizationSeed":{
                        "title":"Randomization Seed",
                        "type":"number",
                        "description":"Seed number.",
                        "format":"double",
                        "example":5
                    },
                    "useSequenceNumber":{
                        "title":"useSequenceNumber",
                        "type":"boolean",
                        "description":"Indicates whether the randomization list includes a sequence number.",
                        "example":false
                    },
                    "randDesigns":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RndListDesign"
                        }
                    }
                },
                "description":"Contains randomization list with associated randomization designs."
            },
            "RandNumberStatusTO":{
                "title":"RandNumberStatusTO",
                "required":[
                    "randNumberId",
                    "randStatusId"
                ],
                "type":"object",
                "properties":{
                    "randNumberId":{
                        "type":"string",
                        "description":"Unique ID for random number",
                        "format":"uuid"
                    },
                    "randStatusId":{
                        "type":"integer",
                        "description":"Random number status ID.",
                        "format":"int32",
                        "example":5
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Description for reason",
                        "example":"Reason for status change"
                    }
                },
                "description":"Request Object for random number status"
            },
            "RndListBlockRequest":{
                "title":"Randomization List Block Request",
                "required":[
                    "block",
                    "blockedBy"
                ],
                "type":"object",
                "properties":{
                    "block":{
                        "type":"integer",
                        "description":"Block number.",
                        "format":"int32",
                        "example":5
                    },
                    "blockedBy":{
                        "type":"string",
                        "description":"Blocked by site, country, etc.",
                        "example":"Site1001"
                    }
                },
                "description":"Randomization block request object.",
                "example":{
                    "blockSize":4,
                    "blockCount":10
                }
            },
            "RndListBlocks":{
                "required":[
                    "blocks"
                ],
                "type":"object",
                "properties":{
                    "blocks":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "example":[
                            {
                                "blockSize":4,
                                "blockCount":10
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RndListBlockRequest"
                        }
                    }
                },
                "description":"Request object to create randomization list block."
            },
            "RndListMappingResponse":{
                "title":"RndListMappingResponse",
                "type":"object",
                "properties":{
                    "treatments":{
                        "title":"Treatments",
                        "type":"array",
                        "description":"Contains treatment.",
                        "example":[
                            "Treatment A",
                            "Treatment B"
                        ],
                        "items":{
                            "type":"string"
                        }
                    },
                    "stratums":{
                        "title":"Stratums",
                        "type":"array",
                        "description":"Contains stratums.",
                        "example":[
                            "Male",
                            "Female"
                        ],
                        "items":{
                            "type":"string"
                        }
                    },
                    "cohorts":{
                        "title":"Cohorts",
                        "type":"array",
                        "description":"Contains cohorts.",
                        "example":[
                            "Cohort 1",
                            "Cohort 2"
                        ],
                        "items":{
                            "type":"string"
                        }
                    }
                },
                "description":"Contains randomization list mapping detail with treatment, stratum and cohort."
            },
            "DataMapping":{
                "type":"object",
                "properties":{
                    "dataFromFile":{
                        "type":"string",
                        "description":"Data from file.",
                        "example":"TA"
                    },
                    "dataId":{
                        "type":"string",
                        "description":"Unique data Id.",
                        "format":"uuid"
                    }
                },
                "description":"Contains data mapping.",
                "example":{
                    "sourceValue":"Cohort-1",
                    "targetValue":"Cohort 1"
                }
            },
            "RndListUploadRequest":{
                "title":"Randomization List Upload Request",
                "required":[
                    "containsHeadersRow",
                    "fileId"
                ],
                "type":"object",
                "properties":{
                    "fileId":{
                        "type":"string",
                        "description":"Unique ID for field.",
                        "format":"uuid"
                    },
                    "containsHeadersRow":{
                        "pattern":"[yYnN]",
                        "type":"string",
                        "description":"Contains Headers Row.",
                        "example":"y",
                        "enum":[
                            "y",
                            "n",
                            "Y",
                            "N"
                        ]
                    },
                    "headerMappings":{
                        "type":"array",
                        "example":[
                            {
                                "csvHeader":"Treatment",
                                "targetField":"treatment"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/HeaderMapping"
                        }
                    },
                    "treatmentMappings":{
                        "type":"array",
                        "example":[
                            {
                                "sourceValue":"TRT-A",
                                "targetValue":"Treatment A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DataMapping"
                        }
                    },
                    "stratumMappings":{
                        "type":"array",
                        "example":[
                            {
                                "sourceValue":"Male",
                                "targetValue":"Male"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DataMapping"
                        }
                    },
                    "cohortMappings":{
                        "type":"array",
                        "example":[
                            {
                                "sourceValue":"Cohort-1",
                                "targetValue":"Cohort 1"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DataMapping"
                        }
                    },
                    "headerMappingsMap":{
                        "type":"object",
                        "additionalProperties":{
                            "$ref":"#/components/schemas/HeaderMapping"
                        }
                    },
                    "containsHeader":{
                        "type":"boolean"
                    }
                },
                "description":"Contains randomization list mapping detail such as headers, treatment, stratums and cohorts."
            },
            "DesignerResponse":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"object"
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "ShipmentAddKitsRequest":{
                "required":[
                    "kits"
                ],
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "kits":{
                        "minItems":1,
                        "type":"array",
                        "description":"Contains kit IDs",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "nsKits":{
                        "type":"array",
                        "description":"Contains kit IDs.",
                        "example":[
                            {
                                "lotId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                "quantity":24
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentAddNonSerializedKitRequest"
                        }
                    }
                },
                "description":"Request object containing kits to be added to shipment."
            },
            "PoolingShipmentResponseV1":{
                "title":"PoolingShipmentResponse v1.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    }
                },
                "description":"Response object containing pooling shipment details."
            },
            "PoolingKits":{
                "title":"PoolingKits v1.0",
                "required":[
                    "kitNumber",
                    "manufacturingLotNumber",
                    "sequenceNumber"
                ],
                "type":"object",
                "properties":{
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"string",
                        "description":"Kit number.",
                        "example":"5"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"61234"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"5"
                    },
                    "poolingId":{
                        "title":"Pooling ID",
                        "type":"string",
                        "description":"Pooling ID.",
                        "example":"PooledKitA"
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Lot A"
                    },
                    "itemNumber":{
                        "title":"Item Number",
                        "type":"string",
                        "description":"Item number.",
                        "example":"i"
                    }
                },
                "description":"Object containing Kit details",
                "example":{
                    "kitNumber":"KIT-000123",
                    "poolingGroupId":"2"
                }
            },
            "PoolingShipmentRequestV1":{
                "title":"PoolingShipmentRequest v1.0",
                "required":[
                    "kits",
                    "shipDate"
                ],
                "type":"object",
                "properties":{
                    "shipDate":{
                        "title":"Ship Date",
                        "pattern":"(\\d){2}-[a-zA-Z]{3}-(\\d){4}",
                        "type":"string",
                        "description":"Ship date.",
                        "example":"12-May-2023"
                    },
                    "kits":{
                        "title":"Kits",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of pooling kits.",
                        "items":{
                            "$ref":"#/components/schemas/PoolingKits"
                        }
                    },
                    "trackingNumber":{
                        "title":"Tracking Number",
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"123456"
                    },
                    "deliveryNumber":{
                        "title":"Delivery Number",
                        "type":"string",
                        "description":"Delivery number.",
                        "example":"88888"
                    },
                    "shipmentNumber":{
                        "title":"Shipment Number",
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"Site1"
                    }
                },
                "description":"Request containing pooling shipment details."
            },
            "NSOrderInventoryResponse":{
                "title":"NSOrderInventoryResponse",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderNSInventoryTO"
                        }
                    }
                },
                "description":"Contains non-serialized order inventory response."
            },
            "OrderNSInventoryTO":{
                "title":"OrderNSInventoryTO v1.0",
                "type":"object",
                "properties":{
                    "orderItemId":{
                        "title":"Order Item ID",
                        "type":"string",
                        "description":"Order item identifier.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "nsInventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Non-serialized inventory ID.",
                        "format":"uuid"
                    },
                    "nsInventoryVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Non-serialized inventory version start timestamp.",
                        "format":"date-time"
                    },
                    "orderId":{
                        "title":"Order ID",
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    },
                    "orderVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Order version start date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number."
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number."
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment."
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity."
                    },
                    "shipmentNumber":{
                        "title":"Shipment Number",
                        "type":"string",
                        "description":"Shipment number."
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number."
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains non-serialized order inventory details.",
                "example":[
                    {
                        "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ]
            },
            "OrderItemResponse":{
                "title":"OrderItemResponse",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderItemTO"
                        }
                    }
                },
                "description":"Contains order items in paginated format."
            },
            "OrderItemTO":{
                "title":"OrderItemTO v1.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventoryVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "orderId":{
                        "title":"Order ID",
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    },
                    "orderVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Order version start date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number."
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number."
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment."
                    },
                    "orderItemId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Contains order item details.",
                "example":[
                    {
                        "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ]
            },
            "ShipmentTO":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "destinationId":{
                        "type":"string",
                        "description":"Destination ID.",
                        "format":"uuid"
                    },
                    "destinationName":{
                        "type":"string",
                        "description":"Destination name.",
                        "example":"Site Houston"
                    },
                    "destinationShortName":{
                        "type":"string",
                        "description":"Destination short name.",
                        "example":"st_hstn"
                    },
                    "originId":{
                        "type":"string",
                        "description":"Origin ID.",
                        "format":"uuid"
                    },
                    "originName":{
                        "type":"string",
                        "description":"Origin name.",
                        "example":"Depot Houston"
                    },
                    "originShortName":{
                        "type":"string",
                        "description":"Origin short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "quarantineKitCount":{
                        "type":"number",
                        "description":"Number of kits in quarantine on the shipment.",
                        "format":"Integer",
                        "example":10
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"Manual"
                    },
                    "lastStatusUpdateDate":{
                        "title":"Last Status Update Date",
                        "type":"string",
                        "description":"Last status update date of the shipment.",
                        "format":"date-time"
                    },
                    "kitCountsByStatusId":{
                        "title":"Kit Counts By Status ID",
                        "type":"object",
                        "additionalProperties":{
                            "title":"Kit Counts By Status ID",
                            "type":"integer",
                            "description":"Map of kit counts grouped by status ID.",
                            "format":"int64"
                        },
                        "description":"Map of kit counts grouped by status ID."
                    },
                    "shipmentReceivedDate":{
                        "title":"Shipment received date",
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date-time"
                    },
                    "shipmentRegisteredDate":{
                        "title":"Shipment registered date ",
                        "type":"string",
                        "description":"Shipment registered date.",
                        "format":"date-time"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                }
            },
            "ViewShipmentResponse":{
                "title":"ViewShipmentResponse",
                "type":"object",
                "properties":{
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"Shipments list.",
                        "example":[
                            {
                                "shipmentId":"SHIP-0001",
                                "siteId":"B1B8327AFAA6412287106192AB5984EF",
                                "siteName":"Site 001",
                                "depotId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "depotName":"Main Depot",
                                "statusId":1,
                                "shipmentNumber":"00012345",
                                "createdDate":"2025-01-01T12:00:00Z",
                                "shipDate":"2025-01-02T09:30:00Z",
                                "trackingNumber":"1Z999AA10123456784"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains shipments search result."
            },
            "ShipmentEligibleKitTOV1":{
                "title":"ShipmentEligibleKitTO v1.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit/Lot number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time",
                        "example":"2025-05-09T00:00:00Z"
                    },
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit details belonging to shipment.",
                "example":{
                    "kitId":"B1B8327AFAA6412287106192AB5984EF",
                    "kitNumber":"KIT-000123"
                }
            },
            "ShipmentEligibleKitsResponseV1":{
                "title":"ShipmentEligibleKitsResponse v1.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentEligibleKitTOV1"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Response object containing kits belonging to shipment."
            },
            "ShipmentKitsResponse.KitTypeSummaryV1":{
                "title":"ShipmentKitsResponse.KitTypeSummary v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageTypeKey":{
                        "type":"string",
                        "description":"Package type key.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of serialized kits.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitV1"
                        }
                    }
                },
                "description":"Kit type summary details object.",
                "example":{
                    "id":"B1B8327A-FAA6-4122-8710-6192AB5984EF",
                    "kitTypeName":"Kit A"
                }
            },
            "ShipmentKitsResponse.KitV1":{
                "title":"ShipmentKitsResponse.Kit v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    }
                },
                "description":"Kit details object."
            },
            "ShipmentKitsResponseV1":{
                "title":"ShipmentKitsResponse v1.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "kitTypes":{
                        "title":"ShipmentKitsResponse.KitTypes",
                        "type":"array",
                        "description":"List of kit type summaries.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitTypeSummaryV1"
                        }
                    }
                },
                "description":"Response object containing shipment kits details."
            },
            "InventoryDTO":{
                "title":"InventoryDTO v2.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "type":"number",
                        "description":"Do Not Count (DNC) Days.",
                        "format":"double",
                        "example":5
                    },
                    "doNotShip":{
                        "type":"number",
                        "description":"Do Not Ship (DNS) Days.",
                        "format":"double",
                        "example":5
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"24-1"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"245"
                    },
                    "blocknumber":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains details of inventories."
            },
            "OrderDTOV1":{
                "title":"OrderDTO v1.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains order related details.",
                "example":{
                    "id":"C36A3197FDEE433FB5547EE83DE99E4B"
                }
            },
            "OrderInventoryDTOV1":{
                "title":"OrderInventoryDTO v1.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV1"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTO"
                        }
                    },
                    "version":{
                        "title":"Version",
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderStatus":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each Order status value (1 for PENDING, 2 for IN TRANSIT, 3 for RECEIVED, 4 for CANCELLED, 5 for LOST, 6 for CONFIRMED, 7 for INVALID, 8 for PENDING DESTRUCTION, 9 for RECEIVED FOR DESTRUCTION, 10 for DESTROYED).",
                        "format":"int64",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "status":{
                        "type":"string",
                        "description":"Order status",
                        "example":"PENDING",
                        "enum":[
                            "PENDING",
                            "IN TRANSIT",
                            "RECEIVED",
                            "CANCELLED",
                            "LOST",
                            "CONFIRMED",
                            "INVALID",
                            "PENDING DESTRUCTION",
                            "RECEIVED FOR DESTRUCTION",
                            "DESTROYED",
                            "QUARANTINED"
                        ]
                    }
                },
                "description":"Order status details object."
            },
            "CancelShipmentRequest":{
                "title":"Cancel Shipment Request",
                "required":[
                    "shipmentIds"
                ],
                "type":"object",
                "properties":{
                    "shipmentIds":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"Contains shipment IDs.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D",
                            "8ECE2C9D389645B09740DC7926DEFB69"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "toInventoryStatus":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    }
                },
                "description":"Request object containing canceled shipment details."
            },
            "ShipmentReceivedResponse":{
                "title":"ShipmentReceivedResponse",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "receivedDate":{
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "damagedCount":{
                        "type":"integer",
                        "description":"Damaged kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "missingCount":{
                        "type":"integer",
                        "description":"Missing kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "preQuarantinedCount":{
                        "type":"integer",
                        "description":"Pre quarantined kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "availableCount":{
                        "type":"integer",
                        "description":"Available kits count.",
                        "format":"int64",
                        "example":5
                    }
                },
                "description":"Received shipment details response object."
            },
            "NSKitsRequest":{
                "title":"NSKitsRequest v1.0",
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10
                    },
                    "quantity":{
                        "title":"Quantity",
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal"
                    }
                },
                "description":"Request containing non-serialized kits details.",
                "example":[
                    {
                        "inventoryStatusId":2,
                        "location":"SITE",
                        "lotId":"LOT-001",
                        "labelGroupId":"LABEL-GRP-001"
                    }
                ]
            },
            "ShipmentReceivedRequest":{
                "type":"object",
                "properties":{
                    "updateKits":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "example":{
                            "KIT-0001":1,
                            "KIT-0002":2
                        }
                    },
                    "updateNSKits":{
                        "type":"array",
                        "description":"Contains non-serialized kits to be updated for received shipment.",
                        "items":{
                            "$ref":"#/components/schemas/NSKitsRequest"
                        }
                    },
                    "tempMonitorStatus":{
                        "pattern":"yes|no|missing",
                        "type":"string",
                        "description":"Temperature monitor status.",
                        "example":"yes",
                        "enum":[
                            "yes",
                            "no",
                            "missing"
                        ]
                    }
                }
            },
            "ShipmentQuarantineRequestV1":{
                "title":"ShipmentQuarantineRequest v1.0",
                "required":[
                    "tempMonitorStatus"
                ],
                "type":"object",
                "properties":{
                    "tempMonitorStatus":{
                        "title":"Temperature Monitor Status",
                        "type":"string",
                        "description":"Temperature monitor status. Allowed values: yes, no, missing.",
                        "example":"missing",
                        "enum":[
                            "yes",
                            "no",
                            "missing"
                        ]
                    }
                },
                "description":"Request body to quarantine a shipment."
            },
            "QuarantinedToReceivedResponseV1":{
                "title":"QuarantinedToReceivedResponse v1.0",
                "type":"object",
                "properties":{
                    "receivedDate":{
                        "title":"Received Date",
                        "type":"string",
                        "description":"Received date of the shipment.",
                        "format":"date-time",
                        "example":"2026-02-24T00:00:00Z"
                    },
                    "availableCount":{
                        "title":"Available Count",
                        "type":"integer",
                        "description":"Count of kits marked as available in the shipment.",
                        "format":"int64",
                        "example":100
                    },
                    "damagedCount":{
                        "title":"Damaged Count",
                        "type":"integer",
                        "description":"Count of kits marked as damaged in the shipment.",
                        "format":"int64",
                        "example":2
                    }
                },
                "description":"Contains counts of kits updated from quarantine to received."
            },
            "QuarantinedToReceivedRequest":{
                "type":"object",
                "properties":{
                    "damagedKits":{
                        "title":"Damaged Kits",
                        "type":"array",
                        "description":"UUIDs of kits to update as damaged.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "updateNSKits":{
                        "title":"Non-Serialized Kits",
                        "type":"array",
                        "description":"List of non-serialized kits to update.",
                        "items":{
                            "$ref":"#/components/schemas/NSKitsRequest"
                        }
                    }
                }
            },
            "RegenerateOrderFormResponse":{
                "title":"RegenerateOrderFormResponse",
                "type":"object",
                "properties":{
                    "reportId":{
                        "type":"string",
                        "description":"Report ID of the regenerated order form.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Contains details for regenerated order form."
            },
            "ShipmentRemoveKitsRequest":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "kits":{
                        "minItems":1,
                        "type":"array",
                        "description":"Kits to be removed from the shipment.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "nsKits":{
                        "type":"array",
                        "description":"Kits to be removed from the shipment.",
                        "example":[
                            {
                                "lotId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                                "quantity":56
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentRemoveNonSerializedKitRequest"
                        }
                    }
                },
                "description":"Request object containing kits to be removed from shipment."
            },
            "OrderShipmentDTO":{
                "title":"OrderShipmentDTO v2.0",
                "required":[
                    "shipDate",
                    "trackingNumber"
                ],
                "type":"object",
                "properties":{
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "deliveryNumber":{
                        "title":"Delivery Number",
                        "type":"string",
                        "description":"Delivery number.",
                        "example":"12345"
                    },
                    "updateDeliveryNumber":{
                        "title":"Update Delivery Number",
                        "type":"boolean",
                        "description":"Whether to update the delivery number."
                    }
                },
                "description":"Contains shipment order details."
            },
            "ShipmentRecvEligibleKitsResponse":{
                "title":"ShipmentRecvEligibleKitsResponse",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "format":"uuid"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentEligibleKitTOV1"
                        }
                    }
                },
                "description":"Response object containing eligible kits of a received shipment."
            },
            "SiteKitTO":{
                "title":"SiteKitTO v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitNumber":{
                        "type":"integer",
                        "description":"Kit/Lot number.",
                        "format":"int32",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A desc"
                    },
                    "trialSupplyType":{
                        "title":"Package Type",
                        "type":"string",
                        "description":"Package type.",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "deviceType":{
                        "title":"mHealth Device Type",
                        "type":"string",
                        "description":"Type of the mHealth device.",
                        "example":"GlucoseMonitor",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"mHealth Device Connection Type",
                        "type":"string",
                        "description":"Connection type of the mHealth device.",
                        "example":"CloudtoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "barcode":{
                        "title":"Barcode",
                        "type":"string",
                        "description":"Barcode of the kit.",
                        "example":"1236"
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number (UTF-8)",
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"12345ab"
                    },
                    "lotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Manufacturing lot 1"
                    },
                    "lotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Identifier of the manufacturing lot.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Quantity of kits.",
                        "format":"double",
                        "example":1
                    }
                },
                "description":"Site kit transfer object.",
                "example":{
                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                    "kitNumber":1001,
                    "inventoryStatusId":10,
                    "barcode":"KIT-1001",
                    "lotNumber":"Manufacturing lot 1",
                    "lotId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                    "quantity":1
                }
            },
            "SiteShipmentKitsTO":{
                "title":"SiteShipmentKitsTO v1.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    "kits":{
                        "title":"kits",
                        "type":"array",
                        "description":"Serialized and non-serialized kits belonging to the shipment at the site.",
                        "example":[
                            {
                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                "kitNumber":1001,
                                "inventoryStatusId":10,
                                "barcode":"KIT-1001",
                                "lotNumber":"Manufacturing lot 1",
                                "lotId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                "quantity":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SiteKitTO"
                        }
                    }
                },
                "description":"Response object containing kits of a shipment at a site."
            },
            "ShipmentUpdateKitsRequest":{
                "title":"Shipment Update Kits Request",
                "required":[
                    "kits",
                    "toInventoryStatus"
                ],
                "type":"object",
                "properties":{
                    "kits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"Contains kit IDs.",
                        "example":[
                            "E39FF55A445543A38D513325664F0B2D",
                            "8ECE2C9D389645B09740DC7926DEFB69"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "toInventoryStatus":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    }
                },
                "description":"Request object containing shipment kits to be updated."
            },
            "SiteUserShipmentTOV2":{
                "title":"SiteUserShipmentTO v2.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Site name.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"12"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Depot name.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"123"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "statusDate":{
                        "type":"string",
                        "description":"Status date.",
                        "format":"date-time"
                    },
                    "damagedCount":{
                        "type":"integer",
                        "description":"Damaged kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "missingCount":{
                        "type":"integer",
                        "description":"Missing kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "preQuarantinedCount":{
                        "type":"integer",
                        "description":"Pre quarantined kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "availableCount":{
                        "type":"integer",
                        "description":"Available kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "inTransitCount":{
                        "type":"integer",
                        "description":"In transit kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Response object containing details about shipment at a site."
            },
            "ShipmentTOV2":{
                "title":"ShipmentTO v2.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Name of the site.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"st_hstn"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Name of the depot.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"integer",
                        "description":"Shipment status ID.",
                        "format":"int32",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report Id",
                        "format":"uuid"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether the shipment is for kit reconciliation.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"URL for tracking the shipment.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Shipment details object.",
                "example":{
                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "siteName":"Site Houston",
                    "siteShortName":"st_hstn",
                    "depotId":"D313327EF13845169A8ADADDA435431E",
                    "depotName":"Depot Houston",
                    "depotShortName":"dpt_hstn",
                    "statusId":5,
                    "shipmentNumber":"123",
                    "createdDate":"2026-02-21T06:30:00Z",
                    "shipDate":"2026-02-21T06:45:00Z",
                    "trackingNumber":"12345",
                    "reconciliation":true,
                    "reportId":"E39FF55A445543A38D513325664F0B2D",
                    "trackingNumberURL":"http://www.site.com"
                }
            },
            "ViewShipmentResponseV2":{
                "type":"object",
                "properties":{
                    "shipments":{
                        "type":"array",
                        "example":[
                            {
                                "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "siteName":"Site Houston",
                                "siteShortName":"st_hstn",
                                "depotId":"D313327EF13845169A8ADADDA435431E",
                                "depotName":"Depot Houston",
                                "depotShortName":"dpt_hstn",
                                "statusId":5,
                                "shipmentNumber":"123",
                                "createdDate":"2026-02-21T06:30:00Z",
                                "shipDate":"2026-02-21T06:45:00Z",
                                "trackingNumber":"12345",
                                "reconciliation":true,
                                "reportId":"E39FF55A445543A38D513325664F0B2D",
                                "trackingNumberURL":"http://www.site.com"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentTOV2"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Response object containing shipments."
            },
            "SiteKitTOV2":{
                "title":"SiteKitTO v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitNumber":{
                        "type":"integer",
                        "description":"Kit/Lot number.",
                        "format":"int32",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A desc"
                    },
                    "trialSupplyType":{
                        "title":"Package Type",
                        "type":"string",
                        "description":"Package type.",
                        "example":"BOTTLE",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "deviceType":{
                        "title":"mHealth Device Type",
                        "type":"string",
                        "description":"Type of the mHealth device.",
                        "example":"GlucoseMonitor",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"mHealth Device Connection Type",
                        "type":"string",
                        "description":"Connection type of the mHealth device.",
                        "example":"CloudtoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "barcode":{
                        "title":"Barcode",
                        "type":"string",
                        "description":"Barcode of the kit.",
                        "example":"1236"
                    }
                },
                "description":"Contains information about kit in a shipment."
            },
            "SiteShipmentKitsTOV2":{
                "title":"SiteShipmentKitsTO v2.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    "kits":{
                        "title":"kits",
                        "type":"array",
                        "description":"Kits belonging to the shipment at the site.",
                        "items":{
                            "$ref":"#/components/schemas/SiteKitTOV2"
                        }
                    }
                },
                "description":"Response object containing kits of a shipment at a site."
            },
            "SiteManualResupplyRequest":{
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason to  request manual resupply to site.",
                        "example":"Some reason."
                    }
                },
                "description":"Contains details of manual resupply request to site."
            },
            "DCSSubject":{
                "title":"DCSSubject",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"DCS Subject ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2018-11-23T08:43:01Z"
                    },
                    "description":{
                        "type":"string",
                        "description":"Subject description.",
                        "example":"Subject undergoing treatment for asthma."
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"Subject number for the study.",
                        "example":"1-10"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"ID of the site.",
                        "format":"uuid"
                    },
                    "dob":{
                        "type":"string",
                        "description":"Date of birth of the subject.",
                        "format":"date",
                        "example":"2019-03-06"
                    },
                    "screeningDate":{
                        "type":"string",
                        "description":"Date of screening of the subject at the site.",
                        "format":"date",
                        "example":"2019-03-06"
                    },
                    "state":{
                        "type":"string",
                        "description":"State of the subject.",
                        "example":"Active",
                        "enum":[
                            "New",
                            "Active",
                            "Screening_Initiated",
                            "Screen_Failed",
                            "Withdrawn",
                            "Auto_Screen_Failed"
                        ]
                    },
                    "stateDate":{
                        "type":"string",
                        "description":"Date on which the subject achieved the state mentioned.",
                        "format":"date",
                        "example":"2019-03-06"
                    },
                    "screeningFailure":{
                        "type":"string",
                        "description":"Reason for screening failure.",
                        "example":"Screening failed."
                    },
                    "enrollmentFailure":{
                        "type":"string",
                        "description":"Reason for enrollment failure.",
                        "example":"Enrollment failed."
                    },
                    "enrollmentOverride":{
                        "type":"string",
                        "description":"Enrollment Override",
                        "example":"Enrollment Override."
                    },
                    "informedConsentDate":{
                        "type":"string",
                        "description":"Informed consent date",
                        "format":"date",
                        "example":"2019-03-06"
                    },
                    "gender":{
                        "type":"string",
                        "description":"Subject gender",
                        "example":"Male"
                    },
                    "subjectTransferId":{
                        "type":"string",
                        "description":"ID of the subject transfer",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "codeBreak":{
                        "type":"string",
                        "description":"Reveals the Treatment arm of a subject and the kits dispensed along with their description.",
                        "example":"Treatment arm B"
                    },
                    "mhealthSubjectId":{
                        "type":"string",
                        "description":"ID of the mhealth subject",
                        "format":"uuid"
                    },
                    "randomized":{
                        "type":"boolean",
                        "description":"Indicate if subject is randomized.",
                        "example":true
                    }
                },
                "description":"DCS Subject details."
            },
            "SubjectVisitsDto":{
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitsStatusDto2"
                        }
                    }
                }
            },
            "SubjectVisitsStatusResponse":{
                "type":"object",
                "properties":{
                    "subjects":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SubjectVisitsDto"
                        }
                    }
                }
            },
            "TitrationImpactTO":{
                "title":"TitrationImpactTO v1.0",
                "type":"object",
                "properties":{
                    "impact":{
                        "title":"Impact",
                        "type":"boolean",
                        "description":"Indicates whether titration impacts dispensation.",
                        "example":true
                    }
                },
                "description":"Titration impact on dispensation."
            },
            "SupplySettingsTOV1":{
                "title":"SupplySettingsTO v1.0",
                "required":[
                    "allowManualConsignments",
                    "allowSingleKitQuarantine",
                    "intlShipmentTriggerId",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    }
                },
                "description":"Supply settings for study/site."
            },
            "SupplySettingsTOV2":{
                "title":"SupplySettingsTO v2.0",
                "required":[
                    "allowManualConsignments",
                    "allowSingleKitQuarantine",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    }
                },
                "description":"Supply settings details object."
            },
            "SubjectVisitKitTypeTO":{
                "required":[
                    "isDownAllowed",
                    "isUpAllowed",
                    "kitsDispensed",
                    "status",
                    "titrationId"
                ],
                "type":"object",
                "properties":{
                    "titrationKitLabel":{
                        "type":"string",
                        "description":"Label of the matching titration row",
                        "example":"Low Dose"
                    },
                    "titrationId":{
                        "type":"string",
                        "description":"ID of the titration.",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"Status of titration allowed.",
                        "example":"ALLOW"
                    },
                    "isUpAllowed":{
                        "type":"boolean",
                        "description":"Indicates whether up titration is allowed.",
                        "example":true
                    },
                    "isDownAllowed":{
                        "type":"boolean",
                        "description":"Indicates whether down titration is allowed.",
                        "example":true
                    },
                    "kitsDispensed":{
                        "title":"Kits Dispensed",
                        "type":"array",
                        "description":"IDs of kits dispensed.",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF",
                            "C36A3197FDEE433FB5547EE83DE99E4B"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "DoseHoldKit":{
                "title":"DoseHoldKit",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch"
                    },
                    "blindedTItrationLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"Low dose"
                    },
                    "isTitration":{
                        "title":"Titration",
                        "type":"boolean",
                        "description":"Indicates whether the current medication is a titration.",
                        "example":true
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason for kits not allowed for dose hold.",
                        "example":"DOSE_HOLD_VISIT_NOT_STARTED"
                    }
                },
                "description":"Response containing dose hold kit details.",
                "example":{
                    "kitId":"C1C8327AFAA6412287106192AB5984EF",
                    "kitNumber":"KIT-000456"
                }
            },
            "DoseHoldKitsResponse":{
                "title":"Dose Hold Kits Response",
                "required":[
                    "status"
                ],
                "type":"object",
                "properties":{
                    "status":{
                        "title":"Dose Hold Status",
                        "type":"string",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":"ALLOW_DOSE_HOLD",
                        "enum":[
                            "ALLOW_DOSE_HOLD",
                            "DOSE_HELD",
                            "DISPENSED_AND_DOSE_HELD",
                            "DISPENSED",
                            "DOSE_HOLD_SETTINGS_OFF",
                            "DOSE_HOLD_NOT_ALLOWED_ON_RAND_VISIT",
                            "DOSE_HOLD_NOT_ALLOWED_ON_ANY_KITS"
                        ]
                    },
                    "kitsAllowedForDoseHold":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldKit"
                        }
                    },
                    "kitsNotAllowedForDoseHold":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldKit"
                        }
                    }
                },
                "description":"Contains information about kits allowed or not allowed for dose hold."
            },
            "CodeViewResponse":{
                "title":"Code View Response",
                "type":"object",
                "properties":{
                    "treatmentArms":{
                        "title":"Treatment Arms",
                        "type":"array",
                        "description":"Contains treatment arm details.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "description":"Randomized successfully",
                                "externalTreatmentId":"TA",
                                "randNumber":1001,
                                "randomizationDate":"2025-01-01T12:34:56Z",
                                "rndStatusId":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RandomizationHistoryTO"
                        }
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"Contains kit type details.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "kitTypeName":"Kit A",
                                "description":"Non dosing kit",
                                "packageTypeId":5,
                                "packageType":"BOTTLE"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/CodeViewResponse.KitTypes"
                        }
                    }
                },
                "description":"Contains code view response details."
            },
            "CodeViewResponse.KitTypes":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageType":{
                        "type":"string",
                        "description":"Package type.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "dispensationDetails":{
                        "type":"array",
                        "description":"Dispensation details for the kit type.",
                        "example":[
                            {
                                "lotId":"B1B8327AFAA6412287106192AB5984EF",
                                "lotNumber":"LOT-001",
                                "quantity":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensationHistoryResponseV4"
                        }
                    }
                },
                "description":"Kit type details object.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "kitTypeName":"Kit A",
                    "description":"Non dosing kit",
                    "packageTypeId":5,
                    "packageType":"BOTTLE"
                }
            },
            "DispensationHistoryResponseV2":{
                "title":"DispensationHistoryResponse v2.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    }
                },
                "description":"Response object containing Dispensation History."
            },
            "RandomizationHistoryTO":{
                "title":"RandomizationHistoryTO",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment ID",
                        "format":"uuid"
                    },
                    "description":{
                        "type":"string",
                        "description":"Treatment description",
                        "example":"Some description."
                    },
                    "externalTreatmentId":{
                        "type":"string",
                        "description":"External treatment ID.",
                        "example":"TxA"
                    },
                    "randNumber":{
                        "type":"number",
                        "description":"Randomization number.",
                        "format":"double",
                        "example":5
                    },
                    "randomizationDate":{
                        "type":"string",
                        "description":"Randomization date.",
                        "format":"date-time",
                        "example":"2025-01-01T12:34:56Z"
                    },
                    "rndStatusId":{
                        "type":"number",
                        "description":"Randomization status ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5
                        ]
                    }
                },
                "description":"Contains subject randomization history details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "description":"Randomized successfully",
                    "externalTreatmentId":"TA",
                    "randNumber":1001,
                    "randomizationDate":"2025-01-01T12:34:56Z",
                    "rndStatusId":5
                }
            },
            "CodeViewRequest":{
                "title":"Code View Request",
                "required":[
                    "adverseEvent"
                ],
                "type":"object",
                "properties":{
                    "adverseEvent":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Adverse event.",
                        "format":"int32",
                        "example":1,
                        "enum":[
                            0,
                            1
                        ]
                    }
                },
                "description":"Contains code view request details."
            },
            "DispensationHistoryResponse":{
                "title":"DispensationHistoryResponse",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"WearablePatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "mHealthDeviceId":{
                        "title":"mHealth Device ID",
                        "type":"string",
                        "description":"mHealth device identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "allowReplacement":{
                        "title":"Allow Replacement",
                        "type":"boolean",
                        "description":"Indicates whether the kit is allowed for replacement.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1236"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"000AB123"
                    },
                    "inventoryStatusName":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "titration":{
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"maintain"
                    },
                    "originalKit":{
                        "type":"string",
                        "description":"Original kit number for the replaced kit.",
                        "example":"Kit-345"
                    },
                    "subjectVisitNsInventoryId":{
                        "title":"Subject Visit NS Inventory ID",
                        "type":"string",
                        "description":"Subject visit non-serialized inventory ID.",
                        "format":"uuid"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"mf1"
                    },
                    "originalLotNumber":{
                        "title":"Original Lot Number",
                        "type":"string",
                        "description":"Original lot number.",
                        "example":"mf1"
                    },
                    "dosingInstruction":{
                        "title":"Dosing Instruction",
                        "type":"string",
                        "description":"Dosing instruction.",
                        "example":"once daily"
                    }
                },
                "description":"Response object containing Dispensation History."
            },
            "DispensationInfoResponse":{
                "title":"DispensationInfoResponse",
                "type":"object",
                "properties":{
                    "visitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "visitName":{
                        "title":"Visit Name",
                        "type":"string",
                        "description":"Visit name.",
                        "example":"Week1"
                    },
                    "eventInstanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"double",
                        "example":2
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitType":{
                        "title":"Kit Type",
                        "type":"string",
                        "description":"Kit type.",
                        "example":"KitA"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A description paracetamol 5mg"
                    },
                    "dateDispensed":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "dosage":{
                        "title":"Dosage",
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":0.5
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"double",
                        "example":3
                    },
                    "isHeld":{
                        "title":"Dose Held",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is applied.",
                        "example":false
                    }
                },
                "description":"Response object containing dispensation information for a subject visit."
            },
            "KitDoseHeldHistoryTO":{
                "title":"KitDoseHeldHistoryTO v1.0",
                "type":"object",
                "properties":{
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "canBeDispensed":{
                        "type":"boolean",
                        "description":"Indicate if the dosehold kit can be dispensed.",
                        "example":true
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Contains dose hold history for a kit."
            },
            "DoseholdSubjectVisitsTO":{
                "title":"DoseholdSubjectVisitsTO v1.0",
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Contains dosehold visits for a subject."
            },
            "DoseholdSubjectsResponseV1":{
                "title":"DoseholdSubjectsResponse v1.0",
                "type":"object",
                "properties":{
                    "subjects":{
                        "title":"Subjects",
                        "type":"array",
                        "description":"List of dose hold visits for subjects.",
                        "items":{
                            "$ref":"#/components/schemas/DoseholdSubjectVisitsTO"
                        }
                    }
                },
                "description":"Response containing dose hold visits for subjects."
            },
            "DoseholdSubjectsRequestV1":{
                "title":"DoseholdSubjectsRequest v1.0",
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "title":"Subjects",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of subject IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Contains a list of subjects to get dosehold details."
            },
            "LocallySourceKitsResponseV1":{
                "title":"LocallySourceKitsResponse v1.0",
                "type":"object",
                "properties":{
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description."
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type."
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type."
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply."
                    },
                    "visitId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number."
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity."
                    }
                },
                "description":"Response containing locally sourced kit details."
            },
            "PartialDispensationSubjectVisitsTO":{
                "title":"PartialDispensationSubjectVisitsTO v1.0",
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "dispensationAllowed":{
                        "title":"Dispensation Allowed",
                        "type":"boolean",
                        "description":"Indicates whether dispensation is allowed.",
                        "example":true
                    },
                    "visitDate":{
                        "title":"Visit Date",
                        "type":"string",
                        "description":"Visit date.",
                        "format":"date-time"
                    }
                },
                "description":"Contains partial dispensation visits for a subject."
            },
            "PartialDispensationSubjectsResponseV1":{
                "title":"PartialDispensationSubjectsResponse v1.0",
                "type":"object",
                "properties":{
                    "subjects":{
                        "title":"Subjects",
                        "type":"array",
                        "description":"List of partial dispensation visits for subjects.",
                        "items":{
                            "$ref":"#/components/schemas/PartialDispensationSubjectVisitsTO"
                        }
                    }
                },
                "description":"Response containing partial dispensation visits for subjects."
            },
            "PartialDispensationSubjectsRequestV1":{
                "title":"PartialDispensationSubjectsRequest v1.0",
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "title":"Subjects",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of subject IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Contains a list of subjects to get partial dispensation details."
            },
            "RandomizationHistoryResponse":{
                "type":"object",
                "properties":{
                    "randNumber":{
                        "title":"Randomization Number",
                        "type":"integer",
                        "description":"Randomization number.",
                        "format":"int64",
                        "example":5
                    },
                    "randomizationDate":{
                        "title":"Randomization Date",
                        "type":"string",
                        "description":"Date of randomization.",
                        "format":"date-time"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    }
                }
            },
            "ReusableKit":{
                "title":"ReusableKit",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"number",
                        "description":"Id of the reusable kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"ID of the inventory.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial Supply Type",
                        "example":"BOTTLE"
                    },
                    "consumeAcrossDoses":{
                        "type":"boolean",
                        "description":"Indicate if consume across dosed allowed.",
                        "example":true
                    },
                    "dose":{
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    }
                },
                "description":"Response containing reusable kit details.",
                "example":{
                    "id":2,
                    "inventoryId":"D313327EF13845169A8ADADDA435431E",
                    "trialSupplyType":"BOTTLE",
                    "isDosingUnblinded":true,
                    "dose":5,
                    "measurement":"ml",
                    "frequency":"BID",
                    "kitDescription":"Kit A"
                }
            },
            "ReusableKitsResponseV1":{
                "title":"Reusable Kits Response",
                "required":[
                    "status"
                ],
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Indicates whether reuse is allowed.",
                        "example":"ALLOW",
                        "enum":[
                            "ALLOW",
                            "REUSE_NOT_ALLOWED"
                        ]
                    },
                    "kits":{
                        "title":"ReusableKit",
                        "type":"array",
                        "description":"Contains information for the reusable kits.",
                        "example":[
                            {
                                "id":2,
                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                "trialSupplyType":"BOTTLE",
                                "isDosingUnblinded":true,
                                "dose":5,
                                "measurement":"ml",
                                "frequency":"BID",
                                "kitDescription":"Kit A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ReusableKit"
                        }
                    }
                },
                "description":"Contains details of reusable kits."
            },
            "DoseHoldRequestV1":{
                "title":"Dose Hold Request",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"Spirometer"
                    },
                    "isTitration":{
                        "title":"Titration",
                        "type":"boolean",
                        "description":"Indicates whether the current medication is a titration.",
                        "example":true
                    }
                },
                "description":"Request containing dose hold settings.",
                "example":{
                    "kitTypeSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "trialSupplyType":"BOTTLE",
                    "deviceType":"Spirometer",
                    "isTitration":true
                }
            },
            "VisitDoseHoldRequest":{
                "title":"Visit Dose Hold Request",
                "required":[
                    "studyVersion",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"1.0.0.5"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "minimum":1,
                        "type":"number",
                        "description":"Instance number of the unscheduled visit",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "titrationOption":{
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "kitTypesForDoseHold":{
                        "type":"array",
                        "description":"Kit Types For DoseHold",
                        "example":[
                            {
                                "kitTypeSrcId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "trialSupplyType":"BOTTLE",
                                "deviceType":"Spirometer",
                                "isTitration":true
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV1"
                        }
                    },
                    "screeningDate":{
                        "type":"string",
                        "description":"Screening date.",
                        "format":"date-time"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date.",
                        "format":"date-time"
                    }
                },
                "description":"Request containing dose hold parameters for a visit."
            },
            "SubjectTrtArmResponseV1":{
                "title":"SubjectTrtArmResponse v1.0",
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "treatmentId":{
                        "title":"Treatment ID",
                        "type":"string",
                        "description":"Treatment ID.",
                        "format":"uuid"
                    }
                },
                "description":"Response object containing subject treatment."
            },
            "SubjectTreatmentResponse":{
                "title":"SubjectTreatmentResponse",
                "type":"object",
                "properties":{
                    "treatmentId":{
                        "title":"Treatment ID",
                        "type":"string",
                        "description":"Treatment ID of the subject.",
                        "format":"uuid"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"TA"
                    }
                },
                "description":"Response object containing subject treatment."
            },
            "SubjectsRequestV1":{
                "title":"SubjectsRequest v1.0",
                "required":[
                    "subjects"
                ],
                "type":"object",
                "properties":{
                    "subjects":{
                        "title":"Subjects",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"List of subject IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Contains subject IDs to process."
            },
            "DispensationHistoryResponseForAllSubjectV1":{
                "title":"DispensationHistoryResponseForAllSubject v1.0",
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "example":123
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Available"
                    },
                    "dispensationDate":{
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time",
                        "example":"2026-02-24T00:00:00Z"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"61234"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "mHealthDeviceId":{
                        "type":"string",
                        "description":"mHealthDevice Id",
                        "example":"MHEALTH-DEV-001"
                    },
                    "dose":{
                        "type":"number",
                        "description":"Dose.",
                        "example":1
                    },
                    "measurement":{
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg"
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Frequency",
                        "example":"Once daily"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "example":0
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "example":0
                    },
                    "conserved":{
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":false
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"KIT-000123"
                    }
                },
                "description":"Contains unblinded dispensation history for all subjects."
            },
            "KitDispensationDTO":{
                "title":"Kit Dispensation",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5
                    },
                    "dispensationDate":{
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    }
                },
                "description":"Contains kit dispensation details."
            },
            "KitTypeDetailsDTO":{
                "title":"Kit Type Details",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "dispensationDetails":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDispensationDTO"
                        }
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Kit A"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":2,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageType":{
                        "type":"string",
                        "description":"Package type.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    }
                },
                "description":"Contains kit type details.",
                "example":{
                    "kitTypeId":"01A9B3C7D5E84F2AA3B4C5D6E7F80910",
                    "kitTypeName":"Dose Kit"
                }
            },
            "UnblindedDispensationHistoryDTO":{
                "title":"UnblindedDispensationHistoryDTO",
                "type":"object",
                "properties":{
                    "kitTypes":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTypeDetailsDTO"
                        }
                    }
                },
                "description":"Contains unblinded dispensation history."
            },
            "RandomizationDetailsDTO":{
                "title":"Randomization Details",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization ID.",
                        "format":"uuid"
                    },
                    "randNumber":{
                        "type":"number",
                        "description":"Randomization number.",
                        "format":"double",
                        "example":5
                    },
                    "randomizationDate":{
                        "type":"string",
                        "description":"Randomization date.",
                        "format":"date-time"
                    },
                    "rndStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each Randomization status value (1 for Not Approved, 2 for Available, 3 for Not Released, 4 for Assigned, 5 for Randomized in Error).",
                        "format":"double",
                        "example":1,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5
                        ]
                    },
                    "description":{
                        "type":"string",
                        "description":"Randomization description.",
                        "example":"RndA"
                    },
                    "externalTreatmentId":{
                        "type":"string",
                        "description":"External treatment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    }
                },
                "description":"Contains randomization details.",
                "example":{
                    "treatmentArmId":"E0E1E2E3E4E5E6E7E8E9EAEBECEDEEEF",
                    "treatmentArmName":"Arm A"
                }
            },
            "UnblindedRandomizationHistoryDTO":{
                "title":"Unblinded Randomization History v1.0",
                "type":"object",
                "properties":{
                    "treatmentArms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationDetailsDTO"
                        }
                    }
                },
                "description":"Contains unblinded randomization history."
            },
            "Visit":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "externalVisitId":{
                        "type":"string",
                        "description":"External visit identifier.",
                        "example":"Screening visit"
                    },
                    "nextVisitDays":{
                        "type":"number",
                        "description":"Number of days for the next visit.",
                        "format":"double",
                        "example":5
                    },
                    "nextVisitHours":{
                        "type":"number",
                        "description":"Number of hours for the next visit.",
                        "format":"double",
                        "example":5
                    },
                    "windowBeforeDays":{
                        "type":"number",
                        "description":"Number of days for window before the visit.",
                        "format":"double",
                        "example":5
                    },
                    "windowBeforeHours":{
                        "type":"number",
                        "description":"Number of hours for window before the visit.",
                        "format":"double",
                        "example":5
                    },
                    "windowAfterDays":{
                        "type":"number",
                        "description":"Number of days for window after the visit.",
                        "format":"double",
                        "example":5
                    },
                    "windowAfterHours":{
                        "type":"number",
                        "description":"Number of hours for window after the visit.",
                        "format":"double",
                        "example":5
                    },
                    "rndDesignId":{
                        "type":"string",
                        "description":"Randomization design Id.",
                        "format":"uuid"
                    },
                    "rndDesignVersionStart":{
                        "type":"string",
                        "description":"Randomization version start.",
                        "format":"date-time"
                    },
                    "visitNumber":{
                        "type":"number",
                        "description":"Visit number.",
                        "format":"double",
                        "example":5
                    },
                    "designId":{
                        "type":"string",
                        "description":"Design Id.",
                        "format":"uuid"
                    },
                    "designVersionStart":{
                        "type":"string",
                        "description":"Design version start.",
                        "format":"date-time"
                    },
                    "isRequired":{
                        "type":"boolean",
                        "writeOnly":true
                    },
                    "isRepeating":{
                        "type":"boolean",
                        "description":"Indicate if the visit is repeating.",
                        "example":true
                    },
                    "isScheduled":{
                        "type":"boolean",
                        "description":"Indicate if the visit is scheduled.",
                        "example":true
                    },
                    "isDispensation":{
                        "type":"boolean",
                        "description":"Indicate if this is a dispensation visit.",
                        "example":true
                    },
                    "anchorVisitId":{
                        "type":"string",
                        "description":"Anchor visit Id.",
                        "format":"uuid"
                    },
                    "anchorVisitVersionStart":{
                        "type":"string",
                        "description":"Anchor version start.",
                        "format":"date-time"
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Id of the Visit.",
                        "format":"uuid"
                    },
                    "srcVersionStart":{
                        "type":"string",
                        "description":"Visit version start.",
                        "format":"date-time"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "isRequiredValue":{
                        "type":"boolean",
                        "description":"Indicate if the visit is required.",
                        "example":true
                    }
                },
                "description":"Contains visit details."
            },
            "MigrationRequestV2":{
                "title":"MigrationRequest v2.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId",
                    "visitTimestamp"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "studyVersion":{
                        "title":"Study Version",
                        "type":"string",
                        "description":"Study version.",
                        "example":"1.0.0.5"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/MigrationKitRequestV2"
                        }
                    },
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"number",
                        "description":"Random number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "randomizationListId":{
                        "title":"Randomization List ID",
                        "type":"string",
                        "description":"Randomization list identifier.",
                        "format":"uuid"
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "example":"2022-01-23 18:43:01"
                    }
                },
                "description":"Request containing migration details."
            },
            "SubjectReplaceKitsResponse":{
                "title":"SubjectReplaceKitsResponse",
                "type":"object",
                "properties":{
                    "replacedKits":{
                        "type":"array",
                        "description":"List of replaced kits.",
                        "example":[
                            {
                                "inventoryId":"D313327EF13845169A8ADADDA435431E",
                                "kitNumber":1001,
                                "kitTypeName":"Kit A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/DispensationKit"
                        }
                    }
                },
                "description":"Response containing kit replacement for subject."
            },
            "SubjectReplaceKitsRequest":{
                "required":[
                    "reason",
                    "reasonLabel",
                    "siteId"
                ],
                "type":"object",
                "properties":{
                    "kits":{
                        "type":"array",
                        "description":"Contains kits.",
                        "example":[
                            "5a"
                        ],
                        "items":{
                            "type":"string",
                            "format":"String",
                            "example":"5a"
                        }
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Reason",
                        "example":"Some reason"
                    },
                    "reasonLabel":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"ReasonLabel",
                        "example":"kits are damaged"
                    },
                    "visits":{
                        "type":"array",
                        "example":[
                            {
                                "subjectVisitNsinventoryId":"41200000000000000000000000000252",
                                "quantity":10
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/NsReplaceKitRequest"
                        }
                    }
                }
            },
            "InventoryDTOV4":{
                "title":"InventoryDTO v4.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "type":"number",
                        "description":"Do Not Count (DNC) Days.",
                        "format":"double",
                        "example":5
                    },
                    "doNotShip":{
                        "type":"number",
                        "description":"Do Not Ship (DNS) Days.",
                        "format":"double",
                        "example":5
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"24-1"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"245"
                    },
                    "tempExcursionNumber":{
                        "title":"Temperature Excursion Number",
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "blocknumber":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains details of inventories."
            },
            "NsInventoryDTO":{
                "title":"NsInventoryDTO v1.0",
                "type":"object",
                "properties":{
                    "nsInventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Non-serialized inventory ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "title":"Version End",
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "labelGroupId":{
                        "title":"Label Group ID",
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"double",
                        "example":5
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"lot1"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number.",
                        "example":1
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    }
                },
                "description":"Contains non-serialized kit details."
            },
            "OrderDTOV6":{
                "title":"OrderDTO v6.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "MODIFIED",
                            "REMOVED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"DATA ENTRY ERROR"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated with new values"
                    },
                    "isReconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "shipmentReceivedById":{
                        "title":"Shipment Received By ID",
                        "type":"string",
                        "description":"Shipment received by ID.",
                        "format":"uuid"
                    },
                    "shippingAddressId":{
                        "title":"Shipping Address ID",
                        "type":"string",
                        "description":"Shipping address ID.",
                        "format":"uuid"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Shipping address.",
                        "example":"City,Country,Local Address"
                    },
                    "shipmentReceiptDate":{
                        "title":"Shipment Receipt Date",
                        "type":"string",
                        "description":"Shipment receipt date.",
                        "format":"date-time"
                    },
                    "includePooledShipments":{
                        "title":"Include Pooled Shipments",
                        "type":"boolean",
                        "description":"Indicates whether to include pooled shipments.",
                        "example":true
                    },
                    "deliveryNumber":{
                        "title":"Delivery Number",
                        "type":"string",
                        "description":"Delivery number.",
                        "example":"Order123"
                    },
                    "compoundingKits":{
                        "title":"Compounding Kits",
                        "type":"boolean",
                        "description":"Indicates whether the order contains compounding kits.",
                        "example":true
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Order details including compounding kits flag."
            },
            "OrderKitTypesDTO":{
                "title":"OrderKitTypesDTO v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Order Kit Type Id for Pooling Supplies",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"number",
                        "example":5
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "minExpirationDate":{
                        "title":"Effective Expiration Date",
                        "type":"string",
                        "description":"Effective expiration date.",
                        "format":"date-time"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"modified"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "format":"number"
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number.",
                        "format":"number"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason.",
                        "example":"test"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment.",
                        "example":"test"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "pooledKitId":{
                        "title":"Pooled Kit ID",
                        "type":"string",
                        "description":"Pooled kit identifier.",
                        "example":"Pooled Kit01"
                    },
                    "lotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"MLOT"
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Orders kit types object for pooling supplies."
            },
            "OrdersInventoryDTOV10":{
                "title":"OrderInventoryDTO v10.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV6"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTOV4"
                        }
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"List of kit types for the order.",
                        "items":{
                            "$ref":"#/components/schemas/OrderKitTypesDTO"
                        }
                    },
                    "nsInventory":{
                        "title":"Non-Serialized Inventory",
                        "type":"array",
                        "description":"List of non-serialized inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/NsInventoryDTO"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details including non-serialized and compounding kits."
            },
            "OrderInventoryPagedListResponseV10":{
                "title":"OrderInventoryPagedListResponse v10.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV10"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV10"
                        }
                    }
                },
                "description":"Contains compoundingKits info."
            },
            "SupplySettingsTO":{
                "required":[
                    "allKitsSelectedForRandomization",
                    "allowDoseHold",
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "dispenseByLowestKitNumber",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "quarantineWithoutTempMonitor",
                    "randomizeWhenKitsAvailable",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    },
                    "dispenseByLowestKitNumber":{
                        "title":"Dispense By Lowest Kit Number",
                        "type":"boolean",
                        "description":"If true, dispense kits by the lowest available kit number.",
                        "example":true
                    },
                    "allowDoseHold":{
                        "title":"Allow Dose Hold",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":true
                    },
                    "quarantineWithoutTempMonitor":{
                        "title":"Quarantine Without Temperature Monitor",
                        "type":"boolean",
                        "description":"Indicates whether quarantine is allowed without a temperature monitor.",
                        "example":false
                    },
                    "randomizeWhenKitsAvailable":{
                        "title":"Randomize Only When All Kits Are Available At Site",
                        "type":"boolean",
                        "description":"If true, subject randomization is allowed only when all required kits are available at the site.",
                        "example":false
                    },
                    "allKitsSelectedForRandomization":{
                        "title":"All Kits Selected For Randomization",
                        "type":"boolean",
                        "description":"If true, all kits are selected for randomization.",
                        "example":false
                    },
                    "kitsSelectedForRandomization":{
                        "title":"Kits Selected For Randomization",
                        "type":"array",
                        "description":"Specific kits selected for randomization.",
                        "items":{
                            "title":"Kits Selected For Randomization",
                            "type":"string",
                            "description":"Specific kits selected for randomization.",
                            "format":"uuid"
                        }
                    },
                    "sendNotificationOnce":{
                        "title":"Send Notification Once",
                        "type":"boolean",
                        "description":"Indicates whether notifications are sent only once.",
                        "example":false
                    },
                    "tempExcursionStartingNumber":{
                        "title":"Temperature Excursion Starting Number",
                        "type":"string",
                        "description":"Starting number for temperature excursions.",
                        "example":"12,13"
                    }
                }
            },
            "DispensationHistoryResponseV10":{
                "title":"DispensationHistoryResponse v10.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"WearablePatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "mHealthDeviceId":{
                        "title":"mHealth Device ID",
                        "type":"string",
                        "description":"mHealth device identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "allowReplacement":{
                        "title":"Allow Replacement",
                        "type":"boolean",
                        "description":"Indicates whether the kit is allowed for replacement.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1236"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"000AB123"
                    },
                    "inventoryStatusName":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "titration":{
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"maintain"
                    },
                    "originalKit":{
                        "type":"string",
                        "description":"Original kit number for the replaced kit.",
                        "example":"Kit-345"
                    },
                    "subjectVisitNsInventoryId":{
                        "title":"Subject Visit NS Inventory ID",
                        "type":"string",
                        "description":"Subject visit non-serialized inventory ID.",
                        "format":"uuid"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"mf1"
                    },
                    "originalLotNumber":{
                        "title":"Original Lot Number",
                        "type":"string",
                        "description":"Original lot number.",
                        "example":"mf1"
                    }
                },
                "description":"Response object containing Dispensation History."
            },
            "DispensationKitV8":{
                "title":"DispensationKit v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Dispensation Kit ID",
                        "type":"number",
                        "description":"Unique identifier of the dispensation kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "consumeAcrossDoses":{
                        "title":"Consume Across Doses",
                        "type":"boolean",
                        "description":"Indicates whether consumption across doses is allowed.",
                        "example":true
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "titrationKitLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"High dose"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1000"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    }
                },
                "description":"Contains information for the kit dispensation."
            },
            "VisitResultV9":{
                "title":"VisitResult v9.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKitV8"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    }
                },
                "description":"Visit result."
            },
            "VisitRequestV7":{
                "title":"VisitRequest v7.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "reusableKits":{
                        "title":"Reusable Kits",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"IDs of kits that can be reused in the visit.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Request containing subject visit details."
            },
            "SupplySettingsTOV10":{
                "title":"SupplySettingsTO v10.0",
                "required":[
                    "allKitsSelectedForRandomization",
                    "allowDoseHold",
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "dispenseByLowestKitNumber",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "quarantineWithoutTempMonitor",
                    "randomizeWhenKitsAvailable",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    },
                    "dispenseByLowestKitNumber":{
                        "title":"Dispense By Lowest Kit Number",
                        "type":"boolean",
                        "description":"If true, dispense kits by the lowest available kit number.",
                        "example":true
                    },
                    "allowDoseHold":{
                        "title":"Allow Dose Hold",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":true
                    },
                    "quarantineWithoutTempMonitor":{
                        "title":"Quarantine Without Temperature Monitor",
                        "type":"boolean",
                        "description":"Indicates whether quarantine is allowed without a temperature monitor.",
                        "example":false
                    },
                    "randomizeWhenKitsAvailable":{
                        "title":"Randomize Only When All Kits Are Available At Site",
                        "type":"boolean",
                        "description":"If true, subject randomization is allowed only when all required kits are available at the site.",
                        "example":false
                    },
                    "allKitsSelectedForRandomization":{
                        "title":"All Kits Selected For Randomization",
                        "type":"boolean",
                        "description":"If true, all kits are selected for randomization.",
                        "example":false
                    },
                    "kitsSelectedForRandomization":{
                        "title":"Kits Selected For Randomization",
                        "type":"array",
                        "description":"Specific kits selected for randomization.",
                        "items":{
                            "title":"Kits Selected For Randomization",
                            "type":"string",
                            "description":"Specific kits selected for randomization.",
                            "format":"uuid"
                        }
                    },
                    "sendNotificationOnce":{
                        "title":"Send Notification Once",
                        "type":"boolean",
                        "description":"Indicates whether notifications are sent only once.",
                        "example":false
                    },
                    "tempExcursionStartingNumber":{
                        "title":"Temperature Excursion Starting Number",
                        "type":"string",
                        "description":"Starting number for temperature excursions.",
                        "example":"12,13"
                    },
                    "selectShippingAddress":{
                        "title":"Select Shipping Address",
                        "type":"boolean",
                        "description":"Indicates whether selecting a shipping address is enabled.",
                        "example":false
                    },
                    "dispenseFromSameLot":{
                        "title":"Dispense From Same Lot",
                        "type":"boolean",
                        "description":"Indicates whether kits must be dispensed from the same manufacturing lot.",
                        "example":false
                    },
                    "shipFromSameLot":{
                        "title":"Ship From Same Lot",
                        "type":"boolean",
                        "description":"Indicates whether shipments must be shipped from the same manufacturing lot.",
                        "example":false
                    }
                },
                "description":"Supply settings details object."
            },
            "DispensationKitV9":{
                "title":"DispensationKit v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Dispensation Kit ID",
                        "type":"number",
                        "description":"Unique identifier of the dispensation kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "consumeAcrossDoses":{
                        "title":"Consume Across Doses",
                        "type":"boolean",
                        "description":"Indicates whether consumption across doses is allowed.",
                        "example":true
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "titrationKitLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"High dose"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"1000"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "groupingNumber":{
                        "title":"Grouping Number",
                        "type":"integer",
                        "description":"Grouping number for a kit.",
                        "format":"int32",
                        "example":1
                    },
                    "dosingUnblinded":{
                        "title":"Dosing Unblinded",
                        "type":"boolean",
                        "description":"Indicates whether dosing is unblinded.",
                        "example":true
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    }
                },
                "description":"Contains information for the kit dispensation."
            },
            "VisitResultV10":{
                "title":"VisitResult v10.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKitV9"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    }
                },
                "description":"Visit result."
            },
            "VisitRequestV8":{
                "title":"VisitRequest v8.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "reusableKits":{
                        "title":"Reusable Kits",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"IDs of kits that can be reused in the visit.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitTypesForDoseHold":{
                        "title":"Kit Types for Dose Hold",
                        "type":"array",
                        "description":"List of kit types configured for dose hold.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV1"
                        }
                    },
                    "kitTypesForResumeDispensation":{
                        "title":"Kit Types for Resume Dispensation",
                        "type":"array",
                        "description":"List of kit types for which to resume dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV1"
                        }
                    }
                },
                "description":"Request containing subject visit details."
            },
            "VisitResultV12":{
                "title":"VisitResult v12.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKit"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    },
                    "needsToVisitPharmacist":{
                        "title":"Needs To Visit Pharmacist",
                        "type":"boolean",
                        "description":"Indicates whether the subject needs to visit an unblinded pharmacist for kit dispensation.",
                        "example":true
                    },
                    "countOfKitTypesOnDoseHold":{
                        "title":"Count Of Kit Types On Dose Hold",
                        "type":"integer",
                        "description":"Number of kit types on dose hold.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit result."
            },
            "VisitRequestV9":{
                "title":"VisitRequest v9.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "reusableKits":{
                        "title":"Reusable Kits",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"IDs of kits that can be reused in the visit.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitTypesForDoseHold":{
                        "title":"Kit Types for Dose Hold",
                        "type":"array",
                        "description":"List of kit types configured for dose hold.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    },
                    "kitTypesForResumeDispensation":{
                        "title":"Kit Types for Resume Dispensation",
                        "type":"array",
                        "description":"List of kit types for which to resume dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    }
                },
                "description":"Request containing subject visit details."
            },
            "VisitRequestV10":{
                "title":"VisitRequest v10.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "reusableKits":{
                        "title":"Reusable Kits",
                        "uniqueItems":true,
                        "type":"array",
                        "description":"IDs of kits that can be reused in the visit.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "kitTypesForDoseHold":{
                        "title":"Kit Types for Dose Hold",
                        "type":"array",
                        "description":"List of kit types configured for dose hold.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    },
                    "kitTypesForResumeDispensation":{
                        "title":"Kit Types for Resume Dispensation",
                        "type":"array",
                        "description":"List of kit types for which to resume dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DoseHoldRequestV2"
                        }
                    },
                    "resumePartialDispensation":{
                        "title":"Resume Partial Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether to resume partial dispensation in the visit.",
                        "example":false
                    }
                },
                "description":"Request containing subject visit details."
            },
            "CountrySupplySettings":{
                "required":[
                    "countryIso",
                    "doNotCount",
                    "doNotShip"
                ],
                "type":"object",
                "properties":{
                    "countryIso":{
                        "type":"string",
                        "description":"ISO 3166-1 alpha-2 country code.",
                        "example":"US"
                    },
                    "doNotShip":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":50
                    },
                    "doNotCount":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    }
                },
                "example":{
                    "countryIso":"US",
                    "doNotShip":50,
                    "doNotCount":10
                }
            },
            "BlindedLotResponseV2":{
                "title":"BlindedLotsResponse v2.0",
                "type":"object",
                "properties":{
                    "blindedLots":{
                        "title":"Blinded Lots",
                        "type":"array",
                        "description":"List of blinded lots.",
                        "items":{
                            "$ref":"#/components/schemas/BlindedLotsV2"
                        }
                    }
                },
                "description":"Response containing blinded lots."
            },
            "BlindedLotsV3":{
                "title":"BlindedLots v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"Blot1001"
                    },
                    "shortName":{
                        "title":"Short Name",
                        "type":"string",
                        "description":"Blinded lot short name.",
                        "example":"Blot1001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "type":"string",
                        "description":"Blinded lot expiration date.",
                        "format":"date-time",
                        "example":"2026-12-31T00:00:00Z"
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "example":50
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "example":10
                    },
                    "manufacturingLotIds":{
                        "title":"Manufacturing Lot IDs",
                        "type":"array",
                        "description":"List of manufacturing lot IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Blinded lot version start date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Blinded lot version end date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"UPDATE"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"double",
                        "example":1
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"double",
                        "example":1
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Audit"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated blinded lot details"
                    },
                    "inUse":{
                        "type":"boolean",
                        "description":"Indicates whether the lot is in use.",
                        "example":true
                    },
                    "settingsByCountry":{
                        "type":"array",
                        "description":"List of settings by country.",
                        "items":{
                            "$ref":"#/components/schemas/SettingsByCountryV2"
                        }
                    },
                    "releaseForDepotToDepot":{
                        "type":"boolean",
                        "description":"Indicates whether the lot is released for depot-to-depot transfer.",
                        "example":true
                    }
                },
                "description":"Contains blinded lot details."
            },
            "BlindingGroupResponse.BlindingGroup":{
                "title":"BlindingGroup",
                "type":"object",
                "properties":{
                    "title":{
                        "title":"Title",
                        "type":"string",
                        "description":"Blinding group title.",
                        "example":"Blinding Group Lotion"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Blinding group description.",
                        "example":"Some description."
                    },
                    "defaultBlindingKit":{
                        "title":"Default Blinding Kit",
                        "type":"string",
                        "description":"ID of the default kit in the blinding group.",
                        "example":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                    },
                    "id":{
                        "title":"Blinding Group ID",
                        "type":"string",
                        "description":"ID of blinding group.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"List of kit types in the blinding group.",
                        "example":[
                            {
                                "id":"BOTTLE-A",
                                "kitTypeName":"Kit A",
                                "description":"Non dosing kit",
                                "packageTypeId":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/BlindingGroupResponse.KitTypeSummary"
                        }
                    }
                },
                "description":"Object containing blinding group details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "title":"Blinding Group Lotion",
                    "description":"Some description.",
                    "kitTypes":[
                        {
                            "id":"BOTTLE-A",
                            "kitTypeName":"Kit A",
                            "description":"Non dosing kit",
                            "packageTypeId":5
                        }
                    ],
                    "defaultBlindingKit":"392DA9F053E94B9B9339AC7D0FA0D1DB"
                }
            },
            "CohortLimitV2":{
                "title":"Cohort Limit v2.0",
                "required":[
                    "cohortId",
                    "enabled"
                ],
                "type":"object",
                "properties":{
                    "cohortId":{
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid"
                    },
                    "randomizationLimit":{
                        "minimum":1,
                        "type":"number",
                        "description":"Maximum number of subjects who can be randomized for the study.",
                        "format":"double",
                        "example":5
                    },
                    "notificationLimit":{
                        "maximum":100,
                        "minimum":1,
                        "type":"number",
                        "description":"Notification limit value. Once value is reached a notification is sent.",
                        "format":"double",
                        "example":5
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Indicates if cohort is enabled.",
                        "example":true
                    },
                    "stratumId":{
                        "type":"string",
                        "description":"Stratum ID.",
                        "format":"uuid"
                    }
                },
                "description":"Response object containing cohort limit details.",
                "example":{
                    "cohortId":"B1B8327AFAA6412287106192AB5984EF",
                    "stratumId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "randomizationLimit":100,
                    "notificationLimit":80,
                    "enabled":true
                }
            },
            "ResupplyResponseV2":{
                "title":"ResupplyResponse",
                "type":"object",
                "properties":{
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"Order status.",
                        "example":"DESTROYED",
                        "enum":[
                            "PENDING",
                            "INTRANSIT",
                            "RECEIVED",
                            "CANCELLED",
                            "LOST",
                            "CONFIRMED",
                            "INVALID",
                            "PENDING_DESTRUCTION",
                            "RECEIVED_FOR_DESTRUCTION",
                            "DESTROYED"
                        ]
                    },
                    "formId":{
                        "title":"Form ID",
                        "type":"string",
                        "description":"Identifier of the form associated with the resupply.",
                        "format":"uuid"
                    }
                },
                "description":"Response object containing resupply details."
            },
            "UploadDBHeaderResponse":{
                "title":"UploadDBHeaderResponse",
                "type":"object",
                "properties":{
                    "dbHeaders":{
                        "title":"DB Headers",
                        "type":"array",
                        "description":"Database headers.",
                        "example":[
                            "Kit Type",
                            "Kit Number"
                        ],
                        "items":{
                            "type":"string",
                            "example":"Kit Number"
                        }
                    }
                },
                "description":"Contains database header response."
            },
            "DoseHoldSettingsRequestV2":{
                "title":"DoseHoldSettingsRequest v2.0",
                "required":[
                    "enabled",
                    "kitTypeSrcId",
                    "startingVisitSrcId"
                ],
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled.",
                        "example":true
                    },
                    "frequencyUnlimited":{
                        "title":"Frequency Unlimited",
                        "type":"boolean",
                        "description":"Indicates whether frequency is unlimited.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"double",
                        "example":5
                    },
                    "maxDoseHolds":{
                        "title":"Maximum Dose Holds",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Maximum number of allowed dose holds.",
                        "format":"double",
                        "example":800
                    },
                    "frequencyLimitInSequence":{
                        "title":"Frequency Limit In Sequence",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Frequency limit within a sequence.",
                        "format":"double",
                        "example":800
                    },
                    "frequencyLimitInDays":{
                        "title":"Frequency Limit In Days",
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Frequency limit in days.",
                        "format":"double",
                        "example":800
                    },
                    "endingVisitSrcId":{
                        "type":"string",
                        "description":"Ending Visit Id.",
                        "format":"uuid"
                    },
                    "endingVisitInstanceNumber":{
                        "maximum":999,
                        "minimum":1,
                        "type":"number",
                        "description":"Ending Visit Instance Number.",
                        "format":"BigDecimal",
                        "example":3
                    }
                },
                "description":"Request containing dose hold settings."
            },
            "DoseHoldSettingsResponseTOV2":{
                "title":"DoseHoldSettingsResponseTO v2.0",
                "type":"object",
                "properties":{
                    "doseHoldID":{
                        "title":"Dose Hold ID",
                        "type":"string",
                        "description":"Dose hold ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal"
                    },
                    "userID":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "startingVisitSrcId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal"
                    },
                    "enabled":{
                        "title":"Enabled",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is enabled."
                    },
                    "maxDoseHolds":{
                        "title":"Maximum Dose Holds",
                        "type":"number",
                        "description":"Maximum number of allowed dose holds.",
                        "format":"BigDecimal"
                    },
                    "frequencyUnlimited":{
                        "title":"Frequency Unlimited",
                        "type":"boolean",
                        "description":"Indicates whether frequency is unlimited."
                    },
                    "frequencyLimitInSequence":{
                        "title":"Frequency Limit In Sequence",
                        "type":"number",
                        "description":"Frequency limit within a sequence.",
                        "format":"BigDecimal"
                    },
                    "frequencyLimitInDays":{
                        "title":"Frequency Limit In Days",
                        "type":"number",
                        "description":"Frequency limit in days.",
                        "format":"BigDecimal"
                    },
                    "endingVisitSrcId":{
                        "type":"string",
                        "description":"Ending Visit Id.",
                        "format":"uuid"
                    },
                    "endingVisitInstanceNumber":{
                        "type":"number",
                        "description":"Ending Visit Instance Number.",
                        "format":"BigDecimal"
                    }
                },
                "description":"Response containing dose hold settings."
            },
            "DepotKitDetailsResponse":{
                "title":"DepotKitDetailsResponse v1.0",
                "type":"object",
                "properties":{
                    "distinctInventoryStatusIds":{
                        "title":"Inventory Status IDs",
                        "type":"array",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":"5,4",
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "enum":[
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10",
                            "11",
                            "12",
                            "13",
                            "14",
                            "15",
                            "16",
                            "17",
                            "18",
                            "19",
                            "20"
                        ]
                    },
                    "blindedLotsExistsInStudy":{
                        "title":"Blinded Lots Exist In Study",
                        "type":"boolean",
                        "description":"Indicates whether blinded lots exist in the study.",
                        "example":true
                    },
                    "updatableKitsTotal":{
                        "title":"Updatable Kits Total",
                        "type":"integer",
                        "description":"The total number of kits that can be updated.",
                        "format":"int64",
                        "example":1
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of depot user kit reconciliation details.",
                        "items":{
                            "$ref":"#/components/schemas/DepotUserKitReconciliationTOV2"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains depot kit details."
            },
            "DepotUserKitReconciliationTOV2":{
                "title":"DepotUserKitReconciliationTO v2.0",
                "type":"object",
                "properties":{
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"5"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "example":1
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"BLK-001"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Units per kit.",
                        "example":30
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Bottle of tablets"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Distribution setting",
                        "example":"BLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED"
                        ]
                    },
                    "barCode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"BarCode"
                    },
                    "blindedLotExpirationDate":{
                        "type":"string",
                        "description":"Blinded lot expiration date.",
                        "format":"date-time",
                        "example":"2026-12-31T00:00:00Z"
                    },
                    "blindedLotId":{
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"10000000000000000000000000000001"
                    },
                    "manufacturingLotNumber":{
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Lot1"
                    },
                    "blindedLotNumber":{
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"blot1"
                    },
                    "labelGroup":{
                        "type":"string",
                        "description":"Label group.",
                        "example":"labelGroup1"
                    },
                    "quantity":{
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"double",
                        "example":5
                    },
                    "restrictedQuantity":{
                        "type":"number",
                        "description":"Restricted quantity.",
                        "format":"double",
                        "example":1
                    },
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "manufacturingLotId":{
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Depot user kit reconciliation details."
            },
            "DepotKitFiltersRequestV2":{
                "title":"DepotKitFiltersRequest v2.0",
                "type":"object",
                "properties":{
                    "searchByKitNumber":{
                        "title":"Kit Number",
                        "type":"string",
                        "description":"Kit number.",
                        "example":"KIT001"
                    },
                    "searchBySeqNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "example":1
                    },
                    "sequenceNumberMin":{
                        "type":"number",
                        "description":"Kit minimum sequence number.",
                        "example":1
                    },
                    "sequenceNumberMax":{
                        "type":"number",
                        "description":"Kit maximum sequence number.",
                        "example":1
                    },
                    "kitNumberMin":{
                        "type":"number",
                        "description":"Kit minimum number.",
                        "example":1
                    },
                    "kitNumberMax":{
                        "type":"number",
                        "description":"Kit maximum number.",
                        "example":1
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "shipmentNumber":{
                        "title":"Shipment Number",
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"Shipment1"
                    },
                    "quarantineId":{
                        "title":"Quarantine ID",
                        "type":"string",
                        "description":"Quarantine ID.",
                        "example":"0000000000001"
                    },
                    "inventoryStatusIds":{
                        "title":"Inventory Status IDs",
                        "type":"array",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":[
                            5,
                            10
                        ],
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        }
                    },
                    "serialized":{
                        "title":"Serialized",
                        "type":"boolean",
                        "description":"Flag to filter serialized kits.",
                        "example":true
                    }
                },
                "description":"Request object for kit filters."
            },
            "UpdateDepotKitsRequestV2":{
                "title":"UpdateDepotKitsRequest v2.0",
                "required":[
                    "inventoryStatusId",
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Kit ID.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "quantity":{
                        "title":"Quantity",
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":15
                    },
                    "partialUpdate":{
                        "title":"Partial Update",
                        "type":"boolean",
                        "description":"Indicates whether a single non-serialized record is being updated.",
                        "example":false
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"new kits are available"
                    },
                    "kitFilters":{
                        "$ref":"#/components/schemas/DepotKitFiltersRequestV2"
                    },
                    "kitsFilter":{
                        "$ref":"#/components/schemas/DepotKitFiltersRequestV2"
                    }
                },
                "description":"Request to update status of serialized and non-serialized kits."
            },
            "KitDetailsTOV2":{
                "title":"KitDetailsTO v2.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location.",
                        "example":"1873CDF69E9B48B89B2D9E7951057D09"
                    },
                    "manufacturingLotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "labelGroupId":{
                        "title":"Label Group ID",
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"BLot1101"
                    },
                    "labelGroup":{
                        "title":"Label Group",
                        "type":"string",
                        "description":"Label group.",
                        "example":"Labelgroup1001"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit details."
            },
            "KitListDetailsTOV2":{
                "title":"KitListDetailsTO v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"ID",
                        "type":"string",
                        "description":"Unique identifier of the kit list.",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Name",
                        "type":"string",
                        "description":"Kit list name.",
                        "example":"KitList-01"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Kit list description.",
                        "example":"Example kit list."
                    },
                    "statusId":{
                        "title":"Status ID",
                        "type":"integer",
                        "description":"Status ID of the kit list.",
                        "format":"int32",
                        "example":1
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the action.",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    }
                },
                "description":"Object containing kit list details."
            },
            "KitTypeSummaryResponse":{
                "title":"Kit Type Summary Response",
                "type":"object",
                "properties":{
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"Kit type summary.",
                        "items":{
                            "$ref":"#/components/schemas/KitTypeSummaryTO"
                        }
                    },
                    "minSequenceNumber":{
                        "type":"integer",
                        "description":"Kit minimum sequence number.",
                        "format":"int32",
                        "example":5
                    },
                    "maxSequenceNumber":{
                        "type":"integer",
                        "description":"Kit maximum sequence number.",
                        "format":"int32",
                        "example":5
                    },
                    "minKitNumber":{
                        "type":"integer",
                        "description":"Minimum Kit number",
                        "format":"int32",
                        "example":5
                    },
                    "maxKitNumber":{
                        "type":"integer",
                        "description":"Maximum Kit number",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Kit type summary response."
            },
            "KitTypeSummaryTO":{
                "title":"KitTypeSummaryTO v4.0",
                "type":"object",
                "properties":{
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Some description for kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "packageType":{
                        "type":"string",
                        "description":"Package type.",
                        "example":"BLISTERPACK",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "totalKitNumbers":{
                        "type":"number",
                        "description":"Total kit number.",
                        "format":"BigDecimal",
                        "example":105
                    },
                    "kitsDispensed":{
                        "type":"number",
                        "description":"Kit dispensed.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "kitsDamaged":{
                        "type":"number",
                        "description":"Kit damaged.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "kitsAvailable":{
                        "type":"number",
                        "description":"Kits available.",
                        "format":"BigDecimal"
                    },
                    "kitsInTransit":{
                        "type":"number",
                        "description":"Kits in transit.",
                        "format":"int",
                        "example":2
                    },
                    "kitsReturnedToSite":{
                        "type":"number",
                        "description":"Kits returned to site.",
                        "format":"int",
                        "example":1
                    },
                    "kitsPendingDestruction":{
                        "type":"number",
                        "description":"Kits pending destruction.",
                        "format":"int",
                        "example":0
                    },
                    "kitsExpired":{
                        "type":"number",
                        "description":"Kits expired.",
                        "format":"int",
                        "example":1
                    },
                    "kitsMisallocated":{
                        "title":"Kits Misallocated",
                        "type":"number",
                        "description":"Misallocated kits.",
                        "format":"BigDecimal"
                    },
                    "kitsRestrictedQuarantined":{
                        "title":"Kits Restricted Quarantined",
                        "type":"number",
                        "description":"Kits in restricted quarantine.",
                        "format":"BigDecimal"
                    },
                    "kitsQuarantined":{
                        "title":"Kits Quarantined",
                        "type":"number",
                        "description":"Kits in quarantine.",
                        "format":"BigDecimal"
                    },
                    "kitsPreQuarantined":{
                        "title":"Kits Pre Quarantined",
                        "type":"number",
                        "description":"Kits in pre-quarantine.",
                        "format":"BigDecimal"
                    },
                    "kitsDestroyed":{
                        "title":"Kits Destroyed",
                        "type":"number",
                        "description":"Destroyed kits.",
                        "format":"BigDecimal"
                    },
                    "kitsNotInUse":{
                        "title":"Kits Not In Use",
                        "type":"number",
                        "description":"Kits not in use.",
                        "format":"BigDecimal"
                    },
                    "kitsMissing":{
                        "title":"Kits Missing",
                        "type":"number",
                        "description":"Missing kits.",
                        "format":"BigDecimal"
                    },
                    "kitsLostBySubject":{
                        "title":"Kits Lost By Subject",
                        "type":"number",
                        "description":"Kits lost by the subject.",
                        "format":"BigDecimal"
                    },
                    "kitsTemporarilyUnavailable":{
                        "title":"Kits Temporarily Unavailable",
                        "type":"number",
                        "description":"Kits temporarily unavailable.",
                        "format":"BigDecimal"
                    },
                    "kitsDamagedBySubject":{
                        "title":"Kits Damaged By Subject",
                        "type":"number",
                        "description":"Kits damaged by the subject.",
                        "format":"BigDecimal"
                    },
                    "kitsNew":{
                        "title":"Kits New",
                        "type":"number",
                        "description":"New kits.",
                        "format":"BigDecimal"
                    },
                    "kitsNotDispensedToSubject":{
                        "title":"Kits Not Dispensed To Subject",
                        "type":"number",
                        "description":"Kits not dispensed to the subject.",
                        "format":"BigDecimal"
                    },
                    "kitsConserved":{
                        "title":"Kits Conserved",
                        "type":"number",
                        "description":"Conserved kits.",
                        "format":"BigDecimal"
                    },
                    "kitsReceivedForDestruction":{
                        "title":"Kits Received For Destruction",
                        "type":"number",
                        "description":"Kits received for destruction.",
                        "format":"BigDecimal"
                    },
                    "updatableKitsTotal":{
                        "title":"Updatable Kits Total",
                        "type":"number",
                        "description":"The total number of kits that can be updated.",
                        "format":"BigDecimal"
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit type summary detail."
            },
            "KitsAuditResponse":{
                "title":"KitsAuditResponse v3.0",
                "type":"object",
                "properties":{
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number."
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number."
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number."
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days."
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days."
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number."
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit."
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit."
                    },
                    "verified":{
                        "type":"boolean",
                        "description":"Verified"
                    },
                    "deviceId":{
                        "type":"string",
                        "description":"deviceID"
                    },
                    "barCode":{
                        "type":"string",
                        "description":"Barcode."
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed."
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot."
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID."
                    },
                    "itemNumber":{
                        "title":"Item Number",
                        "type":"string",
                        "description":"Item number."
                    },
                    "transactionId":{
                        "type":"string",
                        "description":"Audit transaction ID.",
                        "format":"uuid"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number."
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support."
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "type":"number",
                        "description":"Instance number of the unscheduled visit",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Response containing audit details for each kit."
            },
            "KitNumberBarcodeTO":{
                "required":[
                    "barcode",
                    "kitNumber"
                ],
                "type":"object",
                "properties":{
                    "barcode":{
                        "maxLength":1000,
                        "minLength":0,
                        "type":"string",
                        "description":"Barcode of the kit.",
                        "example":"61234"
                    },
                    "kitNumber":{
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"Kit-5"
                    }
                }
            },
            "UpdateKitAttributesRequestV2":{
                "title":"Update Kit Attributes Request v2.0",
                "type":"object",
                "properties":{
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV1"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "title":"Reason",
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "manufacturingLotId":{
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "itemNumber":{
                        "title":"Item Number",
                        "type":"string",
                        "description":"Item number.",
                        "example":"30100000200000000000000000000005"
                    },
                    "updateMaterialId":{
                        "title":"Update Material ID",
                        "type":"boolean",
                        "description":"Whether to update the material ID.",
                        "example":true
                    },
                    "updateItemNumber":{
                        "title":"Update Item Number",
                        "type":"boolean",
                        "description":"Whether to update the item number.",
                        "example":true
                    }
                },
                "description":"Request to update kit attributes."
            },
            "SiteKitDetailsResponseV2":{
                "title":"Site Kit Details Response v2.0",
                "type":"object",
                "properties":{
                    "minKitNumber":{
                        "title":"Minimum Kit Number",
                        "type":"integer",
                        "description":"Minimum Kit number.",
                        "format":"int32",
                        "example":10
                    },
                    "maxKitNumber":{
                        "title":"Maximum Kit Number",
                        "type":"integer",
                        "description":"Maximum Kit number.",
                        "format":"int32",
                        "example":10
                    },
                    "totalReturnedUnits":{
                        "title":"Total Returned Units",
                        "type":"number",
                        "description":"Total number of returned units.",
                        "format":"double",
                        "example":10
                    },
                    "distinctInventoryStatusIds":{
                        "title":"Distinct Inventory Status IDs",
                        "type":"array",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":[
                            5,
                            4
                        ],
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        },
                        "enum":[
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10",
                            "11",
                            "12",
                            "13",
                            "14",
                            "15",
                            "16",
                            "17",
                            "18",
                            "19",
                            "20"
                        ]
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Contains site user inventory.",
                        "example":[
                            {
                                "id":"B1B8327AFAA6412287106192AB5984EF",
                                "kitNumber":123,
                                "inventoryStatusId":5,
                                "inventoryStatus":"Available",
                                "shipmentId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "receivedDate":"2026-02-21T06:30:00Z",
                                "comment":"Reconciled at site",
                                "subjectId":"D313327EF13845169A8ADADDA435431E",
                                "packageTypeId":1,
                                "unitsPerKit":10,
                                "returnedUnits":2,
                                "missingUnits":0,
                                "balanceUnits":8,
                                "verified":1,
                                "lastModifiedDate":"2026-02-21T06:45:00Z",
                                "kitDescription":"Kit A",
                                "distributionSetting":"BLINDED"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/SiteUserKitReconciliationTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains site kit detail."
            },
            "SiteUserKitReconciliationTO":{
                "title":"SiteUserKitReconciliationTO v6.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit/Lot number.",
                        "format":"BigDecimal"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Inventory status.",
                        "example":"New, Damaged",
                        "enum":[
                            "Available",
                            " Damaged",
                            " Destroyed",
                            " Dispensed",
                            " Expired",
                            " Not in Use",
                            " Misallocated",
                            " Missing",
                            " In Transit",
                            " Quarantined",
                            " Pre-quarantined",
                            " Pending Destruction",
                            " Lost by Subject",
                            " Temporarily Unavailable",
                            " Damaged by Subject",
                            " New",
                            " Not Dispensed to Subject",
                            " Returned to Site"
                        ]
                    },
                    "receivedDate":{
                        "type":"string",
                        "description":"Shipment received date.",
                        "example":"23-NOV-2018 08.43.01.700136000 AM"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"BigDecimal"
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Units per Kit.",
                        "format":"BigDecimal"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned Units of Kit.",
                        "format":"BigDecimal"
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing Units of Kit.",
                        "format":"BigDecimal"
                    },
                    "balanceUnits":{
                        "title":"Balanced Units",
                        "type":"number",
                        "description":"Balance Units of Kit.",
                        "format":"BigDecimal"
                    },
                    "verified":{
                        "title":"Verified",
                        "type":"number",
                        "description":"Indicates whether the kit is verified.",
                        "format":"BigDecimal"
                    },
                    "lastModifiedDate":{
                        "type":"string",
                        "description":"Last modified date.",
                        "example":"23-NOV-2018 08.43.01.700136000 AM"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description."
                    },
                    "distributionSetting":{
                        "title":"Distribution Setting",
                        "type":"string",
                        "description":"Distribution setting.",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED"
                        ]
                    },
                    "deviceType":{
                        "title":"mHealth Device Type",
                        "type":"string",
                        "description":"Type of the mHealth device.",
                        "example":"ActivityWatch"
                    },
                    "deviceConnection":{
                        "title":"mHealth Device Connection Type",
                        "type":"string",
                        "description":"Connection type of the mHealth device.",
                        "example":"DevicetoCloud"
                    },
                    "mHealthDeviceId":{
                        "title":"mHealth Device ID",
                        "type":"string",
                        "description":"ID of the mHealth device.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "blindedLotExpirationDate":{
                        "title":"Blinded Expiration Date",
                        "type":"string",
                        "description":"Blinded expiration date.",
                        "format":"date"
                    },
                    "manufacturingLotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Identifier of the manufacturing lot."
                    },
                    "blindedLotId":{
                        "type":"string",
                        "description":"ID of blinded lot."
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number."
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number."
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Quantity of kits."
                    },
                    "restrictedQuantity":{
                        "title":"Restricted Quantity",
                        "type":"number",
                        "description":"Restricted quantity of kits."
                    },
                    "kitTypeSrcId":{
                        "type":"string"
                    },
                    "barCode":{
                        "title":"Barcode",
                        "type":"string",
                        "description":"Barcode of the kit."
                    },
                    "id":{
                        "type":"string",
                        "description":"ID of the inventory.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment."
                    },
                    "dispensationConfirmed":{
                        "title":"Dispensation Confirmed",
                        "type":"boolean",
                        "description":"Indicates if dispensation is confirmed."
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number (UTF-8)",
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"5"
                    }
                },
                "description":"Contains site user kit reconciliation details.",
                "example":{
                    "id":"B1B8327AFAA6412287106192AB5984EF",
                    "kitNumber":10001,
                    "inventoryStatusId":10,
                    "inventoryStatus":"Dispensed",
                    "comment":"Received at site"
                }
            },
            "SiteUserUpdateKitsFilter":{
                "type":"object",
                "properties":{
                    "serialized":{
                        "type":"boolean",
                        "description":"Is kit serialized or non-serialized",
                        "example":true
                    },
                    "kitRange":{
                        "type":"string",
                        "description":"Range of the kit.",
                        "example":"KIT_NUMBER:10:100"
                    },
                    "searchString":{
                        "type":"string",
                        "description":"Search string.",
                        "example":"KIT"
                    },
                    "inventoryStatusIds":{
                        "title":"inventoryStatusIds",
                        "type":"array",
                        "description":"List of inventory status IDs.",
                        "example":[
                            5,
                            10
                        ],
                        "items":{
                            "type":"integer",
                            "format":"int32"
                        }
                    }
                },
                "description":"Contains filter criteria to update kits.",
                "example":{
                    "kitRange":"KIT_NUMBER:10:100",
                    "searchString":"KIT",
                    "inventoryStatusIds":[
                        5,
                        10
                    ],
                    "serialized":true
                }
            },
            "SiteUserUpdateKitsStatusRequest":{
                "required":[
                    "inventoryStatusId"
                ],
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason description.",
                        "example":"Reconciled at site"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned Units of Kit.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing Units of Kit.",
                        "format":"BigDecimal",
                        "example":0
                    },
                    "visitSrcId":{
                        "type":"string",
                        "description":"Visit source ID",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "type":"number",
                        "description":"InstanceNumber",
                        "format":"BigDecimal",
                        "example":1
                    },
                    "kits":{
                        "title":"kits",
                        "type":"array",
                        "description":"Contains kit IDs.",
                        "example":[
                            "B1B8327AFAA6412287106192AB5984EF",
                            "C36A3197FDEE433FB5547EE83DE99E4B"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "kitsFilter":{
                        "$ref":"#/components/schemas/SiteUserUpdateKitsFilter"
                    }
                }
            },
            "KitTypesTOV2":{
                "title":"KitTypesTO v2.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Kit dosage.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end.",
                        "format":"date-time"
                    },
                    "isDefault":{
                        "type":"string",
                        "description":"Indicate if kit type is default.",
                        "example":"1"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"kit_A"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Some description"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"Kit storage setting.",
                        "example":"REFRIGERATED",
                        "enum":[
                            "AMBIENT",
                            "REFRIGERATED",
                            "FROZEN"
                        ]
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Kit distribution setting.",
                        "example":"BLINDED",
                        "enum":[
                            "BLINDED",
                            "UNBLINDED"
                        ]
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial supply type for the kit.",
                        "example":"BOTTLE"
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "minShipUnits":{
                        "type":"number",
                        "description":"Mininum kits to ship.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "bufferdays":{
                        "type":"number",
                        "description":"Buffer days.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"string",
                        "description":"Indicate whether to dispense kits outside window.",
                        "example":"1",
                        "enum":[
                            "0",
                            "1"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Unique identifier",
                        "format":"uuid"
                    },
                    "srcId":{
                        "title":"Source ID",
                        "type":"string",
                        "description":"Source identifier.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"WearablePatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    }
                },
                "description":"Contains details about kit types."
            },
            "LotRequest":{
                "required":[
                    "expirationDate",
                    "manufacturingLotNumber"
                ],
                "type":"object",
                "properties":{
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"LOT-001"
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Lot number.",
                        "example":"LOT-001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2}",
                        "type":"string",
                        "description":"Expiration date.",
                        "example":"2025-12-31"
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "maximum":999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "maximum":999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "quantity":{
                        "title":"Quantity",
                        "minimum":1,
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "materialId":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Material ID.",
                        "format":"String",
                        "example":"1234"
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "updateMaterialId":{
                        "type":"boolean",
                        "description":"Whether to update the material ID.",
                        "example":true
                    },
                    "updateKitTypeId":{
                        "type":"boolean",
                        "description":"Whether to update the kit type ID.",
                        "example":true
                    }
                },
                "description":"Request object for lot."
            },
            "ManufacturingLotTOV2":{
                "title":"Manufacturing Lot v2.0",
                "type":"object",
                "properties":{
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"Lot1001"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "runNumber":{
                        "type":"string",
                        "description":"Run number.",
                        "example":"run number 01"
                    },
                    "inUse":{
                        "type":"boolean",
                        "description":"Indicates whether the lot is in use.",
                        "example":true
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "blindedLotVersionStart":{
                        "type":"string",
                        "description":"Blinded lot version start date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"MODIFIED",
                        "enum":[
                            "CREATED",
                            "REMOVED",
                            "MODIFIED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Some reason"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Some comment"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Manufacturing lot details."
            },
            "RandReplacementRequestV1":{
                "title":"RandReplacementRequest v1.0",
                "required":[
                    "allowRandNumberReplacement",
                    "replacementStartingPrefix"
                ],
                "type":"object",
                "properties":{
                    "allowRandNumberReplacement":{
                        "title":"Allow Rand Number Replacement",
                        "type":"boolean",
                        "description":"Flag for activation of randomization number replacement.",
                        "example":true
                    },
                    "replacementStartingPrefix":{
                        "title":"Replacement Starting Prefix",
                        "type":"string",
                        "description":"Starting prefix for randomization number replacement.",
                        "example":"997"
                    },
                    "maxReplacements":{
                        "title":"Max Replacements",
                        "type":"string",
                        "description":"Maximum number of replacements allowed per subject.",
                        "example":"5"
                    }
                },
                "description":"Request object containing randomization replacement settings."
            },
            "ResupplyGroupRequest":{
                "title":"Resupply Group Request",
                "required":[
                    "kitTypes",
                    "resupplyName",
                    "resupplyTypeId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "resupplyId":{
                        "title":"Resupply ID",
                        "type":"string",
                        "description":"Resupply ID.",
                        "format":"uuid"
                    },
                    "resupplyName":{
                        "title":"Resupply Name",
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Resupply name.",
                        "example":"Resupply 1"
                    },
                    "resupplyTypeId":{
                        "type":"integer",
                        "description":"Resupply group type.",
                        "format":"int32",
                        "example":2
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "description":"Kit type summary.",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroupRequest.KitTypeSummary"
                        }
                    },
                    "type":{
                        "type":"string",
                        "description":"Resupply group type."
                    }
                },
                "description":"Request containing resupply group details."
            },
            "ResupplyGroupResponseV2":{
                "title":"ResupplyGroupResponse v2.0",
                "type":"object",
                "properties":{
                    "resupplies":{
                        "title":"Resupply Groups",
                        "type":"array",
                        "description":"List of resupply groups.",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroup"
                        }
                    }
                },
                "description":"Response object for resupply group."
            },
            "CommonGenerateRndListRequest":{
                "required":[
                    "initialRandNumber",
                    "srcId",
                    "srcVersionStart",
                    "title",
                    "treatmentRatioMultiplier"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "title":"Title",
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization list title.",
                        "example":"Randomization List 001"
                    },
                    "description":{
                        "maxLength":2000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization list description.",
                        "example":"Randomization list with demographic cohort"
                    },
                    "treatmentRatioMultiplier":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"Multiplier for blocks.",
                        "format":"int32",
                        "example":5
                    },
                    "initialRandNumber":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Starting number.",
                        "format":"int64",
                        "example":1
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Unique ID.",
                        "format":"uuid"
                    },
                    "srcVersionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "noOfRows":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of rows.",
                        "format":"int32",
                        "example":5
                    },
                    "blocks":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerStratum":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per stratum.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerCohort":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per cohort.",
                        "format":"int32",
                        "example":5
                    },
                    "blocksPerStratumPerCohort":{
                        "maximum":500000,
                        "minimum":1,
                        "type":"integer",
                        "description":"Number of blocks per stratum per cohort.",
                        "format":"int32",
                        "example":5
                    },
                    "mode":{
                        "type":"string",
                        "description":"Indicates the operational mode of the study. Accepted values: active, test, or training.",
                        "example":"test",
                        "enum":[
                            "test",
                            "active",
                            "training"
                        ]
                    },
                    "randomizationSeed":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"integer",
                        "description":"Seed number.",
                        "format":"int32",
                        "example":12345
                    },
                    "startingSequenceNumber":{
                        "maximum":99999999,
                        "minimum":1,
                        "type":"number",
                        "description":"Starting sequence number.",
                        "format":"BigDecimal",
                        "example":1
                    }
                },
                "description":"Request Object to create randomization list"
            },
            "MinimizationGroupTO":{
                "title":"MinimizationGroupTO v1.0",
                "type":"object",
                "properties":{
                    "stratumId":{
                        "title":"Stratum ID",
                        "type":"string",
                        "description":"Unique ID for stratum.",
                        "format":"UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "groupId":{
                        "title":"Group ID",
                        "type":"string",
                        "description":"Unique ID for group.",
                        "format":"UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "groupName":{
                        "title":"Group Name",
                        "type":"string",
                        "description":"Name of the group.",
                        "example":"Smoker, Non-smoker"
                    }
                },
                "description":"Contains minimization group details."
            },
            "MinimizationTO":{
                "title":"MinimizationTO v1.0",
                "type":"object",
                "properties":{
                    "probabilityFactor":{
                        "title":"Probability Factor",
                        "type":"string",
                        "description":"Probability factor for a given random number.",
                        "example":"0.23"
                    },
                    "groups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/MinimizationGroupTO"
                        }
                    }
                },
                "description":"Contains minimization details."
            },
            "RandNumberResponse":{
                "title":"Random Number Response",
                "type":"object",
                "properties":{
                    "randNumbers":{
                        "type":"array",
                        "description":"Contains Randomization number detail.",
                        "example":[
                            {
                                "randNumberId":"D313327EF13845169A8ADADDA435431E",
                                "versionStart":"2026-02-21T06:30:00Z",
                                "versionEnd":"2026-02-21T06:45:00Z",
                                "randNumber":10,
                                "blockNumber":1,
                                "randStatusId":3,
                                "randStatusKey":"Assigned",
                                "treatmentId":"B1B8327AFAA6412287106192AB5984EF",
                                "externalTreatmentId":"ARM-A",
                                "blockingParamName":"site",
                                "blockingParamId":"SITE-001",
                                "blockingParamValue":"Site1001",
                                "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "subjectNumber":"S1001",
                                "statumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                                "stratumName":"Male",
                                "cohortId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                "cohortName":"Demo Cohort 1001",
                                "sequenceNumber":1001
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RandNumbersTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains random number response."
            },
            "RandNumbersTO":{
                "title":"RandNumbersTO v4.0",
                "type":"object",
                "properties":{
                    "randNumberId":{
                        "title":"Randomization Number ID",
                        "type":"string",
                        "description":"Unique ID for randomization number.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "randNumber":{
                        "title":"Randomization Number",
                        "type":"number",
                        "description":"Randomization number.",
                        "format":"double",
                        "example":10
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"number",
                        "description":"Block number.",
                        "format":"double",
                        "example":10
                    },
                    "randStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each Randomization status value (1 for Not Approved, 2 for Available, 3 for Not Released, 4 for Assigned, 5 for Randomized in Error).",
                        "format":"int32",
                        "example":3,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5
                        ]
                    },
                    "randStatusKey":{
                        "title":"Randomization Status Key",
                        "type":"string",
                        "description":"Randomization status key.",
                        "example":"Assigned, Available",
                        "enum":[
                            "Unapproved",
                            "Available",
                            "Inactive",
                            "Assigned",
                            "Randomized in error"
                        ]
                    },
                    "treatmentId":{
                        "title":"Treatment ID",
                        "type":"string",
                        "description":"Unique ID for treatment arm.",
                        "format":"uuid"
                    },
                    "externalTreatmentId":{
                        "title":"External Treatment ID",
                        "type":"string",
                        "description":"External treatment ID.",
                        "example":"Treatment arm 1001 "
                    },
                    "blockingParamName":{
                        "title":"Blocking Parameter Name",
                        "type":"string",
                        "description":"Blocking parameter name.",
                        "example":"site"
                    },
                    "blockingParamId":{
                        "title":"Blocking Parameter ID",
                        "type":"string",
                        "description":"Unique ID of blocking parameter.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "blockingParamValue":{
                        "title":"Blocking Parameter Value",
                        "type":"string",
                        "description":"Blocking parameter value.",
                        "example":"Site1001"
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "subjectNumber":{
                        "title":"Subject Number",
                        "type":"string",
                        "description":"Subject number.",
                        "example":"S1001"
                    },
                    "statumId":{
                        "title":"Stratum ID",
                        "type":"string",
                        "description":"Unique Id for stratum.",
                        "format":"uuid"
                    },
                    "stratumName":{
                        "title":"Stratum Name",
                        "type":"string",
                        "description":"Stratum name.",
                        "example":"Male, Female"
                    },
                    "cohortId":{
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid"
                    },
                    "cohortName":{
                        "type":"string",
                        "description":"Cohort name.",
                        "example":"Demo Cohort 1001"
                    },
                    "minimization":{
                        "$ref":"#/components/schemas/MinimizationTO"
                    },
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "type":"number",
                        "description":"Sequence number within the randomization list.",
                        "example":1001
                    }
                },
                "description":"Contains random number details.",
                "example":{
                    "randNumberId":"D313327EF13845169A8ADADDA435431E",
                    "versionStart":"2026-02-21T06:30:00Z",
                    "versionEnd":"2026-02-21T06:45:00Z",
                    "randNumber":10,
                    "blockNumber":1,
                    "randStatusId":3,
                    "randStatusKey":"Assigned",
                    "treatmentId":"B1B8327AFAA6412287106192AB5984EF",
                    "externalTreatmentId":"ARM-A",
                    "blockingParamName":"site",
                    "blockingParamId":"SITE-001",
                    "blockingParamValue":"Site1001",
                    "subjectId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "subjectNumber":"S1001",
                    "statumId":"9B83BFB48C5A41C59775E4D8D22D8B26",
                    "stratumName":"Male",
                    "cohortId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                    "cohortName":"Demo Cohort 1001",
                    "sequenceNumber":1001
                }
            },
            "RandListTOV2":{
                "title":"RandListTO v2.0",
                "type":"object",
                "properties":{
                    "randListId":{
                        "type":"string",
                        "description":"Unique ID for randomization list.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-01-01T12:34:56Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2025-01-02T08:00:00Z"
                    },
                    "name":{
                        "type":"string",
                        "description":"Name of randomization list",
                        "example":"UPL_RL191_V1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Description of randomization list",
                        "example":"Randomization list with demographic cohort"
                    },
                    "isStratified":{
                        "type":"string",
                        "description":"Is randomization list stratified",
                        "example":"n,y"
                    },
                    "isBlocked":{
                        "type":"string",
                        "description":"Is randomization list for blocked algorithm",
                        "example":"n,y"
                    },
                    "isDynamic":{
                        "type":"string",
                        "description":"Is randomization list dynamic",
                        "example":"n,y"
                    },
                    "inUse":{
                        "type":"string",
                        "description":"Is randomization list is in use",
                        "example":"n,y"
                    },
                    "blockedBy":{
                        "type":"string",
                        "description":"Randomization list blocked by type of randomization",
                        "example":"none,country,region,site"
                    },
                    "isCohortBased":{
                        "type":"string",
                        "description":"Indicates whether the randomization is cohort based.",
                        "example":"y"
                    }
                },
                "description":"Contains randomization list details."
            },
            "ShipmentAddNonSerializedKitRequest":{
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "lotId":{
                        "type":"string",
                        "description":"ID of the lot.",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"ID OF THE KIT",
                        "format":"uuid"
                    },
                    "quantity":{
                        "maximum":9999,
                        "minimum":1,
                        "type":"number",
                        "description":"Quantity of kits",
                        "format":"BigDecimal",
                        "example":24
                    }
                },
                "description":"Request object containing non serialized kits to be added to shipment.",
                "example":{
                    "lotId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                    "quantity":24
                }
            },
            "ShipmentEligibleKitTO":{
                "title":"ShipmentEligibleKitTO v1.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit/Lot number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time",
                        "example":"2025-05-09T00:00:00Z"
                    },
                    "srcId":{
                        "type":"string",
                        "description":"Kit type source ID.",
                        "format":"uuid"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"ID of the lot.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"number",
                        "description":"Quantity of kits.",
                        "format":"double",
                        "example":5
                    },
                    "id":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "kitNumberUTF":{
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"12345ab"
                    },
                    "lotNumber":{
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"12345ab"
                    }
                },
                "description":"Contains kit details belonging to shipment.",
                "example":{
                    "id":"D313327EF13845169A8ADADDA435431E",
                    "kitNumber":1001,
                    "sequenceNumber":1001,
                    "kitTypeName":"Kit A",
                    "expirationDate":"2026-12-31T00:00:00Z",
                    "kitNumberUTF":"KIT-1001",
                    "srcId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                    "lotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                    "lotNumber":"LOT-001",
                    "quantity":1
                }
            },
            "ShipmentEligibleKitsResponseV2":{
                "title":"ShipmentEligibleKitsResponse v2.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment Id.",
                        "format":"uuid"
                    },
                    "kits":{
                        "type":"array",
                        "example":[
                            {
                                "id":"D313327EF13845169A8ADADDA435431E",
                                "kitNumber":5,
                                "sequenceNumber":5,
                                "kitTypeName":"Kit A",
                                "expirationDate":"2026-12-31T00:00:00Z",
                                "kitNumberUTF":"12345ab",
                                "srcId":"C36A3197FDEE433FB5547EE83DE99E4B"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentEligibleKitTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Response object containing kits belonging to shipment."
            },
            "ShipmentKitsResponse.KitTypeSummaryV2":{
                "title":"ShipmentKitsResponse.KitTypeSummary v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageTypeKey":{
                        "type":"string",
                        "description":"Package type key.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"double",
                        "example":5
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of serialized kits.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitV2"
                        }
                    }
                },
                "description":"Kit type summary details object."
            },
            "ShipmentKitsResponse.KitV2":{
                "title":"ShipmentKitsResponse.Kit v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"Kit A"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5
                    }
                },
                "description":"Kit details object."
            },
            "ShipmentKitsResponseV2":{
                "title":"ShipmentKitsResponse v2.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"ShipmentKitsResponse.KitTypes",
                        "type":"array",
                        "description":"List of kit type summaries.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitTypeSummaryV2"
                        }
                    }
                },
                "description":"Response object containing shipment kit details."
            },
            "OrderDTOV2":{
                "title":"OrderDTO v2.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "MODIFIED",
                            "REMOVED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"DATA ENTRY ERROR"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated with new values"
                    },
                    "isReconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains order related details."
            },
            "OrderInventoryDTOV2":{
                "title":"OrderInventoryDTO v2.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV2"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTO"
                        }
                    },
                    "version":{
                        "title":"Version",
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "ShipmentQuarantineResponseV1":{
                "title":"ShipmentQuarantineResponse v1.0",
                "required":[
                    "tempExcursionNumber"
                ],
                "type":"object",
                "properties":{
                    "tempExcursionNumber":{
                        "title":"Temperature Excursion Number",
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid",
                        "example":"025b4205-66ad-46b2-818c-9a62ceff9022"
                    }
                },
                "description":"Response body after quarantining a shipment."
            },
            "ShipmentRemoveNonSerializedKitRequest":{
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "lotId":{
                        "type":"string",
                        "description":"ID of the lot.",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "description":"ID OF THE KIT",
                        "format":"uuid"
                    },
                    "quantity":{
                        "minimum":1,
                        "type":"number",
                        "description":"Quantity of kits",
                        "format":"BigDecimal",
                        "example":56
                    }
                },
                "description":"Request object containing non serialized kits to be removed from shipment.",
                "example":{
                    "lotId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "kitTypeSrcId":"D313327EF13845169A8ADADDA435431E",
                    "quantity":56
                }
            },
            "DispensationHistoryResponseV3":{
                "title":"Dispensation History Response v3.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "kitNumberUTF":{
                        "type":"string",
                        "description":"Kit number in UTF-8 format.",
                        "example":"000AB123"
                    }
                },
                "description":"Response object containing Dispensation History.",
                "example":{
                    "lotId":"B1B8327AFAA6412287106192AB5984EF",
                    "lotNumber":"LOT-001",
                    "quantity":5
                }
            },
            "DoseHoldKitV2":{
                "title":"DoseHoldKit v2.0",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch"
                    },
                    "blindedTItrationLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"Low dose"
                    },
                    "isTitration":{
                        "title":"Titration",
                        "type":"boolean",
                        "description":"Indicates whether the current medication is a titration.",
                        "example":true
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason for kits not allowed for dose hold.",
                        "example":"DOSE_HOLD_VISIT_NOT_STARTED"
                    },
                    "isUnblindedPharmacist":{
                        "title":"Treatment Assignment Visibility",
                        "type":"boolean",
                        "description":"Indicates whether treatment assignment information may be visible to study personnel. It should not be visible to study personnel and must be accessible only to an unblinded pharmacist.",
                        "example":true
                    }
                },
                "description":"Response containing dose hold kit details."
            },
            "DispensationHistoryResponseForAllSubjectV2":{
                "title":"DispensationHistoryResponseForAllSubject v2.0",
                "type":"object",
                "properties":{
                    "subjectId":{
                        "title":"Subject ID",
                        "type":"string",
                        "description":"Subject ID.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "title":"Visit Source ID",
                        "type":"string",
                        "description":"Visit source identifier.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "example":123
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":5
                    },
                    "inventoryStatus":{
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Available"
                    },
                    "dispensationDate":{
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time",
                        "example":"2026-02-24T00:00:00Z"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"61234"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "mHealthDeviceId":{
                        "type":"string",
                        "description":"mHealthDevice Id",
                        "example":"MHEALTH-DEV-001"
                    },
                    "dose":{
                        "type":"number",
                        "description":"Dose.",
                        "example":1
                    },
                    "measurement":{
                        "type":"string",
                        "description":"Measurement unit",
                        "example":"mg"
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Frequency",
                        "example":"Once daily"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "example":0
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "example":0
                    },
                    "conserved":{
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":false
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"KIT-000123"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"double"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    }
                },
                "description":"Contains unblinded dispensation history for all subjects."
            },
            "RandomizationDetailsDTOV2":{
                "title":"Randomization Details",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization ID.",
                        "format":"uuid"
                    },
                    "randNumber":{
                        "type":"number",
                        "description":"Randomization number.",
                        "format":"double",
                        "example":5
                    },
                    "randomizationDate":{
                        "type":"string",
                        "description":"Randomization date.",
                        "format":"date-time"
                    },
                    "rndStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each Randomization status value (1 for Not Approved, 2 for Available, 3 for Not Released, 4 for Assigned, 5 for Randomized in Error).",
                        "format":"double",
                        "example":1,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5
                        ]
                    },
                    "description":{
                        "type":"string",
                        "description":"Randomization description.",
                        "example":"RndA"
                    },
                    "externalTreatmentId":{
                        "type":"string",
                        "description":"External treatment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "cohortId":{
                        "title":"Cohort ID",
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    }
                },
                "description":"Contains randomization details."
            },
            "UnblindedRandomizationHistoryDTOV2":{
                "title":"UnblindedRandomizationHistoryDTO v2.0",
                "type":"object",
                "properties":{
                    "treatmentArms":{
                        "title":"Treatment Arms",
                        "type":"array",
                        "description":"List of treatment arms.",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationDetailsDTOV2"
                        }
                    }
                },
                "description":"Contains unblinded randomization history."
            },
            "DispensationKitV2":{
                "title":"DispensationKit v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Dispensation Kit ID",
                        "type":"number",
                        "description":"Unique identifier of the dispensation kit.",
                        "format":"Integer",
                        "example":2
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    }
                },
                "description":"Contains information for the kit dispensation."
            },
            "VisitResultV2":{
                "title":"VisitResult",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number."
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"Contains information for the kit dispensation.",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKitV2"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title."
                    }
                },
                "description":"Visit result."
            },
            "MigrationKitRequestV2":{
                "title":"MigrationKitRequest v2.0",
                "required":[
                    "locationId",
                    "sequenceNumber",
                    "statusId"
                ],
                "type":"object",
                "properties":{
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Kit status ID.",
                        "example":2
                    },
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location ID.",
                        "format":"uuid"
                    },
                    "dispensationTimeStamp":{
                        "title":"Dispensation Timestamp",
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Kit dispensation timestamp (yyyy-MM-dd HH:mm:ss).",
                        "example":"2022-01-23 18:43:01"
                    }
                },
                "description":"Migration Kit Request."
            },
            "releaseForDepotToDepot":{
                "title":"Blinded Lot Request",
                "required":[
                    "blindedLotNumber",
                    "expirationDate"
                ],
                "type":"object",
                "properties":{
                    "blindedLotNumber":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"Bld-Lt-AZ"
                    },
                    "shortName":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Blinded lot short name.",
                        "example":"BlindedLot-01"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date of the blinded lot.",
                        "format":"date",
                        "example":"2022-04-01"
                    },
                    "doNotShip":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":50
                    },
                    "doNotCount":{
                        "maximum":99999,
                        "minimum":0,
                        "type":"number",
                        "description":"Do not count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "manufacturingLotIds":{
                        "type":"array",
                        "description":"IDs of manufacturing lots associated with the blinded lot.",
                        "example":[
                            "392DA9F053E94B9B9339AC7D0FA0D1DB"
                        ],
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "settingsByCountry":{
                        "type":"array",
                        "example":[
                            {
                                "countryIso":"US",
                                "doNotShip":50,
                                "doNotCount":10
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/CountrySupplySettings"
                        }
                    },
                    "releaseForDepotToDepot":{
                        "type":"boolean",
                        "description":"Indicates whether release depot-to-depot is enabled.",
                        "example":true
                    }
                },
                "description":"Blinded lot request parameters."
            },
            "BlindedLotsResponseV3":{
                "title":"BlindedLotsResponse v3.0",
                "type":"object",
                "properties":{
                    "blindedLotList":{
                        "type":"array",
                        "writeOnly":true,
                        "items":{
                            "$ref":"#/components/schemas/BlindedLotsV3"
                        }
                    },
                    "blindedLots":{
                        "title":"Blinded Lots",
                        "type":"array",
                        "description":"List of blinded lots.",
                        "items":{
                            "$ref":"#/components/schemas/BlindedLotsV3"
                        }
                    }
                },
                "description":"Response containing blinded lots."
            },
            "CohortLimitV3":{
                "title":"CohortLimit v3.0",
                "required":[
                    "cohortId",
                    "enabled"
                ],
                "type":"object",
                "properties":{
                    "cohortId":{
                        "type":"string",
                        "description":"Cohort ID.",
                        "format":"uuid"
                    },
                    "randomizationLimit":{
                        "minimum":1,
                        "type":"number",
                        "description":"Maximum number of subjects who can be randomized for the study.",
                        "format":"double",
                        "example":5
                    },
                    "notificationLimit":{
                        "maximum":100,
                        "minimum":1,
                        "type":"number",
                        "description":"Notification limit value. Once value is reached a notification is sent.",
                        "format":"double",
                        "example":5
                    },
                    "enabled":{
                        "type":"boolean",
                        "description":"Indicates if cohort is enabled.",
                        "example":true
                    },
                    "stratumId":{
                        "type":"string",
                        "description":"Stratum ID.",
                        "format":"uuid"
                    },
                    "forcedRandLimit":{
                        "maximum":999999,
                        "minimum":1,
                        "type":"number",
                        "description":"Forced Randomization limit value.",
                        "format":"Integer",
                        "example":5
                    }
                },
                "description":"Response object containing cohort limit details."
            },
            "KitDetailsTOV3":{
                "title":"KitDetailsTO v3.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "sequenceNumber":{
                        "title":"Sequence Number",
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "inventoryStatusId":{
                        "title":"Inventory Status ID",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "locationId":{
                        "title":"Location ID",
                        "type":"string",
                        "description":"Location.",
                        "example":"1873CDF69E9B48B89B2D9E7951057D09"
                    },
                    "manufacturingLotId":{
                        "title":"Manufacturing Lot ID",
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "labelGroupId":{
                        "title":"Label Group ID",
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"9BD49A59E47E4383B98802712763FD43"
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"string",
                        "description":"Name of the inventory status.",
                        "example":"Dispensed"
                    },
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "blindedLotNumber":{
                        "title":"Blinded Lot Number",
                        "type":"string",
                        "description":"Blinded lot number.",
                        "example":"BLot1101"
                    },
                    "labelGroup":{
                        "title":"Label Group",
                        "type":"string",
                        "description":"Label group.",
                        "example":"Labelgroup1001"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"MaterialId0000001"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"ItemNumber0000001"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"double",
                        "example":1
                    },
                    "doNotShip":{
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"double",
                        "example":1
                    },
                    "studySrcId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "verified":{
                        "type":"boolean",
                        "description":"Verified",
                        "example":true
                    },
                    "deviceId":{
                        "type":"string",
                        "description":"Device Id",
                        "example":"100023440000000230"
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"12222"
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed.",
                        "example":true
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot.",
                        "format":"double",
                        "example":1
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains kit details."
            },
            "KitListDetailsTOV3":{
                "title":"KitListDetailsTO v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"ID",
                        "type":"string",
                        "description":"Unique identifier of the kit list.",
                        "format":"uuid"
                    },
                    "name":{
                        "title":"Name",
                        "type":"string",
                        "description":"Kit list name.",
                        "example":"KitList-01"
                    },
                    "description":{
                        "title":"Description",
                        "type":"string",
                        "description":"Kit list description.",
                        "example":"Example kit list."
                    },
                    "statusId":{
                        "title":"Status ID",
                        "type":"integer",
                        "description":"Status ID of the kit list.",
                        "format":"int32",
                        "example":1
                    },
                    "versionStart":{
                        "title":"Version Start",
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"Identifier of the user who performed the action.",
                        "example":"C36A3197FDEE433FB5547EE83DE99E4B"
                    },
                    "pooledKitList":{
                        "title":"Contains Pooled Kits",
                        "type":"boolean",
                        "description":"Indicates whether the kit list contains pooled kits.",
                        "example":false
                    }
                },
                "description":"Object containing kit list details."
            },
            "KitFiltersRequestV3":{
                "title":"KitFiltersRequest v3.0",
                "type":"object",
                "properties":{
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"ALL_SITES"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitStatus":{
                        "type":"string",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":"1"
                    },
                    "kitRange":{
                        "type":"string",
                        "description":"Kit range",
                        "example":"SEQUENCE_NUMBER:900:1200"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitNumber":{
                        "type":"string",
                        "description":"Kit number.",
                        "example":"abc-2"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"1"
                    },
                    "kitTypeIds":{
                        "type":"array",
                        "description":"ID of the kit type.",
                        "example":[
                            "3F6567865E694182BEEA2B4F76538F05",
                            "461A0B8261454C1EBA56285BB538E7B5",
                            "EB2B77004EF74E479B6DDBA56D8B6A51"
                        ],
                        "items":{
                            "type":"string",
                            "description":"ID of the kit type.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Request object for kit filters."
            },
            "UpdateKitAttributesRequestV3":{
                "title":"Update Kit Attributes Request v3.0",
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "manufacturingLotId":{
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"30100000200000000000000000000005"
                    },
                    "updateMaterialId":{
                        "type":"boolean",
                        "description":"Whether to update the material ID.",
                        "example":true
                    },
                    "updateItemNumber":{
                        "type":"boolean",
                        "description":"Whether to update the item number.",
                        "example":true
                    },
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV3"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of kit IDs.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason",
                        "example":"kit damaged by subject"
                    }
                },
                "description":"Request to update kit attributes."
            },
            "ResupplyDynamicGroupV1":{
                "title":"ResupplyDynamicGroup v1.0",
                "required":[
                    "kitTypes"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Group ID",
                        "type":"string",
                        "description":"Group identifier.",
                        "example":"32120000700000000000000000000014"
                    },
                    "name":{
                        "title":"Group Name",
                        "type":"string",
                        "description":"Name of the dynamic group.",
                        "example":"Group 1"
                    },
                    "minRange":{
                        "title":"Minimum Range",
                        "type":"integer",
                        "description":"Minimum range.",
                        "format":"int32",
                        "example":0
                    },
                    "maxRange":{
                        "title":"Maximum Range",
                        "type":"integer",
                        "description":"Maximum range.",
                        "format":"int32",
                        "example":100
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "minItems":1,
                        "type":"array",
                        "description":"Kit type summary.",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyGroupRequest.KitTypeSummary"
                        }
                    }
                },
                "description":"Group object for resupply group."
            },
            "ResupplyGroupRequestV3":{
                "title":"Resupply Group Request",
                "required":[
                    "groups",
                    "resupplyName",
                    "resupplyTypeId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "resupplyId":{
                        "type":"string",
                        "description":"Resupply Id",
                        "format":"uuid"
                    },
                    "resupplyName":{
                        "maxLength":50,
                        "minLength":0,
                        "type":"string",
                        "description":"Resupply name",
                        "example":"resupplyNameNew1"
                    },
                    "resupplyTypeId":{
                        "type":"integer",
                        "description":"Resupply group type.",
                        "format":"int32",
                        "example":2
                    },
                    "ignoreSubjectsOnDoseHold":{
                        "type":"boolean",
                        "description":"Set to true to ignore subjects on dose hold",
                        "example":false
                    },
                    "ignoreSubjectsOnSkipDispensingVisit":{
                        "type":"boolean",
                        "description":"Set to true to ignore subjects on skip dispensing visit",
                        "example":false
                    },
                    "ignoreIfOutsideWindowBy":{
                        "type":"integer",
                        "description":"Ignore if outside window by this number of days",
                        "format":"int32",
                        "example":10
                    },
                    "countRandomizedSubjects":{
                        "type":"boolean",
                        "description":"Set to true to count randomized subjects",
                        "example":false
                    },
                    "groups":{
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ResupplyDynamicGroupV1"
                        }
                    },
                    "type":{
                        "type":"string",
                        "description":"Resupply group type.",
                        "example":"Site"
                    }
                },
                "description":"Request containing resupply group details."
            },
            "KitRequestV2":{
                "title":"KitRequest v2.0",
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "maximum":999,
                        "exclusiveMaximum":false,
                        "minimum":0,
                        "exclusiveMinimum":false,
                        "type":"number",
                        "description":"Kit quantity.",
                        "example":2
                    },
                    "lotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Request containing kits details."
            },
            "ManualSupplyRequestV2":{
                "title":"ManualSupplyRequest v2.0",
                "required":[
                    "siteId"
                ],
                "type":"object",
                "properties":{
                    "jobInstanceId":{
                        "title":"Job Instance ID",
                        "type":"string",
                        "description":"Job instance ID.",
                        "example":"4FEBE3E166454E2687C6FAC306E7C86E"
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "kits":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitRequestV2"
                        }
                    }
                },
                "description":"Request containing manual supply details."
            },
            "ShipmentKitsResponse.KitTypeSummaryV3":{
                "title":"ShipmentKitsResponse.KitTypeSummary v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageTypeKey":{
                        "type":"string",
                        "description":"Package type key.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"double",
                        "example":5
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of serialized kits.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitV3"
                        }
                    }
                },
                "description":"Kit type summary details object."
            },
            "ShipmentKitsResponse.KitV3":{
                "title":"ShipmentKitsResponse.Kit v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"Kit A"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"MaterialId0000001"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"ItemNumber0000001"
                    }
                },
                "description":"Kit details object."
            },
            "ShipmentKitsResponseV3":{
                "title":"ShipmentKitsResponse v3.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"ShipmentKitsResponse.KitTypes",
                        "type":"array",
                        "description":"List of kit type summaries.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitTypeSummaryV3"
                        }
                    }
                },
                "description":"Response containing shipment kit details."
            },
            "OrderDTOV3":{
                "title":"OrderDTO v3.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "MODIFIED",
                            "REMOVED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"DATA ENTRY ERROR"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated with new values"
                    },
                    "isReconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains order related details."
            },
            "OrderInventoryDTOV3":{
                "title":"OrderInventoryDTO v3.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV3"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTO"
                        }
                    },
                    "version":{
                        "title":"Version",
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderInventoryPagedListResponseV3":{
                "title":"OrderInventoryPagedListResponse v3.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV3"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV3"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "SiteUserShipmentTOV3":{
                "title":"SiteUserShipmentTO v3.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Site name.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"12"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Depot name.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"123"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "statusDate":{
                        "type":"string",
                        "description":"Status date.",
                        "format":"date-time"
                    },
                    "damagedCount":{
                        "type":"integer",
                        "description":"Damaged kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "missingCount":{
                        "type":"integer",
                        "description":"Missing kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "preQuarantinedCount":{
                        "type":"integer",
                        "description":"Pre quarantined kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "availableCount":{
                        "type":"integer",
                        "description":"Available kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "inTransitCount":{
                        "type":"integer",
                        "description":"In transit kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Response object containing details about shipment at a site."
            },
            "ShipmentTOV3":{
                "title":"ShipmentTO",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Name of the site.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"st_hstn"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Name of the depot.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"integer",
                        "description":"Shipment status ID.",
                        "format":"int32",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report Id",
                        "format":"uuid"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether the shipment is for kit reconciliation.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"URL for tracking the shipment.",
                        "example":"http://www.site.com"
                    },
                    "formInstanceId":{
                        "title":"Form ID",
                        "type":"string",
                        "description":"Identifier of the form associated with the resupply.",
                        "format":"uuid",
                        "example":"00d48a2a-7280-1a4e-e063-0100007f3af8"
                    }
                },
                "description":"Shipment details including site, depot, status, dates, and tracking info.",
                "example":{
                    "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                    "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                    "siteName":"Site Houston",
                    "shipmentNumber":"123",
                    "statusId":5
                }
            },
            "ViewShipmentResponseV3":{
                "title":"ViewShipmentResponse",
                "type":"object",
                "properties":{
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"Shipments list.",
                        "example":[
                            {
                                "shipmentId":"B1B8327AFAA6412287106192AB5984EF",
                                "siteId":"C36A3197FDEE433FB5547EE83DE99E4B",
                                "siteName":"Site Houston",
                                "shipmentNumber":"123",
                                "statusId":5
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentTOV3"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains shipments search result."
            },
            "SiteShipmentKitsTOV3":{
                "title":"SiteShipmentKitsTO v3.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"89EE76326E984B548D594D592E5C7FC2"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/SiteKitTO"
                        }
                    }
                },
                "description":"Response object containing  kits of a shipment at a site."
            },
            "SupplySettingsTOV3":{
                "title":"SupplySettingsTO v3.0",
                "required":[
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    }
                },
                "description":"Supply settings."
            },
            "DispensationHistoryResponseV4":{
                "title":"DispensationHistoryResponse v4.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"WearablePatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "mHealthDeviceId":{
                        "title":"mHealth Device ID",
                        "type":"string",
                        "description":"mHealth device identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Response object containing Dispensation History."
            },
            "DoseHoldKitV3":{
                "title":"DoseHoldKit v3.0",
                "type":"object",
                "properties":{
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "example":"D313327EF13845169A8ADADDA435431E"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"ActivityWatch"
                    },
                    "blindedTItrationLabel":{
                        "title":"Blinded Titration Label",
                        "type":"string",
                        "description":"Blinded titration label.",
                        "example":"Low dose"
                    },
                    "isTitration":{
                        "title":"Titration",
                        "type":"boolean",
                        "description":"Indicates whether the current medication is a titration.",
                        "example":true
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason for kits not allowed for dose hold.",
                        "example":"DOSE_HOLD_VISIT_NOT_STARTED"
                    },
                    "isUnblindedPharmacist":{
                        "title":"Treatment Assignment Visibility",
                        "type":"boolean",
                        "description":"Indicates whether treatment assignment information may be visible to study personnel. It should not be visible to study personnel and must be accessible only to an unblinded pharmacist.",
                        "example":true
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "example":1
                    },
                    "transactionDate":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time",
                        "example":"2017-09-26T15:40:14.357Z"
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    }
                },
                "description":"Response containing dose hold kit details."
            },
            "PaginatedResponse":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"object",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ]
                    }
                },
                "description":"Generic pagination wrapper providing page information and the result data for the current page."
            },
            "KitsAuditResponseV4":{
                "title":"Kits Audit Response v4.0",
                "type":"object",
                "properties":{
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start date.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type."
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number."
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number."
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason."
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment."
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number."
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":10
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days."
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days."
                    },
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number."
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit."
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit."
                    },
                    "verified":{
                        "type":"boolean",
                        "description":"Verified"
                    },
                    "deviceId":{
                        "type":"string",
                        "description":"deviceID"
                    },
                    "barCode":{
                        "type":"string",
                        "description":"Barcode."
                    },
                    "dispensationConfirmed":{
                        "type":"boolean",
                        "description":"Indicates whether dispensation is confirmed."
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot."
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID."
                    },
                    "itemNumber":{
                        "title":"Item Number",
                        "type":"string",
                        "description":"Item number."
                    },
                    "transactionId":{
                        "type":"string",
                        "description":"Audit transaction ID.",
                        "format":"uuid"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number."
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support."
                    },
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "instanceNumber":{
                        "type":"number",
                        "description":"Instance number of the unscheduled visit",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "tempExcursionNumber":{
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    }
                },
                "description":"Response containing audit details for each kit."
            },
            "KitFiltersRequestV4":{
                "title":"KitFiltersRequest v4.0",
                "type":"object",
                "properties":{
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"ALL_SITES"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitStatus":{
                        "type":"string",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "example":"1"
                    },
                    "kitRange":{
                        "type":"string",
                        "description":"Kit range",
                        "example":"SEQUENCE_NUMBER:900:1200"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitNumber":{
                        "type":"string",
                        "description":"Kit number.",
                        "example":"abc-2"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"1"
                    },
                    "kitTypeIds":{
                        "type":"array",
                        "description":"ID of the kit type.",
                        "example":[
                            "3F6567865E694182BEEA2B4F76538F05",
                            "461A0B8261454C1EBA56285BB538E7B5",
                            "EB2B77004EF74E479B6DDBA56D8B6A51"
                        ],
                        "items":{
                            "type":"string",
                            "description":"ID of the kit type.",
                            "format":"uuid"
                        }
                    },
                    "tempExcursionNumber":{
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"1"
                    }
                },
                "description":"Request object for kit filters."
            },
            "UpdateKitAttributesRequestV4":{
                "title":"Update Kit Attributes Request v4.0",
                "type":"object",
                "properties":{
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":10,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "location":{
                        "type":"string",
                        "description":"Location.",
                        "example":"30100000200000000000000000000005"
                    },
                    "manufacturingLotId":{
                        "type":"string",
                        "description":"Manufacturing lot ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"30100000200000000000000000000005"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"30100000200000000000000000000005"
                    },
                    "updateMaterialId":{
                        "type":"boolean",
                        "description":"Whether to update the material ID.",
                        "example":true
                    },
                    "updateItemNumber":{
                        "type":"boolean",
                        "description":"Whether to update the item number.",
                        "example":true
                    },
                    "kitFilters":{
                        "$ref":"#/components/schemas/KitFiltersRequestV4"
                    },
                    "kits":{
                        "title":"kits",
                        "type":"array",
                        "description":"Kit ID.",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "reason":{
                        "maxLength":255,
                        "minLength":0,
                        "type":"string",
                        "description":"Reason.",
                        "example":"kit damaged by subject"
                    }
                },
                "description":"Request to update kit attributes."
            },
            "UpdateKitsResponse":{
                "type":"object",
                "properties":{
                    "noOfRowsUpdated":{
                        "title":"Number of Kits Updated",
                        "type":"integer",
                        "description":"Number of kits updated.",
                        "format":"int32",
                        "example":10
                    },
                    "tempExcursionNumber":{
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    }
                }
            },
            "UpdateSiteKitsResponseV2":{
                "title":"UpdateSiteKitResponse",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"ID",
                        "type":"string",
                        "description":"ID",
                        "format":"uuid"
                    },
                    "tempExcursionNumber":{
                        "title":"Temperature Excursion Number",
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    },
                    "formInstanceId":{
                        "title":"Form Instance ID",
                        "type":"string",
                        "description":"Form instance identifier of non-subject forms.",
                        "format":"uuid"
                    }
                },
                "description":"Response object of update kit at site."
            },
            "ManufacturingLotCommon":{
                "title":"ManufacturingLotCommonTO",
                "type":"object",
                "properties":{
                    "manufacturingLotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"Mlot1001"
                    },
                    "expirationDate":{
                        "title":"Expiration Date",
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "blindedLotId":{
                        "title":"Blinded Lot ID",
                        "type":"string",
                        "description":"Blinded lot ID.",
                        "format":"uuid"
                    },
                    "doNotCount":{
                        "title":"Do Not Count",
                        "type":"number",
                        "description":"Do Not Count (DNC) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "doNotShip":{
                        "title":"Do Not Ship",
                        "type":"number",
                        "description":"Do Not Ship (DNS) days.",
                        "format":"BigDecimal",
                        "example":10
                    },
                    "lotNumber":{
                        "title":"Lot Number",
                        "type":"string",
                        "description":"Lot number.",
                        "example":"Lot1001"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "runNumber":{
                        "type":"string",
                        "description":"Run number.",
                        "example":"run number 01"
                    },
                    "inUse":{
                        "type":"boolean",
                        "description":"Indicates whether the lot is in use.",
                        "example":true
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "blindedLotVersionStart":{
                        "type":"string",
                        "description":"Blinded lot version start date.",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"MODIFIED",
                        "enum":[
                            "CREATED",
                            "REMOVED",
                            "MODIFIED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":2
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"Some reason"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Some comment"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"double",
                        "example":10
                    },
                    "materialId":{
                        "title":"Material ID",
                        "type":"string",
                        "description":"Material ID.",
                        "format":"String",
                        "example":"1234"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    }
                },
                "description":"Manufacturing Lot details"
            },
            "ShipmentEligibleKitsResponse":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment Id.",
                        "format":"uuid"
                    },
                    "kits":{
                        "type":"array",
                        "description":"Response object containing kits belonging to shipment.",
                        "example":[
                            {
                                "id":"D313327EF13845169A8ADADDA435431E",
                                "kitNumber":1001,
                                "sequenceNumber":1001,
                                "kitTypeName":"Kit A",
                                "expirationDate":"2026-12-31T00:00:00Z",
                                "kitNumberUTF":"KIT-1001",
                                "srcId":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
                                "lotId":"BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB",
                                "lotNumber":"LOT-001",
                                "quantity":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ShipmentEligibleKitTO"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                }
            },
            "ShipmentKitsResponse.KitTypeSummaryV4":{
                "title":"Shipment Kit Type Summary v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each package type value (1 for BLISTERPACK, 2 for BOTTLE, 3 for DEVICE, 4 for SYRINGE, 5 for OINTMENT, 6 for VIAL, 7 for INHALER, 8 for INFUSION, 9 for BOX, 10 for OTHER).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageTypeKey":{
                        "type":"string",
                        "description":"Package type key.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"double",
                        "example":5
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitV4"
                        }
                    }
                },
                "description":"Kit type summary details."
            },
            "ShipmentKitsResponse.KitV4":{
                "title":"Shipment Kit v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"Kit A"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":5
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"MaterialId0000001"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"ItemNumber0000001"
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"12345"
                    }
                },
                "description":"Kit details."
            },
            "ShipmentKitsResponseV4":{
                "title":"Shipment Kits Response v4.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"ShipmentKitsResponse.KitTypes",
                        "type":"array",
                        "description":"List of kit type summaries.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitTypeSummaryV4"
                        }
                    }
                },
                "description":"Response containing shipment kit details."
            },
            "OrderInventoryDTO":{
                "title":"Order Inventory v4.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV3"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTO"
                        }
                    },
                    "version":{
                        "title":"Version",
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderInventoryPagedListResponse":{
                "title":"OrderInventoryPagedListResponse v4.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTO"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTO"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "SiteUserShipmentTO":{
                "title":"SiteUserShipmentTO v4.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Site name.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"12"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Depot name.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"123"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "statusDate":{
                        "type":"string",
                        "description":"Status date.",
                        "format":"date-time"
                    },
                    "damagedCount":{
                        "type":"integer",
                        "description":"Damaged kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "missingCount":{
                        "type":"integer",
                        "description":"Missing kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "preQuarantinedCount":{
                        "type":"integer",
                        "description":"Pre quarantined kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "availableCount":{
                        "type":"integer",
                        "description":"Available kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "inTransitCount":{
                        "type":"integer",
                        "description":"In transit kits count.",
                        "format":"int64",
                        "example":5
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "quarantinedCount":{
                        "type":"integer",
                        "description":"Number of kits in quarantine on the shipment.",
                        "format":"int64",
                        "example":5
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Response object containing details about shipment at a site."
            },
            "ShipmentTOV4":{
                "title":"ShipmentTO v4.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteName":{
                        "type":"string",
                        "description":"Name of the site.",
                        "example":"Site Houston"
                    },
                    "siteShortName":{
                        "type":"string",
                        "description":"Site short name.",
                        "example":"st_hstn"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotName":{
                        "type":"string",
                        "description":"Name of the depot.",
                        "example":"Depot Houston"
                    },
                    "depotShortName":{
                        "type":"string",
                        "description":"Depot short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"integer",
                        "description":"Shipment status ID.",
                        "format":"int32",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time",
                        "example":"2026-02-21T06:45:00Z"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report Id",
                        "format":"uuid"
                    },
                    "shipmentRegisteredDate":{
                        "title":"Shipment Registered Date",
                        "type":"string",
                        "description":"Date when the depot registered or acknowledged the shipment.",
                        "format":"date-time",
                        "example":"2026-03-13T01:01:03.5Z"
                    },
                    "shipmentReceivedDate":{
                        "title":"Shipment Received Date",
                        "type":"string",
                        "description":"Date when the site confirmed receipt of the shipment.",
                        "format":"date-time",
                        "example":"2026-03-13T00:00:00Z"
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether the shipment is for kit reconciliation.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"URL for tracking the shipment.",
                        "example":"http://www.site.com"
                    },
                    "formInstanceId":{
                        "title":"Form ID",
                        "type":"string",
                        "description":"Identifier of the form associated with the resupply.",
                        "format":"uuid",
                        "example":"00d48a2a-7280-1a4e-e063-0100007f3af8"
                    }
                },
                "description":"Shipment details including depot registration and site receipt timestamps."
            },
            "ViewShipmentResponseV4":{
                "title":"ViewShipmentResponse",
                "type":"object",
                "properties":{
                    "shipments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentTOV4"
                        }
                    },
                    "count":{
                        "type":"integer",
                        "description":"Total count of result",
                        "format":"int64"
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Attribute describes if result set has more records",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total number of entities in response",
                        "format":"int64"
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int64"
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int64",
                        "example":400
                    },
                    "links":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RelLink"
                        }
                    }
                },
                "description":"Contains shipments search result."
            },
            "SupplySettingsTOV4":{
                "title":"SupplySettingsTO v4.0",
                "required":[
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    }
                },
                "description":"Supply settings details object."
            },
            "NsReplaceKitRequest":{
                "required":[
                    "quantity"
                ],
                "type":"object",
                "properties":{
                    "subjectVisitNsinventoryId":{
                        "type":"string",
                        "description":"Inventory ID of the replaced kit.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Quantity that must be replaced.",
                        "format":"int32",
                        "example":10
                    }
                },
                "description":"Request object containing non-serialized kit replacement details.",
                "example":{
                    "subjectVisitNsinventoryId":"41200000000000000000000000000252",
                    "quantity":10
                }
            },
            "VisitRequestV4":{
                "title":"VisitRequest v4.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    }
                },
                "description":"Request containing subject visit details."
            },
            "SiteUserUpdateNsKitsFilter":{
                "type":"object",
                "properties":{
                    "subjectVisitNSInventoryId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "lotId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "format":"BigDecimal",
                        "example":5
                    }
                }
            },
            "RandListTO5":{
                "title":"RandListTO v5.0",
                "type":"object",
                "properties":{
                    "randListId":{
                        "type":"string",
                        "description":"Unique ID for randomization list.",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time",
                        "example":"2025-01-01T12:34:56Z"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time",
                        "example":"2025-01-02T08:00:00Z"
                    },
                    "name":{
                        "type":"string",
                        "description":"Name of randomization list",
                        "example":"UPL_RL191_V1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Description of randomization list",
                        "example":"Randomization list with demographic cohort"
                    },
                    "isStratified":{
                        "type":"string",
                        "description":"Is randomization list stratified",
                        "example":"n,y"
                    },
                    "isBlocked":{
                        "type":"string",
                        "description":"Is randomization list for blocked algorithm",
                        "example":"n,y"
                    },
                    "isDynamic":{
                        "type":"string",
                        "description":"Is randomization list dynamic",
                        "example":"n,y"
                    },
                    "inUse":{
                        "type":"string",
                        "description":"Is randomization list is in use",
                        "example":"n,y"
                    },
                    "blockedBy":{
                        "type":"string",
                        "description":"Randomization list blocked by type of randomization",
                        "example":"none,country,region,site"
                    },
                    "isCohortBased":{
                        "type":"string",
                        "description":"Indicates whether the randomization is cohort based.",
                        "example":"y"
                    },
                    "isMinimization":{
                        "title":"Minimization List",
                        "type":"string",
                        "description":"Is randomization list for minimization randomization design",
                        "example":"n,y"
                    },
                    "lastAssctdRandDesignSrcId":{
                        "title":"Last Associated Randomization Design ID",
                        "type":"string",
                        "description":"Unique Id for the last associated randomization design.",
                        "format":"uuid"
                    },
                    "lastAssctdStudyVersion":{
                        "title":"Last Associated Study Version",
                        "type":"string",
                        "description":"Version of the last associated study",
                        "format":"UUID",
                        "example":"1.0.1"
                    },
                    "useSequenceNumber":{
                        "type":"string",
                        "description":"Indicates whether the randomization list includes a sequence number.",
                        "example":"y"
                    },
                    "firstAssctdRandDesignSrcId":{
                        "title":"First Associated Randomization Design ID",
                        "type":"string",
                        "description":"Unique Id for the first associated randomization design.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "firstAssctdStudyVersion":{
                        "title":"First Associated Study Version",
                        "type":"string",
                        "description":"Version of the first associated study.",
                        "example":"1.0.1"
                    }
                },
                "description":"Contains randomization list details."
            },
            "ShipmentKitsResponse.KitTypeSummaryV5":{
                "title":"ShipmentKitsResponse.KitTypeSummary v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Kit type identifier.",
                        "format":"uuid"
                    },
                    "kitTypeName":{
                        "type":"string",
                        "description":"Kit type name.",
                        "example":"Kit A"
                    },
                    "description":{
                        "type":"string",
                        "description":"Kit type description.",
                        "example":"Non dosing kit"
                    },
                    "packageTypeId":{
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"BigDecimal",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "packageTypeKey":{
                        "type":"string",
                        "description":"Package type key.",
                        "example":"INHALER",
                        "enum":[
                            "BLISTERPACK",
                            "BOTTLE",
                            "DEVICE",
                            "SYRINGE",
                            "OINTMENT",
                            "VIAL",
                            "INHALER",
                            "INFUSION",
                            "BOX",
                            "OTHER"
                        ]
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Number of units per kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "kits":{
                        "title":"Kits",
                        "type":"array",
                        "description":"List of serialized kits.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitV5"
                        }
                    },
                    "nsKits":{
                        "title":"Non-Serialized Kits",
                        "type":"array",
                        "description":"List of non-serialized kits.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.NonSerializedKitV5"
                        }
                    }
                },
                "description":"Kit type summary details object."
            },
            "ShipmentKitsResponse.KitV5":{
                "title":"ShipmentKitsResponse.Kit v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Kit ID.",
                        "format":"uuid"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "barcode":{
                        "type":"string",
                        "description":"Barcode.",
                        "example":"Kit A"
                    },
                    "returnedUnits":{
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "missingUnits":{
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "depotReturnedUnits":{
                        "type":"number",
                        "description":"Number of units returned to depot.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5
                    },
                    "materialId":{
                        "type":"string",
                        "description":"Material ID.",
                        "example":"MaterialId0000001"
                    },
                    "itemNumber":{
                        "type":"string",
                        "description":"Item number.",
                        "example":"ItemNumber0000001"
                    },
                    "kitNumberUTF":{
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"12345"
                    }
                },
                "description":"Kit details object."
            },
            "ShipmentKitsResponse.NonSerializedKitV5":{
                "title":"ShipmentKitsResponse.NonSerialized v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Non-serialized kit ID.",
                        "format":"uuid"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Non-serialized lot ID.",
                        "format":"uuid"
                    },
                    "lotNumber":{
                        "type":"string",
                        "description":"Lot assigned to non-serialized kits.",
                        "example":"Lot 1"
                    },
                    "inventoryStatusId":{
                        "type":"integer",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"int32",
                        "example":5
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"BigDecimal",
                        "example":1
                    }
                },
                "description":"Kit details object."
            },
            "ShipmentKitsResponseV5":{
                "title":"ShipmentKitsResponse v5.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "format":"uuid"
                    },
                    "kitTypes":{
                        "title":"ShipmentKitsResponse.KitTypes",
                        "type":"array",
                        "description":"List of kit type summaries.",
                        "items":{
                            "$ref":"#/components/schemas/ShipmentKitsResponse.KitTypeSummaryV5"
                        }
                    }
                },
                "description":"Response object containing shipment kits details."
            },
            "InventoryDTOV3":{
                "title":"InventoryDTO v3.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "doNotCount":{
                        "type":"number",
                        "description":"Do Not Count (DNC) Days.",
                        "format":"double",
                        "example":5
                    },
                    "doNotShip":{
                        "type":"number",
                        "description":"Do Not Ship (DNS) Days.",
                        "format":"double",
                        "example":5
                    },
                    "expirationDate":{
                        "type":"string",
                        "description":"Expiration date.",
                        "format":"date-time"
                    },
                    "inventoryStatusId":{
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"ID of the kit type.",
                        "format":"uuid"
                    },
                    "kitTypeVersionStart":{
                        "type":"string",
                        "description":"Kit type version start date.",
                        "format":"date-time"
                    },
                    "labelGroupId":{
                        "type":"string",
                        "description":"Label group ID.",
                        "format":"uuid"
                    },
                    "labelGroupVersionStart":{
                        "type":"string",
                        "description":"Label group version start date.",
                        "format":"date-time"
                    },
                    "lotId":{
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "lotVersionStart":{
                        "type":"string",
                        "description":"Lot version start date.",
                        "format":"date-time"
                    },
                    "sequenceNumber":{
                        "type":"number",
                        "description":"Sequence number.",
                        "format":"double",
                        "example":5
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "kitNumber":{
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventorySourceId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "inventorySourceVersionStart":{
                        "type":"string",
                        "description":"Inventory version start.",
                        "format":"date-time"
                    },
                    "kitNumberUTF":{
                        "title":"Kit Number UTF",
                        "type":"string",
                        "description":"Kit number with UTF-8 support.",
                        "example":"24-1"
                    },
                    "blockNumber":{
                        "title":"Block Number",
                        "type":"string",
                        "description":"Block number.",
                        "example":"245"
                    },
                    "tempExcursionNumber":{
                        "title":"Temperature Excursion Number",
                        "type":"string",
                        "description":"Temperature excursion number.",
                        "example":"001"
                    },
                    "blocknumber":{
                        "type":"string",
                        "writeOnly":true
                    },
                    "inventoryId":{
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains details of inventories."
            },
            "OrderInventoryDTOV5":{
                "title":"OrderInventoryDTO v5.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV3"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTOV3"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderInventoryPagedListResponseV5":{
                "title":"OrderInventoryPagedListResponse v5.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV5"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV5"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "SupplySettingsTOV5":{
                "title":"SupplySettingsTO v5.0",
                "required":[
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    }
                },
                "description":"Supply settings details object."
            },
            "DispensationHistoryResponseV5":{
                "title":"DispensationHistoryResponse v5.0",
                "type":"object",
                "properties":{
                    "kitNumber":{
                        "title":"Kit Number",
                        "type":"number",
                        "description":"Kit number.",
                        "format":"double",
                        "example":5
                    },
                    "inventoryStatus":{
                        "title":"Inventory Status",
                        "type":"number",
                        "description":"Unique ID corresponding to each inventory status value (1 for Available, 2 for Damaged, 3 for Destroyed, 4 for Dispensed, 5 for Expired, 6 for Not in Use, 7 for Misallocated, 8 for Missing, 9 for In Transit, 10 for Quarantined, 11 for Pre-quarantined, 12 for Pending Destruction, 13 for Lost by Subject, 14 for Temporarily Unavailable, 15 for Damaged by Subject, 16 for New, 17 for Not Dispensed to Subject, 18 for Returned to Site, 19 for Conserved, 20 for Received for Destruction).",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20
                        ]
                    },
                    "dispensationDate":{
                        "title":"Dispensation Date",
                        "type":"string",
                        "description":"Dispensation date.",
                        "format":"date-time"
                    },
                    "inventoryId":{
                        "title":"Inventory ID",
                        "type":"string",
                        "description":"Inventory ID.",
                        "format":"uuid"
                    },
                    "packageTypeId":{
                        "title":"Package Type ID",
                        "type":"number",
                        "description":"Package type ID.",
                        "format":"double",
                        "example":5,
                        "enum":[
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10
                        ]
                    },
                    "unitsPerKit":{
                        "title":"Units Per Kit",
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":1
                    },
                    "returnedUnits":{
                        "title":"Returned Units",
                        "type":"number",
                        "description":"Returned units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "missingUnits":{
                        "title":"Missing Units",
                        "type":"number",
                        "description":"Missing units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "balanceUnits":{
                        "title":"Balance Units",
                        "type":"number",
                        "description":"Balanced units for the kit.",
                        "format":"double",
                        "example":1
                    },
                    "siteId":{
                        "title":"Site ID",
                        "type":"string",
                        "description":"Site ID.",
                        "format":"uuid"
                    },
                    "lastModifiedDate":{
                        "title":"Last Modified Date",
                        "type":"string",
                        "description":"Last modified date.",
                        "format":"date-time"
                    },
                    "kitDescription":{
                        "title":"Kit Description",
                        "type":"string",
                        "description":"Kit description.",
                        "example":"Kit A"
                    },
                    "dose":{
                        "title":"Dose",
                        "type":"number",
                        "description":"Dose.",
                        "format":"double",
                        "example":5
                    },
                    "measurement":{
                        "title":"Measurement",
                        "type":"string",
                        "description":"Dose Measurement.",
                        "example":"ml"
                    },
                    "frequency":{
                        "title":"Frequency",
                        "type":"string",
                        "description":"Dosing frequency.",
                        "example":"BID",
                        "enum":[
                            "Once",
                            "QD",
                            "BID",
                            "TID",
                            "QID",
                            "Q3",
                            "Q4",
                            "Q8",
                            "Q12",
                            "Q24",
                            "Bedtime",
                            "With meals",
                            "With meals and at bedtime"
                        ]
                    },
                    "visitId":{
                        "title":"Visit ID",
                        "type":"string",
                        "description":"Visit ID.",
                        "format":"uuid"
                    },
                    "trialSupplyType":{
                        "title":"Trial Supply Type",
                        "type":"string",
                        "description":"Type of the trial supply.",
                        "example":"BOTTLE"
                    },
                    "deviceType":{
                        "title":"Device Type",
                        "type":"string",
                        "description":"Device type.",
                        "example":"WearablePatch",
                        "enum":[
                            "ActivityWatch",
                            "BloodPressureMonitor",
                            "WeightScale",
                            "ECGReader",
                            "Spirometer",
                            "MobileApp",
                            "SmartPillBottle",
                            "PulseOximeter",
                            "WearablePatch",
                            "Other",
                            "GlucoseMonitor"
                        ]
                    },
                    "deviceConnection":{
                        "title":"Device Connection Type",
                        "type":"string",
                        "description":"Device connection type.",
                        "example":"DevicetoCloud",
                        "enum":[
                            "CloudtoCloud",
                            "DevicetoCloud",
                            "NoConnection"
                        ]
                    },
                    "mHealthDeviceId":{
                        "title":"mHealth Device ID",
                        "type":"string",
                        "description":"mHealth device identifier.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "conserved":{
                        "title":"Conserved",
                        "type":"boolean",
                        "description":"Conserved for dispensation.",
                        "example":true
                    },
                    "allowReplacement":{
                        "title":"Allow Replacement",
                        "type":"boolean",
                        "description":"Indicates whether the kit is allowed for replacement.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Response object containing Dispensation History."
            },
            "OrderDTOV4":{
                "title":"Order v4.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "MODIFIED",
                            "REMOVED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"DATA ENTRY ERROR"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated with new values"
                    },
                    "isReconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "shipmentReceivedById":{
                        "title":"Shipment Received By ID",
                        "type":"string",
                        "description":"Shipment received by ID.",
                        "format":"uuid"
                    },
                    "shippingAddressId":{
                        "title":"Shipping Address ID",
                        "type":"string",
                        "description":"Shipping address ID.",
                        "format":"uuid"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Shipping address.",
                        "example":"City,Country,Local Address"
                    },
                    "shipmentReceiptDate":{
                        "title":"Shipment Receipt Date",
                        "type":"string",
                        "description":"Shipment receipt date.",
                        "format":"date-time"
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Order details."
            },
            "OrderInventoryDTOV6":{
                "title":"OrderInventoryDTO v6.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV4"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTOV3"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderInventoryPagedListResponseV6":{
                "title":"OrderInventoryPagedListResponse v6.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV6"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrderInventoryDTOV6"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "SupplySettingsTOV6":{
                "title":"SupplySettingsTO v6.0",
                "required":[
                    "allowDoseHold",
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "dispenseByLowestKitNumber",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    },
                    "dispenseByLowestKitNumber":{
                        "title":"Dispense By Lowest Kit Number",
                        "type":"boolean",
                        "description":"If true, dispense kits by the lowest available kit number.",
                        "example":true
                    },
                    "allowDoseHold":{
                        "title":"Allow Dose Hold",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":true
                    }
                },
                "description":"Supply settings details object."
            },
            "VisitRequestV6":{
                "title":"VisitRequest v6.0",
                "required":[
                    "siteId",
                    "studyVersion",
                    "subjectId",
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "subjectId":{
                        "type":"string",
                        "description":"Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Unique identifier (UUID, 32-character uppercase hexadecimal string) of the visit",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"String representing the version of the study. Helps track changes in form or study design.",
                        "example":"1.0.0.5"
                    },
                    "visitTimestamp":{
                        "pattern":"(\\d){4}-(\\d){2}-(\\d){2} (\\d){2}:(\\d){2}:(\\d){2}",
                        "type":"string",
                        "description":"Visit date and time",
                        "example":"2018-11-23 08:43:01"
                    },
                    "AuthUserListDtoV1":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Parameter"
                        }
                    },
                    "titrationOption":{
                        "title":"Titration Option",
                        "pattern":"up|down|maintain",
                        "type":"string",
                        "description":"Titration options to dispense kits. For example: up/down/maintain.",
                        "example":"up",
                        "enum":[
                            "up",
                            "down",
                            "maintain"
                        ]
                    },
                    "userConfirmationTaken":{
                        "title":"User Confirmation Taken",
                        "type":"boolean",
                        "description":"User confirmation for titration.",
                        "example":true
                    },
                    "instanceNumber":{
                        "title":"Instance Number",
                        "minimum":1,
                        "type":"number",
                        "description":"Visit instance number.",
                        "format":"BigDecimal",
                        "example":2
                    }
                },
                "description":"Request containing subject visit details."
            },
            "OrderDTOV5":{
                "title":"OrderDTO v5.0",
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "depotId":{
                        "type":"string",
                        "description":"Depot ID.",
                        "format":"uuid"
                    },
                    "depotVersionStart":{
                        "type":"string",
                        "description":"Depot version start.",
                        "format":"date-time"
                    },
                    "jobInstanceId":{
                        "type":"string",
                        "description":"Job instance ID.",
                        "format":"uuid"
                    },
                    "orderDate":{
                        "type":"string",
                        "description":"Order date.",
                        "format":"date-time"
                    },
                    "orderStatusId":{
                        "type":"number",
                        "description":"Order status ID.",
                        "format":"double",
                        "example":5
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start.",
                        "format":"date-time"
                    },
                    "siteId":{
                        "type":"string",
                        "description":"Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.",
                        "format":"uuid"
                    },
                    "siteVersionStart":{
                        "type":"string",
                        "description":"Site version start date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "shipmentId":{
                        "type":"string",
                        "description":"ID of the shipment.",
                        "example":"123"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "trackingNumberUrl":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"MANUAL",
                        "enum":[
                            "INITIAL",
                            "RESUPPLY",
                            "MANUAL"
                        ]
                    },
                    "orderTypeId":{
                        "type":"integer",
                        "description":"Order type ID.",
                        "format":"int64",
                        "example":5
                    },
                    "userId":{
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Operation type.",
                        "example":"CREATED",
                        "enum":[
                            "CREATED",
                            "MODIFIED",
                            "REMOVED"
                        ]
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"Object version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"Software version number.",
                        "format":"BigDecimal",
                        "example":5
                    },
                    "reason":{
                        "type":"string",
                        "description":"Reason.",
                        "example":"DATA ENTRY ERROR"
                    },
                    "comment":{
                        "type":"string",
                        "description":"Comment.",
                        "example":"Updated with new values"
                    },
                    "isReconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid",
                        "example":"b1b8327a-faa6-4122-8710-6192ab5984ef"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "shipmentReceivedById":{
                        "title":"Shipment Received By ID",
                        "type":"string",
                        "description":"Shipment received by ID.",
                        "format":"uuid"
                    },
                    "shippingAddressId":{
                        "title":"Shipping Address ID",
                        "type":"string",
                        "description":"Shipping address ID.",
                        "format":"uuid"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Shipping address.",
                        "example":"City,Country,Local Address"
                    },
                    "shipmentReceiptDate":{
                        "title":"Shipment Receipt Date",
                        "type":"string",
                        "description":"Shipment receipt date.",
                        "format":"date-time"
                    },
                    "includePooledShipments":{
                        "title":"Include Pooled Shipments",
                        "type":"boolean",
                        "description":"Indicates whether to include pooled shipments.",
                        "example":true
                    },
                    "deliveryNumber":{
                        "title":"Delivery Number",
                        "type":"string",
                        "description":"Delivery number.",
                        "example":"Order123"
                    },
                    "orderId":{
                        "type":"string",
                        "description":"Order ID.",
                        "format":"uuid"
                    }
                },
                "description":"Contains order related details."
            },
            "OrdersInventoryDTOV7":{
                "title":"OrderInventoryDTO v7.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV5"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTOV3"
                        }
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"List of kit types for the order.",
                        "items":{
                            "$ref":"#/components/schemas/OrdersKitTypes"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrdersKitTypes":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Order Kit Type Id for Pooling Supplies",
                        "format":"uuid"
                    },
                    "kitTypeSrcId":{
                        "title":"Kit Type Source ID",
                        "type":"string",
                        "description":"Kit type ID.",
                        "format":"uuid"
                    },
                    "quantity":{
                        "title":"Quantity",
                        "type":"number",
                        "description":"Kit quantity.",
                        "format":"number",
                        "example":5
                    },
                    "lotId":{
                        "title":"Lot ID",
                        "type":"string",
                        "description":"Lot ID.",
                        "format":"uuid"
                    },
                    "minExpirationDate":{
                        "title":"Effective Expiration Date",
                        "type":"string",
                        "description":"Effective expiration date.",
                        "format":"date-time"
                    },
                    "userId":{
                        "title":"User ID",
                        "type":"string",
                        "description":"User ID.",
                        "format":"uuid"
                    },
                    "operationType":{
                        "title":"Operation Type",
                        "type":"string",
                        "description":"Operation type.",
                        "example":"modified"
                    },
                    "objectVersionNumber":{
                        "title":"Object Version Number",
                        "type":"number",
                        "description":"Object version number.",
                        "format":"number"
                    },
                    "softwareVersionNumber":{
                        "title":"Software Version Number",
                        "type":"number",
                        "description":"Software version number.",
                        "format":"number"
                    },
                    "reason":{
                        "title":"Reason",
                        "type":"string",
                        "description":"Reason.",
                        "example":"test"
                    },
                    "comment":{
                        "title":"Comment",
                        "type":"string",
                        "description":"Comment.",
                        "example":"test"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The timestamp marking the beginning of the validity period for this record version within the system.",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The end date until which the data is applicable or valid.",
                        "format":"date-time"
                    },
                    "pooledKitId":{
                        "title":"Pooled Kit ID",
                        "type":"string",
                        "description":"Pooled kit identifier.",
                        "example":"Pooled Kit01"
                    },
                    "lotNumber":{
                        "title":"Manufacturing Lot Number",
                        "type":"string",
                        "description":"Manufacturing lot number.",
                        "example":"MLOT"
                    }
                },
                "description":"Orders Kit Types object for Pooling Supplies."
            },
            "OrderInventoryPagedListResponseV7":{
                "title":"OrderInventoryPagedListResponse v7.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV7"
                        }
                    },
                    "shipments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV7"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "Shipments":{
                "title":"Shipments v8.0",
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "destinationId":{
                        "type":"string",
                        "description":"Destination ID.",
                        "format":"uuid"
                    },
                    "destinationName":{
                        "type":"string",
                        "description":"Destination name.",
                        "example":"Site Houston"
                    },
                    "destinationShortName":{
                        "type":"string",
                        "description":"Destination short name.",
                        "example":"st_hstn"
                    },
                    "originId":{
                        "type":"string",
                        "description":"Origin ID.",
                        "format":"uuid"
                    },
                    "originName":{
                        "type":"string",
                        "description":"Origin name.",
                        "example":"Depot Houston"
                    },
                    "originShortName":{
                        "type":"string",
                        "description":"Origin short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "quarantineKitCount":{
                        "type":"number",
                        "description":"Number of kits in quarantine on the shipment.",
                        "format":"Integer",
                        "example":10
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"Manual"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Primary or shipping address.",
                        "example":"Depot Houston, Houston"
                    },
                    "containsPooledkits":{
                        "title":"Contains Pooled Kits",
                        "type":"boolean",
                        "description":"Indicates whether the shipment contains pooled kits.",
                        "example":true
                    },
                    "formInstanceId":{
                        "title":"Form Instance ID",
                        "type":"string",
                        "description":"Form instance identifier of non-subject forms.",
                        "format":"uuid"
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    },
                    "compoundingKits":{
                        "title":"Compounding Kits",
                        "type":"boolean",
                        "description":"Indicates whether the order contains compounding kits.",
                        "example":true
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Shipment details object including compounding kits.",
                "example":[
                    {
                        "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ]
            },
            "ViewShipmentResponseV7":{
                "title":"ViewShipmentResponse v7.0",
                "type":"object",
                "properties":{
                    "shipments":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Shipments"
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "$ref":"#/components/schemas/Shipments"
                    }
                },
                "description":"Response containing shipment details."
            },
            "SupplySettingsTOV7":{
                "title":"SupplySettingsTO v7.0",
                "required":[
                    "allowDoseHold",
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "dispenseByLowestKitNumber",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "quarantineWithoutTempMonitor",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    },
                    "dispenseByLowestKitNumber":{
                        "title":"Dispense By Lowest Kit Number",
                        "type":"boolean",
                        "description":"If true, dispense kits by the lowest available kit number.",
                        "example":true
                    },
                    "allowDoseHold":{
                        "title":"Allow Dose Hold",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":true
                    },
                    "quarantineWithoutTempMonitor":{
                        "title":"Quarantine Without Temperature Monitor",
                        "type":"boolean",
                        "description":"Indicates whether quarantine is allowed without a temperature monitor.",
                        "example":false
                    }
                },
                "description":"Supply settings details object."
            },
            "OrdersInventoryDTOV8":{
                "title":"OrderInventoryDTO v8.0",
                "type":"object",
                "properties":{
                    "order":{
                        "$ref":"#/components/schemas/OrderDTOV5"
                    },
                    "inventory":{
                        "title":"Inventory",
                        "type":"array",
                        "description":"List of inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/InventoryDTOV3"
                        }
                    },
                    "kitTypes":{
                        "title":"Kit Types",
                        "type":"array",
                        "description":"List of kit types for the order.",
                        "items":{
                            "$ref":"#/components/schemas/OrdersKitTypes"
                        }
                    },
                    "nsInventory":{
                        "title":"Non-Serialized Inventory",
                        "type":"array",
                        "description":"List of non-serialized inventory records.",
                        "items":{
                            "$ref":"#/components/schemas/NsInventoryDTO"
                        }
                    },
                    "version":{
                        "type":"integer",
                        "description":"Version.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Contains inventory order details."
            },
            "OrderInventoryPagedListResponseV8":{
                "title":"OrderInventoryPagedListResponse v8.0",
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV8"
                        }
                    },
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of orders for shipments.",
                        "items":{
                            "$ref":"#/components/schemas/OrdersInventoryDTOV8"
                        }
                    }
                },
                "description":"Contains order details for the inventory."
            },
            "ViewShipmentResponseV8":{
                "title":"ViewShipmentResponse v8.0",
                "type":"object",
                "properties":{
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of shipments.",
                        "items":{
                            "$ref":"#/components/schemas/Shipments"
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "$ref":"#/components/schemas/Shipments"
                    }
                },
                "description":"Response containing shipment details."
            },
            "SupplySettingsTOV8":{
                "title":"SupplySettingsTO v8.0",
                "required":[
                    "allKitsSelectedForRandomization",
                    "allowDoseHold",
                    "allowManualConsignments",
                    "allowPartialDispensation",
                    "allowSingleKitQuarantine",
                    "confirmDispensation",
                    "depotKitReconRequired",
                    "dispenseByLowestKitNumber",
                    "intlShipmentTriggerId",
                    "kitReconciliationRequired",
                    "quarantineWithoutTempMonitor",
                    "randomizeWhenKitsAvailable",
                    "reuseOnlyLastVisitKkits",
                    "reuseSealedKits",
                    "shipmentPrefixType",
                    "useBlindingGroups",
                    "useLabelGroups",
                    "useShippingGroups",
                    "useTemperatureExcursion"
                ],
                "type":"object",
                "properties":{
                    "useBlindingGroups":{
                        "title":"Blinded Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether blinding groups are required.",
                        "example":true
                    },
                    "useLabelGroups":{
                        "title":"Label Groups Required",
                        "type":"boolean",
                        "description":"Indicates whether label groups are required.",
                        "example":true
                    },
                    "useShippingGroups":{
                        "title":"Multiple Storage Requirements",
                        "type":"boolean",
                        "description":"Indicates whether multiple storage/shipping requirement groups are used.",
                        "example":true
                    },
                    "useTemperatureExcursion":{
                        "title":"Allow Temperature Excursions",
                        "type":"boolean",
                        "description":"Indicates whether temperature excursions are allowed.",
                        "example":true
                    },
                    "allowSingleKitQuarantine":{
                        "title":"Allow Single Kit Quarantine",
                        "type":"boolean",
                        "description":"Indicates whether single kit quarantine is allowed.",
                        "example":true
                    },
                    "allowManualConsignments":{
                        "title":"Allow Manual Consignments",
                        "type":"boolean",
                        "description":"Indicates whether manual consignments are allowed.",
                        "example":true
                    },
                    "singleKitSettingId":{
                        "title":"Single Kit Setting ID",
                        "type":"number",
                        "description":"Identifier of the single kit ordering setting.",
                        "format":"double",
                        "example":1
                    },
                    "sendKitTypeForSingleKitOrder":{
                        "title":"Kit Type ID",
                        "type":"string",
                        "description":"Identifier of the selected kit type for single kit ordering.",
                        "format":"uuid"
                    },
                    "intlShipmentTriggerId":{
                        "type":"number",
                        "description":"Initial shipment trigger Id.",
                        "format":"double",
                        "example":2
                    },
                    "intlShipmentVisitId":{
                        "title":"Initial Shipment Visit ID",
                        "type":"string",
                        "description":"Identifier of the visit for initial shipments.",
                        "format":"uuid"
                    },
                    "waitDaysBeforeNotifying":{
                        "title":"Notification To Receive Shipment (in days)",
                        "maximum":30,
                        "minimum":0,
                        "type":"number",
                        "description":"Number of days before a notification is sent to receive a shipment.",
                        "format":"double",
                        "example":2
                    },
                    "shipmentPrefixType":{
                        "title":"Shipment ID Prefix Type",
                        "type":"string",
                        "description":"Type identifier used when generating shipment ID prefixes.",
                        "example":"DEPOTID",
                        "enum":[
                            "DEPOTID",
                            "CUSTOM",
                            "NONE"
                        ]
                    },
                    "customShipmentIdPrefix":{
                        "title":"Shipment ID Prefix",
                        "type":"string",
                        "description":"Prefix used while generating shipment IDs.",
                        "example":"SomePrefix"
                    },
                    "kitReconciliationRequired":{
                        "title":"Site Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is required at the site.",
                        "example":true
                    },
                    "reuseSealedKits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse sealed kits.",
                        "example":true
                    },
                    "reuseOnlyLastVisitKkits":{
                        "type":"boolean",
                        "description":"Indicate whether to reuse only last visit kits.",
                        "example":true
                    },
                    "allowPartialDispensation":{
                        "type":"boolean",
                        "description":"Indicate whether partial dispensation is allowed.",
                        "example":true
                    },
                    "confirmDispensation":{
                        "title":"Confirm Dispensation",
                        "type":"boolean",
                        "description":"Indicates whether dispensation confirmation is required.",
                        "example":true
                    },
                    "depotKitReconRequired":{
                        "title":"Depot Kit Reconciliation Required",
                        "type":"boolean",
                        "description":"Depot kit reconciliation required.",
                        "example":true
                    },
                    "dispenseByLowestKitNumber":{
                        "title":"Dispense By Lowest Kit Number",
                        "type":"boolean",
                        "description":"If true, dispense kits by the lowest available kit number.",
                        "example":true
                    },
                    "allowDoseHold":{
                        "title":"Allow Dose Hold",
                        "type":"boolean",
                        "description":"Indicates whether dose hold is allowed.",
                        "example":true
                    },
                    "quarantineWithoutTempMonitor":{
                        "title":"Quarantine Without Temperature Monitor",
                        "type":"boolean",
                        "description":"Indicates whether quarantine is allowed without a temperature monitor.",
                        "example":false
                    },
                    "randomizeWhenKitsAvailable":{
                        "title":"Randomize Only When All Kits Are Available At Site",
                        "type":"boolean",
                        "description":"If true, subject randomization is allowed only when all required kits are available at the site.",
                        "example":false
                    },
                    "allKitsSelectedForRandomization":{
                        "title":"All Kits Selected For Randomization",
                        "type":"boolean",
                        "description":"If true, all kits are selected for randomization.",
                        "example":false
                    },
                    "kitsSelectedForRandomization":{
                        "title":"Kits Selected For Randomization",
                        "type":"array",
                        "description":"Specific kits selected for randomization.",
                        "items":{
                            "title":"Kits Selected For Randomization",
                            "type":"string",
                            "description":"Specific kits selected for randomization.",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Supply settings details object."
            },
            "ShipmentsTO":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "destinationId":{
                        "type":"string",
                        "description":"Destination ID.",
                        "format":"uuid"
                    },
                    "destinationName":{
                        "type":"string",
                        "description":"Destination name.",
                        "example":"Site Houston"
                    },
                    "destinationShortName":{
                        "type":"string",
                        "description":"Destination short name.",
                        "example":"st_hstn"
                    },
                    "originId":{
                        "type":"string",
                        "description":"Origin ID.",
                        "format":"uuid"
                    },
                    "originName":{
                        "type":"string",
                        "description":"Origin name.",
                        "example":"Depot Houston"
                    },
                    "originShortName":{
                        "type":"string",
                        "description":"Origin short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "quarantineKitCount":{
                        "type":"number",
                        "description":"Number of kits in quarantine on the shipment.",
                        "format":"Integer",
                        "example":10
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"Manual"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Primary or shipping address.",
                        "example":"Depot Houston, Houston"
                    },
                    "containsPooledkits":{
                        "title":"Contains Pooled Kits",
                        "type":"boolean",
                        "description":"Indicates whether the shipment contains pooled kits.",
                        "example":true
                    },
                    "formInstanceId":{
                        "title":"Form Instance ID",
                        "type":"string",
                        "description":"Form instance identifier of non-subject forms.",
                        "format":"uuid"
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    },
                    "compoundingKits":{
                        "title":"Compounding Kits",
                        "type":"boolean",
                        "description":"Indicates whether the order contains compounding kits.",
                        "example":true
                    },
                    "ShipmentRegisteredDate":{
                        "title":"Shipment registered date ",
                        "type":"string",
                        "description":"Shipment registered date.",
                        "format":"date-time"
                    },
                    "shipmentReceivedDate":{
                        "title":"Shipment received date",
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date-time"
                    },
                    "receivedOnDate":{
                        "type":"string",
                        "format":"date-time",
                        "writeOnly":true
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                },
                "description":"Paginated result data for the current page. The concrete type depends on the API and typically is an array or list of DTOs.",
                "example":[
                    {
                        "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    }
                ]
            },
            "ViewShipmentResponseV9":{
                "title":"ViewShipmentResponse v9.0",
                "type":"object",
                "properties":{
                    "shipments":{
                        "title":"Shipments",
                        "type":"array",
                        "description":"List of shipments.",
                        "items":{
                            "$ref":"#/components/schemas/shipments"
                        }
                    },
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates if there are more results beyond the current page.",
                        "example":true
                    },
                    "totalResults":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results across all pages.",
                        "format":"int32",
                        "example":125
                    },
                    "count":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results in the current page.",
                        "format":"int32",
                        "example":25
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Maximum number of records returned per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Index of the first record returned in the current page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "$ref":"#/components/schemas/ShipmentsTO"
                    }
                },
                "description":"Response containing shipment details."
            },
            "shipments":{
                "type":"object",
                "properties":{
                    "shipmentId":{
                        "type":"string",
                        "description":"Shipment ID.",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "destinationId":{
                        "type":"string",
                        "description":"Destination ID.",
                        "format":"uuid"
                    },
                    "destinationName":{
                        "type":"string",
                        "description":"Destination name.",
                        "example":"Site Houston"
                    },
                    "destinationShortName":{
                        "type":"string",
                        "description":"Destination short name.",
                        "example":"st_hstn"
                    },
                    "originId":{
                        "type":"string",
                        "description":"Origin ID.",
                        "format":"uuid"
                    },
                    "originName":{
                        "type":"string",
                        "description":"Origin name.",
                        "example":"Depot Houston"
                    },
                    "originShortName":{
                        "type":"string",
                        "description":"Origin short name.",
                        "example":"dpt_hstn"
                    },
                    "statusId":{
                        "type":"number",
                        "description":"Shipment status ID.",
                        "format":"Integer",
                        "example":5
                    },
                    "shipmentNumber":{
                        "type":"string",
                        "description":"Shipment number.",
                        "example":"123"
                    },
                    "createdDate":{
                        "type":"string",
                        "description":"Shipment creation date.",
                        "format":"date-time"
                    },
                    "shipDate":{
                        "type":"string",
                        "description":"Ship date.",
                        "format":"date-time"
                    },
                    "trackingNumber":{
                        "type":"string",
                        "description":"Shipment tracking number.",
                        "example":"12345"
                    },
                    "reportId":{
                        "type":"string",
                        "description":"Report ID.",
                        "format":"uuid"
                    },
                    "isDepotShipment":{
                        "type":"boolean",
                        "description":"Depot shipment indicator.",
                        "example":true
                    },
                    "quarantineKitCount":{
                        "type":"number",
                        "description":"Number of kits in quarantine on the shipment.",
                        "format":"Integer",
                        "example":10
                    },
                    "orderType":{
                        "type":"string",
                        "description":"Order type (Manual or Resupply).",
                        "example":"Manual"
                    },
                    "shippingAddress":{
                        "title":"Shipping Address",
                        "type":"string",
                        "description":"Primary or shipping address.",
                        "example":"Depot Houston, Houston"
                    },
                    "containsPooledkits":{
                        "title":"Contains Pooled Kits",
                        "type":"boolean",
                        "description":"Indicates whether the shipment contains pooled kits.",
                        "example":true
                    },
                    "formInstanceId":{
                        "title":"Form Instance ID",
                        "type":"string",
                        "description":"Form instance identifier of non-subject forms.",
                        "format":"uuid"
                    },
                    "transactionId":{
                        "title":"Transaction ID",
                        "type":"string",
                        "description":"Transaction identifier of shipments.",
                        "format":"uuid"
                    },
                    "compoundingKits":{
                        "title":"Compounding Kits",
                        "type":"boolean",
                        "description":"Indicates whether the order contains compounding kits.",
                        "example":true
                    },
                    "ShipmentRegisteredDate":{
                        "title":"Shipment registered date ",
                        "type":"string",
                        "description":"Shipment registered date.",
                        "format":"date-time"
                    },
                    "shipmentReceivedDate":{
                        "title":"Shipment received date",
                        "type":"string",
                        "description":"Shipment received date.",
                        "format":"date-time"
                    },
                    "receivedOnDate":{
                        "type":"string",
                        "format":"date-time",
                        "writeOnly":true
                    },
                    "reconciliation":{
                        "type":"boolean",
                        "description":"Indicates whether kit reconciliation is included.",
                        "example":true
                    },
                    "trackingNumberURL":{
                        "type":"string",
                        "description":"Tracking URL.",
                        "example":"http://www.site.com"
                    }
                }
            },
            "VisitResultV8":{
                "title":"VisitResult v8.0",
                "type":"object",
                "properties":{
                    "randomNumber":{
                        "title":"Random Number",
                        "type":"string",
                        "description":"Random number.",
                        "example":"10"
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DispensationKitV8"
                        }
                    },
                    "visitTimestamp":{
                        "title":"Visit Timestamp",
                        "type":"string",
                        "description":"Visit timestamp.",
                        "format":"date-time"
                    },
                    "treatmentTitle":{
                        "title":"Treatment Title",
                        "type":"string",
                        "description":"Treatment title.",
                        "example":"A"
                    }
                },
                "description":"Visit result."
            },
            "RuleHistoryEntryDoc":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "type":"string",
                        "description":"Unique identifier of the rule revision.",
                        "example":"38891F5E75BB4071BBF8ACE1F43BD1BD"
                    },
                    "ruleRevisionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Revision number assigned to the record.",
                        "format":"int32",
                        "example":3
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Flag indicating whether the rule was deleted in this revision (0 = active, 1 = deleted).",
                        "format":"int32",
                        "example":0
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Flag indicating whether the rule was enabled in this revision.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name for the rule revision.",
                        "example":"Visit Start Date Validation"
                    },
                    "ruleRefName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Reference name that uniquely identifies the rule.",
                        "example":"VISIT_START_DATE_VALIDATION"
                    },
                    "ruleDescription":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Purpose of the rule revision.",
                        "nullable":true,
                        "example":"Validates that visit start date is not later than expected window."
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Workflow state captured in this revision.",
                        "example":"approved",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Validation status for the revision. `true` indicates success, `false` indicates the presence of warnings or errors.",
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Validation message captured for the revision.",
                        "nullable":true,
                        "example":"Rule evaluated successfully."
                    },
                    "ruleOriginType":{
                        "maxLength":12,
                        "minLength":2,
                        "type":"string",
                        "description":"Origin channel for the rule. `UI` denotes portal-authored rules, `API` covers service integrations, and `INTEGRATION` represents synchronized external logic.",
                        "nullable":true,
                        "example":"UI",
                        "enum":[
                            "UI",
                            "API",
                            "INTEGRATION"
                        ]
                    },
                    "versionStart":{
                        "maxLength":30,
                        "minLength":20,
                        "type":"string",
                        "description":"Timestamp when this rule revision became effective.",
                        "format":"date-time",
                        "example":"2025-09-07T19:12:08Z"
                    },
                    "versionEnd":{
                        "maxLength":30,
                        "minLength":20,
                        "type":"string",
                        "description":"Timestamp when this revision was superseded.",
                        "format":"date-time",
                        "nullable":true,
                        "example":"2025-10-11T08:30:00Z"
                    },
                    "userId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Identifier for the user who performed the change.",
                        "example":"0000000000000000000000000000000A"
                    },
                    "userName":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"User name of the individual who performed the change.",
                        "example":"jsmith"
                    },
                    "studyId":{
                        "maxLength":36,
                        "minLength":32,
                        "type":"string",
                        "description":"Identifier of the study associated with the rule revision.",
                        "example":"36753A48BBA048CB98A5F3278146118D"
                    },
                    "studyversion":{
                        "maxLength":32,
                        "minLength":3,
                        "type":"string",
                        "description":"Study version tied to the revision.",
                        "nullable":true,
                        "example":"3.2.0.18"
                    },
                    "studymode":{
                        "maxLength":10,
                        "minLength":4,
                        "type":"string",
                        "description":"Study mode that captured the revision. Allowed values: design, test, training, production, active.",
                        "nullable":true,
                        "example":"test",
                        "enum":[
                            "design",
                            "test",
                            "training",
                            "production",
                            "active"
                        ]
                    }
                },
                "description":"Historical snapshot of a rule revision returned by the history endpoint.",
                "example":{
                    "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                    "ruleRevisionNumber":3,
                    "ruleDeleted":0,
                    "ruleEnabled":1,
                    "ruleName":"Visit Start Date Validation",
                    "ruleState":"approved",
                    "ruleValidationStatus":"true",
                    "ruleOriginType":"UI",
                    "studymode":"test"
                }
            },
            "RuleHistoryResponseDoc":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":7,
                        "minLength":6,
                        "type":"string",
                        "description":"Overall outcome of the call. Allowed values: success, failed.",
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/RuleHistoryResultDoc"
                    }
                },
                "description":"Envelope returned when fetching rule history by rule identifier."
            },
            "RuleHistoryResultDoc":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "description":"Historical revisions ordered by version date.",
                        "example":[
                            {
                                "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                                "ruleRevisionNumber":3
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleHistoryEntryDoc"
                        }
                    }
                },
                "description":"Rule history entries returned for a rule request.",
                "nullable":true,
                "example":{
                    "rules":[
                        {
                            "ruleId":"38891F5E75BB4071BBF8ACE1F43BD1BD",
                            "ruleRevisionNumber":3
                        }
                    ]
                }
            },
            "RDSRestErrorDataDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":6,
                        "minLength":6,
                        "type":"string",
                        "description":"Overall outcome indicator. `failed` means the request could not be fulfilled.",
                        "readOnly":true,
                        "example":"failed",
                        "enum":[
                            "failed"
                        ]
                    },
                    "result":{
                        "maxLength":4,
                        "minLength":4,
                        "type":"string",
                        "description":"Successful payload content when available; remains null for error responses.",
                        "nullable":true,
                        "readOnly":true,
                        "example":"null"
                    },
                    "errorCode":{
                        "maxLength":64,
                        "minLength":3,
                        "type":"string",
                        "description":"Application specific error identifier.",
                        "readOnly":true,
                        "example":"RuleSvc-030"
                    },
                    "errorMessage":{
                        "maxLength":512,
                        "minLength":10,
                        "type":"string",
                        "description":"Human-readable summary explaining the error.",
                        "readOnly":true,
                        "example":"Error encountered during rule execution. Contact your system administrator."
                    },
                    "details":{
                        "type":"object",
                        "description":"Optional diagnostic information when available.",
                        "nullable":true,
                        "readOnly":true,
                        "example":"Validation failed for ruleId 8E2253D8E53A4A46BAE3E4952CBE9E5A."
                    }
                },
                "description":"Standard error structure returned by Rule Designer APIs.",
                "nullable":true,
                "example":{
                    "status":"failed",
                    "result":null,
                    "errorCode":"RuleSvc-030",
                    "errorMessage":"Error encountered during rule execution.",
                    "details":null
                }
            },
            "BulkRuleMgmtFilterResponseDoc":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"Indicates whether additional pages exist.",
                        "example":false
                    },
                    "totalResults":{
                        "maximum":10000,
                        "minimum":0,
                        "type":"integer",
                        "description":"Total number of results for the applied filter.",
                        "format":"int32",
                        "example":2
                    },
                    "count":{
                        "maximum":500,
                        "minimum":0,
                        "type":"integer",
                        "description":"Number of results returned in this response.",
                        "format":"int32",
                        "example":2
                    },
                    "limit":{
                        "maximum":500,
                        "minimum":1,
                        "type":"integer",
                        "description":"Requested page size.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "maximum":10000,
                        "minimum":0,
                        "type":"integer",
                        "description":"Zero-based index of the first record in this page.",
                        "format":"int32",
                        "example":0
                    },
                    "resultData":{
                        "type":"array",
                        "description":"Filtered rule summaries matching the supplied criteria.",
                        "example":[
                            {
                                "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                                "ruleName":"Out of Range Visit Date",
                                "ruleState":"approved",
                                "ruleValidationStatus":"true"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/BulkRuleMgmtRuleSummaryDoc"
                        }
                    }
                },
                "description":"Paginated response for filtered rule summaries."
            },
            "BulkRuleMgmtRuleSummaryDoc":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "type":"string",
                        "description":"Unique identifier of the rule.",
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    "ruleOrder":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Display order used when listing the rule.",
                        "format":"int32",
                        "example":10
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Indicates whether the rule is marked deleted (0 = active, 1 = deleted).",
                        "format":"int32",
                        "example":0
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Indicates whether the rule is enabled (1) or disabled (0).",
                        "format":"int32",
                        "example":1
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Human readable name for the rule.",
                        "example":"Out of Range Visit Date"
                    },
                    "ruleRefName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Unique reference name for the rule.",
                        "example":"VISIT_DATE_RANGE_VALIDATION"
                    },
                    "ruleDescription":{
                        "maxLength":1024,
                        "minLength":3,
                        "type":"string",
                        "description":"Purpose or behavior of the rule.",
                        "example":"Creates a query when visit date falls outside the allowable window."
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":5,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "example":"approved",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the rule validated successfully in its last execution (`true` means validation passed, `false` captures warnings or errors).",
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Message associated with the last validation result.",
                        "example":"Rule evaluated successfully."
                    },
                    "ruleOriginType":{
                        "maxLength":32,
                        "minLength":2,
                        "type":"string",
                        "description":"Origin of the rule. `UI` denotes portal-authored rules, `API` covers service integrations, and `INTEGRATION` represents synchronized external logic.",
                        "example":"UI",
                        "enum":[
                            "UI",
                            "API",
                            "INTEGRATION"
                        ]
                    },
                    "ruleActionTypeName":{
                        "maxLength":64,
                        "minLength":5,
                        "type":"string",
                        "description":"Action executed when the rule evaluates to true.",
                        "example":"CREATE_QUERY"
                    },
                    "ruleEverInProduction":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the rule has been executed in production previously.",
                        "example":"false",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleActionTarget":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"The record type targeted by the rule action.",
                        "example":"VISIT"
                    },
                    "publishRun":{
                        "maxLength":8,
                        "minLength":7,
                        "type":"string",
                        "description":"Publish scope applied to the rule.",
                        "example":"AllData",
                        "enum":[
                            "AllData",
                            "FutureData"
                        ]
                    },
                    "versionStart":{
                        "maxLength":30,
                        "minLength":20,
                        "type":"string",
                        "description":"Timestamp when the rule version started.",
                        "format":"date-time",
                        "example":"2025-09-07T19:12:08Z"
                    },
                    "versionEnd":{
                        "maxLength":30,
                        "minLength":20,
                        "type":"string",
                        "description":"Timestamp when the rule version ended.",
                        "format":"date-time",
                        "nullable":true,
                        "example":"2026-01-15T08:30:00Z"
                    },
                    "lastModifiedDate":{
                        "maxLength":30,
                        "minLength":20,
                        "type":"string",
                        "description":"Timestamp for the last modification.",
                        "format":"date-time",
                        "example":"2025-11-02T14:45:22Z"
                    },
                    "formName":{
                        "maxLength":128,
                        "minLength":2,
                        "type":"string",
                        "description":"Name of the associated form.",
                        "example":"Screening Visit"
                    },
                    "questionName":{
                        "maxLength":128,
                        "minLength":2,
                        "type":"string",
                        "description":"Name of the question or data element.",
                        "example":"Visit Date"
                    },
                    "formRefName":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"Reference identifier for the related form.",
                        "example":"SCR_VISIT"
                    },
                    "questionRefName":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"Reference identifier for the related question.",
                        "example":"VISIT_DATE"
                    },
                    "userId":{
                        "maxLength":32,
                        "minLength":32,
                        "type":"string",
                        "description":"Identifier of the last modifying user.",
                        "example":"0000000000000000000000000000000A"
                    },
                    "userName":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"Name of the last modifying user.",
                        "example":"jsmith"
                    },
                    "ruleTrainingEnabled":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Flag showing whether training mode is enabled for the rule (`true` enables training execution, `false` excludes training records).",
                        "example":"false",
                        "enum":[
                            "true",
                            "false"
                        ]
                    }
                },
                "description":"Rule summary entry returned by the bulk filter endpoint.",
                "example":{
                    "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                    "ruleName":"Out of Range Visit Date",
                    "ruleState":"approved",
                    "ruleValidationStatus":"true"
                }
            },
            "BulkRuleMgmtErrorDoc":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":6,
                        "minLength":6,
                        "type":"string",
                        "description":"Overall status of the call. `failed` indicates the request could not be completed, `success` is never returned for this payload.",
                        "example":"failed",
                        "enum":[
                            "failed"
                        ]
                    },
                    "result":{
                        "maxLength":256,
                        "minLength":5,
                        "type":"string",
                        "description":"Successful result content when available; typically null for errors.",
                        "nullable":true,
                        "example":"No result returned because the request failed validation."
                    },
                    "errorCode":{
                        "maxLength":32,
                        "minLength":5,
                        "type":"string",
                        "description":"Application level error code.",
                        "example":"JSON-004"
                    },
                    "errorMessage":{
                        "maxLength":512,
                        "minLength":10,
                        "type":"string",
                        "description":"Human-readable explanation of the error.",
                        "example":"Invalid UUID list. One or more elements are invalid. Must contain at least one element."
                    },
                    "details":{
                        "maxLength":512,
                        "minLength":5,
                        "type":"string",
                        "description":"Optional contextual details that help the caller remediate the failure.",
                        "nullable":true,
                        "example":"ruleIds must contain at least one value."
                    }
                },
                "description":"Error payload returned when a request cannot be processed.",
                "nullable":true,
                "example":{
                    "status":"failed",
                    "result":null,
                    "errorCode":"JSON-004",
                    "errorMessage":"Invalid UUID list. One or more elements are invalid. Must contain at least one element.",
                    "details":"ruleIds must contain at least one value."
                }
            },
            "BulkRuleMgmtFilterDTO":{
                "type":"object",
                "properties":{
                    "formId":{
                        "maxLength":36,
                        "minLength":36,
                        "pattern":"^[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Form identifier used to constrain the rule list. Accepts a UUID string.",
                        "example":"39903D6C-042D-4D9E-8977-3160488E6D3D"
                    },
                    "itemId":{
                        "type":"array",
                        "description":"Collection of item identifiers to include in the filter.",
                        "example":[
                            "2F4F4E67-E0CE-4BE0-BB95-44D2CD38A569"
                        ],
                        "items":{
                            "maxLength":36,
                            "minLength":36,
                            "pattern":"^[0-9A-Fa-f]{8}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{4}-?[0-9A-Fa-f]{12}$",
                            "type":"string",
                            "description":"Item identifier expressed as a canonical UUID string without braces.",
                            "format":"uuid",
                            "example":"2f4f4e67-e0ce-4be0-bb95-44d2cd38a569"
                        }
                    },
                    "userId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"User identifier associated with the most recent rule update.",
                        "example":"0000000000000000000000000000000A"
                    },
                    "publishRun":{
                        "maxLength":8,
                        "minLength":7,
                        "type":"string",
                        "description":"Execution scope for the rule. `AllData` updates historical and in-flight data, while `FutureData` restricts updates to newly captured data.",
                        "example":"FutureData",
                        "enum":[
                            "AllData",
                            "FutureData"
                        ]
                    },
                    "userName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"User friendly name for the rule owner or last modifier. Filter is case-insensitive.",
                        "example":"jsmith"
                    },
                    "ruleTrainingEnabled":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicator for training mode enablement. Accepts the literal values `true`, `false`, or is omitted to include all records.",
                        "example":"true"
                    },
                    "ruleEnabled":{
                        "maxLength":1,
                        "minLength":1,
                        "type":"string",
                        "description":"Flag representing whether rules should be enabled (`1`) or disabled (`0`).",
                        "example":"1"
                    },
                    "ruleState":{
                        "type":"array",
                        "description":"List of rule states to include in the response.",
                        "example":[
                            "draft",
                            "publish"
                        ],
                        "items":{
                            "maxLength":8,
                            "minLength":4,
                            "type":"string",
                            "description":"Rule state indicator.",
                            "example":"approved",
                            "enum":[
                                "draft",
                                "uat",
                                "approved",
                                "publish"
                            ]
                        }
                    },
                    "sortColumn":{
                        "maxLength":64,
                        "minLength":4,
                        "type":"string",
                        "description":"Column used to sort the result set. Defaults to form, question, and rule name when not provided.",
                        "example":"ruleName"
                    },
                    "sortOrder":{
                        "maxLength":4,
                        "minLength":3,
                        "type":"string",
                        "description":"Sort order for the column. `ASC` sorts results in ascending order, while `DESC` sorts in descending order.",
                        "example":"ASC",
                        "enum":[
                            "ASC",
                            "DESC"
                        ]
                    }
                },
                "description":"Filter criteria applied when retrieving rule management summaries."
            },
            "BulkRulePublishRunResponseItemDoc":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":36,
                        "minLength":32,
                        "type":"string",
                        "description":"Unique identifier of the rule.",
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Name of the rule.",
                        "example":"Out of Range Visit Date"
                    },
                    "jobStatus":{
                        "maxLength":10,
                        "minLength":5,
                        "type":"string",
                        "description":"Processing outcome for the rule. `Success` means the publish run was updated, `Failed` signals a validation problem, `Error` reports an unexpected server issue, `InProgress` denotes an active update, and `Queued` indicates that processing has not started yet.",
                        "example":"Success",
                        "enum":[
                            "Success",
                            "Failed",
                            "Error",
                            "InProgress",
                            "Queued"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "minLength":5,
                        "type":"string",
                        "description":"Validation message resulting from the publish run update.",
                        "example":"Rule updated successfully."
                    },
                    "ruleValidationStatus":{
                        "type":"boolean",
                        "description":"Indicates whether the rule remains valid after processing. `true` means validation succeeded for the rule entry, while `false` records warnings or errors.",
                        "example":true,
                        "enum":[
                            true,
                            false
                        ]
                    },
                    "httpErrorCode":{
                        "maximum":599,
                        "minimum":100,
                        "type":"integer",
                        "description":"HTTP status code that would have been returned for this entry if processed individually.",
                        "format":"int32",
                        "example":200
                    },
                    "httpErrorMessage":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"HTTP status text associated with the error code.",
                        "example":"Success"
                    },
                    "result":{
                        "$ref":"#/components/schemas/BulkRulePublishRunResultDoc"
                    },
                    "error":{
                        "$ref":"#/components/schemas/BulkRuleMgmtErrorDoc"
                    }
                },
                "description":"Entry describing the outcome of a publish run update for a specific rule.",
                "example":{
                    "ruleId":"8E2253D8E53A4A46BAE3E4952CBE9E5A",
                    "ruleName":"Out of Range Visit Date",
                    "jobStatus":"Success",
                    "ruleValidationMessage":"Rule updated successfully.",
                    "ruleValidationStatus":true,
                    "httpErrorCode":200,
                    "httpErrorMessage":"Success",
                    "result":{
                        "status":"success",
                        "result":"Publish run updated to AllData"
                    },
                    "error":null
                }
            },
            "BulkRulePublishRunResultDoc":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":10,
                        "minLength":3,
                        "type":"string",
                        "description":"Outcome status string. `success` indicates the publish run change applied, `failed` shows a validation issue, and `error` represents an unexpected exception.",
                        "example":"success",
                        "enum":[
                            "success",
                            "failed",
                            "error"
                        ]
                    },
                    "result":{
                        "maxLength":256,
                        "minLength":5,
                        "type":"string",
                        "description":"Additional message describing the change that was applied.",
                        "example":"Publish run updated to AllData"
                    }
                },
                "description":"Result object returned when a publish run update succeeds.",
                "example":{
                    "status":"success",
                    "result":"Publish run updated to AllData"
                }
            },
            "BulkRuleIdsDTO":{
                "required":[
                    "ruleIds"
                ],
                "type":"object",
                "properties":{
                    "ruleIds":{
                        "type":"array",
                        "description":"List of rule identifiers expressed as 32 character uppercase hexadecimal strings without separators.",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "maxLength":32,
                            "minLength":32,
                            "pattern":"^[0-9A-F]{32}$",
                            "type":"string",
                            "description":"Rule identifier expressed as a 32 character uppercase hexadecimal string without separators.",
                            "example":"938D23FA6B7241CCA41BD627E5DB60DA"
                        }
                    }
                },
                "description":"Wrapper containing the rule identifiers targeted by a bulk operation."
            },
            "RDSRestResponseDTO":{
                "type":"object",
                "properties":{
                    "status":{
                        "maxLength":7,
                        "minLength":6,
                        "type":"string",
                        "description":"Overall outcome for the call. Allowed values: success, failed.",
                        "readOnly":true,
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "maxProperties":2000,
                        "type":"object",
                        "description":"Result payload when the request succeeds. Structure depends on the endpoint.",
                        "readOnly":true,
                        "example":{
                            "rules":[
                            ]
                        }
                    }
                },
                "description":"Response from Rule Designer APIs",
                "nullable":true,
                "example":{
                    "status":"success",
                    "result":{
                        "message":"Rule updated successfully."
                    }
                }
            },
            "RDSRestUnifiedResponseDTO":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Identifier of the rule that was processed. The value is provided as a 32 character uppercase hexadecimal string without separators.",
                        "nullable":true,
                        "example":"8E2253D8E53A4A46BAE3E4952CBE9E5A"
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name of the rule.",
                        "example":"Out of Range Visit Date"
                    },
                    "jobId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Identifier of the asynchronous job triggered by the bulk action. Represented as a 32 character uppercase hexadecimal string without separators.",
                        "nullable":true,
                        "example":"123E4567E89B12D3A456426655440001"
                    },
                    "jobStatus":{
                        "maxLength":16,
                        "minLength":4,
                        "type":"string",
                        "description":"Execution state of the job for this rule. `Success` indicates completion, `Failed` signals a validation problem, `Error` represents an unexpected exception, `InProgress` denotes active processing, and `Queued` means the job awaits execution.",
                        "nullable":true,
                        "example":"Success",
                        "enum":[
                            "Success",
                            "Failed",
                            "Error",
                            "InProgress",
                            "Queued"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Validation outcome message generated while processing the rule.",
                        "nullable":true,
                        "example":"Rule updated successfully."
                    },
                    "ruleValidationStatus":{
                        "type":"boolean",
                        "description":"`true` indicates that validation succeeded for the rule, while `false` captures warnings or errors.",
                        "example":true,
                        "enum":[
                            true,
                            false
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/RDSRestResponseDTO"
                    },
                    "error":{
                        "$ref":"#/components/schemas/RDSRestErrorDataDTO"
                    },
                    "httpErrorCode":{
                        "maximum":599,
                        "minimum":100,
                        "type":"integer",
                        "description":"HTTP status code representing the operation result for this rule.",
                        "format":"int32",
                        "example":200
                    },
                    "httpErrorMessage":{
                        "maxLength":64,
                        "minLength":2,
                        "type":"string",
                        "description":"Status text associated with the HTTP code.",
                        "example":"Success"
                    }
                },
                "description":"Unified response entry returned when bulk operations process multiple rules."
            },
            "RuleSimpleListDoc":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "description":"Rule summaries returned by the lightweight endpoint.",
                        "example":[
                            {
                                "ruleId":"699EF3745FC545589F186D2198F3C65E",
                                "ruleName":"Query on negative temperature",
                                "ruleValidationStatus":"true"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleSummaryDoc"
                        }
                    }
                },
                "description":"Rule collection returned by lightweight listing endpoints."
            },
            "RuleSummaryActionDoc":{
                "type":"object",
                "properties":{
                    "formId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the action target form.",
                        "nullable":true,
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    },
                    "itemId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the action target item.",
                        "nullable":true,
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    "ruleActionTypeName":{
                        "type":"string",
                        "description":"Action type performed when the rule fires.",
                        "nullable":true,
                        "example":"CREATE_QUERY",
                        "enum":[
                            "CREATE_QUERY",
                            "SEND_NOTIFICATION",
                            "DISABLE_FIELD",
                            "EXECUTE_CUSTOM_ACTION"
                        ]
                    },
                    "propertyType":{
                        "type":"string",
                        "description":"Optional property type affected by the action.",
                        "nullable":true,
                        "example":"form",
                        "enum":[
                            "visit",
                            "event",
                            "form",
                            "item",
                            "none"
                        ]
                    },
                    "propertyName":{
                        "type":"string",
                        "description":"Specific property referenced by the action.",
                        "nullable":true,
                        "example":"VISIT_START"
                    },
                    "eventId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Identifier of the event targeted by the action.",
                        "nullable":true,
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    }
                },
                "description":"Action metadata describing what happens when the rule triggers."
            },
            "RuleSummaryDoc":{
                "required":[
                    "ruleId",
                    "ruleName"
                ],
                "type":"object",
                "properties":{
                    "ruleId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the rule. Accepts either a compact 32-character hexadecimal UUID or a hyphenated 36-character UUID.",
                        "example":"82A65F8F6AAF47FFB177662E3931E7C0"
                    },
                    "ruleName":{
                        "type":"string",
                        "description":"Human readable rule name displayed in the designer UI.",
                        "example":"Visit Start Date Validation"
                    },
                    "ruleDescription":{
                        "type":"string",
                        "description":"Business purpose or description of the rule.",
                        "nullable":true,
                        "example":"Creates a query when visit date falls outside the allowable window."
                    },
                    "ruleValidationStatus":{
                        "type":"string",
                        "description":"Validation result indicator. `true` means validation passed; `false` indicates warnings or errors.",
                        "nullable":true,
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "type":"string",
                        "description":"Text explaining the latest validation result.",
                        "nullable":true,
                        "example":"Rule evaluated successfully."
                    },
                    "ruleOriginType":{
                        "type":"string",
                        "description":"Origin of the rule configuration.",
                        "nullable":true,
                        "example":"UI",
                        "enum":[
                            "UI",
                            "API",
                            "INTEGRATION"
                        ]
                    },
                    "actions":{
                        "type":"array",
                        "description":"Actions triggered when the rule evaluates to true.",
                        "example":[
                            {
                                "ruleActionTypeName":"CREATE_QUERY",
                                "formId":"39903D6C042D4D9E89773160488E6D3D"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleSummaryActionDoc"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "description":"Operands referenced when the rule executes.",
                        "example":[
                            {
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleSummaryOperandDoc"
                        }
                    }
                },
                "description":"Rule summary entry returned by the list endpoints.",
                "example":{
                    "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                    "ruleName":"Visit Start Date Validation",
                    "ruleOriginType":"UI"
                }
            },
            "RuleSummaryOperandDoc":{
                "type":"object",
                "properties":{
                    "eventId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the operand event.",
                        "nullable":true,
                        "example":"9B4AA96F48344015A259D6436EB97B47"
                    },
                    "formId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the operand form.",
                        "nullable":true,
                        "example":"39903D6C042D4D9E89773160488E6D3D"
                    },
                    "itemId":{
                        "pattern":"^[0-9A-Fa-f]{32}$|^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$",
                        "type":"string",
                        "description":"Unique identifier of the operand item.",
                        "nullable":true,
                        "example":"2F4F4E67E0CE4BE0BB9544D2CD38A569"
                    },
                    "mapRelation":{
                        "type":"string",
                        "description":"Relationship between this operand and the other operands.",
                        "nullable":true,
                        "example":"ALL",
                        "enum":[
                            "ANY",
                            "ALL",
                            "NONE"
                        ]
                    }
                },
                "description":"Operand metadata used while evaluating the rule."
            },
            "RuleSummaryErrorDoc":{
                "required":[
                    "errorCode",
                    "errorMessage",
                    "status"
                ],
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Status string indicating the request failed.",
                        "example":"failed",
                        "enum":[
                            "failed"
                        ]
                    },
                    "result":{
                        "type":"string",
                        "description":"Successful payload content is null for errors.",
                        "nullable":true,
                        "example":"null"
                    },
                    "errorCode":{
                        "type":"string",
                        "description":"Machine readable error code.",
                        "example":"RuleSvc-030"
                    },
                    "errorMessage":{
                        "type":"string",
                        "description":"Human-readable explanation that helps resolve the failure.",
                        "example":"Invalid UUID list. One or more elements are invalid. Must contain at least one element."
                    },
                    "details":{
                        "type":"string",
                        "description":"Optional context giving additional remediation detail.",
                        "nullable":true,
                        "example":"Provide at least one ruleId in the query."
                    }
                },
                "description":"Error structure returned when a rule list request fails."
            },
            "RuleSummaryListDoc":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "description":"Rule summaries matching the supplied filters.",
                        "example":[
                            {
                                "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                "ruleName":"Visit Start Date Validation",
                                "ruleValidationStatus":"true"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleSummaryDoc"
                        }
                    }
                },
                "description":"Collection of rule summaries returned from list endpoints.",
                "nullable":true,
                "example":{
                    "rules":[
                        {
                            "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                            "ruleName":"Visit Start Date Validation"
                        }
                    ]
                }
            },
            "RuleSummaryResponseDoc":{
                "required":[
                    "status"
                ],
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string",
                        "description":"Overall status of the request. Allowed values: success, failed.",
                        "example":"success",
                        "enum":[
                            "success",
                            "failed"
                        ]
                    },
                    "result":{
                        "$ref":"#/components/schemas/RuleSummaryListDoc"
                    }
                },
                "description":"Standard envelope containing rule summary results."
            },
            "BulkUpdateRulesDTO":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "description":"List of rule definitions to update in a single request.",
                        "example":[
                            {
                                "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                "ruleRefName":"VISIT_DATE_WINDOW",
                                "ruleExpression":"return visitDate >= baselineDate;",
                                "ruleJSExpression":"return visitDate >= baselineDate;",
                                "studyVersion":"26.2.0.0",
                                "ruleEnabled":1,
                                "ruleDeleted":0,
                                "ruleVersionNumber":101,
                                "ruleDescription":"Blocks visits dated before the baseline date.",
                                "ruleName":"Visit Date Validation",
                                "ruleState":"draft",
                                "ruleValidationStatus":"true",
                                "ruleValidationMessage":"Validated on 2026-03-30.",
                                "ruleOriginType":"user rule",
                                "actions":[
                                    {
                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                        "eventRefName":"SCREENING",
                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                        "formRefName":"VISIT_START",
                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                        "itemRefName":"VISIT_DATE",
                                        "ruleActionTypeName":"auto query",
                                        "ruleActionOrder":1,
                                        "ruleActionDescription":"Raise a query when visit date is invalid.",
                                        "ruleActionParams":"queryMessage=Confirm visit date"
                                    }
                                ],
                                "operands":[
                                    {
                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                        "eventRefName":"SCREENING",
                                        "eventInstanceNumber":0,
                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                        "formRefName":"VISIT_START",
                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                        "itemRefName":"VISIT_DATE",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate",
                                        "operandName":"visitDate",
                                        "dataType":"Date"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTO"
                        }
                    }
                },
                "description":"Payload containing the rules to be updated in a single bulk request."
            },
            "RuleActionDTO":{
                "title":"RuleActionDTO",
                "required":[
                    "eventId",
                    "formId",
                    "itemId"
                ],
                "type":"object",
                "properties":{
                    "eventId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the visit/event that hosts the action.",
                        "format":"uuid"
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the form impacted by the action.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the item updated or queried by the action.",
                        "format":"uuid"
                    },
                    "ruleActionTypeName":{
                        "maxLength":21,
                        "minLength":6,
                        "type":"string",
                        "description":"Type of action executed when the rule fires. Allowed values: `calculated values`, `auto query`, `assigned query`, `generic calculations`, or `notification`.",
                        "example":"auto query",
                        "enum":[
                            "calculated values",
                            "auto query",
                            "assigned query",
                            "generic calculations",
                            "notification"
                        ]
                    },
                    "ruleActionOrder":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence in which this action should execute after the rule triggers. Provide a non-negative integer.",
                        "format":"int32",
                        "example":1
                    },
                    "eventRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the visit/event.",
                        "nullable":true,
                        "example":"SCREENING"
                    },
                    "formRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the form.",
                        "nullable":true,
                        "example":"VISIT_START"
                    },
                    "itemRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the item.",
                        "nullable":true,
                        "example":"VISIT_DATE"
                    },
                    "ruleActionDescription":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Optional description that explains the action to administrators.",
                        "nullable":true,
                        "example":"Raise a query when visit date is invalid."
                    },
                    "ruleActionParams":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Optional key/value parameters applied to the action.",
                        "nullable":true,
                        "example":"queryMessage=Confirm visit date"
                    }
                },
                "description":"Information about action for rule",
                "example":{
                    "eventId":"9B4AA96F48344015A259D6436EB97B47",
                    "eventRefName":"SCREENING",
                    "formId":"39903D6C042D4D9E89773160488E6D3D",
                    "formRefName":"VISIT_START",
                    "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                    "itemRefName":"VISIT_DATE",
                    "ruleActionTypeName":"auto query",
                    "ruleActionOrder":0,
                    "ruleActionDescription":"Raise a query when visit date is missing.",
                    "ruleActionParams":"queryMessage=Confirm visit date"
                }
            },
            "RuleOperandDTO":{
                "title":"RuleOperandDTO",
                "required":[
                    "eventId",
                    "formId",
                    "itemId",
                    "operandName"
                ],
                "type":"object",
                "properties":{
                    "eventId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the visit/event providing operand context.",
                        "format":"uuid"
                    },
                    "(Optional)eventInstanceNumber":{
                        "maximum":999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence number of the repeating event instance. Provide a non-negative integer; omit when not applicable.",
                        "format":"int32",
                        "nullable":true,
                        "example":0
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the form that supplies the operand value.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the item referenced by the operand.",
                        "format":"uuid"
                    },
                    "propertyType":{
                        "maxLength":5,
                        "minLength":5,
                        "type":"string",
                        "description":"Type of study object property mapped to the operand. Allowed value: `visit`.",
                        "example":"visit",
                        "enum":[
                            "visit"
                        ]
                    },
                    "propertyName":{
                        "maxLength":128,
                        "minLength":1,
                        "type":"string",
                        "description":"Name of the study object property targeted by the operand.",
                        "nullable":true,
                        "example":"visitStartDate"
                    },
                    "operandName":{
                        "maxLength":128,
                        "minLength":1,
                        "type":"string",
                        "description":"Name of the operand as referenced in the rule expression.",
                        "example":"visitDate"
                    },
                    "dataType":{
                        "maxLength":7,
                        "minLength":4,
                        "type":"string",
                        "description":"Data type of the operand value. Allowed values: `Date`, `Number`, `Boolean`, `Text`, or `Choice`.",
                        "example":"Date",
                        "enum":[
                            "Date",
                            "Number",
                            "Boolean",
                            "Text",
                            "Choice"
                        ]
                    },
                    "eventRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the visit/event supplying the operand.",
                        "nullable":true,
                        "example":"SCREENING"
                    },
                    "formRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the form that hosts the operand.",
                        "nullable":true,
                        "example":"VISIT_START"
                    },
                    "itemRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the item.",
                        "nullable":true,
                        "example":"VISIT_DATE"
                    }
                },
                "description":"Information about operands for rule",
                "example":{
                    "eventId":"9B4AA96F48344015A259D6436EB97B47",
                    "eventRefName":"SCREENING",
                    "eventInstanceNumber":0,
                    "formId":"39903D6C042D4D9E89773160488E6D3D",
                    "formRefName":"VISIT_START",
                    "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                    "itemRefName":"VISIT_DATE",
                    "propertyType":"visit",
                    "propertyName":"visitStartDate",
                    "operandName":"visitDate",
                    "dataType":"Date"
                }
            },
            "UpdateRuleDTO":{
                "title":"UpdateRuleDTO",
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique identifier of the rule being updated. Provide a 32-character hexadecimal value without separators.",
                        "format":"uuid",
                        "nullable":true
                    },
                    "ruleRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "pattern":"^[A-Za-z0-9_]+$",
                        "type":"string",
                        "description":"Internal reference name for the rule. Use alphanumeric characters and underscores without spaces.",
                        "example":"VISIT_DATE_WINDOW"
                    },
                    "ruleExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Readable expression that defines the rule logic.",
                        "example":"return visitDate >= baselineDate;"
                    },
                    "studyVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Study version associated with the rule.",
                        "example":"26.2.0.0"
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Rule enabled flag. Use 1 to enable the rule or 0 to keep it disabled. Negative values are not permitted.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Soft delete flag. Use 1 to mark the rule as deleted or 0 to keep it active. Negative values are not permitted.",
                        "format":"int32",
                        "example":0
                    },
                    "actions":{
                        "type":"array",
                        "description":"Ordered list of actions executed when the rule evaluates to true.",
                        "example":[
                            {
                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                "ruleActionTypeName":"auto query",
                                "ruleActionOrder":1
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleActionDTO"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "description":"Operands referenced within the rule expression.",
                        "example":[
                            {
                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                "operandName":"visitDate",
                                "dataType":"Date"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleOperandDTO"
                        }
                    },
                    "ruleJSExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"JavaScript representation of the rule. Retain existing value when editing.",
                        "example":"return visitDate >= baselineDate;"
                    },
                    "ruleVersionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequential rule version number. Provide a non-negative integer.",
                        "format":"int32",
                        "example":100
                    },
                    "ruleDescription":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Detailed description of the rule purpose.",
                        "nullable":true,
                        "example":"Blocks visits dated before the baseline date."
                    },
                    "ruleName":{
                        "maxLength":256,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name for the rule shown in the user interface.",
                        "example":"Visit Date Validation"
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "example":"draft",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Result of the last validation event. Provide `true` when validation succeeded or `false` otherwise.",
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Message produced by the last validation attempt.",
                        "nullable":true,
                        "example":"Validated on 2026-03-30."
                    },
                    "ruleOriginType":{
                        "maxLength":32,
                        "minLength":6,
                        "type":"string",
                        "description":"Channel that originally created the rule. Allowed values: `user rule`, `smart object age`, or `ui_notification`.",
                        "example":"user rule",
                        "enum":[
                            "user rule",
                            "smart object age",
                            "ui_notification"
                        ]
                    }
                },
                "description":"Information for Updating rule",
                "example":{
                    "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                    "ruleRefName":"VISIT_DATE_WINDOW",
                    "ruleExpression":"return visitDate >= baselineDate;",
                    "studyVersion":"26.2.0.0",
                    "ruleEnabled":1,
                    "ruleDeleted":0,
                    "ruleVersionNumber":101,
                    "ruleName":"Visit Date Validation"
                }
            },
            "BulkRuleCopyDTO":{
                "type":"object",
                "properties":{
                    "studies":{
                        "type":"array",
                        "description":"Study-level mappings describing the source and target study scopes.",
                        "example":[
                            {
                                "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                "fromStudyVersion":"26.2.0.0",
                                "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                                "toStudyVersion":"27.0.0.1",
                                "forms":[
                                    {
                                        "fromFormId":"39903D6C042D4D9E89773160488E6D3D",
                                        "fromFormRefName":"SCR_VISIT",
                                        "toFormId":"5A8E2C7D6B4F439AA3BD1E0F8C6A9D34",
                                        "toFormRefName":"SCR_VISIT_V2",
                                        "items":[
                                            {
                                                "fromItemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                                "fromItemRefName":"VISIT_DATE",
                                                "toItemId":"1C9E4A6B8D2F43E7A1B0C5D6F8A9E321",
                                                "toItemRefName":"VISIT_DATE_V2"
                                            }
                                        ]
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/StudyMapDTO"
                        }
                    }
                },
                "description":"Mapping definitions used when copying rules between studies."
            },
            "FormMapDTO":{
                "required":[
                    "fromFormId",
                    "fromFormRefName",
                    "toFormId",
                    "toFormRefName"
                ],
                "type":"object",
                "properties":{
                    "fromFormId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Source form identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "fromFormRefName":{
                        "maxLength":64,
                        "minLength":3,
                        "pattern":"^[A-Z0-9_]+$",
                        "type":"string",
                        "description":"Reference name of the source form. Use uppercase letters, numbers, and underscores.",
                        "example":"SCR_VISIT"
                    },
                    "toFormId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Target form identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "toFormRefName":{
                        "maxLength":64,
                        "minLength":3,
                        "pattern":"^[A-Z0-9_]+$",
                        "type":"string",
                        "description":"Reference name of the target form. Use uppercase letters, numbers, and underscores.",
                        "example":"SCR_VISIT_V2"
                    },
                    "items":{
                        "type":"array",
                        "description":"Item mappings for operands and targets associated with the form.",
                        "example":[
                            {
                                "fromItemId":"90C7669C40BF4371B71E8EB26851B8AD",
                                "fromItemRefName":"VISIT_DATE",
                                "toItemId":"1C9E4A6B8D2F43E7A1B0C5D6F8A9E321",
                                "toItemRefName":"VISIT_DATE_V2"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/ItemMapDTO"
                        }
                    }
                },
                "description":"Defines how a source form maps to a target form during rule copy operations.",
                "example":{
                    "fromFormId":"39903D6C042D4D9E89773160488E6D3D",
                    "toFormId":"5A8E2C7D6B4F439AA3BD1E0F8C6A9D34"
                }
            },
            "ItemMapDTO":{
                "required":[
                    "fromItemId",
                    "fromItemRefName",
                    "toItemId",
                    "toItemRefName"
                ],
                "type":"object",
                "properties":{
                    "fromItemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Source item identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "fromItemRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "pattern":"^[A-Z0-9_]+$",
                        "type":"string",
                        "description":"Source item reference name. Use uppercase letters, numbers, and underscores.",
                        "example":"VISIT_DATE"
                    },
                    "toItemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Target item identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "toItemRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "pattern":"^[A-Z0-9_]+$",
                        "type":"string",
                        "description":"Target item reference name. Use uppercase letters, numbers, and underscores.",
                        "example":"VISIT_DATE_V2"
                    }
                },
                "description":"Describes how a source item maps to a target item when copying rules.",
                "example":{
                    "fromItemId":"90C7669C40BF4371B71E8EB26851B8AD",
                    "toItemId":"1C9E4A6B8D2F43E7A1B0C5D6F8A9E321"
                }
            },
            "StudyMapDTO":{
                "required":[
                    "fromStudyId",
                    "toStudyId"
                ],
                "type":"object",
                "properties":{
                    "fromStudyId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Source study identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "fromStudyVersion":{
                        "maxLength":32,
                        "minLength":5,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Source study version identifier using dot-delimited numeric segments.",
                        "example":"26.2.0.0"
                    },
                    "toStudyId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Target study identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "toStudyVersion":{
                        "maxLength":32,
                        "minLength":5,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Target study version identifier using dot-delimited numeric segments.",
                        "example":"27.0.0.1"
                    },
                    "forms":{
                        "type":"array",
                        "description":"Form mappings that describe how source forms map to target forms.",
                        "example":[
                            {
                                "fromFormId":"39903D6C042D4D9E89773160488E6D3D",
                                "fromFormRefName":"SCR_VISIT",
                                "toFormId":"5A8E2C7D6B4F439AA3BD1E0F8C6A9D34",
                                "toFormRefName":"SCR_VISIT_V2"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormMapDTO"
                        }
                    }
                },
                "description":"Defines source and target study metadata for rule copy operations.",
                "example":{
                    "fromStudyId":"82A65F8F6AAF47FFB177662E3931E7C0",
                    "toStudyId":"7B0D4823F4BE4E0FB86E0D593421C1A9",
                    "forms":[
                        {
                            "fromFormId":"39903D6C042D4D9E89773160488E6D3D",
                            "toFormId":"5A8E2C7D6B4F439AA3BD1E0F8C6A9D34"
                        }
                    ]
                }
            },
            "RuleIDsReq":{
                "title":"RuleIDsReq",
                "type":"object",
                "properties":{
                    "ruleIds":{
                        "type":"array",
                        "description":"List of Unique ID of rule",
                        "example":"[B1B8327AFAA6412287106192AB5984EF]",
                        "items":{
                            "type":"string",
                            "description":"List of Unique ID of rule",
                            "format":"uuid"
                        }
                    }
                },
                "description":"List of Rule Ids"
            },
            "BulkUpdateRulesDTOV2":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTOV2"
                        }
                    }
                }
            },
            "UpdateRuleDTOV2":{
                "title":"UpdateRuleDTOV2",
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique identifier of the rule in 32-character hexadecimal format.",
                        "format":"uuid"
                    },
                    "ruleRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Technical reference name of the rule.",
                        "example":"RULE_SMART_AGE"
                    },
                    "ruleExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable expression that defines the rule logic.",
                        "example":"AgeInYears(SMARTITEM_DOB, visitDate)"
                    },
                    "studyVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Semantic version of the study configuration that owns this rule.",
                        "example":"26.2.0.0"
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Rule enabled flag. `1` marks the rule as enabled; `0` keeps it disabled.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Deletion flag. `1` indicates the rule is marked as deleted.",
                        "format":"int32",
                        "example":0
                    },
                    "actions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RuleActionDTO"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RuleOperandDTO"
                        }
                    },
                    "ruleJSExpression":{
                        "maxLength":8000,
                        "type":"string",
                        "description":"Internal JavaScript representation of the rule.",
                        "nullable":true,
                        "example":"function evaluate(){ return visitDate >= baselineDate; }"
                    },
                    "ruleVersionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Monotonic version assigned to the rule definition.",
                        "format":"int32",
                        "example":101
                    },
                    "ruleDescription":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Business description that helps authors understand the rule.",
                        "nullable":true,
                        "example":"Validates visit date is not before baseline."
                    },
                    "ruleName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name presented in the Rule Designer UI.",
                        "example":"Visit Date Validation"
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "nullable":true,
                        "example":"draft",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the last validation run succeeded (`true`) or failed (`false`).",
                        "nullable":true,
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Details about the most recent validation attempt.",
                        "nullable":true,
                        "example":"Rule validated successfully on 2026-03-30."
                    },
                    "async":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Execution mode. `0` runs synchronously; `1` queues asynchronous execution.",
                        "format":"int32",
                        "example":0
                    }
                },
                "description":"Information for Updating rule"
            },
            "BulkUpdateRulesDTOV3":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTOV3"
                        }
                    }
                }
            },
            "UpdateRuleDTOV3":{
                "title":"UpdateRuleDTOV3",
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique identifier of the rule in 32-character hexadecimal format.",
                        "format":"uuid"
                    },
                    "ruleRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Technical reference name of the rule.",
                        "example":"RULE_SMART_AGE"
                    },
                    "ruleExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable expression that defines the rule logic.",
                        "example":"AgeInYears(SMARTITEM_DOB, visitDate)"
                    },
                    "studyVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Semantic version of the study configuration that owns this rule.",
                        "example":"26.2.0.0"
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Rule enabled flag. `1` marks the rule as enabled; `0` keeps it disabled.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Deletion flag. `1` indicates the rule is marked as deleted.",
                        "format":"int32",
                        "example":0
                    },
                    "actions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RuleActionDTO"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RuleOperandDTO"
                        }
                    },
                    "ruleJSExpression":{
                        "maxLength":8000,
                        "type":"string",
                        "description":"Internal JavaScript representation of the rule.",
                        "nullable":true,
                        "example":"function evaluate(){ return visitDate >= baselineDate; }"
                    },
                    "ruleVersionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Monotonic version assigned to the rule definition.",
                        "format":"int32",
                        "example":101
                    },
                    "ruleDescription":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Business description that helps authors understand the rule.",
                        "nullable":true,
                        "example":"Validates visit date is not before baseline."
                    },
                    "ruleName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name presented in the Rule Designer UI.",
                        "example":"Visit Date Validation"
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "nullable":true,
                        "example":"draft",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the last validation run succeeded (`true`) or failed (`false`).",
                        "nullable":true,
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Details about the most recent validation attempt.",
                        "nullable":true,
                        "example":"Rule validated successfully on 2026-03-30."
                    },
                    "async":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Execution mode. `0` runs synchronously; `1` queues asynchronous execution.",
                        "format":"int32",
                        "example":0
                    },
                    "ruleOriginalType":{
                        "maxLength":64,
                        "minLength":3,
                        "type":"string",
                        "description":"Indicates where the rule was authored. `user rule` originates in the Rule Designer UI, `smart object age` refers to the legacy Smart Object rule, and `ui_notification` is produced by the notification builder.",
                        "nullable":true,
                        "example":"user rule",
                        "enum":[
                            "user rule",
                            "smart object age",
                            "ui_notification"
                        ]
                    },
                    "isLibrary":{
                        "type":"boolean",
                        "description":"Determines if rules belongs to library",
                        "example":true
                    }
                },
                "description":"Information for Updating rule"
            },
            "StudyMapDTOV3":{
                "required":[
                    "fromStudyId",
                    "toStudyId"
                ],
                "type":"object",
                "properties":{
                    "forms":{
                        "type":"array",
                        "description":"Form mappings used during the version 3 copy.",
                        "example":[
                            {
                                "fromFormId":"39903D6C042D4D9E89773160488E6D3D",
                                "fromFormRefName":"SCR_VISIT",
                                "toFormId":"5A8E2C7D6B4F439AA3BD1E0F8C6A9D34",
                                "toFormRefName":"SCR_VISIT_V2"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/FormMapDTO"
                        }
                    },
                    "isToIsLibrary":{
                        "type":"boolean"
                    },
                    "fromStudyId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Source study identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "fromStudyVersion":{
                        "maxLength":32,
                        "minLength":5,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Source study version identifier.",
                        "example":"26.2.0.0"
                    },
                    "fromIsLibrary":{
                        "type":"boolean",
                        "description":"Indicates whether the source study is a library study.",
                        "example":false,
                        "enum":[
                            true,
                            false
                        ]
                    },
                    "toStudyId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-F]{32}$",
                        "type":"string",
                        "description":"Target study identifier expressed as a 32-character uppercase hexadecimal UUID without separators.",
                        "format":"uuid"
                    },
                    "toStudyVersion":{
                        "maxLength":32,
                        "minLength":5,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Target study version identifier.",
                        "example":"27.0.0.1"
                    },
                    "toIsLibrary":{
                        "type":"boolean",
                        "description":"Indicates whether the target study is a library study.",
                        "example":false,
                        "enum":[
                            true,
                            false
                        ]
                    }
                },
                "description":"Version 3 study mapping definition used for rule copy operations."
            },
            "BulkRuleCopyDTOV3":{
                "type":"object",
                "properties":{
                    "studies":{
                        "type":"array",
                        "description":"Study mappings for version 3 copy operations.",
                        "items":{
                            "$ref":"#/components/schemas/StudyMapDTOV3"
                        }
                    }
                },
                "description":"Version 3 rule copy payload describing study mappings."
            },
            "BulkUpdateRulesDTOV4":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTOV3"
                        }
                    }
                }
            },
            "BulkUpdateRulesDTOV5":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTOV5"
                        }
                    }
                }
            },
            "RuleActionDTOV5":{
                "title":"RuleActionDTOV5",
                "required":[
                    "eventId",
                    "formId",
                    "itemId"
                ],
                "type":"object",
                "properties":{
                    "eventId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the visit/event that hosts the action.",
                        "format":"uuid"
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the form impacted by the action.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the item updated or queried by the action.",
                        "format":"uuid"
                    },
                    "ruleActionTypeName":{
                        "maxLength":21,
                        "minLength":6,
                        "type":"string",
                        "description":"Type of action executed when the rule fires. Allowed values: `calculated values`, `auto query`, `assigned query`, `generic calculations`, or `notification`.",
                        "example":"auto query",
                        "enum":[
                            "calculated values",
                            "auto query",
                            "assigned query",
                            "generic calculations",
                            "notification"
                        ]
                    },
                    "ruleActionOrder":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence in which this action should execute after the rule triggers. Provide a non-negative integer.",
                        "format":"int32",
                        "example":1
                    },
                    "eventRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the visit/event.",
                        "nullable":true,
                        "example":"SCREENING"
                    },
                    "formRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the form.",
                        "nullable":true,
                        "example":"VISIT_START"
                    },
                    "itemRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the item.",
                        "nullable":true,
                        "example":"VISIT_DATE"
                    },
                    "ruleActionDescription":{
                        "maxLength":512,
                        "minLength":1,
                        "type":"string",
                        "description":"Optional description that explains the action to administrators.",
                        "nullable":true,
                        "example":"Raise a query when visit date is invalid."
                    },
                    "ruleActionParams":{
                        "maxLength":1024,
                        "minLength":1,
                        "type":"string",
                        "description":"Optional key/value parameters applied to the action.",
                        "nullable":true,
                        "example":"queryMessage=Confirm visit date"
                    },
                    "propertyType":{
                        "type":"string"
                    },
                    "propertyName":{
                        "type":"string"
                    }
                },
                "description":"Information about action for rule V5",
                "example":{
                    "eventId":"9B4AA96F48344015A259D6436EB97B47",
                    "formId":"39903D6C042D4D9E89773160488E6D3D",
                    "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                    "propertyType":"item",
                    "propertyName":"VISIT_DATE"
                }
            },
            "UpdateRuleDTOV5":{
                "title":"UpdateRuleDTOV5",
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique identifier of the rule in 32-character hexadecimal format.",
                        "format":"uuid"
                    },
                    "ruleRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Technical reference name of the rule.",
                        "example":"RULE_SMART_AGE"
                    },
                    "ruleExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable expression that defines the rule logic.",
                        "example":"AgeInYears(SMARTITEM_DOB, visitDate)"
                    },
                    "studyVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Semantic version of the study configuration that owns this rule.",
                        "example":"26.2.0.0"
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Rule enabled flag. `1` marks the rule as enabled; `0` keeps it disabled.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Deletion flag. `1` indicates the rule is marked as deleted.",
                        "format":"int32",
                        "example":0
                    },
                    "actions":{
                        "type":"array",
                        "description":"Actions associated with the rule that include property metadata (introduced in v5.0).",
                        "example":[
                            {
                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                "ruleActionTypeName":"notification",
                                "ruleActionOrder":1,
                                "ruleActionDescription":"Notify site users when data is missing",
                                "ruleActionParams":"subject=Missing data;message=Please review",
                                "propertyType":"item",
                                "propertyName":"VISIT_COMMENT"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleActionDTOV5"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RuleOperandDTO"
                        }
                    },
                    "ruleJSExpression":{
                        "maxLength":8000,
                        "type":"string",
                        "description":"Internal JavaScript representation of the rule.",
                        "nullable":true,
                        "example":"function evaluate(){ return visitDate >= baselineDate; }"
                    },
                    "ruleVersionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Monotonic version assigned to the rule definition.",
                        "format":"int32",
                        "example":101
                    },
                    "ruleDescription":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Business description that helps authors understand the rule.",
                        "nullable":true,
                        "example":"Validates visit date is not before baseline."
                    },
                    "ruleName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name presented in the Rule Designer UI.",
                        "example":"Visit Date Validation"
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "nullable":true,
                        "example":"draft",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the last validation run succeeded (`true`) or failed (`false`).",
                        "nullable":true,
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Details about the most recent validation attempt.",
                        "nullable":true,
                        "example":"Rule validated successfully on 2026-03-30."
                    },
                    "async":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Execution mode. `0` runs synchronously; `1` queues asynchronous execution.",
                        "format":"int32",
                        "example":0
                    },
                    "ruleOriginalType":{
                        "maxLength":64,
                        "minLength":3,
                        "type":"string",
                        "description":"Indicates where the rule was authored. `user rule` originates in the Rule Designer UI, `smart object age` refers to the legacy Smart Object rule, and `ui_notification` is produced by the notification builder.",
                        "nullable":true,
                        "example":"user rule",
                        "enum":[
                            "user rule",
                            "smart object age",
                            "ui_notification"
                        ]
                    },
                    "isLibrary":{
                        "type":"boolean",
                        "description":"Determines if rules belongs to library",
                        "example":true
                    }
                },
                "description":"Information for Updating rule"
            },
            "BulkUpdateRulesDTOV6":{
                "type":"object",
                "properties":{
                    "rules":{
                        "type":"array",
                        "description":"Collection of rules to update. Each entry must include identifiers, operands, actions, and the target state.",
                        "example":[
                            {
                                "ruleId":"82A65F8F6AAF47FFB177662E3931E7C0",
                                "ruleRefName":"VISIT_WINDOW_RULE",
                                "ruleExpression":"return visitDate >= baselineDate;",
                                "ruleJSExpression":"return visitDate >= baselineDate;",
                                "studyVersion":"26.2.0.0",
                                "ruleEnabled":1,
                                "ruleDeleted":0,
                                "ruleVersionNumber":101,
                                "ruleDescription":"Blocks visits dated before baseline",
                                "ruleName":"Visit Date Validation",
                                "ruleState":"draft",
                                "ruleValidationStatus":"true",
                                "ruleValidationMessage":"Successfully validated on 2026-03-30",
                                "async":0,
                                "ruleOriginalType":"user rule",
                                "isLibrary":false,
                                "actions":[
                                    {
                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                        "eventRefName":"SCREENING",
                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                        "formRefName":"VISIT_START",
                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                        "itemRefName":"VISIT_DATE",
                                        "ruleActionTypeName":"auto query",
                                        "ruleActionOrder":1,
                                        "ruleActionDescription":"Raise a query when visit date is invalid",
                                        "ruleActionParams":"queryMessage=Confirm visit date",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                ],
                                "operands":[
                                    {
                                        "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                        "eventRefName":"SCREENING",
                                        "eventInstanceNumber":0,
                                        "formId":"39903D6C042D4D9E89773160488E6D3D",
                                        "formRefName":"VISIT_START",
                                        "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                        "itemRefName":"VISIT_DATE",
                                        "operandName":"visitDate",
                                        "dataType":"Date",
                                        "propertyType":"visit",
                                        "propertyName":"visitStartDate"
                                    }
                                ]
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/UpdateRuleDTOV6"
                        }
                    }
                },
                "description":"BulkUpdateRulesDTO with list of rules to be updated for the given rule action and operands."
            },
            "RuleOperandDTOV2":{
                "required":[
                    "eventId",
                    "formId",
                    "itemId",
                    "operandName"
                ],
                "type":"object",
                "properties":{
                    "eventId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the visit/event providing operand context.",
                        "format":"uuid"
                    },
                    "(Optional)eventInstanceNumber":{
                        "maximum":999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Sequence number of the repeating event instance. Provide a non-negative integer; omit when not applicable.",
                        "format":"int32",
                        "nullable":true,
                        "example":0
                    },
                    "formId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the form that supplies the operand value.",
                        "format":"uuid"
                    },
                    "itemId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Identifier of the item referenced by the operand.",
                        "format":"uuid"
                    },
                    "propertyType":{
                        "maxLength":5,
                        "minLength":5,
                        "type":"string",
                        "description":"Type of study object property mapped to the operand. Allowed value: `visit`.",
                        "example":"visit",
                        "enum":[
                            "visit"
                        ]
                    },
                    "propertyName":{
                        "maxLength":128,
                        "minLength":1,
                        "type":"string",
                        "description":"Name of the study object property targeted by the operand.",
                        "nullable":true,
                        "example":"visitStartDate"
                    },
                    "operandName":{
                        "maxLength":128,
                        "minLength":1,
                        "type":"string",
                        "description":"Name of the operand as referenced in the rule expression.",
                        "example":"visitDate"
                    },
                    "dataType":{
                        "maxLength":7,
                        "minLength":4,
                        "type":"string",
                        "description":"Data type of the operand value. Allowed values: `Date`, `Number`, `Boolean`, `Text`, or `Choice`.",
                        "example":"Date",
                        "enum":[
                            "Date",
                            "Number",
                            "Boolean",
                            "Text",
                            "Choice"
                        ]
                    },
                    "eventRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the visit/event supplying the operand.",
                        "nullable":true,
                        "example":"SCREENING"
                    },
                    "formRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the form that hosts the operand.",
                        "nullable":true,
                        "example":"VISIT_START"
                    },
                    "itemRefName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Reference name for the item.",
                        "nullable":true,
                        "example":"VISIT_DATE"
                    },
                    "mapRelation":{
                        "type":"string",
                        "description":"Operand which defines map relation or not",
                        "example":"N/Y"
                    }
                }
            },
            "UpdateRuleDTOV6":{
                "type":"object",
                "properties":{
                    "ruleId":{
                        "maxLength":32,
                        "minLength":32,
                        "pattern":"^[0-9A-Fa-f]{32}$",
                        "type":"string",
                        "description":"Unique identifier of the rule in 32-character hexadecimal format.",
                        "format":"uuid"
                    },
                    "ruleRefName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Technical reference name of the rule.",
                        "example":"RULE_SMART_AGE"
                    },
                    "ruleExpression":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Human-readable expression that defines the rule logic.",
                        "example":"AgeInYears(SMARTITEM_DOB, visitDate)"
                    },
                    "studyVersion":{
                        "maxLength":32,
                        "minLength":1,
                        "pattern":"^[0-9]+(\\.[0-9]+){1,3}$",
                        "type":"string",
                        "description":"Semantic version of the study configuration that owns this rule.",
                        "example":"26.2.0.0"
                    },
                    "ruleEnabled":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Rule enabled flag. `1` marks the rule as enabled; `0` keeps it disabled.",
                        "format":"int32",
                        "example":1
                    },
                    "ruleDeleted":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Deletion flag. `1` indicates the rule is marked as deleted.",
                        "format":"int32",
                        "example":0
                    },
                    "actions":{
                        "type":"array",
                        "description":"Actions associated with the rule that include property metadata (introduced in v5.0).",
                        "example":[
                            {
                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                "ruleActionTypeName":"notification",
                                "ruleActionOrder":1,
                                "ruleActionDescription":"Notify site users when data is missing",
                                "ruleActionParams":"subject=Missing data;message=Please review",
                                "propertyType":"item",
                                "propertyName":"VISIT_COMMENT"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleActionDTOV5"
                        }
                    },
                    "operands":{
                        "type":"array",
                        "description":"Extended operand definitions that allow referencing additional study objects introduced in v6.0.",
                        "example":[
                            {
                                "eventId":"9B4AA96F48344015A259D6436EB97B47",
                                "eventRefName":"SCREENING",
                                "formId":"39903D6C042D4D9E89773160488E6D3D",
                                "formRefName":"VISIT_START",
                                "itemId":"2F4F4E67E0CE4BE0BB9544D2CD38A569",
                                "itemRefName":"VISIT_DATE",
                                "operandName":"visitDate",
                                "dataType":"Date",
                                "propertyType":"visit",
                                "propertyName":"visitStartDate"
                            }
                        ],
                        "items":{
                            "$ref":"#/components/schemas/RuleOperandDTOV2"
                        }
                    },
                    "ruleJSExpression":{
                        "maxLength":8000,
                        "type":"string",
                        "description":"Internal JavaScript representation of the rule.",
                        "nullable":true,
                        "example":"function evaluate(){ return visitDate >= baselineDate; }"
                    },
                    "ruleVersionNumber":{
                        "maximum":9999,
                        "minimum":0,
                        "type":"integer",
                        "description":"Monotonic version assigned to the rule definition.",
                        "format":"int32",
                        "example":101
                    },
                    "ruleDescription":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Business description that helps authors understand the rule.",
                        "nullable":true,
                        "example":"Validates visit date is not before baseline."
                    },
                    "ruleName":{
                        "maxLength":128,
                        "minLength":3,
                        "type":"string",
                        "description":"Display name presented in the Rule Designer UI.",
                        "example":"Visit Date Validation"
                    },
                    "ruleState":{
                        "maxLength":8,
                        "minLength":4,
                        "type":"string",
                        "description":"Lifecycle state of the rule.",
                        "nullable":true,
                        "example":"draft",
                        "enum":[
                            "draft",
                            "uat",
                            "approved",
                            "publish"
                        ]
                    },
                    "ruleValidationStatus":{
                        "maxLength":5,
                        "minLength":4,
                        "type":"string",
                        "description":"Indicates whether the last validation run succeeded (`true`) or failed (`false`).",
                        "nullable":true,
                        "example":"true",
                        "enum":[
                            "true",
                            "false"
                        ]
                    },
                    "ruleValidationMessage":{
                        "maxLength":512,
                        "type":"string",
                        "description":"Details about the most recent validation attempt.",
                        "nullable":true,
                        "example":"Rule validated successfully on 2026-03-30."
                    },
                    "async":{
                        "maximum":1,
                        "minimum":0,
                        "type":"integer",
                        "description":"Execution mode. `0` runs synchronously; `1` queues asynchronous execution.",
                        "format":"int32",
                        "example":0
                    },
                    "ruleOriginalType":{
                        "maxLength":64,
                        "minLength":3,
                        "type":"string",
                        "description":"Indicates where the rule was authored. `user rule` originates in the Rule Designer UI, `smart object age` refers to the legacy Smart Object rule, and `ui_notification` is produced by the notification builder.",
                        "nullable":true,
                        "example":"user rule",
                        "enum":[
                            "user rule",
                            "smart object age",
                            "ui_notification"
                        ]
                    },
                    "isLibrary":{
                        "type":"boolean",
                        "description":"Determines if rules belongs to library",
                        "example":true
                    }
                },
                "description":"UpdateRuleDTO with list of rules and its operands."
            },
            "DelayV2":{
                "title":"Delay v2.0",
                "type":"object",
                "properties":{
                    "days":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "hours":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Schedule delay in days/hours."
            },
            "VisitDesignAssignedFormsDtoV2":{
                "title":"VisitDesignAssignedFormsDto v2.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Count of the forms assigned to the visit",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design assigned forms."
            },
            "VisitDesignDispensingDtoV2":{
                "title":"VisitDesignDispensingDto v2.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Visit Design dispensing count",
                        "format":"int32",
                        "example":1
                    },
                    "titrationCount":{
                        "type":"integer",
                        "description":"Visit Design titration count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design dispensings."
            },
            "VisitDesignDtoV2":{
                "title":"VisitDesignDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV2"
                    },
                    "scheduling":{
                        "$ref":"#/components/schemas/VisitDesignSchedulingDtoV2"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV2"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDtoV2"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV2"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV2":{
                "title":"VisitDesignRandomizationDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"Blinded"
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"Central"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"9872E220DD074DD3B463143DAAA684DC:,9872E220DD074DD3B463143DAAA684DC:"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Visit design randomization."
            },
            "VisitDesignSchedulingDtoV2":{
                "title":"VisitDesignSchedulingDto v2.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design : scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/DelayV2"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/DelayV2"
                    }
                },
                "description":"Visit design scheduling."
            },
            "VisitDesignStateDtoV2":{
                "title":"VisitDesignStateDto v2.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design dynamic state.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating state.",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required state.",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is last required state.",
                        "example":false
                    }
                },
                "description":"Visit design state."
            },
            "DelayV1":{
                "title":"Delay v1.0",
                "type":"object",
                "properties":{
                    "days":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "hours":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Schedule delay in days/hours."
            },
            "VisitDesignAssignedFormsDtoV1":{
                "title":"VisitDesignAssignedFormsDto v1.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Count of the forms assigned to the visit",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design assigned forms."
            },
            "VisitDesignDispensingDtoV1":{
                "title":"VisitDesignDispensingDto v1.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Visit Design dispensing count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design dispensings."
            },
            "VisitDesignDtoV1":{
                "title":"VisitDesignDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV1"
                    },
                    "scheduling":{
                        "$ref":"#/components/schemas/VisitDesignSchedulingDtoV1"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV1"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDtoV1"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV1"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV1":{
                "title":"VisitDesignRandomizationDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"Blinded"
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"Central"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"9872E220DD074DD3B463143DAAA684DC:,9872E220DD074DD3B463143DAAA684DC:"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Visit design randomization."
            },
            "VisitDesignSchedulingDtoV1":{
                "title":"VisitDesignSchedulingDto v1.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design : scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/DelayV1"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/DelayV1"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/DelayV1"
                    }
                },
                "description":"Visit design scheduling."
            },
            "VisitDesignStateDtoV1":{
                "title":"VisitDesignStateDto v1.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design dynamic state.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating state.",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required state.",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is last required state.",
                        "example":false
                    }
                },
                "description":"Visit design state."
            },
            "KitTypeIdDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "kitEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "kitTypeId":{
                        "type":"string"
                    }
                }
            },
            "KitDescDto":{
                "title":"KitDescDto V2.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit Unique GUID",
                        "format":"uuid"
                    },
                    "kitType":{
                        "type":"string",
                        "description":"Kit Type ID",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Distribution Setting",
                        "format":"string",
                        "example":"UNBLINDED"
                    },
                    "deviceType":{
                        "type":"string",
                        "description":"Device Type",
                        "example":"SCALE"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Device Connection",
                        "example":"D2C"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial Supply Type",
                        "example":"BOTTLE"
                    }
                },
                "description":"Kit description and distribution setting"
            },
            "ArmDtoV1":{
                "title":"ArmDto v1.0",
                "required":[
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Treatment Arm Title",
                        "example":"TxA"
                    },
                    "shortName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Treatment Arm Short Name",
                        "example":"Drug"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Treatment Arm Description",
                        "example":"Monad NP (60ml) Syrup"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    }
                },
                "description":"Treatment arm details."
            },
            "RqstArmDto":{
                "required":[
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Treatment Arm Title",
                        "example":"TxA"
                    },
                    "shortName":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Treatment Arm Short Name",
                        "example":"Drug"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Treatment Arm Description",
                        "example":"Monad NP (60ml) Syrup"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    }
                }
            },
            "ArmKitVisitDtoV1":{
                "title":"ArmKitVisitDto v1.0",
                "type":"object",
                "properties":{
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "armVersionStart":{
                        "type":"string",
                        "description":"Arm Version Start",
                        "format":"date-time"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitVersionStart":{
                        "type":"string",
                        "description":"Kit Version Start",
                        "format":"date-time"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitVersionStart":{
                        "type":"string",
                        "description":"Visit Version Start",
                        "format":"date-time"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "description":"Surrogate GUID based on Arm, Kit, and Visit GUIDs",
                        "format":"uuid"
                    }
                },
                "description":"Visit kit dispensation per treatment arm."
            },
            "CohortChoiceFactorDtoV1":{
                "title":"CohortChoiceFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "values"
                ],
                "type":"object",
                "description":"Cohort choice factor details information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/CohortFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "values":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "maxLength":2147483647,
                                    "minLength":1,
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice values",
                                    "example":"1"
                                }
                            }
                        }
                    }
                ]
            },
            "CohortDtoV1":{
                "title":"CohortDto v1.0",
                "required":[
                    "name",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Cohort Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Cohort Name",
                        "example":"Cohort Demography Group 1"
                    },
                    "type":{
                        "type":"string",
                        "description":"Cohort Type",
                        "example":"Demography",
                        "enum":[
                            "None",
                            "Adaptive",
                            "Demography"
                        ]
                    },
                    "factors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CohortFactorDtoV1"
                        }
                    }
                },
                "description":"Randomization Cohort Details Information"
            },
            "CohortFactorDtoV1":{
                "title":"CohortFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string"
                    }
                },
                "description":"Randomization Cohort Factor Information",
                "discriminator":{
                    "propertyName":"type",
                    "mapping":{
                        "choice":"#/components/schemas/CohortChoiceFactorDtoV2",
                        "range":"#/components/schemas/CohortRangeFactorDtoV2"
                    }
                },
                "anyOf":[
                    {
                        "$ref":"#/components/schemas/CohortChoiceFactorDtoV2"
                    },
                    {
                        "$ref":"#/components/schemas/CohortRangeFactorDtoV2"
                    }
                ]
            },
            "CohortRangeFactorDtoV1":{
                "title":"CohortRangeFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "max",
                    "min"
                ],
                "type":"object",
                "description":"Cohort Range Factor Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/CohortFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "min":{
                                "type":"number",
                                "description":"Cohort Factor Min value",
                                "format":"double",
                                "example":20
                            },
                            "max":{
                                "type":"number",
                                "description":"Cohort Factor Max value",
                                "format":"double",
                                "example":120
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtoV1":{
                "title":"FormChoiceItemDto v1.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV1"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV1":{
                "title":"FormDatetimeItemDto v1.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"YYYY|MON-YYYY|DD-MON-YYYY|DD-MON-YYYY HH:MM",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            }
                        }
                    }
                ]
            },
            "FormDtoV1":{
                "title":"FormDto v1.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV1"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtoV1":{
                "title":"FormItemDto v1.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV1",
                        "numeric":"#/components/schemas/FormNumberItemDtoV1",
                        "measurement":"#/components/schemas/FormNumberItemDtoV1",
                        "text":"#/components/schemas/FormTextItemDtoV1",
                        "choice":"#/components/schemas/FormChoiceItemDtoV1"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV1"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV1"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV1"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV1"
                    }
                ]
            },
            "FormNumberItemDtoV1":{
                "title":"FormNumberItemDto v1.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV1":{
                "title":"FormOptionDto v1.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV1":{
                "title":"FormTextItemDto v1.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormVisitsDtoV1":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "CopyFormsResponse":{
                "title":"CopyForms",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"integer",
                        "description":"Study GUID",
                        "format":"int64"
                    }
                },
                "description":"Information about forms to be copied."
            },
            "CopyFormsV1":{
                "required":[
                    "formId",
                    "studyId",
                    "version"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    }
                }
            },
            "DesignerResponseListFormItemDtoV1":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV1"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "RqstFormDto":{
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov10"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov10"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    }
                }
            },
            "KitDtoV1":{
                "title":"KitDto v1.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit type id/name",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"Kit storage setting",
                        "example":"AMBIENT"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Kit distribution setting",
                        "example":"BLINDED"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Kit trial supply type",
                        "example":"BOTTLE"
                    },
                    "unitsPerKit":{
                        "type":"number",
                        "description":"Units per kit.",
                        "format":"double",
                        "example":5
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"Min units to ship.",
                        "format":"int64",
                        "example":5
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Kit details."
            },
            "EcdvKits":{
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitTypeId":{
                        "type":"string"
                    },
                    "kitRefName":{
                        "type":"string"
                    },
                    "kitDescription":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "revision":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "storageSetting":{
                        "type":"string"
                    },
                    "distributionSetting":{
                        "type":"string"
                    },
                    "trialSupplyType":{
                        "type":"string"
                    },
                    "unitsPerKit":{
                        "type":"number"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "bufferdays":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "kitStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "kitEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "calculatingDoses":{
                        "type":"boolean"
                    },
                    "titratingDoses":{
                        "type":"boolean"
                    },
                    "singleUnitDoseValue":{
                        "type":"number",
                        "format":"double"
                    },
                    "singleUnitDoseUnits":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "titrationKit":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "libraryKitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string"
                    },
                    "source":{
                        "type":"string"
                    }
                }
            },
            "WelcomeDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":4000,
                        "type":"string",
                        "description":"String value",
                        "format":"string",
                        "example":"Welcome to ClinicalOne"
                    }
                }
            },
            "RqstPreviewFormDto":{
                "type":"object",
                "properties":{
                    "url":{
                        "type":"string",
                        "description":"URL of the preview form link"
                    }
                }
            },
            "RandomizationDetailsV4":{
                "title":"RandomizationDetails v4.0",
                "required":[
                    "algorithm",
                    "cohortType",
                    "randomizationType",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization Title",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization Design Description",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"The algorithm of the randomization design",
                        "example":"Central",
                        "enum":[
                            "NONE",
                            "CENTRAL",
                            "CENTRAL_STRATIFIED",
                            "SITE_BLOCKED_FIXED",
                            "SITE_BLOCKED_FIXED_STRATIFIED",
                            "SITE_BLOCKED_DYNAMIC",
                            "SITE_BLOCKED_DYNAMIC_STRATIFIED",
                            "COUNTRY_BLOCKED_FIXED",
                            "COUNTRY_BLOCKED_FIXED_STRATIFIED",
                            "COUNTRY_BLOCKED_DYNAMIC",
                            "COUNTRY_BLOCKED_DYNAMIC_STRATIFIED",
                            "REGION_BLOCKED_FIXED",
                            "REGION_BLOCKED_FIXED_STRATIFIED",
                            "REGION_BLOCKED_DYNAMIC",
                            "REGION_BLOCKED_DYNAMIC_STRATIFIED",
                            "MINIMIZATION"
                        ]
                    },
                    "cohortType":{
                        "type":"string",
                        "description":"The cohort type of the randomization design",
                        "example":"None",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    },
                    "randomizationType":{
                        "type":"string",
                        "description":"Type of the randomization design",
                        "example":"Blinded",
                        "enum":[
                            "Blinded",
                            "Unblinded",
                            "invalid"
                        ]
                    },
                    "reRandomization":{
                        "type":"boolean",
                        "description":"Whether to use re-randomization on the randomization design",
                        "example":true
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Whether to use randomized or mapped on the randomization design",
                        "example":"Randomized",
                        "enum":[
                            "Randomized",
                            "Mapped",
                            "None",
                            "invalid"
                        ]
                    }
                },
                "description":"Details of the randomization design."
            },
            "RandomizationFactorGroupDto":{
                "title":"RandomizationFactorGroupDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Stratum or Cohort Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"formTitle",
                        "example":"Demography"
                    },
                    "questionTitle":{
                        "type":"string",
                        "description":"questionTitle",
                        "example":"Age"
                    },
                    "groupName":{
                        "type":"string",
                        "description":"Stratum or Cohort GroupName",
                        "example":"Group Name 1"
                    },
                    "groupId":{
                        "type":"string",
                        "description":" Rand Stratum Factor Id",
                        "format":"uuid"
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"string",
                        "description":"List of form subcategories"
                    },
                    "instructionalText":{
                        "type":"string",
                        "description":"Instructional Text"
                    }
                },
                "description":"RandomizationFactorGroupDto Info"
            },
            "RandomizationFactorsV1":{
                "title":"Randomization Factor Details v1.0",
                "type":"object",
                "properties":{
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV4"
                    },
                    "groups":{
                        "title":"RandomizationFactorGroupDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Stratum or Cohort Unique GUID",
                                "format":"uuid"
                            },
                            "formTitle":{
                                "type":"string",
                                "description":"formTitle",
                                "example":"Demography"
                            },
                            "questionTitle":{
                                "type":"string",
                                "description":"questionTitle",
                                "example":"Age"
                            },
                            "groupName":{
                                "type":"string",
                                "description":"Stratum or Cohort GroupName",
                                "example":"Group Name 1"
                            },
                            "groupId":{
                                "type":"string",
                                "description":" Rand Stratum Factor Id",
                                "format":"uuid"
                            }
                        },
                        "description":"RandomizationFactorGroupDto Info"
                    }
                },
                "description":"Randomization Factors DTO"
            },
            "RandomizationArmV1":{
                "title":"RandomizationArm v1.0",
                "required":[
                    "id",
                    "ratio"
                ],
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "armVersionStart":{
                        "type":"string",
                        "description":"Arm Version Start",
                        "format":"date-time"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Arm1"
                    },
                    "ratio":{
                        "minimum":1,
                        "type":"integer",
                        "description":"Treatment Arm ratios",
                        "format":"int32",
                        "example":2
                    }
                },
                "description":"Randomization Treatment Arm Ratio"
            },
            "RandomizationDetailsV1":{
                "title":"RandomizationDetails v1.0",
                "required":[
                    "algorithm",
                    "cohortType",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization Title",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization Design Description",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"The algorithm of the randomization design",
                        "example":"Central",
                        "enum":[
                            "NONE",
                            "CENTRAL",
                            "CENTRAL_STRATIFIED",
                            "SITE_BLOCKED_FIXED",
                            "SITE_BLOCKED_FIXED_STRATIFIED",
                            "SITE_BLOCKED_DYNAMIC",
                            "SITE_BLOCKED_DYNAMIC_STRATIFIED",
                            "COUNTRY_BLOCKED_FIXED",
                            "COUNTRY_BLOCKED_FIXED_STRATIFIED",
                            "COUNTRY_BLOCKED_DYNAMIC",
                            "COUNTRY_BLOCKED_DYNAMIC_STRATIFIED",
                            "REGION_BLOCKED_FIXED",
                            "REGION_BLOCKED_FIXED_STRATIFIED",
                            "REGION_BLOCKED_DYNAMIC",
                            "REGION_BLOCKED_DYNAMIC_STRATIFIED",
                            "MINIMIZATION"
                        ]
                    },
                    "cohortType":{
                        "type":"string",
                        "description":"The cohort type of the randomization design",
                        "example":"None",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    }
                },
                "description":"Randomization Details DTO"
            },
            "RandomizationDtoV1":{
                "title":"RandomizationDto v1.0",
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study ID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study Version Start",
                        "format":"date-time"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV1"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV1"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV1"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV1"
                    }
                },
                "description":"Randomization Design Info"
            },
            "RandomizationSettingsV1":{
                "title":"RandomizationSettings v1.0",
                "required":[
                    "randomizeLimitsToCountEarlyTerminated",
                    "randomizeNumberBlinded",
                    "randomizeSubjectsIfSitesOutOfKits"
                ],
                "type":"object",
                "properties":{
                    "randomizeSubjectsIfSitesOutOfKits":{
                        "type":"boolean",
                        "description":"Restrict Randomization Numbers to Available Kit Types",
                        "example":false
                    },
                    "assignSkippedRandomizationNumbers":{
                        "type":"boolean",
                        "description":"Assign Skipped Randomization Numbers",
                        "example":false
                    },
                    "randomizeNumberBlinded":{
                        "type":"boolean",
                        "description":"Randomize Number Blinded",
                        "example":false
                    },
                    "randomizeLimitsToCountEarlyTerminated":{
                        "type":"boolean",
                        "description":"Randomize Limits to Count Early Terminated",
                        "example":false
                    }
                },
                "description":"Randomization Settings DTO"
            },
            "RandomizationVisitV1":{
                "title":"RandomizationVisit v1.0",
                "required":[
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Week 3"
                    }
                },
                "description":"Randomization Visit"
            },
            "RandomizationsGroupingDtoV3":{
                "title":"RandomizationsGroupingDto v3.0",
                "type":"object",
                "properties":{
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "ratios":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingDtoV3"
                        }
                    },
                    "randomizationFactorCount":{
                        "type":"integer",
                        "format":"int64"
                    }
                },
                "description":"Randomization Grouping Ratios"
            },
            "RatioGroupingArmDtoV2":{
                "title":"RatioGroupingArmDto v2.0",
                "type":"object",
                "properties":{
                    "armId":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "ratio":{
                        "type":"integer",
                        "description":"Treatment arm ratio",
                        "format":"int32",
                        "example":2
                    },
                    "mappedArms":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Arms mapped to this arm",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RatioGroupingDtoV3":{
                "title":"RatioGroupingDto v3.0",
                "type":"object",
                "properties":{
                    "groupingId":{
                        "type":"string",
                        "description":"Randomization Cohort/Stratum group GUID",
                        "format":"uuid"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingArmDtoV2"
                        }
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RollbackDtoV1":{
                "title":"RollbackDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Rollback details."
            },
            "StratumChoiceFactorDtoV1":{
                "title":"StratumChoiceFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "values"
                ],
                "type":"object",
                "description":"Stratum Choice Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "values":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "maxLength":2147483647,
                                    "minLength":1,
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice values",
                                    "example":"1"
                                }
                            }
                        }
                    }
                ]
            },
            "StratumDtoV1":{
                "title":"StratumDto v1.0",
                "required":[
                    "factors",
                    "name"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Stratum Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum Name",
                        "example":"Stratum Group 1"
                    },
                    "factors":{
                        "maxItems":2147483647,
                        "minItems":1,
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/StratumFactorDtoV1"
                        }
                    }
                },
                "description":"Randomization Stratum Detail Information"
            },
            "StratumFactorDtoV1":{
                "title":"StratumFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Form item GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string"
                    }
                },
                "description":"Randomization Stratum Factor Information",
                "discriminator":{
                    "propertyName":"type",
                    "mapping":{
                        "choice":"#/components/schemas/StratumChoiceFactorDtoV1",
                        "range":"#/components/schemas/StratumRangeFactorDtoV1"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/StratumChoiceFactorDtoV1"
                    },
                    {
                        "$ref":"#/components/schemas/StratumRangeFactorDtoV1"
                    }
                ]
            },
            "StratumRangeFactorDtoV1":{
                "title":"StratumRangeFactorDto v1.0",
                "required":[
                    "formId",
                    "itemId",
                    "max",
                    "min"
                ],
                "type":"object",
                "description":"Stratum Range Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "min":{
                                "type":"number",
                                "description":"Stratum Factor Min value",
                                "format":"double",
                                "example":20
                            },
                            "max":{
                                "type":"number",
                                "description":"Stratum Factor Max value",
                                "format":"double",
                                "example":120
                            }
                        }
                    }
                ]
            },
            "StudyDesignMapperV1":{
                "type":"object"
            },
            "StudyVersionVisitDtoV1":{
                "title":"StudyVersionVisitDto v1.0",
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "LockDtoV1":{
                "title":"LockDto v1.0",
                "type":"object",
                "properties":{
                    "lockUser":{
                        "type":"string",
                        "description":"Lock user GUID",
                        "format":"uuid"
                    },
                    "lockUsername":{
                        "type":"string",
                        "description":"Lock user name.",
                        "example":"username"
                    },
                    "expiry":{
                        "type":"string",
                        "description":"Expiry",
                        "format":"date-time"
                    }
                },
                "description":"Study lock details."
            },
            "StudyDtoV1":{
                "title":"StudyDto v1.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description"
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups"
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups"
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "RqstStudyDto":{
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number",
                        "example":"CRN-1001"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description",
                        "example":"A randomized double blind placebo controlled study."
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id",
                        "example":"KIT-001"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number",
                        "example":"SOW-2026-100"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id",
                        "example":"SPONSOR-001"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32",
                        "example":473
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups",
                        "example":false
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups",
                        "example":false
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups",
                        "example":false
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "example":"design",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "example":"active",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "description":"Last modified timestamp",
                        "format":"date-time",
                        "example":"2026-02-21T06:30:00Z"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "description":"System Code List GUID",
                        "format":"uuid"
                    },
                    "companies":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "companyLabels":{
                        "type":"array",
                        "description":"Company labels associated with the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Company labels associated with the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "safetyCase":{
                        "type":"integer",
                        "description":"Safety case",
                        "format":"int32",
                        "example":1
                    },
                    "narrativeSettings":{
                        "type":"string",
                        "description":"Narrative settings",
                        "example":"Send Full Narrative (Editable)"
                    },
                    "safetyIntegration":{
                        "type":"boolean",
                        "description":"Safety Integration",
                        "example":true
                    }
                }
            },
            "FormChoiceItemDtov12":{
                "title":"FormChoiceItemDto v12.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov12"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov12"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov10":{
                "title":"FormCopySourceDto v10.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov12":{
                "title":"FormDatetimeItemDto v12.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov12"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormItemAdvancedPropDtov12":{
                "title":"From Item Advanced Property v12.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov12"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov12":{
                "title":"From Item Advanced Property Rule v12.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemDtov12":{
                "title":"FormItemDto v12.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov12"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov12"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov12",
                        "numeric":"#/components/schemas/FormNumberItemDtov12",
                        "measurement":"#/components/schemas/FormNumberItemDtov12",
                        "text":"#/components/schemas/FormTextItemDtov12",
                        "choice":"#/components/schemas/FormChoiceItemDtov12",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov12",
                        "table":"#/components/schemas/FormTableItemDto",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov12"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov12"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov12"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov12"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov12"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormNumberItemDtov12":{
                "title":"FormNumberItemDto v12.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov12"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov12":{
                "title":"FormOptionDto v12.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov12":{
                "title":"FormQuestionGroupItemDto v12.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov12"
                    }
                ]
            },
            "FormTableItemDto":{
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov12":{
                "title":"FormTextItemDto v12.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov12"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "RespFormDtoWithStudyVersion":{
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov19"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov19"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov19"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo File Name"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version of the study in which form belongs",
                        "example":"1.0.0.1"
                    },
                    "baseStudyVersion":{
                        "type":"string",
                        "description":"Base Study version of the study from which the form is requested.",
                        "example":"1.0.0.1"
                    }
                }
            },
            "FormChoiceItemDtoV9":{
                "title":"FormChoiceItemDto v9.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV9"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV9"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV9":{
                "title":"FormDatetimeItemDto v9.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV9"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV9":{
                "title":"FormDto v9.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV9"
                        }
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtoV9":{
                "title":"From Item Advanced Property v9.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtoV9"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtoV9":{
                "title":"From Item Advanced Property Rule v9.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemDtoV9":{
                "title":"FormItemDto v9.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV9"
                        }
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV9",
                        "numeric":"#/components/schemas/FormNumberItemDtoV9",
                        "measurement":"#/components/schemas/FormNumberItemDtoV9",
                        "text":"#/components/schemas/FormTextItemDtoV9",
                        "choice":"#/components/schemas/FormChoiceItemDtoV9",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtoV9"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV9"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV9"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV9"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV9"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtoV9"
                    }
                ]
            },
            "FormNumberItemDtoV9":{
                "title":"FormNumberItemDto v9.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV9"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV9":{
                "title":"FormOptionDto v9.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtoV9":{
                "title":"FormQuestionGroupItemDto v9.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV9"
                    }
                ]
            },
            "FormTextItemDtoV9":{
                "title":"FormTextItemDto v9.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV9"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "AllStudiesFormsDtoV1":{
                "title":"AllStudiesFormsDto v1.0",
                "type":"object",
                "properties":{
                    "otherStudies":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"string",
                            "description":"Other studies the user is assigned to"
                        },
                        "description":"Other studies the user is assigned to"
                    },
                    "studyForms":{
                        "type":"array",
                        "description":"All Forms",
                        "items":{
                            "$ref":"#/components/schemas/StudyFormDtoV1"
                        }
                    }
                },
                "description":"Information about all the forms of latest study version of all other studies for UI consumption."
            },
            "StudyFormDtoV1":{
                "title":"StudyFormDto v1.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "fields":{
                        "type":"integer",
                        "description":"fields count of the form",
                        "format":"int32",
                        "example":3
                    }
                },
                "description":"Study Form Info of latest study version of other studies"
            },
            "FormOptionDto":{
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string"
                    },
                    "clCode":{
                        "type":"string"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string"
                    },
                    "clValue":{
                        "type":"string"
                    },
                    "formCategory":{
                        "type":"string"
                    },
                    "formSubcategory":{
                        "type":"string"
                    },
                    "instructionalText":{
                        "type":"string"
                    },
                    "clItemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "hidden":{
                        "type":"boolean"
                    },
                    "optionSeq":{
                        "type":"string"
                    }
                },
                "description":"Choice options",
                "example":1
            },
            "StudyVersionsRandomizationDto":{
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string"
                    },
                    "hasRandomization":{
                        "type":"boolean"
                    }
                }
            },
            "StudyCopyStatusDtoV1":{
                "title":"StudyCopyStatusDto v1.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "copyStatus":{
                        "type":"string",
                        "description":"Copy status",
                        "example":"Copy Rules in Progress"
                    }
                },
                "description":"Form Info"
            },
            "StudyIdentityDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study Id",
                        "format":"uuid"
                    },
                    "protocolNumber":{
                        "type":"string",
                        "description":"Study protocol number"
                    },
                    "protocolDescription":{
                        "type":"string",
                        "description":"Study protocol description"
                    }
                }
            },
            "StudyVisitDTOv1":{
                "title":"StudyVisitDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Reduced Visit and branch properties"
            },
            "StudyStateDtoV1":{
                "title":"StudyStateDto v1.0",
                "type":"object",
                "properties":{
                    "studyState":{
                        "type":"string",
                        "description":"State of a study for UI consumption",
                        "example":"active",
                        "enum":[
                            "settings",
                            "active",
                            "design",
                            "test",
                            "training"
                        ]
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous state of a study for UI consumption",
                        "example":"training",
                        "enum":[
                            "settings",
                            "active",
                            "design",
                            "test",
                            "training"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Information about the state of a study for UI consumption."
            },
            "RqstStudyCopyStatusDto":{
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "copyStatus":{
                        "type":"string",
                        "description":"Copy status",
                        "example":"Copy Rules in Progress"
                    }
                }
            },
            "StudyVersionHistoryDto":{
                "title":"StudyVersionHistoryDto v1.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start Time",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"Type of operation",
                        "example":"CREATED"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "previousState":{
                        "type":"string",
                        "description":"previous state",
                        "example":"DESIGN"
                    },
                    "userId":{
                        "type":"string",
                        "description":"user GUID",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End Time",
                        "format":"date-time"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Previous status of study version",
                        "example":"OLDDRAFT"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Name of the latest study version",
                        "example":"Study03:2.0.0.7"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Status of study version",
                        "example":"DRAFT"
                    },
                    "studyState":{
                        "type":"string",
                        "description":"State of study",
                        "example":"ACTIVE"
                    },
                    "versionHistory":{
                        "type":"string",
                        "description":"Previous version",
                        "example":"1.3.0.6"
                    }
                },
                "description":"Study Version History"
            },
            "StudyDto":{
                "type":"object",
                "properties":{
                    "companyLabels":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "copyStatus":{
                        "type":"string"
                    },
                    "safetyIntegration":{
                        "type":"boolean"
                    },
                    "firstVisit":{
                        "type":"string"
                    },
                    "studyEhrEnabled":{
                        "type":"boolean"
                    },
                    "identity":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "name":{
                        "type":"string"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "studyDescription":{
                        "type":"string"
                    },
                    "contractCode":{
                        "type":"string"
                    },
                    "versionTitle":{
                        "type":"string"
                    },
                    "studyPhase":{
                        "type":"string"
                    },
                    "therapeuticArea":{
                        "type":"string"
                    },
                    "openLabelBlinded":{
                        "type":"string"
                    },
                    "previousState":{
                        "type":"string"
                    },
                    "studyState":{
                        "type":"string"
                    },
                    "versionPreviousStatus":{
                        "type":"string"
                    },
                    "versionStatus":{
                        "type":"string"
                    },
                    "versionType":{
                        "type":"string"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "source_study_id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "source_study_version":{
                        "type":"string"
                    },
                    "source_study_title":{
                        "type":"string"
                    },
                    "modes":{
                        "uniqueItems":true,
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "customerRefNo":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "singleKitSettingId":{
                        "type":"string"
                    },
                    "sowNo":{
                        "type":"string"
                    },
                    "sponsorId":{
                        "type":"string"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean"
                    },
                    "useLabelGroups":{
                        "type":"boolean"
                    },
                    "useShippinggroups":{
                        "type":"boolean"
                    },
                    "studyStatus":{
                        "type":"string"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "systemCodeListGroupName":{
                        "type":"string"
                    },
                    "companies":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    }
                }
            },
            "VersionDtoV1":{
                "title":"VersionDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"The study version",
                        "example":"2.0.0.7"
                    },
                    "status":{
                        "type":"string",
                        "description":"Status of study",
                        "example":"DRAFT"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Name of the latest study version",
                        "example":"Study03:2.0.0.7"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Type of study version",
                        "example":"PROTOCOL_AMENDMENT"
                    }
                },
                "description":"Information about a study version."
            },
            "StudyDtoV3":{
                "title":"StudyDto v3.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "name":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description"
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups"
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups"
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups"
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "StudyVersionDto":{
                "required":[
                    "versionTitle"
                ],
                "type":"object",
                "properties":{
                    "versionType":{
                        "type":"string"
                    },
                    "versionTitle":{
                        "type":"string"
                    },
                    "previousVersion":{
                        "type":"string"
                    }
                }
            },
            "StudyVersionDtoV1":{
                "title":"StudyVersionDto v1.0",
                "required":[
                    "versionTitle"
                ],
                "type":"object",
                "properties":{
                    "versionType":{
                        "type":"string",
                        "description":"Type of study version",
                        "example":"PROTOCOL_AMENDMENT"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Name of the latest study version",
                        "example":"Study03:2.0.0.7"
                    },
                    "previousVersion":{
                        "type":"string",
                        "description":"Previous version",
                        "example":"1.3.0.6"
                    }
                },
                "description":"Information about a study version."
            },
            "JsonNode":{
                "type":"object",
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/StudyVersionDtoV1"
                    },
                    {
                        "$ref":"#/components/schemas/StudyDtoV1"
                    }
                ]
            },
            "VisitDtoV1":{
                "title":"VisitDto v1.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "screeningVisit",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "screeningVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is screening.",
                        "example":false
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    }
                },
                "description":"Visit design."
            },
            "RqstVisitDto":{
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "branchTitle":{
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "StudyEventScheduleDelayV1":{
                "title":"StudyEventScheduleDelay v1.0",
                "type":"object",
                "properties":{
                    "days":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Study event schedule delay in days",
                        "format":"int32",
                        "example":1
                    },
                    "hours":{
                        "minimum":0,
                        "type":"integer",
                        "description":"Study event schedule delay in hours",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"study event schedule delay."
            },
            "StudyEventScheduleDelayWindowV1":{
                "title":"StudyEventScheduleDelayWindow v1.0",
                "type":"object",
                "properties":{
                    "before":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    },
                    "after":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    }
                },
                "description":"Study event schedule delay window."
            },
            "StudyEventScheduleDtoV1":{
                "title":"StudyEventScheduleDto v1.0",
                "required":[
                    "delay",
                    "delayWindow",
                    "projectedFromRefId"
                ],
                "type":"object",
                "properties":{
                    "delay":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    },
                    "delayWindow":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayWindowV1"
                    },
                    "outOfWindowHardStopEnforced":{
                        "type":"integer",
                        "description":"Out off window hard stop enforced",
                        "format":"int32",
                        "example":1
                    },
                    "outOfWindowVisitApprovalGranted":{
                        "type":"integer",
                        "description":"Out off window visit approval granted",
                        "format":"int32",
                        "example":1
                    },
                    "projectedFromRefId":{
                        "type":"string",
                        "description":"Projected from reference GUID",
                        "format":"uuid"
                    }
                },
                "description":"Study event schedule details."
            },
            "RqstStudyEventScheduleDto":{
                "required":[
                    "delay",
                    "delayWindow",
                    "projectedFromRefId"
                ],
                "type":"object",
                "properties":{
                    "delay":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    },
                    "delayWindow":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayWindowV1"
                    },
                    "outOfWindowHardStopEnforced":{
                        "type":"integer",
                        "description":"Out off window hard stop enforced",
                        "format":"int32",
                        "example":1
                    },
                    "outOfWindowVisitApprovalGranted":{
                        "type":"integer",
                        "description":"Out off window visit approval granted",
                        "format":"int32",
                        "example":1
                    },
                    "projectedFromRefId":{
                        "type":"string",
                        "description":"Projected from reference GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Visit branch GUID",
                        "format":"uuid"
                    },
                    "outOfWindowAlert":{
                        "type":"string",
                        "description":"Outside Visit Window Alert",
                        "format":"string",
                        "example":"OFF"
                    }
                }
            },
            "StudyVisitScheduleDtoV1":{
                "title":"StudyVisitScheduleDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "FormItemAdvancedPropDtov11":{
                "title":"From Item Advanced Property v11.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov11"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov11":{
                "title":"From Item Advanced Property Rule v11.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "VisitBranchDtoV1":{
                "title":"VisitBranchDto v1.0",
                "required":[
                    "isCycle",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "shortName":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br2"
                    },
                    "isCycle":{
                        "type":"boolean",
                        "description":"determines if the branch is cyclic or acyclic",
                        "example":true
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    },
                    "branchTier":{
                        "type":"integer",
                        "description":"tier information of the branch",
                        "format":"int32",
                        "example":10
                    },
                    "branchIndex":{
                        "type":"integer",
                        "description":"index information of the branch in the tier",
                        "format":"int32",
                        "example":10
                    },
                    "arms":{
                        "type":"array",
                        "description":"Arm Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"Form Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "formVisits":{
                        "type":"array",
                        "description":"Visit Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    }
                },
                "description":"Visit Branch details."
            },
            "RqstVisitBranchDto":{
                "required":[
                    "isCycle",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "shortName":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br2"
                    },
                    "isCycle":{
                        "type":"boolean",
                        "description":"determines if the branch is cyclic or acyclic",
                        "example":true
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    },
                    "branchTier":{
                        "type":"integer",
                        "description":"tier information of the branch",
                        "format":"int32",
                        "example":10
                    },
                    "branchIndex":{
                        "type":"integer",
                        "description":"index information of the branch in the tier",
                        "format":"int32",
                        "example":10
                    },
                    "arms":{
                        "type":"array",
                        "description":"Arm Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"Form Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "formVisits":{
                        "type":"array",
                        "description":"Visit Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "isRestartCycle":{
                        "type":"boolean",
                        "description":"determines if the branch is cycles needs a restart of the cycle count",
                        "example":true
                    }
                }
            },
            "FormChoiceItemDtoV5":{
                "title":"FormChoiceItemDto v5.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV5"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV5"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV5":{
                "title":"FormDatetimeItemDto v5.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV5"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDto":{
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV5"
                        }
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    }
                }
            },
            "FormItemBasicDto":{
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "type":"string",
                        "description":"Form Question type",
                        "example":"TEXT"
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    }
                }
            },
            "FormItemDtoV5":{
                "title":"FormItemDto v5.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV5",
                        "numeric":"#/components/schemas/FormNumberItemDtoV5",
                        "measurement":"#/components/schemas/FormNumberItemDtoV5",
                        "text":"#/components/schemas/FormTextItemDtoV5",
                        "choice":"#/components/schemas/FormChoiceItemDtoV5"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV5"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV5"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV5"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV5"
                    }
                ]
            },
            "FormNumberItemDtoV5":{
                "title":"FormNumberItemDto v5.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV5"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV5":{
                "title":"FormOptionDto v5.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV5":{
                "title":"FormTextItemDto v5.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV5"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "VisitDto":{
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    }
                }
            },
            "VisitsFormsQuestionsDto":{
                "type":"object",
                "properties":{
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/VisitDto"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormDto"
                        }
                    },
                    "questions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemBasicDto"
                        }
                    }
                }
            },
            "RqstFromToStudyDto":{
                "type":"object",
                "properties":{
                    "fromStudyVersion":{
                        "type":"string",
                        "description":"Source study version.",
                        "example":"1.0"
                    },
                    "toStudyId":{
                        "type":"string",
                        "description":"Target study GUID.",
                        "format":"uuid"
                    },
                    "toStudyVersion":{
                        "type":"string",
                        "description":"Target study version.",
                        "example":"2.0"
                    },
                    "fromFormIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Source form GUID.",
                            "format":"uuid"
                        }
                    },
                    "fromEventIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Source visit/event GUID.",
                            "format":"uuid"
                        }
                    }
                }
            },
            "BranchDesignDTOV10":{
                "type":"object",
                "properties":{
                    "branch":{
                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                    },
                    "visits":{
                        "type":"array",
                        "description":"The visits in this branch",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtov10"
                        }
                    }
                },
                "description":"Branch Design properties"
            },
            "Delay":{
                "type":"object",
                "properties":{
                    "days":{
                        "maximum":365,
                        "minimum":0,
                        "type":"integer",
                        "format":"int32"
                    },
                    "hours":{
                        "maximum":24,
                        "minimum":0,
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Visit Design cheduing before delay"
            },
            "VisitBranchDesignDtoV10":{
                "type":"object",
                "properties":{
                    "scheduledVisits":{
                        "type":"array",
                        "description":"scheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtov10"
                        }
                    },
                    "branchVisits":{
                        "type":"array",
                        "description":"branches",
                        "items":{
                            "type":"array",
                            "description":"branches",
                            "items":{
                                "$ref":"#/components/schemas/BranchDesignDTOV10"
                            }
                        }
                    },
                    "unscheduledVisits":{
                        "type":"array",
                        "description":"unscheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtov10"
                        }
                    }
                },
                "description":"Visit Design branches"
            },
            "VisitBranchDtoV2":{
                "title":"VisitBranchDto v2.0",
                "required":[
                    "isCycle",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "shortName":{
                        "maxLength":32,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br2"
                    },
                    "isCycle":{
                        "type":"boolean",
                        "description":"determines if the branch is cyclic or acyclic",
                        "example":true
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    },
                    "branchTier":{
                        "type":"integer",
                        "description":"tier information of the branch",
                        "format":"int32",
                        "example":10
                    },
                    "branchIndex":{
                        "type":"integer",
                        "description":"index information of the branch in the tier",
                        "format":"int32",
                        "example":10
                    },
                    "arms":{
                        "type":"array",
                        "description":"Arm Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "forms":{
                        "type":"array",
                        "description":"Form Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "formVisits":{
                        "type":"array",
                        "description":"Visit Details DTO",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "isRestartCycle":{
                        "type":"boolean",
                        "description":"determines if the branch is cycles needs a restart of the cycle count",
                        "example":true
                    }
                },
                "description":"Visit Branch details."
            },
            "VisitDesignAssignedFormsDTOV10":{
                "title":"VisitDesignAssignedFormsDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design assigned forms count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design assigned forms properties"
            },
            "VisitDesignDispensingDtoV10":{
                "title":"VisitDesignDispensingDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design titration count",
                        "format":"int32",
                        "example":1
                    },
                    "deviceCount":{
                        "type":"integer",
                        "description":"Visit Design device count",
                        "format":"int32",
                        "example":1
                    },
                    "advancedDispensationCount":{
                        "type":"integer",
                        "description":"Visit Design advanced dispensation count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design dispensing properties"
            },
            "VisitDesignDtov10":{
                "title":"VisitDesignDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV10"
                    },
                    "scheduling":{
                        "title":"VisitDesignSchedulingDto v10.0",
                        "type":"object",
                        "properties":{
                            "fromVisitId":{
                                "type":"string",
                                "description":"Visit Design from visit GUID",
                                "format":"uuid"
                            },
                            "branchId":{
                                "type":"string",
                                "description":"bbranch GUID",
                                "format":"uuid"
                            },
                            "delay":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "beforeDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "afterDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "outOfWindowAlert":{
                                "type":"string",
                                "description":"Outside Visit Window Alert",
                                "format":"string",
                                "example":"OFF"
                            }
                        },
                        "description":"Visit Design scheduling properties"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV10"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDTOV10"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV10"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV10":{
                "title":"VisitDesignRandomizationDto v10.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"1"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit Design randomization visit GUID's",
                        "example":"55C8628FB6594912B3214E294A5D4E9F",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    },
                    "algorithmType":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"1"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"1"
                    }
                },
                "description":"Visit Design randomization properties"
            },
            "VisitDesignSchedulingDtoV10":{
                "title":"VisitDesignSchedulingDto v10.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design from visit GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"bbranch GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "outOfWindowAlert":{
                        "type":"string",
                        "description":"Outside Visit Window Alert",
                        "format":"string",
                        "example":"OFF"
                    }
                },
                "description":"Visit Design scheduling properties"
            },
            "VisitDesignStateDtoV10":{
                "title":"VisitDesignStateDto v10.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Visit Design dynamic state",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Visit Design repeating state",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Visit Design required state",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Visit Design lastRequired state",
                        "example":false
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design state properties"
            },
            "FormVisitDtoV9":{
                "title":"FormVisitDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of forms",
                        "items":{
                            "$ref":"#/components/schemas/VisitFormDtoV9"
                        }
                    }
                },
                "description":"Form Visits Information"
            },
            "VisitFormDtoV9":{
                "title":"VisitFormDto v9.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Visit Design form GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "formRefName":{
                        "type":"string",
                        "description":"Form RefName",
                        "example":"Demography"
                    },
                    "fields":{
                        "type":"integer",
                        "description":"Number of form's fields",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Visit design forms."
            },
            "FormItemAdvancedPropDtov10":{
                "title":"From Item Advanced Property v10.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov10"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov10":{
                "title":"From Item Advanced Property Rule v10.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormChoiceItemDtov10":{
                "title":"FormChoiceItemDto v10.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov10"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov10"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtov10":{
                "title":"FormDatetimeItemDto v10.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov10"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV11":{
                "title":"FormDto v11.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov10"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov10"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"0",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtov10":{
                "title":"FormItemDto v10.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov10"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov10",
                        "numeric":"#/components/schemas/FormNumberItemDtov10",
                        "measurement":"#/components/schemas/FormNumberItemDtov10",
                        "text":"#/components/schemas/FormTextItemDtov10",
                        "choice":"#/components/schemas/FormChoiceItemDtov10",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov10"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov10"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov10"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov10"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov10"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov10"
                    }
                ]
            },
            "FormNumberItemDtov10":{
                "title":"FormNumberItemDto v10.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov10"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov10":{
                "title":"FormOptionDto v10.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov10":{
                "title":"FormQuestionGroupItemDto v10.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov10"
                    }
                ]
            },
            "FormTextItemDtov10":{
                "title":"FormTextItemDto v10.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov10"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtov11":{
                "title":"FormChoiceItemDto v11.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov11"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov11"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtov11":{
                "title":"FormDatetimeItemDto v11.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov11"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormItemDtov11":{
                "title":"FormItemDto v11.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov11"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov11",
                        "numeric":"#/components/schemas/FormNumberItemDtov11",
                        "measurement":"#/components/schemas/FormNumberItemDtov11",
                        "text":"#/components/schemas/FormTextItemDtov11",
                        "choice":"#/components/schemas/FormChoiceItemDtov11",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov11",
                        "table":"#/components/schemas/FormTableItemDto",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov11"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov11"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov11"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov11"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov11"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormNumberItemDtov11":{
                "title":"FormNumberItemDto v11.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov11"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov11":{
                "title":"FormOptionDto v11.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov11":{
                "title":"FormQuestionGroupItemDto v11.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov11"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov11"
                                }
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov11":{
                "title":"FormTextItemDto v11.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov11"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "Form Item Summary DTO V4":{
                "title":"FormItemSummaryDto v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "subItemIds":{
                        "title":"Sub item ids",
                        "type":"string",
                        "description":"List of sub question ids",
                        "format":"uuid"
                    },
                    "ehrMapping":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov18"
                        }
                    }
                },
                "description":"Reduced form item properties"
            },
            "Form Summary DTO V4":{
                "title":"FormSummaryDto v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Form Item Summary DTO V4"
                        }
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    }
                },
                "description":"Reduced form properties"
            },
            "StudyDesignDtoV11":{
                "title":"StudyDesignDto v11",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v8.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV9"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v19.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov19"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov19"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "allowMultipleInstances":{
                                "type":"boolean",
                                "description":"Allow multiple instances",
                                "example":true
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"STANDARD_FORM",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM",
                                    "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov19"
                                }
                            },
                            "showFrom":{
                                "type":"array",
                                "description":"show dynamic parent from forms of same visit",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov19"
                                }
                            },
                            "assignedVisits":{
                                "type":"array",
                                "description":"branch cycle information describing the visits on which the forms are displayed",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov19"
                                }
                            },
                            "includeInSafetyCaseData":{
                                "type":"boolean",
                                "description":"Is form associated to Safety Case Forms",
                                "example":true
                            },
                            "formCategory":{
                                "type":"string",
                                "description":"Form category",
                                "example":"DCS"
                            },
                            "formSubcategory":{
                                "type":"array",
                                "description":"Form subcategory list",
                                "items":{
                                    "type":"string",
                                    "description":"Form subcategory list"
                                }
                            },
                            "logoFileName":{
                                "type":"string",
                                "description":"Logo File Name"
                            },
                            "logoFileUploadRequest":{
                                "$ref":"#/components/schemas/FileUploadRequest"
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormSummaryDto v4.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "title":{
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/Form Item Summary DTO V4"
                                }
                            },
                            "formCategory":{
                                "type":"string",
                                "description":"Form category",
                                "example":"DCS"
                            },
                            "formSubcategory":{
                                "type":"array",
                                "description":"Form subcategory list",
                                "items":{
                                    "type":"string",
                                    "description":"Form subcategory list"
                                }
                            }
                        },
                        "description":"Reduced form properties"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVisitScheduleDtoV9":{
                "title":"StudyVisitScheduleDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if visit last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event randomization type",
                        "example":"Blinded"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Event short name",
                        "example":"Week2"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "outOfWindowAlert":{
                        "type":"string",
                        "description":"Outside Visit Window Alert",
                        "format":"string",
                        "example":"OFF"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "StudyVisitWithFormIdsDtoV8":{
                "title":"StudyVisitScheduleWithFormIdsDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "visitSchedule":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV9"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"List of visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit forms IDs",
                            "format":"uuid"
                        }
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "VisitDtoV10":{
                "title":"VisitDto v10.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "branchTitle":{
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NOTSET(0),NEVER(1),ALWAYS(2),CRITICAL(3)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    }
                },
                "description":"Visit design."
            },
            "FormDtoV12":{
                "title":"FormDto v12.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov10"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov12"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"0",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    }
                },
                "description":"Form Info"
            },
            "FormChoiceItemDtov13":{
                "title":"FormChoiceItemDto v13.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov13"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov13"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov13":{
                "title":"FormCopySourceDto v13.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov13":{
                "title":"FormDatetimeItemDto v13.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov13"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtov13":{
                "title":"FormDto v13.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov13"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov13"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"0",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov13"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtov13":{
                "title":"From Item Advanced Property v13.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov13"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov13":{
                "title":"From Item Advanced Property Rule v13.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemDtov13":{
                "title":"FormItemDto v13.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov13"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov13"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov13",
                        "numeric":"#/components/schemas/FormNumberItemDtov13",
                        "measurement":"#/components/schemas/FormNumberItemDtov13",
                        "text":"#/components/schemas/FormTextItemDtov13",
                        "choice":"#/components/schemas/FormChoiceItemDtov13",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov13",
                        "table":"#/components/schemas/FormTableItemDto",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov13"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov13"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov13"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov13"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov13"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormLinkFromDtov13":{
                "title":"FormLinkFromDto v13.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "type":"string",
                            "description":"Form items",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov13":{
                "title":"FormNumberItemDto v13.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov13"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov13":{
                "title":"FormOptionDto v13.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov13":{
                "title":"FormQuestionGroupItemDto v13.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov13"
                    }
                ]
            },
            "FormTextItemDtov13":{
                "title":"FormTextItemDto v13.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov13"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtov14":{
                "title":"FormChoiceItemDto v14.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov14"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov14":{
                "title":"FormCopySourceDto v14.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov14":{
                "title":"FormDatetimeItemDto v14.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm|yyyy-MM|yyyy-MM-dd|yyyy-MM-dd HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy|yyyy-MM",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtov14":{
                "title":"FormDto v14.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov14"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov14"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov14"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov14"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtov14":{
                "title":"From Item Advanced Property v14.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov14"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov14":{
                "title":"From Item Advanced Property Rule v14.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemDtov14":{
                "title":"FormItemDto v14.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov14"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov14"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov14",
                        "numeric":"#/components/schemas/FormNumberItemDtov14",
                        "measurement":"#/components/schemas/FormNumberItemDtov14",
                        "text":"#/components/schemas/FormTextItemDtov14",
                        "choice":"#/components/schemas/FormChoiceItemDtov14",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov14",
                        "table":"#/components/schemas/FormTableItemDto",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov14"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov14"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov14"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov14"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov14"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDto"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormLinkFromDtov14":{
                "title":"FormLinkFromDto v14.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "type":"string",
                            "description":"Form items",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov14":{
                "title":"FormNumberItemDto v14.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov14":{
                "title":"FormOptionDto v14.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov14":{
                "title":"FormQuestionGroupItemDto v14.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    }
                ]
            },
            "FormTextItemDtov14":{
                "title":"FormTextItemDto v14.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov14"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtov15":{
                "title":"FormChoiceItemDto v15.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov15"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov15"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov15":{
                "title":"FormCopySourceDto v15.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov15":{
                "title":"FormDatetimeItemDto v15.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtov15":{
                "title":"FormDto v15.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov15"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov15"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov15"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov15"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov15"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtov15":{
                "title":"From Item Advanced Property v15.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov15"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov15":{
                "title":"From Item Advanced Property Rule v15.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov15":{
                "title":"From Item Advanced Property With Parent v15.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"parent object ID",
                        "format":"uuid"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov15"
                        }
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov15":{
                "title":"FormItemDto v15.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov15"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov15"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov15",
                        "numeric":"#/components/schemas/FormNumberItemDtov15",
                        "measurement":"#/components/schemas/FormNumberItemDtov15",
                        "text":"#/components/schemas/FormTextItemDtov15",
                        "choice":"#/components/schemas/FormChoiceItemDtov15",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov15",
                        "table":"#/components/schemas/FormTableItemDtov15",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov15"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormLinkFromDtov15":{
                "title":"FormLinkFromDto v15.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov15"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent Assigned Visits",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov15"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov15":{
                "title":"FormNumberItemDto v15.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov15":{
                "title":"FormOptionDto v15.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov15":{
                "title":"FormQuestionGroupItemDto v15.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    }
                ]
            },
            "FormTableItemDtov15":{
                "title":"FormTableItemDto v15.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov15":{
                "title":"FormTextItemDto v15.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov15"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormChoiceItemDtov16":{
                "title":"FormChoiceItemDto v16.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "advancedProps":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                                }
                            },
                            "display":{
                                "pattern":"selectbox|checkbox|radioset|label",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtov16"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "maxLength":4000,
                                "minLength":0,
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            }
                        }
                    }
                ]
            },
            "FormCopySourceDtov16":{
                "title":"FormCopySourceDto v16.0",
                "type":"object",
                "properties":{
                    "FormId":{
                        "type":"string",
                        "description":"Source Form GUID",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "description":"Source Study GUID",
                        "format":"uuid"
                    },
                    "StudyTitle":{
                        "type":"string",
                        "description":"Source Study title",
                        "example":"Study-s1"
                    },
                    "versionstart":{
                        "type":"boolean",
                        "description":"is Rules Copied",
                        "example":false
                    }
                },
                "description":"Form Copy Source Information"
            },
            "FormDatetimeItemDtov16":{
                "title":"FormDatetimeItemDto v16.0",
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtov16":{
                "title":"FormDto v16.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov16"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov16"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov16"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov16"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtov16":{
                "title":"From Item Advanced Property v16.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov16"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtov16":{
                "title":"From Item Advanced Property Rule v16.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemAdvancedPropWithParentDtov16":{
                "title":"From Item Advanced Property With Parent v16.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"parent object ID",
                        "format":"uuid"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtov16"
                        }
                    },
                    "parentObjectLabel":{
                        "type":"string",
                        "description":"parent object name",
                        "example":"Form 1"
                    },
                    "parentObjectLevel":{
                        "type":"string",
                        "description":"type of parent object",
                        "example":"FORM"
                    }
                },
                "description":"Form Item Advanced Property with Parent Info"
            },
            "FormItemDtov16":{
                "title":"FormItemDto v16.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "applyChangeToVersion":{
                        "type":"string",
                        "description":"For IPR apply change to version",
                        "example":"1.0.0.1"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"How many leading questions in this form have to be answered by user correctly before Item is included into the form.",
                        "format":"int32",
                        "example":1
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "description":"Source Data Verification Type",
                        "example":"NEVER(0),ALWAYS(1),CRITICAL(2)",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov16"
                        }
                    },
                    "sasVariable":{
                        "type":"string",
                        "description":"Form Item SASVariable",
                        "example":"AE"
                    },
                    "sasLabel":{
                        "type":"string",
                        "description":"Form Item sasLabel",
                        "example":"Adverse Event"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtov16"
                        }
                    },
                    "dataClassificationLevel":{
                        "type":"string",
                        "description":"Data classification level if applicable",
                        "example":"edit, view"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtov16",
                        "numeric":"#/components/schemas/FormNumberItemDtov16",
                        "measurement":"#/components/schemas/FormNumberItemDtov16",
                        "text":"#/components/schemas/FormTextItemDtov16",
                        "choice":"#/components/schemas/FormChoiceItemDtov16",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtov16",
                        "table":"#/components/schemas/FormTableItemDtov16",
                        "label":"#/components/schemas/FormLabelItemDto"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormTableItemDtov16"
                    },
                    {
                        "$ref":"#/components/schemas/FormLabelItemDto"
                    }
                ]
            },
            "FormLinkFromDtov16":{
                "title":"FormLinkFromDto v16.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                        }
                    },
                    "parentAssignedVisits":{
                        "type":"array",
                        "description":"Parent Assigned Visits",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                        }
                    }
                },
                "description":"Linked From Form Details"
            },
            "FormNumberItemDtov16":{
                "title":"FormNumberItemDto v16.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtov16":{
                "title":"FormOptionDto v16.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    },
                    "clCode":{
                        "type":"string",
                        "description":"Codelist code for a one specific choice.",
                        "example":"1"
                    },
                    "clDescription":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Codelist description for a one specific choice.",
                        "example":"1"
                    },
                    "clValue":{
                        "type":"string",
                        "description":"Codelist value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtov16":{
                "title":"FormQuestionGroupItemDto v16.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    }
                ]
            },
            "FormTableItemDtov16":{
                "title":"FormTableItemDto v16.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form table Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "allowAdditionalRows":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "FormTextItemDtov16":{
                "title":"FormTextItemDto v16.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtov16"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormDtov17":{
                "title":"FormDto v17.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov17"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov17"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "allowMultipleInstances":{
                        "type":"boolean",
                        "description":"Allow multiple instances",
                        "example":true
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    },
                    "formType":{
                        "type":"string",
                        "description":"Form type",
                        "example":"STANDARD_FORM",
                        "enum":[
                            "STANDARD_FORM",
                            "LAB_FORM",
                            "TWO_SECTION_FORM",
                            "DRUG_RECONCILIATION_FORM",
                            "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                        ]
                    },
                    "hasRevision":{
                        "type":"boolean",
                        "description":"Indicate whether any revisions from a newer study version have been applied",
                        "example":true
                    },
                    "linkFrom":{
                        "type":"array",
                        "description":"linked from forms",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov17"
                        }
                    },
                    "showFrom":{
                        "type":"array",
                        "description":"show dynamic parent from forms of same visit",
                        "items":{
                            "$ref":"#/components/schemas/FormLinkFromDtov17"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "description":"branch cycle information describing the visits on which the forms are displayed",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov17"
                        }
                    },
                    "includeInSafetyCaseData":{
                        "type":"boolean",
                        "description":"Is form associated to Safety Case Forms",
                        "example":true
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    },
                    "logoFileName":{
                        "type":"string",
                        "description":"Logo File Name"
                    },
                    "logoFileUploadRequest":{
                        "$ref":"#/components/schemas/FileUploadRequest"
                    }
                },
                "description":"Form Info"
            },
            "BranchDesignDTOV6":{
                "type":"object",
                "properties":{
                    "branch":{
                        "$ref":"#/components/schemas/VisitBranchDtoV1"
                    },
                    "visits":{
                        "type":"array",
                        "description":"The visits in this branch",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV6"
                        }
                    }
                },
                "description":"Branch Design properties"
            },
            "VisitBranchDesignDtoV6":{
                "type":"object",
                "properties":{
                    "scheduledVisits":{
                        "type":"array",
                        "description":"scheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV6"
                        }
                    },
                    "branchVisits":{
                        "type":"array",
                        "description":"branches",
                        "items":{
                            "type":"array",
                            "description":"branches",
                            "items":{
                                "$ref":"#/components/schemas/BranchDesignDTOV6"
                            }
                        }
                    },
                    "unscheduledVisits":{
                        "type":"array",
                        "description":"unscheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV6"
                        }
                    }
                },
                "description":"Visit Design branches"
            },
            "VisitDesignAssignedFormsDtoV3":{
                "title":"VisitDesignAssignedFormsDto v3.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Count of the forms assigned to the visit",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design assigned forms."
            },
            "VisitDesignDispensingDtoV3":{
                "title":"VisitDesignDispensingDto v3.0",
                "type":"object",
                "properties":{
                    "count":{
                        "type":"integer",
                        "description":"Visit Design dispensing count",
                        "format":"int32",
                        "example":1
                    },
                    "titrationCount":{
                        "type":"integer",
                        "description":"Visit Design titration count",
                        "format":"int32",
                        "example":1
                    },
                    "deviceCount":{
                        "type":"integer",
                        "description":"Visit Design device count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design dispensings."
            },
            "VisitDesignDtoV6":{
                "title":"VisitDesignDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV6"
                    },
                    "scheduling":{
                        "title":"VisitDesignSchedulingDto v6.0",
                        "type":"object",
                        "properties":{
                            "fromVisitId":{
                                "type":"string",
                                "description":"Visit Design from visit GUID",
                                "format":"uuid"
                            },
                            "branchId":{
                                "type":"string",
                                "description":"bbranch GUID",
                                "format":"uuid"
                            },
                            "delay":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "beforeDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "afterDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            }
                        },
                        "description":"Visit Design scheduling properties"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV6"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDtoV3"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV3"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV6":{
                "title":"VisitDesignRandomizationDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"1"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit Design randomization visit GUID's",
                        "example":"55C8628FB6594912B3214E294A5D4E9F",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    },
                    "algorithmType":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"1"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"1"
                    }
                },
                "description":"Visit Design randomization properties"
            },
            "VisitDesignSchedulingDtoV6":{
                "title":"VisitDesignSchedulingDto v6.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design from visit GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"bbranch GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    }
                },
                "description":"Visit Design scheduling properties"
            },
            "VisitDesignStateDtoV6":{
                "title":"VisitDesignStateDto v6.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Visit Design dynamic state",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Visit Design repeating state",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Visit Design required state",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Visit Design lastRequired state",
                        "example":false
                    }
                },
                "description":"Visit Design state properties"
            },
            "ErrorParam":{
                "title":"ErrorParam",
                "type":"object",
                "properties":{
                    "key":{
                        "type":"string",
                        "description":"Kit unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Missing object type",
                        "example":"Visit"
                    },
                    "id":{
                        "type":"string",
                        "description":"Missing object unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Name",
                        "example":"WEEK5"
                    }
                },
                "description":"Error parameter"
            },
            "RespArmKitVisitDtoV2":{
                "title":"RespArmKitVisitDto v2.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "errorParamList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RespErrParamListDtoV1"
                        }
                    }
                },
                "description":"Error parameters list."
            },
            "RespErrParamListDtoV1":{
                "title":"RespErrParamListDto v1.0",
                "type":"object",
                "properties":{
                    "ErrorParam":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ErrorParam"
                        }
                    }
                },
                "description":"Error parameters list."
            },
            "ArmKitVisitDtoV2":{
                "title":"ArmKitVisitDto v2.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    }
                },
                "description":"Visit kit dispensation per treatment arm."
            },
            "FormChoiceItemDtoV2":{
                "title":"FormChoiceItemDto v2.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV2"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV2":{
                "title":"FormDatetimeItemDto v2.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"MMM-yyyy"
                            }
                        }
                    }
                ]
            },
            "FormDtoV2":{
                "title":"FormDto v2.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV2"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtoV2":{
                "title":"FormItemDto v2.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV2",
                        "numeric":"#/components/schemas/FormNumberItemDtoV2",
                        "measurement":"#/components/schemas/FormNumberItemDtoV2",
                        "text":"#/components/schemas/FormTextItemDtoV2",
                        "choice":"#/components/schemas/FormChoiceItemDtoV2"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV2"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV2"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV2"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV2"
                    }
                ]
            },
            "FormNumberItemDtoV2":{
                "title":"FormNumberItemDto v2.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV2":{
                "title":"FormOptionDto v2.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV2":{
                "title":"FormTextItemDto v2.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "CopyForms":{
                "title":"CopyForms",
                "required":[
                    "formId",
                    "studyId",
                    "version"
                ],
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information about forms to be copied."
            },
            "DesignerResponseListFormItemDtoV2":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV2"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "KitDosingDoseDtoV2":{
                "title":"KitDosingDoseDto v2.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "description":"Precision for each dose",
                        "format":"int32",
                        "example":1
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV2":{
                "title":"KitDosingDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV2"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV2"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV2"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV2"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV2":{
                "title":"KitDosingMeasurementDto v2.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV2"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV2"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV2":{
                "title":"KitDosingQuestionDto v2.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV2":{
                "title":"KitDosingValueUnitsDto v2.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV2":{
                "title":"KitDosingVisitDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitDtoV2":{
                "title":"KitDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV2"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV2"
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV2"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    }
                },
                "description":"Kit details."
            },
            "KitSettingsDtoV2":{
                "title":"KitSettingsDto v2.0",
                "type":"object",
                "properties":{
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitUnitSettingsDtoV2":{
                "title":"KitUnitSettingsDto v2.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV2"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "AdvancedDosingGroupCriteriaDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "criteriaType":{
                        "type":"string",
                        "enum":[
                            "Question",
                            "Dates",
                            "Cohort",
                            "Treatment Arm",
                            "invalid"
                        ]
                    },
                    "visitName":{
                        "type":"string"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formName":{
                        "type":"string"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "questionName":{
                        "type":"string"
                    },
                    "questionId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "variable":{
                        "type":"string"
                    },
                    "variableId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "timePeriod":{
                        "type":"string",
                        "enum":[
                            "After",
                            "Before",
                            "invalid"
                        ]
                    },
                    "dateValue":{
                        "type":"string"
                    },
                    "answer":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CommonAttributeDto"
                        }
                    },
                    "rule":{
                        "$ref":"#/components/schemas/AdvancedDosingRuleDto"
                    }
                }
            },
            "AdvancedDosingGroupDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "groupName":{
                        "type":"string"
                    },
                    "groupCriteria":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupCriteriaDto"
                        }
                    },
                    "kitSettings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingKitSettingsDto"
                        }
                    },
                    "instructions":{
                        "type":"string"
                    }
                }
            },
            "AdvancedDosingKitSettingsDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitName":{
                        "type":"string"
                    },
                    "dosingId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDto"
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDto"
                        }
                    },
                    "dosingLabel":{
                        "type":"string"
                    },
                    "quantity":{
                        "type":"integer",
                        "format":"int64"
                    }
                }
            },
            "AdvancedDosingRuleDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "ruleName":{
                        "type":"string"
                    },
                    "value":{
                        "type":"string"
                    },
                    "valueList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CommonAttributeDto"
                        }
                    },
                    "lower":{
                        "$ref":"#/components/schemas/RangeRuleValues"
                    },
                    "upper":{
                        "$ref":"#/components/schemas/RangeRuleValues"
                    }
                }
            },
            "CommonAttributeDto":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "label":{
                        "type":"string"
                    }
                }
            },
            "KitDosingDoseDto":{
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "roundUp":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "frequency":{
                        "type":"string"
                    },
                    "leftOverUnits":{
                        "type":"boolean"
                    }
                }
            },
            "KitDosingDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDto"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDto"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDto"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDto"
                    }
                }
            },
            "KitDosingMeasurementDto":{
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDto"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDto"
                    }
                }
            },
            "KitDosingQuestionDto":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "KitDosingValueUnitsDto":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "format":"double"
                    },
                    "units":{
                        "type":"string"
                    }
                }
            },
            "KitDosingVisitDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string"
                    }
                }
            },
            "KitSettingsDto":{
                "type":"object",
                "properties":{
                    "deviceType":{
                        "type":"string"
                    },
                    "deviceConn":{
                        "type":"string"
                    },
                    "calculatingDoses":{
                        "type":"boolean"
                    },
                    "titratingDoses":{
                        "type":"boolean"
                    },
                    "titrationKit":{
                        "type":"boolean"
                    },
                    "distributionSetting":{
                        "type":"string"
                    },
                    "kitTypeId":{
                        "type":"string"
                    },
                    "kitDescription":{
                        "type":"string"
                    },
                    "storageSetting":{
                        "type":"string"
                    },
                    "trialSupplyType":{
                        "type":"string"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "serialized":{
                        "type":"boolean"
                    },
                    "hazardousMaterial":{
                        "type":"boolean"
                    },
                    "controlSubstance":{
                        "type":"boolean"
                    },
                    "bufferdays":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean"
                    },
                    "doseChangeInUnschVisit":{
                        "type":"boolean"
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "timeBetweenUpDoseChangesException":{
                        "type":"boolean"
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "timeBetweenDownDoseChangesException":{
                        "type":"boolean"
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean"
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean"
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string"
                    }
                }
            },
            "KitTitrationsDto":{
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "titrationKitLabel":{
                        "type":"string"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDto"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDto"
                    },
                    "maintainTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDto"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDto"
                    }
                }
            },
            "KitTitrationsDtoV5":{
                "title":"KitTitrationsDto v5.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "description":"Id of the titration row",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "description":"Id of the current titration kit",
                        "format":"uuid"
                    },
                    "titrationKitLabel":{
                        "type":"string",
                        "description":"Custom optional Dose Level title to indicate a dose level for a row within a Titration Group",
                        "example":"Low Dose"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "description":"Sequence number of the current titration row within the kit",
                        "format":"int64",
                        "example":5
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV5"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV5"
                    },
                    "maintainTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV5"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV5"
                    }
                },
                "description":"Contains titrations information on the titration kit."
            },
            "KitUnitSettingsDto":{
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number"
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDto"
                    }
                }
            },
            "KitsDto":{
                "title":"KitsDto",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDto"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDto"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDto"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDto"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "format":"double"
                    },
                    "isDefault":{
                        "type":"boolean"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "exceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV5"
                        }
                    },
                    "advancedDosing":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "groups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupDto"
                        }
                    },
                    "libraryKitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string"
                    }
                },
                "description":"Information about a kit."
            },
            "TitrationKitItemDTO":{
                "title":"TitrationKitItemDto",
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit Unique GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    },
                    "dosageId":{
                        "type":"string",
                        "description":"Dosage Id",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDto"
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDto"
                        }
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemDtoV5":{
                "title":"TitrationKitItemDto v5.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemsDto":{
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "$ref":"#/components/schemas/TitrationKitItemDTO"
                    }
                },
                "description":"Titration Kit Items"
            },
            "TitrationKitItemsDtoV5":{
                "title":"TitrationKitItemsDto v5.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/TitrationKitItemDtoV5"
                        }
                    }
                },
                "description":"Titration Kit Items"
            },
            "RandomizationFactorsV2":{
                "title":"Randomization Factor Details v2.0",
                "type":"object",
                "properties":{
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV4"
                    },
                    "groups":{
                        "title":"RandomizationFactorGroupDto v2.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Stratum or Cohort Unique GUID",
                                "format":"uuid"
                            },
                            "formTitle":{
                                "type":"string",
                                "description":"formTitle",
                                "example":"Demography"
                            },
                            "questionTitle":{
                                "type":"string",
                                "description":"questionTitle",
                                "example":"Age"
                            },
                            "groupName":{
                                "type":"string",
                                "description":"Stratum or Cohort GroupName",
                                "example":"Group Name 1"
                            },
                            "groupId":{
                                "type":"string",
                                "description":" Rand Stratum Factor Id",
                                "format":"uuid"
                            },
                            "formCategory":{
                                "type":"string",
                                "description":"Form category",
                                "example":"DCS"
                            },
                            "formSubcategory":{
                                "type":"string",
                                "description":"List of form subcategories"
                            },
                            "instructionalText":{
                                "type":"string",
                                "description":"Instructional Text"
                            }
                        },
                        "description":"RandomizationFactorGroupDto Info"
                    }
                },
                "description":"Randomization Factors DTO"
            },
            "RandomizationArmV2":{
                "title":"RandomizationArm v2.0",
                "required":[
                    "id",
                    "ratio"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Arm1"
                    },
                    "ratio":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"The ratio defined for the treatment arm",
                        "format":"int32",
                        "example":2,
                        "enum":[
                            null
                        ]
                    }
                },
                "description":"Randomization Design Treatment Arm Ratio"
            },
            "RandomizationDetailsV2":{
                "title":"RandomizationDetails v2.0",
                "required":[
                    "algorithm",
                    "cohortType",
                    "randomizationType",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Randomization Title",
                        "example":"Rand 001"
                    },
                    "description":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Randomization Design Description",
                        "example":"Method to assign study participants to a treatment group."
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"The algorithm of the randomization design",
                        "example":"Central",
                        "enum":[
                            "NONE",
                            "CENTRAL",
                            "CENTRAL_STRATIFIED",
                            "SITE_BLOCKED_FIXED",
                            "SITE_BLOCKED_FIXED_STRATIFIED",
                            "SITE_BLOCKED_DYNAMIC",
                            "SITE_BLOCKED_DYNAMIC_STRATIFIED",
                            "COUNTRY_BLOCKED_FIXED",
                            "COUNTRY_BLOCKED_FIXED_STRATIFIED",
                            "COUNTRY_BLOCKED_DYNAMIC",
                            "COUNTRY_BLOCKED_DYNAMIC_STRATIFIED",
                            "REGION_BLOCKED_FIXED",
                            "REGION_BLOCKED_FIXED_STRATIFIED",
                            "REGION_BLOCKED_DYNAMIC",
                            "REGION_BLOCKED_DYNAMIC_STRATIFIED",
                            "MINIMIZATION"
                        ]
                    },
                    "cohortType":{
                        "type":"string",
                        "description":"The cohort type of the randomization design",
                        "example":"None",
                        "enum":[
                            "NoCohort",
                            "Adaptive",
                            "Demography",
                            "invalid"
                        ]
                    },
                    "randomizationType":{
                        "type":"string",
                        "description":"Type of the randomization design",
                        "example":"Blinded",
                        "enum":[
                            "Blinded",
                            "Unblinded",
                            "invalid"
                        ]
                    },
                    "reRandomization":{
                        "type":"boolean",
                        "description":"Whether to use re-randomization on the randomization design",
                        "example":true
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Whether to use randomized or mapped on the randomization design",
                        "example":"Randomized",
                        "enum":[
                            "Randomized",
                            "Mapped",
                            "None",
                            "invalid"
                        ]
                    }
                },
                "description":"Details of the randomization design."
            },
            "RandomizationDtoV2":{
                "title":"RandomizationDto v2.0",
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV2"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV2"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV2"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV2"
                    }
                },
                "description":"Randomization Design Info"
            },
            "RandomizationSettingsV2":{
                "title":"RandomizationSettings v2.0",
                "type":"object",
                "properties":{
                    "randomizeSubjectsIfSitesOutOfKits":{
                        "type":"boolean",
                        "description":"Whether to restrict randomization numbers to available kit types",
                        "example":false
                    },
                    "assignSkippedRandomizationNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign skipped randomization numbers",
                        "example":false
                    },
                    "randomizeNumberBlinded":{
                        "type":"boolean",
                        "description":"Whether to use blinded randomization numbers",
                        "example":false
                    },
                    "randomizeLimitsToCountEarlyTerminated":{
                        "type":"boolean",
                        "description":"Whether limits include withdrawn subjects",
                        "example":false
                    },
                    "assignNewRandomizeNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign new randomization numbers to all subjects",
                        "example":false
                    }
                },
                "description":"The settings for the randomization design."
            },
            "RandomizationVisitV2":{
                "title":"RandomizationVisit v2.0",
                "required":[
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Week 3"
                    }
                },
                "description":"Randomization Visit"
            },
            "StratumChoiceFactorDtoV2":{
                "title":"StratumChoiceFactorDto v2.0",
                "required":[
                    "formId",
                    "itemId",
                    "values"
                ],
                "type":"object",
                "description":"Stratum Choice Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "values":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "maxLength":2147483647,
                                    "minLength":1,
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice values",
                                    "example":"1"
                                }
                            }
                        }
                    }
                ]
            },
            "StratumDtoV2":{
                "title":"StratumDto v2.0",
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Stratum Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Stratum Name",
                        "example":"Stratum Group 1"
                    },
                    "factors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/StratumFactorDtoV3"
                        }
                    },
                    "weight":{
                        "type":"string",
                        "description":"Weight of Stratum Group",
                        "example":"1"
                    },
                    "randomizationType":{
                        "type":"string",
                        "description":"Type of Stratum",
                        "example":"Stratified"
                    },
                    "objectType":{
                        "type":"string",
                        "description":"Type of Object",
                        "example":"Code List"
                    },
                    "objectId":{
                        "type":"string",
                        "description":"Value of Object GUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Randomization Stratum Detail Information"
            },
            "StratumFactorDtoV2":{
                "title":"StratumFactorDto v2.0",
                "required":[
                    "formId",
                    "itemId",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Form item GUID",
                        "format":"uuid"
                    },
                    "groupName":{
                        "type":"string",
                        "description":"Stratum Name",
                        "example":"Stratum Group 1"
                    },
                    "groupId":{
                        "type":"string",
                        "description":"Stratum Group Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string"
                    }
                },
                "description":"Randomization Stratum Factor Information",
                "discriminator":{
                    "propertyName":"type",
                    "mapping":{
                        "choice":"#/components/schemas/StratumChoiceFactorDtoV2",
                        "range":"#/components/schemas/StratumRangeFactorDtoV2"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/StratumChoiceFactorDtoV2"
                    },
                    {
                        "$ref":"#/components/schemas/StratumRangeFactorDtoV2"
                    }
                ]
            },
            "StratumRangeFactorDtoV2":{
                "title":"StratumRangeFactorDto v2.0",
                "required":[
                    "formId",
                    "itemId",
                    "max",
                    "min"
                ],
                "type":"object",
                "description":"Stratum Range Factor Detail Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/StratumFactorDtoV2"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "min":{
                                "type":"number",
                                "description":"Stratum Factor Min value",
                                "format":"double",
                                "example":20
                            },
                            "max":{
                                "type":"number",
                                "description":"Stratum Factor Max value",
                                "format":"double",
                                "example":120
                            }
                        }
                    }
                ]
            },
            "StudyDesignDtoV2":{
                "title":"StudyDesignDto v2.0",
                "type":"object",
                "properties":{
                    "studyVersionVisitV2":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV2"
                    },
                    "visitsWithFormIds":{
                        "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                        "type":"object",
                        "properties":{
                            "visits":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"list of Visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"list of Visit forms IDs",
                                    "format":"uuid"
                                }
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v11.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov10"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov10"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"0",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            }
                        },
                        "description":"Form Info"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVersionVisitDtoV2":{
                "title":"StudyVersionVisitDto v2.0",
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "StudyVisitScheduleDtoV5":{
                "title":"StudyVisitScheduleDto v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if visit last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event randomization type",
                        "example":"Blinded"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Event short name",
                        "example":"Week2"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "StudyVisitWithFormIdsDtoV2":{
                "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                "type":"object",
                "properties":{
                    "visits":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"list of Visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"list of Visit forms IDs",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "StudyDtoV2":{
                "title":"StudyDto v2.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description"
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups"
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups"
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups"
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "StudyVisitDTOV2":{
                "title":"StudyVisitDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Reduced Visit and branch properties"
            },
            "StudyStatusSummaryDtoV2":{
                "title":"StudyStatusSummaryDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "lastModified":{
                        "type":"string"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    }
                },
                "description":"Summary information about a study"
            },
            "StudyLibraryObjectUseDto":{
                "title":"StudyLibraryObjectUseDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "modifiedAfterCopy":{
                        "type":"boolean",
                        "description":"1 for true, 0 for false",
                        "format":"number",
                        "example":false
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Study approval date",
                        "format":"date-time",
                        "example":"2020-07-26T14:24:52.346Z"
                    }
                },
                "description":"Summary information about which study is reused together with all necesayr info, for example modified after copy"
            },
            "ItemDetailsDto":{
                "type":"object",
                "properties":{
                    "studyVersion":{
                        "type":"string",
                        "description":"Study Verson",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "targetStudyVersion":{
                        "type":"string",
                        "description":"Target Study Verson",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source Study Verson",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item Id",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Item Id",
                        "format":"date-time"
                    },
                    "mode":{
                        "type":"string",
                        "description":"mode",
                        "format":"TEST",
                        "example":"TEST"
                    }
                },
                "description":"The items",
                "format":"ItemDetailsDto"
            },
            "StudyVersionFormItemDto":{
                "type":"object",
                "properties":{
                    "hasMore":{
                        "type":"boolean",
                        "description":"has more",
                        "format":"true",
                        "example":true
                    },
                    "totalResults":{
                        "type":"integer",
                        "description":"Total Results",
                        "format":"int32",
                        "example":10
                    },
                    "count":{
                        "type":"integer",
                        "description":"Count",
                        "format":"int32",
                        "example":10
                    },
                    "limit":{
                        "type":"integer",
                        "description":"Limit",
                        "format":"int32",
                        "example":10
                    },
                    "offset":{
                        "type":"integer",
                        "description":"Offset",
                        "format":"int32",
                        "example":10
                    },
                    "resultData":{
                        "type":"array",
                        "description":"The items",
                        "format":"ItemDetailsDto",
                        "items":{
                            "$ref":"#/components/schemas/ItemDetailsDto"
                        }
                    }
                }
            },
            "VersionDtoV2":{
                "title":"VersionDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"The study version",
                        "example":"2.0.0.7"
                    },
                    "status":{
                        "type":"string",
                        "description":"Status of study",
                        "example":"DRAFT"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Name of the latest study version",
                        "example":"Study03:2.0.0.7"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Type of study version",
                        "example":"PROTOCOL_AMENDMENT"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"start of study version",
                        "format":"date-time",
                        "example":"2020-02-05T19:45:53.687Z"
                    }
                },
                "description":"Information about a study version."
            },
            "VisitDtoV2":{
                "title":"VisitDto v2.0",
                "required":[
                    "eventType",
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    }
                },
                "description":"Visit design."
            },
            "StudyVisitScheduleDtoV2":{
                "title":"StudyVisitScheduleDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if visit last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event randomization type",
                        "example":"Blinded"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Event short name",
                        "example":"Week2"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "DelayV3":{
                "title":"Delay v3.0",
                "type":"object",
                "properties":{
                    "days":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "hours":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Schedule delay in days/hours."
            },
            "VisitDesignDtoV3":{
                "title":"VisitDesignDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV3"
                    },
                    "scheduling":{
                        "$ref":"#/components/schemas/VisitDesignSchedulingDtoV3"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV3"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDtoV3"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV3"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV3":{
                "title":"VisitDesignRandomizationDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"Blinded"
                    },
                    "algorithm":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"Central"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"9872E220DD074DD3B463143DAAA684DC:,9872E220DD074DD3B463143DAAA684DC:"
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Visit design randomization."
            },
            "VisitDesignSchedulingDtoV3":{
                "title":"VisitDesignSchedulingDto v3.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design : scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/DelayV3"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/DelayV3"
                    }
                },
                "description":"Visit design scheduling."
            },
            "VisitDesignStateDtoV3":{
                "title":"VisitDesignStateDto v3.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design dynamic state.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating state.",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required state.",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is last required state.",
                        "example":false
                    }
                },
                "description":"Visit design state."
            },
            "KitDescDtoV3":{
                "title":"KitDescDto V3.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit Unique GUID",
                        "format":"uuid"
                    },
                    "kitType":{
                        "type":"string",
                        "description":"Kit Type ID",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Distribution Setting",
                        "format":"string",
                        "example":"UNBLINDED"
                    },
                    "deviceType":{
                        "type":"string",
                        "description":"Device Type",
                        "example":"SCALE"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Device Connection",
                        "example":"D2C"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial Supply Type",
                        "example":"BOTTLE"
                    }
                },
                "description":"Kit description and distribution setting"
            },
            "ArmKitVisitTitrationDtoV3":{
                "title":"ArmKitVisitTitrationDto v3.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit Type Id",
                        "example":"Kit A 20mg"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "type":"integer",
                        "description":"Visit Quantity",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Kit dispensations for a titration group."
            },
            "RespArmKitVisitDtoV3":{
                "title":"RespArmKitVisitDto v3.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV3"
                        }
                    },
                    "errorParamList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RespErrParamListDtoV1"
                        }
                    }
                },
                "description":"Error parameters list."
            },
            "ArmKitVisitDtoV3":{
                "title":"ArmKitVisitDto v3.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV3"
                        }
                    }
                },
                "description":"Visit kit dispensation per treatment arm."
            },
            "FormChoiceItemDtoV3":{
                "title":"FormChoiceItemDto v3.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV3"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV3":{
                "title":"FormDatetimeItemDto v3.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV3":{
                "title":"FormDto v3.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV3"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtoV3":{
                "title":"FormItemDto v3.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV3",
                        "numeric":"#/components/schemas/FormNumberItemDtoV3",
                        "measurement":"#/components/schemas/FormNumberItemDtoV3",
                        "text":"#/components/schemas/FormTextItemDtoV3",
                        "choice":"#/components/schemas/FormChoiceItemDtoV3"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV3"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV3"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV3"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV3"
                    }
                ]
            },
            "FormNumberItemDtoV3":{
                "title":"FormNumberItemDto v3.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV3":{
                "title":"FormOptionDto v3.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV3":{
                "title":"FormTextItemDto v3.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV3"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "DesignerResponseListFormItemDtoV3":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV3"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "KitDosingDoseDtoV3":{
                "title":"KitDosingDoseDto v3.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "description":"Precision for each dose",
                        "format":"int32",
                        "example":1
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV3":{
                "title":"KitDosingDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV3"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV3"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV3"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV3"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV3":{
                "title":"KitDosingMeasurementDto v3.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV3"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV3"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV3":{
                "title":"KitDosingQuestionDto v3.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV3":{
                "title":"KitDosingValueUnitsDto v3.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV3":{
                "title":"KitDosingVisitDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitDtoV3":{
                "title":"KitDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV3"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV3"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV3"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV3"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    }
                },
                "description":"Kit details."
            },
            "KitSettingsDtoV3":{
                "title":"KitSettingsDto v3.0",
                "type":"object",
                "properties":{
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has titrating doses",
                        "example":true
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates if the kit is a titration kit",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    },
                    "bufferdays":{
                        "type":"integer",
                        "description":"The number of buffer days",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates if the kit may be dispensed outside the window",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Indicates if the titration kit has dosing frequencies defined",
                        "example":true
                    },
                    "doseChangeUnschVisit":{
                        "type":"boolean",
                        "description":"Indicates if dosage change is allowed in an unscheduled visit for the titration kit",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between up dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "description":"Time between up dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between down dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "description":"Time between down dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on up titrate when already on highest dose",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on down titrate when already on lowest dose",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on up titrate when subject is on highest dose",
                        "example":"Message when subject is on highest dose"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on down titrate when subject is on lowest dose",
                        "example":"Message when subject is on lowest dose"
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitTitrationsDtoV3":{
                "title":"KitTitrationsDto v3.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "description":"Id of the titration row",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "description":"Id of the current titration kit",
                        "format":"uuid"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "description":"Sequence number of the current titration row within the kit",
                        "format":"int64",
                        "example":5
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV3"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV3"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV3"
                    }
                },
                "description":"Contains titrations information on the titration kit."
            },
            "KitUnitSettingsDtoV3":{
                "title":"KitUnitSettingsDto v3.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV3"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "TitrationKitItemDtoV3":{
                "title":"TitrationKitItemDto v3.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemsDtoV3":{
                "title":"TitrationKitItemsDto v3.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/TitrationKitItemDtoV3"
                        }
                    }
                },
                "description":"Titration Kit Items"
            },
            "RandomizationDtoV3":{
                "title":"RandomizationDto v3.0",
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV2"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV2"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV3"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV2"
                    }
                },
                "description":"Randomization Design Info"
            },
            "RandomizationVisitV3":{
                "title":"RandomizationVisit v3.0",
                "required":[
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Week 3"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Randomization Visit"
            },
            "FormDtoV10":{
                "title":"FormDto v10.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "source":{
                        "$ref":"#/components/schemas/FormCopySourceDtov10"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtov10"
                        }
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The form's version date",
                        "format":"date-time"
                    },
                    "dynamic":{
                        "type":"integer",
                        "description":"Count of forms items that point to this form for Show Form feature",
                        "format":"int32",
                        "example":4
                    }
                },
                "description":"Form Info"
            },
            "StudyDesignDtoV1":{
                "title":"StudyDesignDto v1.0",
                "type":"object",
                "properties":{
                    "studyVersionVisitV1":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV1"
                    },
                    "visitsWithFormIds":{
                        "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                        "type":"object",
                        "properties":{
                            "visits":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"list of Visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"list of Visit forms IDs",
                                    "format":"uuid"
                                }
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v10.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov10"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov10"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            }
                        },
                        "description":"Form Info"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVisitWithFormIdsDtoV1":{
                "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                "type":"object",
                "properties":{
                    "visits":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV5"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"list of Visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"list of Visit forms IDs",
                            "format":"uuid"
                        }
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "Form Item Summary DTO V3":{
                "title":"FormItemSummaryDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "questionType":{
                        "title":"FormItemType",
                        "type":"string",
                        "description":"Question type",
                        "example":"numeric",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "subItemIds":{
                        "title":"Sub item ids",
                        "type":"string",
                        "description":"List of sub question ids",
                        "format":"uuid"
                    }
                },
                "description":"Reduced form item properties"
            },
            "Form Summary DTO V3":{
                "title":"FormSummaryDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "title":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/Form Item Summary DTO V3"
                        }
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"array",
                        "description":"Form subcategory list",
                        "items":{
                            "type":"string",
                            "description":"Form subcategory list"
                        }
                    }
                },
                "description":"Reduced form properties"
            },
            "StudyStatusSummaryDtoV3":{
                "title":"StudyStatusSummaryDto v3.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "lastModified":{
                        "type":"string"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "systemCodeListGroupName":{
                        "type":"string",
                        "description":"System codelist group name",
                        "example":"Clinical One Default Code List"
                    },
                    "companyLabels":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    }
                },
                "description":"Summary information about a study"
            },
            "VisitDtoV3":{
                "title":"VisitDto v3.0",
                "required":[
                    "eventType",
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    }
                },
                "description":"Visit design."
            },
            "StudyEventScheduleDtoV3":{
                "title":"StudyEventScheduleDto v3.0",
                "required":[
                    "delay",
                    "delayWindow",
                    "projectedFromRefId"
                ],
                "type":"object",
                "properties":{
                    "delay":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    },
                    "delayWindow":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayWindowV1"
                    },
                    "outOfWindowHardStopEnforced":{
                        "type":"integer",
                        "description":"Out off window hard stop enforced",
                        "format":"int32",
                        "example":1
                    },
                    "outOfWindowVisitApprovalGranted":{
                        "type":"integer",
                        "description":"Out off window visit approval granted",
                        "format":"int32",
                        "example":1
                    },
                    "projectedFromRefId":{
                        "type":"string",
                        "description":"Projected from reference GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Visit branch GUID",
                        "format":"uuid"
                    }
                },
                "description":"Study event schedule details."
            },
            "ArmKitVisitTitrationDtoV4":{
                "title":"ArmKitVisitTitrationDto v3.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit Type Id",
                        "example":"Kit A 20mg"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "type":"integer",
                        "description":"Visit Quantity",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Kit dispensations for a titration group."
            },
            "RespArmKitVisitDtoV4":{
                "title":"RespArmKitVisitDto v4.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV6"
                        }
                    },
                    "errorParamList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RespErrParamListDtoV1"
                        }
                    }
                },
                "description":"Error parameters list."
            },
            "ArmKitVisitDtoV4":{
                "title":"ArmKitVisitDto v4.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV4"
                        }
                    }
                },
                "description":"Visit kit dispensation per treatment arm."
            },
            "FormChoiceItemDtoV4":{
                "title":"FormChoiceItemDto v4.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV4"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV4"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV4":{
                "title":"FormDatetimeItemDto v4.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV4"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV4":{
                "title":"FormDto v4.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV4"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtoV4":{
                "title":"FormItemDto v4.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV4",
                        "numeric":"#/components/schemas/FormNumberItemDtoV4",
                        "measurement":"#/components/schemas/FormNumberItemDtoV4",
                        "text":"#/components/schemas/FormTextItemDtoV4",
                        "choice":"#/components/schemas/FormChoiceItemDtoV4"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV4"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV4"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV4"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV4"
                    }
                ]
            },
            "FormNumberItemDtoV4":{
                "title":"FormNumberItemDto v4.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV4"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV4":{
                "title":"FormOptionDto v4.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV4":{
                "title":"FormTextItemDto v4.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV4"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "FormVisitsDtoV4":{
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    }
                }
            },
            "DesignerResponseListFormItemDtoV4":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "result":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV4"
                        }
                    },
                    "errorData":{
                        "$ref":"#/components/schemas/ErrorResponseData"
                    },
                    "version":{
                        "type":"integer",
                        "format":"int32"
                    }
                }
            },
            "KitDosingDoseDtoV4":{
                "title":"KitDosingDoseDto v4.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "description":"Precision for each dose",
                        "format":"int32",
                        "example":1
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV4":{
                "title":"KitDosingDto v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV4"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV4"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV4"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV4"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV4":{
                "title":"KitDosingMeasurementDto v4.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV4"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV4"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV4":{
                "title":"KitDosingQuestionDto v4.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV4":{
                "title":"KitDosingValueUnitsDto v4.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV4":{
                "title":"KitDosingVisitDto v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitDtoV4":{
                "title":"KitDto v4.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV4"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV4"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV4"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV4"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    }
                },
                "description":"Kit details."
            },
            "KitSettingsDtoV4":{
                "title":"KitSettingsDto v4.0",
                "type":"object",
                "properties":{
                    "deviceType":{
                        "type":"string",
                        "description":"Indicates type of device in case of device kit",
                        "example":"Blood pressure monitor"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Indicates device connection in case of device kit",
                        "example":"Cloud to Cloud"
                    },
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has titrating doses",
                        "example":true
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates if the kit is a titration kit",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    },
                    "bufferdays":{
                        "type":"integer",
                        "description":"The number of buffer days",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates if the kit may be dispensed outside the window",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Indicates if the titration kit has dosing frequencies defined",
                        "example":true
                    },
                    "doseChangeUnschVisit":{
                        "type":"boolean",
                        "description":"Indicates if dosage change is allowed in an unscheduled visit for the titration kit",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between up dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "description":"Time between up dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between down dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "description":"Time between down dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on up titrate when already on highest dose",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on down titrate when already on lowest dose",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on up titrate when subject is on highest dose",
                        "example":"Message when subject is on highest dose"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on down titrate when subject is on lowest dose",
                        "example":"Message when subject is on lowest dose"
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitTitrationsDtoV4":{
                "title":"KitTitrationsDto v4.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "description":"Id of the titration row",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "description":"Id of the current titration kit",
                        "format":"uuid"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "description":"Sequence number of the current titration row within the kit",
                        "format":"int64",
                        "example":5
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV4"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV4"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV4"
                    }
                },
                "description":"Contains titrations information on the titration kit."
            },
            "KitUnitSettingsDtoV4":{
                "title":"KitUnitSettingsDto v4.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV4"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "TitrationKitItemDtoV4":{
                "title":"TitrationKitItemDto v4.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemsDtoV4":{
                "title":"TitrationKitItemsDto v4.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/TitrationKitItemDtoV4"
                        }
                    }
                },
                "description":"Titration Kit Items"
            },
            "KitDosingDoseDtoV5":{
                "title":"KitDosingDoseDto v5.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "description":"Precision for each dose",
                        "format":"int32",
                        "example":1
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV5":{
                "title":"KitDosingDto v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV5"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV5"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV5"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV5"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV5":{
                "title":"KitDosingMeasurementDto v5.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV5"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV5"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV5":{
                "title":"KitDosingQuestionDto v5.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV5":{
                "title":"KitDosingValueUnitsDto v5.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV5":{
                "title":"KitDosingVisitDto v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitDtoV5":{
                "title":"KitDto v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV5"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV5"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV5"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV5"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    }
                },
                "description":"Kit details."
            },
            "KitSettingsDtoV5":{
                "title":"KitSettingsDto v5.0",
                "type":"object",
                "properties":{
                    "deviceType":{
                        "type":"string",
                        "description":"Indicates type of device in case of device kit",
                        "example":"Blood pressure monitor"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Indicates device connection in case of device kit",
                        "example":"Cloud to Cloud"
                    },
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has titrating doses",
                        "example":true
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates if the kit is a titration kit",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    },
                    "bufferdays":{
                        "type":"integer",
                        "description":"The number of buffer days",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates if the kit may be dispensed outside the window",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Indicates if the titration kit has dosing frequencies defined",
                        "example":true
                    },
                    "doseChangeUnschVisit":{
                        "type":"boolean",
                        "description":"Indicates if dosage change is allowed in an unscheduled visit for the titration kit",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between up dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "description":"Time between up dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between down dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "description":"Time between down dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on up titrate when already on highest dose",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on down titrate when already on lowest dose",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on up titrate when subject is on highest dose",
                        "example":"Message when subject is on highest dose"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on down titrate when subject is on lowest dose",
                        "example":"Message when subject is on lowest dose"
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitUnitSettingsDtoV5":{
                "title":"KitUnitSettingsDto v5.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV5"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "RandomizationArmV4":{
                "title":"RandomizationArm v4.0",
                "required":[
                    "id",
                    "ratio"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Arm1"
                    },
                    "ratio":{
                        "maximum":99,
                        "minimum":1,
                        "type":"integer",
                        "description":"The ratio defined for the treatment arm",
                        "format":"int32",
                        "example":2,
                        "enum":[
                            null
                        ]
                    }
                },
                "description":"Randomization Design Treatment Arm Ratio"
            },
            "RandomizationDtoV4":{
                "title":"RandomizationDto v4.0",
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Randomization VersionStart",
                        "format":"date-time",
                        "example":"2021-01-17T15:41:10.733Z"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV4"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV4"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV4"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV4"
                    }
                },
                "description":"Randomization Design Info"
            },
            "RandomizationSettingsV4":{
                "title":"RandomizationSettings v4.0",
                "type":"object",
                "properties":{
                    "randomizeSubjectsIfSitesOutOfKits":{
                        "type":"boolean",
                        "description":"Whether to restrict randomization numbers to available kit types",
                        "example":false
                    },
                    "assignSkippedRandomizationNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign skipped randomization numbers",
                        "example":false
                    },
                    "randomizeNumberBlinded":{
                        "type":"boolean",
                        "description":"Whether to use blinded randomization numbers",
                        "example":false
                    },
                    "randomizeLimitsToCountEarlyTerminated":{
                        "type":"boolean",
                        "description":"Whether limits include withdrawn subjects",
                        "example":false
                    },
                    "assignNewRandomizeNumbers":{
                        "type":"boolean",
                        "description":"Whether to assign new randomization numbers to all subjects",
                        "example":false
                    }
                },
                "description":"The settings for the randomization design."
            },
            "RandomizationVisitV4":{
                "title":"RandomizationVisit v4.0",
                "required":[
                    "visitId"
                ],
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "visitName":{
                        "type":"string",
                        "description":"Visit name",
                        "example":"Week 3"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Randomization Visit"
            },
            "StudyDesignDtoV4":{
                "title":"StudyDesignDto v4.0",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV4"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v13.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov13"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov13"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"0",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov13"
                                }
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormDto v13.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov13"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov13"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"0",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov13"
                                }
                            }
                        },
                        "description":"Form Info"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVersionVisitDtoV4":{
                "title":"StudyVersionVisitDto v4.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "StudyVisitScheduleDtoV7":{
                "title":"StudyVisitScheduleDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if visit last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event randomization type",
                        "example":"Blinded"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Event short name",
                        "example":"Week2"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "StudyVisitWithFormIdsDtoV3":{
                "title":"StudyVisitScheduleWithFormIdsDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "visitSchedule":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"List of visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit forms IDs",
                            "format":"uuid"
                        }
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "StudyDtoV4":{
                "title":"StudyDto v4.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description"
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups"
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups"
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups"
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "VisitDtoV4":{
                "title":"VisitDto v4.0",
                "required":[
                    "eventType",
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    }
                },
                "description":"Visit design."
            },
            "StudyEventScheduleDtoV4":{
                "title":"StudyEventScheduleDto v4.0",
                "required":[
                    "delay",
                    "delayWindow",
                    "projectedFromRefId"
                ],
                "type":"object",
                "properties":{
                    "delay":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayV1"
                    },
                    "delayWindow":{
                        "$ref":"#/components/schemas/StudyEventScheduleDelayWindowV1"
                    },
                    "outOfWindowHardStopEnforced":{
                        "type":"integer",
                        "description":"Out off window hard stop enforced",
                        "format":"int32",
                        "example":1
                    },
                    "outOfWindowVisitApprovalGranted":{
                        "type":"integer",
                        "description":"Out off window visit approval granted",
                        "format":"int32",
                        "example":1
                    },
                    "projectedFromRefId":{
                        "type":"string",
                        "description":"Projected from reference GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Visit branch GUID",
                        "format":"uuid"
                    },
                    "outOfWindowAlert":{
                        "type":"string",
                        "description":"Outside Visit Window Alert",
                        "format":"string",
                        "example":"OFF"
                    }
                },
                "description":"Study event schedule details."
            },
            "VisitDesignDtoV5":{
                "title":"VisitDesignDto v5.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV3"
                    },
                    "scheduling":{
                        "$ref":"#/components/schemas/VisitDesignSchedulingDtoV3"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV3"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDtoV3"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV3"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "KitDescDtoV5":{
                "title":"KitDescDto V5.0",
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "description":"Kit Unique GUID",
                        "format":"uuid"
                    },
                    "kitType":{
                        "type":"string",
                        "description":"Kit Type ID",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"Kit description",
                        "format":"string",
                        "example":"Kit_1003_1"
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Distribution Setting",
                        "format":"string",
                        "example":"UNBLINDED"
                    },
                    "deviceType":{
                        "type":"string",
                        "description":"Device Type",
                        "example":"SCALE"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Device Connection",
                        "example":"D2C"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"Trial Supply Type",
                        "example":"BOTTLE"
                    },
                    "titrationKit":{
                        "type":"string",
                        "description":"Indicates if this is a titration"
                    },
                    "libraryKitId":{
                        "type":"string",
                        "description":"Library Kit GUID",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string",
                        "description":"Pooling Kit ID",
                        "example":"POL12"
                    }
                },
                "description":"Kit description and distribution setting"
            },
            "FormDtoV5":{
                "title":"FormDto v5.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV5"
                        }
                    }
                },
                "description":"Form Info"
            },
            "KitDtoV6":{
                "title":"KitDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV5"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV5"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV5"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV5"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    }
                },
                "description":"Kit details."
            },
            "RandomizationDtoV5":{
                "title":"RandomizationDto v5.0",
                "required":[
                    "details",
                    "settings"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Randomization VersionStart",
                        "format":"date-time",
                        "example":"2021-01-17T15:41:10.733Z"
                    },
                    "details":{
                        "$ref":"#/components/schemas/RandomizationDetailsV5"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationArmV5"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RandomizationVisitV5"
                        }
                    },
                    "settings":{
                        "$ref":"#/components/schemas/RandomizationSettingsV5"
                    }
                },
                "description":"Randomization Design Info"
            },
            "AllStudyVersionsObjectsDtoV5":{
                "title":"AllStudyVersionsObjectsDto v5.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "versions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/versions"
                        }
                    }
                },
                "description":"Objects of all study versions."
            },
            "DatahubArmKitVisitDto":{
                "type":"object",
                "properties":{
                    "armId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "componentSeq":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "visitDispensed":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "visitDnd":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "visitQuantity":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "visitDispenseOutsideWindow":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dosingId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubCodeListItemsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeListId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refName":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "itemSeq":{
                        "type":"number"
                    },
                    "valueRefId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codeListType":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "clCode":{
                        "type":"string"
                    },
                    "clValue":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubCodeListsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refName":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "codeListType":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubCohortDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "randId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "cohortRefname":{
                        "type":"string"
                    },
                    "cohortTitle":{
                        "type":"string"
                    },
                    "cohortDescription":{
                        "type":"string"
                    },
                    "cohortSeq":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubDataViewsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refName":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "repeatingInstanceId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "isNested":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "isShared":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "shortTitleRefId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "repeating":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dynamic":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "sourceDataviewId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string"
                    },
                    "sourceVersionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "isRuleCopied":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "formType":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "includeInSafetyCaseData":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "formCategory":{
                        "type":"string"
                    },
                    "formSubCategory":{
                        "type":"string"
                    },
                    "allowMultipleInstances":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubDosingCalculationDto":{
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "dosingName":{
                        "type":"string"
                    },
                    "visitType":{
                        "type":"string"
                    },
                    "dosingPrecision":{
                        "type":"number"
                    },
                    "dosingRoundUp":{
                        "type":"number"
                    },
                    "dosingFrequency":{
                        "type":"string"
                    },
                    "dosingLeftOverUnits":{
                        "type":"number"
                    },
                    "measurementKitValue":{
                        "type":"number"
                    },
                    "measurementSubjectValue":{
                        "type":"number"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubExtendedPropertiesDto":{
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "parentObjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "parentObjectLevel":{
                        "type":"string"
                    },
                    "propertyType":{
                        "type":"string"
                    },
                    "propertySource":{
                        "type":"string"
                    },
                    "propertyName":{
                        "type":"string"
                    },
                    "propertyValue":{
                        "type":"string"
                    },
                    "responseMapJson":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubFormItemsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "dataViewId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemType":{
                        "type":"string"
                    },
                    "refname":{
                        "type":"string"
                    },
                    "itemTitle":{
                        "type":"string"
                    },
                    "itemDescription":{
                        "type":"string"
                    },
                    "questionId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "objectVersionsId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sasVariable":{
                        "type":"string"
                    },
                    "sasLabelId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "hintId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "required":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "sdv":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "itemRules":{
                        "type":"string"
                    },
                    "length":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "precision":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "unitType":{
                        "type":"string"
                    },
                    "unitOfMeasurement":{
                        "type":"string"
                    },
                    "formula":{
                        "type":"string"
                    },
                    "dtFormat":{
                        "type":"string"
                    },
                    "dtRequired":{
                        "type":"string"
                    },
                    "choiceType":{
                        "type":"string"
                    },
                    "columnLayout":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "codelistItems":{
                        "type":"string"
                    },
                    "codeListId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "smartItemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "columnCnt":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "paneSize":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "ifThenFlag":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "excludedLocations":{
                        "type":"string"
                    },
                    "itemTags":{
                        "type":"string"
                    },
                    "componentSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "hidden":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "readOnly":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "groupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "groupItemSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "dynamic":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "source":{
                        "type":"string"
                    },
                    "allowAdditionalRows":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "labNormalsTag":{
                        "type":"string"
                    },
                    "clLabNormalsTag":{
                        "type":"string"
                    },
                    "applyChangeToVersion":{
                        "type":"string"
                    },
                    "instructionalText":{
                        "type":"string"
                    },
                    "allowFutureDate":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "existingDataCodeName":{
                        "type":"string"
                    },
                    "existingDataCodeValue":{
                        "type":"string"
                    },
                    "ehrMapping":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV9"
                        }
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubKitsDto":{
                "type":"object",
                "properties":{
                    "kitTitle":{
                        "type":"string"
                    },
                    "kitRefName":{
                        "type":"string"
                    },
                    "kitDescription":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "storageSetting":{
                        "type":"string"
                    },
                    "distributionSetting":{
                        "type":"string"
                    },
                    "trialSupplyType":{
                        "type":"string"
                    },
                    "unitsPerKit":{
                        "type":"number"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "bufferdays":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOutsideWindow":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "calculatingDoses":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "titratingDoses":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "singleUnitDoseValue":{
                        "type":"number",
                        "format":"double"
                    },
                    "singleUnitDoseUnits":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "titrationKit":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dosingFrequency":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "doseChangeUnschVisit":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "totalDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "timeBetweenUpDoseUnit":{
                        "type":"string"
                    },
                    "timeBetweenUpDoseVal":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "timeBetweenDownDoseUnit":{
                        "type":"string"
                    },
                    "timeBetweenDownDoseVal":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOnHighestDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOnHighestDoseMsgId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "dispenseOnLowestDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dispenseOnLowestDoseMsgId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "deviceType":{
                        "type":"string"
                    },
                    "deviceConnection":{
                        "type":"string"
                    },
                    "advancedDosing":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "libraryKitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubRandArmRatiosDto":{
                "type":"object",
                "properties":{
                    "randId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "armId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "optionalId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "componentSeq":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "armRatio":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "optionalType":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "armTitle":{
                        "type":"string"
                    },
                    "stratumTitle":{
                        "type":"string"
                    },
                    "randArms":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubRandCohortFactorDto":{
                "type":"object",
                "properties":{
                    "randCohortFactorId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "randId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "cohortId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "factorSeq":{
                        "type":"number"
                    },
                    "codelistitemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "factorCode":{
                        "type":"string"
                    },
                    "factorMax":{
                        "type":"number",
                        "format":"double"
                    },
                    "factorMin":{
                        "type":"number",
                        "format":"double"
                    },
                    "factorRange":{
                        "type":"string"
                    },
                    "factorValue":{
                        "type":"string"
                    },
                    "randTitle":{
                        "type":"string"
                    },
                    "cohortType":{
                        "type":"string"
                    },
                    "cohortTitle":{
                        "type":"string"
                    },
                    "cohortSeq":{
                        "type":"number"
                    },
                    "dataviewId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "dataviewTitle":{
                        "type":"string"
                    },
                    "itemTitle":{
                        "type":"string"
                    },
                    "question":{
                        "type":"string"
                    },
                    "itemType":{
                        "type":"string"
                    },
                    "codelistId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemRules":{
                        "type":"string"
                    },
                    "cohortItems":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    }
                }
            },
            "DatahubRandStratumFactorsDto":{
                "type":"object",
                "properties":{
                    "stratumId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "factorSeq":{
                        "type":"number"
                    },
                    "codelistitemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "factorCode":{
                        "type":"string"
                    },
                    "factorMax":{
                        "type":"number",
                        "format":"double"
                    },
                    "factorMin":{
                        "type":"number",
                        "format":"double"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "randId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "groupName":{
                        "type":"string"
                    },
                    "groupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubRandomizationDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "algorithmtype":{
                        "type":"string"
                    },
                    "assignskippedrandnumbs":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "cohorttype":{
                        "type":"string"
                    },
                    "limitscountearlyterm":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "randDescription":{
                        "type":"string"
                    },
                    "randRefname":{
                        "type":"string"
                    },
                    "randTitle":{
                        "type":"string"
                    },
                    "randomizeoutofkits":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "showarmlabels":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "randType":{
                        "type":"string"
                    },
                    "reRandomization":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "treatmentArms":{
                        "type":"string"
                    },
                    "assignNewRandnumbs":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "allowOutsideWindow":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStratumDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "randId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "stratumSeq":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "weight":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "randomizationType":{
                        "type":"string"
                    },
                    "objectType":{
                        "type":"string"
                    },
                    "objectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStringResourcesDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "locale":{
                        "type":"string"
                    },
                    "strValue":{
                        "type":"string"
                    },
                    "textIX":{
                        "type":"number"
                    },
                    "objectTypeWU":{
                        "type":"string"
                    },
                    "objectIdWU":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "columnNameWU":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStudyEventScheduleDto":{
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "sequence":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayDays":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayHours":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowBeforeDays":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowBeforeHours":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowAfterDays":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowAfterHours":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowHardstop":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "delayWindowVisitApproval":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "visitSequence":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "outOfWindowAlert":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStudyVersionsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "description":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "studyRefname":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "defaultLocale":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "revisionTimestamp":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "status":{
                        "type":"string"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "companyValue":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStudyVersionsHistoryDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "previousState":{
                        "type":"string"
                    },
                    "studyRefname":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionType":{
                        "type":"string"
                    },
                    "versionTitle":{
                        "type":"string"
                    },
                    "versionStatus":{
                        "type":"string"
                    },
                    "previousStatus":{
                        "type":"string"
                    },
                    "contractCode":{
                        "type":"string"
                    },
                    "copyStudyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "copyStudyVersion":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "studyDescription":{
                        "type":"string"
                    },
                    "studyPhase":{
                        "type":"string"
                    },
                    "studyState":{
                        "type":"string"
                    },
                    "studyTitle":{
                        "type":"string"
                    },
                    "therapeuticArea":{
                        "type":"string"
                    },
                    "versionHistory":{
                        "type":"string"
                    },
                    "blindingType":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubStudyeventFormDto":{
                "type":"object",
                "properties":{
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "componentStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "componentSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "visitTitle":{
                        "type":"string"
                    },
                    "formTitle":{
                        "type":"string"
                    },
                    "studyeventStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "formStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyeventEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyEventRefName":{
                        "type":"string"
                    },
                    "formRefName":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubTitrationKitsDto":{
                "type":"object",
                "properties":{
                    "titrationKitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "titrationKitLabelId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "titrationKitJson":{
                        "type":"string"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "downTitrationKitJson":{
                        "type":"string"
                    },
                    "maintainTitrationKitJson":{
                        "type":"string"
                    },
                    "upTitrationKitJson":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubTreatmentArmsDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "armRefName":{
                        "type":"string"
                    },
                    "armTitle":{
                        "type":"string"
                    },
                    "armDescription":{
                        "type":"string"
                    },
                    "armShortName":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubVisitBranchDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "shortName":{
                        "type":"string"
                    },
                    "isCycle":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "cycleCount":{
                        "type":"number"
                    },
                    "branchTier":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "branchIndex":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "startCycle":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "isRestartCycle":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubVisitDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "refname":{
                        "type":"string"
                    },
                    "title":{
                        "type":"string"
                    },
                    "shortName":{
                        "type":"string"
                    },
                    "description":{
                        "type":"string"
                    },
                    "eventType":{
                        "type":"string"
                    },
                    "typeOfEvent":{
                        "type":"string"
                    },
                    "visitSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "required":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "randomizationId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "repeating":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "repeatLimit":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "repeatingInstanceId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "eventTitleRefId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "shortTitleRefId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "layoutHints":{
                        "type":"string"
                    },
                    "startVisitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "versionStartPrecise":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "orderScore":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "schedSeq":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "scheduled":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "source":{
                        "type":"string"
                    },
                    "branchId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "timeLine":{
                        "type":"integer"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "StudyVersionObjectsDto":{
                "type":"object",
                "properties":{
                    "studyVersions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStudyVersionsDto"
                        }
                    },
                    "dataViews":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubDataViewsDto"
                        }
                    },
                    "formItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubFormItemsDto"
                        }
                    },
                    "visits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubVisitDto"
                        }
                    },
                    "kits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubKitsDto"
                        }
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubTitrationKitsDto"
                        }
                    },
                    "titrationExceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubTitrationExceptionsDto"
                        }
                    },
                    "treatmentArms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubTreatmentArmsDto"
                        }
                    },
                    "extendedProperties":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubExtendedPropertiesDto"
                        }
                    },
                    "randomizations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubRandomizationDto"
                        }
                    },
                    "randArmRatios":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubRandArmRatiosDto"
                        }
                    },
                    "stratum":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStratumDto"
                        }
                    },
                    "randStratumFactors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubRandStratumFactorsDto"
                        }
                    },
                    "cohorts":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubCohortDto"
                        }
                    },
                    "studyEventSchedules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStudyEventScheduleDto"
                        }
                    },
                    "studyEventForms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStudyeventFormDto"
                        }
                    },
                    "dosingCalculations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubDosingCalculationDto"
                        }
                    },
                    "armKitVisits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubArmKitVisitDto"
                        }
                    },
                    "randCohortFactors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubRandCohortFactorDto"
                        }
                    },
                    "stringResources":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStringResourcesDto"
                        }
                    },
                    "codeLists":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubCodeListsDto"
                        }
                    },
                    "codeListItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubCodeListItemsDto"
                        }
                    },
                    "studyVersionsHistories":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubStudyVersionsHistoryDto"
                        }
                    },
                    "branches":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubVisitBranchDto"
                        }
                    },
                    "advanceDosingGroups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubAdvanceDosingGroupDto"
                        }
                    },
                    "advanceDosingGroupCriterias":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubAdvanceDosingGroupCriteriaDto"
                        }
                    },
                    "advanceDosingGroupKitSettings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubAdvanceDosingGroupKitSettingDto"
                        }
                    },
                    "validationRules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DatahubValidationRulesDto"
                        }
                    }
                }
            },
            "versions":{
                "title":"VersionObjectsDto v9.0",
                "type":"object",
                "properties":{
                    "version":{
                        "type":"string"
                    },
                    "studyVersionObjects":{
                        "$ref":"#/components/schemas/StudyVersionObjectsDto"
                    }
                },
                "description":"Objects information of all study versions."
            },
            "VisitDtoV5":{
                "title":"VisitDto v5.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    }
                },
                "description":"Visit design."
            },
            "FormChoiceItemDtoV7":{
                "title":"FormChoiceItemDto v7.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV7"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV7"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV7":{
                "title":"FormDatetimeItemDto v7.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV7"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV7":{
                "title":"FormDto v7.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV7"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemDtoV7":{
                "title":"FormItemDto v7.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV7",
                        "numeric":"#/components/schemas/FormNumberItemDtoV7",
                        "measurement":"#/components/schemas/FormNumberItemDtoV7",
                        "text":"#/components/schemas/FormTextItemDtoV7",
                        "choice":"#/components/schemas/FormChoiceItemDtoV7"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV7"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV7"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV7"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV7"
                    }
                ]
            },
            "FormNumberItemDtoV7":{
                "title":"FormNumberItemDto v7.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV7"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV7":{
                "title":"FormOptionDto v7.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormTextItemDtoV7":{
                "title":"FormTextItemDto v7.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV7"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "ArmKitVisitTitrationDtoV6":{
                "title":"ArmKitVisitTitrationDto v3.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit Type Id",
                        "example":"Kit A 20mg"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "type":"integer",
                        "description":"Visit Quantity",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Kit dispensations for a titration group."
            },
            "KitDtoV7":{
                "title":"KitDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV5"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV5"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV5"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV5"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    },
                    "exceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV5"
                        }
                    }
                },
                "description":"Kit details."
            },
            "StudyDesignDtoV6":{
                "title":"StudyDesignDto v6.0",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV6"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v6.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v14.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov14"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov14"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"STANDARD_FORM",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM",
                                    "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov14"
                                }
                            },
                            "showFrom":{
                                "type":"array",
                                "description":"show dynamic parent from forms of same visit",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov14"
                                }
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormSummaryDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "title":{
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemSummaryDtoV1"
                                }
                            }
                        },
                        "description":"Reduced form properties"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVersionVisitDtoV6":{
                "title":"StudyVersionVisitDto v6.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "StudyVisitWithFormIdsDtoV6":{
                "title":"StudyVisitScheduleWithFormIdsDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "visitSchedule":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"List of visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit forms IDs",
                            "format":"uuid"
                        }
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "AllStudyVersionsObjectsDtoV9":{
                "title":"AllStudyVersionsObjectsDto v9.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "versions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/versions"
                        }
                    }
                },
                "description":"Objects of all study versions."
            },
            "DatahubAdvanceDosingGroupCriteriaDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "groupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "criteriaType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "visitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "questionId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "variableId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "choiceAnswer":{
                        "type":"string"
                    },
                    "variableTimePeriod":{
                        "type":"string"
                    },
                    "variableDate":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "variableValues":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubAdvanceDosingGroupDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "groupName":{
                        "type":"string"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "instructions":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubAdvanceDosingGroupKitSettingDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "groupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "dosingId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubTitrationExceptionsDto":{
                "type":"object",
                "properties":{
                    "kitId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "startingDoseJson":{
                        "type":"string"
                    },
                    "endingDoseJson":{
                        "type":"string"
                    },
                    "sequence":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "minTimeBetweenDose":{
                        "type":"integer",
                        "format":"int64"
                    },
                    "minTimeBetweenDoseUnit":{
                        "type":"string"
                    },
                    "exceptionType":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "DatahubValidationRulesDto":{
                "type":"object",
                "properties":{
                    "versionStart":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "parentObjectId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "parentObjectLevel":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "ruleType":{
                        "type":"string"
                    },
                    "valueType":{
                        "type":"string"
                    },
                    "value":{
                        "type":"string"
                    },
                    "valueList":{
                        "type":"string"
                    },
                    "lowerValue":{
                        "type":"string"
                    },
                    "upperValue":{
                        "type":"string"
                    },
                    "operationType":{
                        "type":"string"
                    },
                    "objectVersionNumber":{
                        "type":"number"
                    },
                    "softwareVersionNumber":{
                        "type":"number"
                    },
                    "versionEnd":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "reason":{
                        "type":"string"
                    },
                    "comment":{
                        "type":"string"
                    },
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    }
                }
            },
            "VisitDtoV6":{
                "title":"VisitDto v6.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    }
                },
                "description":"Visit design."
            },
            "BranchDesignDTOV7":{
                "type":"object",
                "properties":{
                    "branch":{
                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                    },
                    "visits":{
                        "type":"array",
                        "description":"The visits in this branch",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV7"
                        }
                    }
                },
                "description":"Branch Design properties"
            },
            "VisitBranchDesignDtoV7":{
                "type":"object",
                "properties":{
                    "scheduledVisits":{
                        "type":"array",
                        "description":"scheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV7"
                        }
                    },
                    "branchVisits":{
                        "type":"array",
                        "description":"branches",
                        "items":{
                            "type":"array",
                            "description":"branches",
                            "items":{
                                "$ref":"#/components/schemas/BranchDesignDTOV7"
                            }
                        }
                    },
                    "unscheduledVisits":{
                        "type":"array",
                        "description":"unscheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV7"
                        }
                    }
                },
                "description":"Visit Design branches"
            },
            "VisitDesignAssignedFormsDTOV7":{
                "title":"VisitDesignAssignedFormsDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design assigned forms count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design assigned forms properties"
            },
            "VisitDesignDispensingDtoV7":{
                "title":"VisitDesignDispensingDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design titration count",
                        "format":"int32",
                        "example":1
                    },
                    "deviceCount":{
                        "type":"integer",
                        "description":"Visit Design device count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design dispensing properties"
            },
            "VisitDesignDtoV7":{
                "title":"VisitDesignDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV7"
                    },
                    "scheduling":{
                        "title":"VisitDesignSchedulingDto v7.0",
                        "type":"object",
                        "properties":{
                            "fromVisitId":{
                                "type":"string",
                                "description":"Visit Design from visit GUID",
                                "format":"uuid"
                            },
                            "branchId":{
                                "type":"string",
                                "description":"bbranch GUID",
                                "format":"uuid"
                            },
                            "delay":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "beforeDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "afterDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            }
                        },
                        "description":"Visit Design scheduling properties"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV7"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDTOV7"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV7"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV7":{
                "title":"VisitDesignRandomizationDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"1"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit Design randomization visit GUID's",
                        "example":"55C8628FB6594912B3214E294A5D4E9F",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    },
                    "algorithmType":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"1"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"1"
                    }
                },
                "description":"Visit Design randomization properties"
            },
            "VisitDesignSchedulingDtoV7":{
                "title":"VisitDesignSchedulingDto v7.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design from visit GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"bbranch GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    }
                },
                "description":"Visit Design scheduling properties"
            },
            "VisitDesignStateDtoV7":{
                "title":"VisitDesignStateDto v7.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Visit Design dynamic state",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Visit Design repeating state",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Visit Design required state",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Visit Design lastRequired state",
                        "example":false
                    }
                },
                "description":"Visit Design state properties"
            },
            "FormVisitDtoV7":{
                "title":"FormVisitDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of forms",
                        "items":{
                            "$ref":"#/components/schemas/VisitFormDtoV4"
                        }
                    }
                },
                "description":"Form Visits Information"
            },
            "VisitFormDtoV4":{
                "title":"VisitFormDto v4.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Visit Design form GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "formRefName":{
                        "type":"string",
                        "description":"Form RefName",
                        "example":"Demography"
                    },
                    "fields":{
                        "type":"integer",
                        "description":"Number of form's fields",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Visit design forms."
            },
            "FormChoiceItemDtoV8":{
                "title":"FormChoiceItemDto v8.0",
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Choice Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV8"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox",
                                "type":"string",
                                "description":"Form choice item display in UI - Selectbox.",
                                "example":"selectbox"
                            },
                            "options":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDtoV8"
                                }
                            }
                        }
                    }
                ]
            },
            "FormDatetimeItemDtoV8":{
                "title":"FormDatetimeItemDto v8.0",
                "required":[
                    "format",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form DateTime Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV8"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "pattern":"yyyy|MMM-yyyy|dd-MMM-yyyy|dd-MMM-yyyy HH:mm",
                                "type":"string",
                                "description":"Date time format",
                                "example":"DD-MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial date",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "pattern":"yyyy|MMM-yyyy",
                                "type":"string",
                                "description":"Partial date format",
                                "example":"Jan-1993"
                            }
                        }
                    }
                ]
            },
            "FormDtoV8":{
                "title":"FormDto v8.0",
                "required":[
                    "refname",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form refname",
                        "example":"FORM_01"
                    },
                    "repeat":{
                        "type":"boolean",
                        "description":"Form repeating?",
                        "example":false
                    },
                    "items":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemDtoV8"
                        }
                    }
                },
                "description":"Form Info"
            },
            "FormItemAdvancedPropDtoV8":{
                "title":"From Item Advanced Property v8.0",
                "required":[
                    "name",
                    "value"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Extended Property ID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":255,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property name",
                        "example":"RolloverQuestionStudyId"
                    },
                    "value":{
                        "maxLength":2048,
                        "minLength":1,
                        "type":"string",
                        "description":"Advanced property value. For example, rollover study UUID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"Rollover study name",
                        "example":"Rollover Study BT-31"
                    },
                    "rules":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropRuleDtoV8"
                        }
                    }
                },
                "description":"Form Item Advanced Property"
            },
            "FormItemAdvancedPropRuleDtoV8":{
                "title":"From Item Advanced Property Rule v8.0",
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "description":"name",
                        "example":"RolloverQuestionAnswer"
                    },
                    "value":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.CODELISTITEM_ID",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    },
                    "label":{
                        "type":"string",
                        "description":"For RolloverQuestion property it is an ECDV_CODELISTITEM.VALUE",
                        "example":"Yes"
                    }
                },
                "description":"Form Item Advanced Property Rule"
            },
            "FormItemDtoV8":{
                "title":"FormItemDto v8.0",
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "isCohortFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization cohort or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "hidden":{
                        "type":"boolean",
                        "description":"Is form item hidden?",
                        "example":false
                    },
                    "readOnly":{
                        "type":"boolean",
                        "description":"Is form item read only?",
                        "example":false
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    },
                    "groupSequence":{
                        "type":"integer",
                        "description":"Group sequence.",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item Unique GUID",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string",
                        "description":"Smart item formula.",
                        "example":"[{'ruleName':'AGE','ruleExpression':'AgeInYears(AGE_DOB_01, visitDate)'}]"
                    },
                    "smartObject":{
                        "type":"string",
                        "description":"Smart object.",
                        "example":"AGE"
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV8"
                        }
                    },
                    "questionType":{
                        "type":"string"
                    }
                },
                "description":"Form Item Information",
                "discriminator":{
                    "propertyName":"questionType",
                    "mapping":{
                        "datetime":"#/components/schemas/FormDatetimeItemDtoV8",
                        "numeric":"#/components/schemas/FormNumberItemDtoV8",
                        "measurement":"#/components/schemas/FormNumberItemDtoV8",
                        "text":"#/components/schemas/FormTextItemDtoV8",
                        "choice":"#/components/schemas/FormChoiceItemDtoV8",
                        "questionGroup":"#/components/schemas/FormQuestionGroupItemDtoV8"
                    }
                },
                "oneOf":[
                    {
                        "$ref":"#/components/schemas/FormNumberItemDtoV8"
                    },
                    {
                        "$ref":"#/components/schemas/FormChoiceItemDtoV8"
                    },
                    {
                        "$ref":"#/components/schemas/FormTextItemDtoV8"
                    },
                    {
                        "$ref":"#/components/schemas/FormDatetimeItemDtoV8"
                    },
                    {
                        "$ref":"#/components/schemas/FormQuestionGroupItemDtoV8"
                    }
                ]
            },
            "FormNumberItemDtoV8":{
                "title":"FormNumberItemDto v8.0",
                "required":[
                    "precision",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Number Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV8"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "description":"Number value precision",
                                "format":"int32",
                                "example":1
                            },
                            "units":{
                                "type":"string",
                                "description":"Units of measure",
                                "example":"kg"
                            }
                        }
                    }
                ]
            },
            "FormOptionDtoV8":{
                "title":"FormOptionDto v8.0",
                "type":"object",
                "properties":{
                    "label":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form choice selectbox label for a one specific choice.",
                        "example":"Female"
                    },
                    "value":{
                        "maxLength":4000,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Form choice selectbox value for a one specific choice.",
                        "example":"1"
                    }
                },
                "description":"Form choice item option details"
            },
            "FormQuestionGroupItemDtoV8":{
                "title":"FormQuestionGroupItemDto v8.0",
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Question Group Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV8"
                    }
                ]
            },
            "FormTextItemDtoV8":{
                "title":"FormTextItemDto v8.0",
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form text Item Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDtoV8"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "description":"Form text item max length",
                                "format":"int32",
                                "example":4000
                            },
                            "multiline":{
                                "type":"boolean",
                                "description":"Is form text item multiline",
                                "example":false
                            }
                        }
                    }
                ]
            },
            "KitDosingDoseDtoV8":{
                "title":"KitDosingDoseDto v8.0",
                "type":"object",
                "properties":{
                    "precision":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "roundUp":{
                        "type":"integer",
                        "description":"Rounded up for dosing calculation",
                        "format":"int32",
                        "example":1
                    },
                    "frequency":{
                        "type":"string",
                        "description":"Dosing frequency",
                        "example":"Before bedtime"
                    },
                    "leftOverUnits":{
                        "type":"boolean",
                        "description":"Use leftover units in next dose",
                        "example":true
                    }
                },
                "description":"Dose information on the calculated dose."
            },
            "KitDosingDtoV8":{
                "title":"KitDosingDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Dosing display name",
                        "example":"Name"
                    },
                    "question":{
                        "$ref":"#/components/schemas/KitDosingQuestionDtoV8"
                    },
                    "visit":{
                        "$ref":"#/components/schemas/KitDosingVisitDtoV8"
                    },
                    "dose":{
                        "$ref":"#/components/schemas/KitDosingDoseDtoV8"
                    },
                    "measurement":{
                        "$ref":"#/components/schemas/KitDosingMeasurementDtoV8"
                    }
                },
                "description":"Information on a calculated dose."
            },
            "KitDosingMeasurementDtoV8":{
                "title":"KitDosingMeasurementDto v8.0",
                "type":"object",
                "properties":{
                    "kit":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV8"
                    },
                    "subject":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV8"
                    }
                },
                "description":"Kit and subject measurement information on a calculated dose."
            },
            "KitDosingQuestionDtoV8":{
                "title":"KitDosingQuestionDto v8.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"The form Id",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"The question Id",
                        "format":"uuid"
                    }
                },
                "description":"Form and question information on the calculated dose."
            },
            "KitDosingValueUnitsDtoV8":{
                "title":"KitDosingValueUnitsDto v8.0",
                "type":"object",
                "properties":{
                    "value":{
                        "type":"number",
                        "description":"The value of a measurement",
                        "format":"double",
                        "example":50
                    },
                    "units":{
                        "type":"string",
                        "description":"The unit of a measurement",
                        "example":"mg"
                    }
                },
                "description":"Describes the value/unit pair of the measurement on the calculated dose."
            },
            "KitDosingVisitDtoV8":{
                "title":"KitDosingVisitDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"The visit Id",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"The type of visit, eg. screening, scheduled, or current",
                        "example":"screening"
                    }
                },
                "description":"Visit information on the calculated dose."
            },
            "KitDtoV9":{
                "title":"KitDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV8"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV8"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV8"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV8"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    },
                    "exceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV8"
                        }
                    },
                    "advancedDosing":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "advancedDosingGroups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupDtoV1"
                        }
                    },
                    "libraryKitId":{
                        "type":"string",
                        "description":"Library Kit GUID",
                        "format":"uuid"
                    },
                    "poolingId":{
                        "type":"string",
                        "description":"Pooling Kit ID",
                        "example":"POL12"
                    }
                },
                "description":"Kit details."
            },
            "KitSettingsDtoV8":{
                "title":"KitSettingsDto v8.0",
                "type":"object",
                "properties":{
                    "deviceType":{
                        "type":"string",
                        "description":"Indicates type of device in case of device kit",
                        "example":"Blood pressure monitor"
                    },
                    "deviceConn":{
                        "type":"string",
                        "description":"Indicates device connection in case of device kit",
                        "example":"Cloud to Cloud"
                    },
                    "calculatingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has calculating doses",
                        "example":true
                    },
                    "titratingDoses":{
                        "type":"boolean",
                        "description":"Indicates if the kit has titrating doses",
                        "example":true
                    },
                    "titrationKit":{
                        "type":"boolean",
                        "description":"Indicates if the kit is a titration kit",
                        "example":true
                    },
                    "distributionSetting":{
                        "type":"string",
                        "description":"Indicates if the kit blinded or unblinded",
                        "example":"BLINDED"
                    },
                    "kitTypeId":{
                        "type":"string",
                        "description":"The kit type id",
                        "example":"Type"
                    },
                    "kitDescription":{
                        "type":"string",
                        "description":"The kit description",
                        "example":"ORS-123(IP 0.01%)"
                    },
                    "storageSetting":{
                        "type":"string",
                        "description":"The storage temperature",
                        "example":"AMBIENT"
                    },
                    "trialSupplyType":{
                        "type":"string",
                        "description":"The kit type",
                        "example":"BOTTLE"
                    },
                    "minShipUnits":{
                        "type":"integer",
                        "description":"The minimum kit to ship",
                        "format":"int64",
                        "example":10
                    },
                    "bufferdays":{
                        "type":"integer",
                        "description":"The number of buffer days",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseOutsideWindow":{
                        "type":"boolean",
                        "description":"Indicates if the kit may be dispensed outside the window",
                        "example":false
                    },
                    "dosingFrequency":{
                        "type":"boolean",
                        "description":"Indicates if the titration kit has dosing frequencies defined",
                        "example":true
                    },
                    "doseChangeUnschVisit":{
                        "type":"boolean",
                        "description":"Indicates if dosage change is allowed in an unscheduled visit for the titration kit",
                        "example":false
                    },
                    "maxDoseChanges":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDose":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit",
                        "format":"int64",
                        "example":2
                    },
                    "totalDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of dosage changes allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":3
                    },
                    "upTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of up titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":1
                    },
                    "downTitrateDoseUnscheduled":{
                        "type":"integer",
                        "description":"The maximum number of down titrate dosage change allowed for the titration kit for unscheduled visits",
                        "format":"int64",
                        "example":2
                    },
                    "timeBetweenUpDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between up dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenUpDoseChanges":{
                        "type":"integer",
                        "description":"Time between up dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenUpDoseChangesException":{
                        "type":"boolean",
                        "description":"Time between up dosage changes exception",
                        "format":"true",
                        "example":true
                    },
                    "timeBetweenDownDoseChangesUnit":{
                        "type":"string",
                        "description":"Unit for time between down dosage changes",
                        "example":"DAYS"
                    },
                    "timeBetweenDownDoseChanges":{
                        "type":"integer",
                        "description":"Time between down dosage changes",
                        "format":"int64",
                        "example":20
                    },
                    "timeBetweenDownDoseChangesException":{
                        "type":"boolean",
                        "description":"Time between down dosage changes exception",
                        "format":"true",
                        "example":true
                    },
                    "dispenseOnHighestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on up titrate when already on highest dose",
                        "example":true
                    },
                    "dispenseOnLowestDose":{
                        "type":"boolean",
                        "description":"Indicates if dispensation should happen on down titrate when already on lowest dose",
                        "example":true
                    },
                    "dispenseOnHighestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on up titrate when subject is on highest dose",
                        "example":"Message when subject is on highest dose"
                    },
                    "dispenseOnLowestDoseMsg":{
                        "type":"string",
                        "description":"Message to user on down titrate when subject is on lowest dose",
                        "example":"Message when subject is on lowest dose"
                    }
                },
                "description":"Contains settings information on the kit."
            },
            "KitTitrationsDtoV8":{
                "title":"KitTitrationsDto v8.0",
                "type":"object",
                "properties":{
                    "rowId":{
                        "type":"string",
                        "description":"Id of the titration row",
                        "format":"uuid"
                    },
                    "titrationKitId":{
                        "type":"string",
                        "description":"Id of the current titration kit",
                        "format":"uuid"
                    },
                    "titrationKitLabel":{
                        "type":"string",
                        "description":"Custom optional Dose Level title to indicate a dose level for a row within a Titration Group",
                        "example":"Low Dose"
                    },
                    "titrationKitSeq":{
                        "type":"integer",
                        "description":"Sequence number of the current titration row within the kit",
                        "format":"int64",
                        "example":5
                    },
                    "titrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV8"
                    },
                    "upTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV8"
                    },
                    "maintainTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV8"
                    },
                    "downTitrationKitJson":{
                        "$ref":"#/components/schemas/TitrationKitItemsDtoV8"
                    }
                },
                "description":"Contains titrations information on the titration kit."
            },
            "KitUnitSettingsDtoV8":{
                "title":"KitUnitSettingsDto v8.0",
                "type":"object",
                "properties":{
                    "unitsPerKit":{
                        "type":"number",
                        "description":"The number of units per kit",
                        "format":"double",
                        "example":20
                    },
                    "singleUnitDose":{
                        "$ref":"#/components/schemas/KitDosingValueUnitsDtoV8"
                    }
                },
                "description":"Contains unit settings information on the kit."
            },
            "TitrationKitItemDtoV8":{
                "title":"TitrationKitItemDto v8.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSeq":{
                        "type":"integer",
                        "description":"Kit Sequence",
                        "format":"int64",
                        "example":1
                    },
                    "kitDosage":{
                        "type":"string",
                        "description":"Kit Dosage",
                        "example":"QD"
                    },
                    "dosageId":{
                        "type":"string",
                        "description":"Dosage Id",
                        "example":"B1B8327AFAA6412287106192AB5984EF"
                    }
                },
                "description":"Titration Kit Item"
            },
            "TitrationKitItemsDtoV8":{
                "title":"TitrationKitItemsDto v8.0",
                "type":"object",
                "properties":{
                    "titrationKitItems":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/TitrationKitItemDtoV8"
                        }
                    }
                },
                "description":"Titration Kit Items"
            },
            "StudyDesignDtoV7":{
                "title":"StudyDesignDto v7.0",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV7"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v7.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v15.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov15"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov15"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"STANDARD_FORM",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM",
                                    "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov15"
                                }
                            },
                            "showFrom":{
                                "type":"array",
                                "description":"show dynamic parent from forms of same visit",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov15"
                                }
                            },
                            "assignedVisits":{
                                "type":"array",
                                "description":"branch cycle information describing the visits on which the forms are displayed",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov15"
                                }
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormSummaryDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "title":{
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemSummaryDtoV1"
                                }
                            }
                        },
                        "description":"Reduced form properties"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVersionVisitDtoV7":{
                "title":"StudyVersionVisitDto v7.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "StudyVisitWithFormIdsDtoV7":{
                "title":"StudyVisitScheduleWithFormIdsDto v7.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Branch GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit shortname",
                        "example":"W2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "branchTitle":{
                        "type":"string",
                        "description":"Branch title",
                        "example":"Branch1"
                    },
                    "branchShortName":{
                        "type":"string",
                        "description":"Visit Branch shortName",
                        "example":"Br1"
                    },
                    "branchIsCycle":{
                        "type":"boolean",
                        "description":"The branch is cyclic or acyclic",
                        "example":true
                    },
                    "startCycle":{
                        "type":"integer",
                        "description":"Start Cycle Number",
                        "format":"int32"
                    },
                    "visitSchedule":{
                        "$ref":"#/components/schemas/StudyVisitScheduleDtoV7"
                    },
                    "formIds":{
                        "type":"array",
                        "description":"List of visit forms IDs",
                        "format":"uuid",
                        "example":[
                            "938D23FA6B7241CCA41BD627E5DB60DA",
                            "699EF3745FC545589F186D2198F3C65E"
                        ],
                        "items":{
                            "type":"string",
                            "description":"List of visit forms IDs",
                            "format":"uuid"
                        }
                    },
                    "cycleCount":{
                        "type":"number",
                        "description":"number of times a branch can cycle",
                        "example":10
                    }
                },
                "description":"Information about visit schedule and visit forms id ."
            },
            "StudyDesignPaginationDto":{
                "type":"object",
                "properties":{
                    "limit":{
                        "type":"integer",
                        "description":"Maximum number of records to display per page.",
                        "format":"int32",
                        "example":50
                    },
                    "offset":{
                        "type":"integer",
                        "description":"An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.",
                        "format":"int32",
                        "example":5
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                }
            },
            "VisitDtoV7":{
                "title":"VisitDto v7.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "branchTitle":{
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[a-zA-Z0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    }
                },
                "description":"Visit design."
            },
            "ArmKitVisitDtoV6":{
                "title":"ArmKitVisitDto v6.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV6"
                        }
                    }
                },
                "description":"Visit kit dispensation per treatment arm."
            },
            "BranchDesignDTOV8":{
                "type":"object",
                "properties":{
                    "branch":{
                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                    },
                    "visits":{
                        "type":"array",
                        "description":"The visits in this branch",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV8"
                        }
                    }
                },
                "description":"Branch Design properties"
            },
            "VisitBranchDesignDtoV8":{
                "type":"object",
                "properties":{
                    "scheduledVisits":{
                        "type":"array",
                        "description":"scheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV8"
                        }
                    },
                    "branchVisits":{
                        "type":"array",
                        "description":"branches",
                        "items":{
                            "type":"array",
                            "description":"branches",
                            "items":{
                                "$ref":"#/components/schemas/BranchDesignDTOV8"
                            }
                        }
                    },
                    "unscheduledVisits":{
                        "type":"array",
                        "description":"unscheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV8"
                        }
                    }
                },
                "description":"Visit Design branches"
            },
            "VisitDesignAssignedFormsDTOV8":{
                "title":"VisitDesignAssignedFormsDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design assigned forms count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design assigned forms properties"
            },
            "VisitDesignDtoV8":{
                "title":"VisitDesignDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV8"
                    },
                    "scheduling":{
                        "title":"VisitDesignSchedulingDto v8.0",
                        "type":"object",
                        "properties":{
                            "fromVisitId":{
                                "type":"string",
                                "description":"Visit Design from visit GUID",
                                "format":"uuid"
                            },
                            "branchId":{
                                "type":"string",
                                "description":"bbranch GUID",
                                "format":"uuid"
                            },
                            "delay":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "beforeDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "afterDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            }
                        },
                        "description":"Visit Design scheduling properties"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV8"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDTOV8"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV7"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignRandomizationDtoV8":{
                "title":"VisitDesignRandomizationDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design randomization unique GUID",
                        "format":"uuid"
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit Design randomization type",
                        "example":"1"
                    },
                    "visits":{
                        "type":"array",
                        "description":"Visit Design randomization visit GUID's",
                        "example":"55C8628FB6594912B3214E294A5D4E9F",
                        "items":{
                            "type":"string",
                            "description":"Visit Design randomization visit GUID's",
                            "format":"uuid"
                        }
                    },
                    "algorithmType":{
                        "type":"string",
                        "description":"Visit Design allow randomization algorithm type",
                        "example":"1"
                    },
                    "treatmentArms":{
                        "type":"string",
                        "description":"Visit Design allow randomization treatment arms to be remapped",
                        "example":"1"
                    }
                },
                "description":"Visit Design randomization properties"
            },
            "VisitDesignSchedulingDtoV8":{
                "title":"VisitDesignSchedulingDto v8.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design from visit GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"bbranch GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    }
                },
                "description":"Visit Design scheduling properties"
            },
            "VisitDesignStateDtoV8":{
                "title":"VisitDesignStateDto v9.0",
                "type":"object",
                "properties":{
                    "dynamic":{
                        "type":"boolean",
                        "description":"Visit Design dynamic state",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Visit Design repeating state",
                        "example":false
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Visit Design required state",
                        "example":true
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Visit Design lastRequired state",
                        "example":false
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design state properties"
            },
            "FormVisitDtoV8":{
                "title":"FormVisitDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "forms":{
                        "type":"array",
                        "description":"List of forms",
                        "items":{
                            "$ref":"#/components/schemas/VisitFormDtoV4"
                        }
                    }
                },
                "description":"Form Visits Information"
            },
            "KitDtoV8":{
                "title":"KitDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitSettings":{
                        "$ref":"#/components/schemas/KitSettingsDtoV8"
                    },
                    "kitUnitSettings":{
                        "$ref":"#/components/schemas/KitUnitSettingsDtoV8"
                    },
                    "kitTitrations":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV8"
                        }
                    },
                    "dosings":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitDosingDtoV8"
                        }
                    },
                    "dosage":{
                        "type":"number",
                        "description":"Dosage.",
                        "format":"double",
                        "example":50
                    },
                    "isDefault":{
                        "type":"boolean",
                        "description":"Is kit default.",
                        "example":true
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "studyVersionEnd":{
                        "type":"string",
                        "description":"Study version end",
                        "format":"date-time"
                    },
                    "exceptions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/KitTitrationsDtoV8"
                        }
                    },
                    "advancedDosing":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "advancedDosingGroups":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/AdvancedDosingGroupDtoV1"
                        }
                    }
                },
                "description":"Kit details."
            },
            "StudyDesignDtoV8":{
                "title":"StudyDesignDto v8.0",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV8"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v8.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV8"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v16.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov16"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov16"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"STANDARD_FORM",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM",
                                    "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov16"
                                }
                            },
                            "showFrom":{
                                "type":"array",
                                "description":"show dynamic parent from forms of same visit",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov16"
                                }
                            },
                            "assignedVisits":{
                                "type":"array",
                                "description":"branch cycle information describing the visits on which the forms are displayed",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                                }
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormSummaryDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "title":{
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemSummaryDtoV1"
                                }
                            }
                        },
                        "description":"Reduced form properties"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyVersionVisitDtoV8":{
                "title":"StudyVersionVisitDto v7.0",
                "type":"object",
                "properties":{
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"version",
                        "example":"1.3.0.6"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study name",
                        "example":"Study 03"
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "visitId":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Information about a visit in a study version."
            },
            "StudyVisitScheduleDtoV8":{
                "title":"StudyVisitScheduleDto v8.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version start",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version end",
                        "format":"date-time"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersionStart":{
                        "type":"string",
                        "description":"Study version start",
                        "format":"date-time"
                    },
                    "visitScheduleId":{
                        "type":"string",
                        "description":"Visit schedule GUID",
                        "format":"uuid"
                    },
                    "randomizationId":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "fromVisitId":{
                        "type":"string",
                        "description":"Scheduled from visit GUID",
                        "format":"uuid"
                    },
                    "fromVisitTitle":{
                        "type":"string",
                        "description":"Scheduled from visit title",
                        "example":"Week1"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week2"
                    },
                    "refName":{
                        "type":"string",
                        "description":"Country name",
                        "example":"WEEK2"
                    },
                    "screening":{
                        "type":"integer",
                        "description":"1 - visit is screening",
                        "format":"int32",
                        "example":1
                    },
                    "formCount":{
                        "type":"integer",
                        "description":"Visit forms count",
                        "format":"int32",
                        "example":1
                    },
                    "kitCount":{
                        "type":"integer",
                        "description":"Visit kits count",
                        "format":"int32",
                        "example":1
                    },
                    "dynamic":{
                        "type":"boolean",
                        "description":"Yes - if visit dynamic.",
                        "example":false
                    },
                    "repeating":{
                        "type":"boolean",
                        "description":"Yes - if visit repeating.",
                        "example":false
                    },
                    "required":{
                        "type":"integer",
                        "description":"Visit scheduling delay window after (hours).",
                        "format":"int32",
                        "example":1
                    },
                    "type":{
                        "type":"string",
                        "description":"Visit type",
                        "example":"ONSITE"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if visit last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Event randomization type",
                        "example":"Blinded"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Event short name",
                        "example":"Week2"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "sequenced":{
                        "type":"integer",
                        "format":"int32"
                    }
                },
                "description":"Study visit schedule details."
            },
            "StudyDesignDtoV9":{
                "title":"StudyDesignDto v9.0",
                "type":"object",
                "properties":{
                    "studyVersionVisit":{
                        "$ref":"#/components/schemas/StudyVersionVisitDtoV9"
                    },
                    "visits":{
                        "title":"StudyVisitScheduleWithFormIdsDto v8.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Branch GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "type":"string",
                                "description":"Visit title",
                                "example":"Week2"
                            },
                            "shortName":{
                                "type":"string",
                                "description":"Visit shortname",
                                "example":"W2"
                            },
                            "fullName":{
                                "type":"string",
                                "description":"Concatenation of Visit Title and Branch title with hypen",
                                "example":"B1C01 - V01"
                            },
                            "eventType":{
                                "type":"string",
                                "description":"Visit event type",
                                "example":"ScreeningVisit"
                            },
                            "branchTitle":{
                                "type":"string",
                                "description":"Branch title",
                                "example":"Branch1"
                            },
                            "branchShortName":{
                                "type":"string",
                                "description":"Visit Branch shortName",
                                "example":"Br1"
                            },
                            "branchIsCycle":{
                                "type":"boolean",
                                "description":"The branch is cyclic or acyclic",
                                "example":true
                            },
                            "startCycle":{
                                "type":"integer",
                                "description":"Start Cycle Number",
                                "format":"int32"
                            },
                            "visitSchedule":{
                                "$ref":"#/components/schemas/StudyVisitScheduleDtoV9"
                            },
                            "formIds":{
                                "type":"array",
                                "description":"List of visit forms IDs",
                                "format":"uuid",
                                "example":[
                                    "938D23FA6B7241CCA41BD627E5DB60DA",
                                    "699EF3745FC545589F186D2198F3C65E"
                                ],
                                "items":{
                                    "type":"string",
                                    "description":"List of visit forms IDs",
                                    "format":"uuid"
                                }
                            },
                            "cycleCount":{
                                "type":"number",
                                "description":"number of times a branch can cycle",
                                "example":10
                            }
                        },
                        "description":"Information about visit schedule and visit forms id ."
                    },
                    "forms":{
                        "title":"FormDto v16.0",
                        "required":[
                            "refname",
                            "title"
                        ],
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "title":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "refname":{
                                "maxLength":64,
                                "minLength":1,
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "repeat":{
                                "type":"boolean",
                                "description":"Form repeating?",
                                "example":false
                            },
                            "source":{
                                "$ref":"#/components/schemas/FormCopySourceDtov16"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDtov16"
                                }
                            },
                            "versionStart":{
                                "type":"string",
                                "description":"The form's version date",
                                "format":"date-time"
                            },
                            "dynamic":{
                                "type":"integer",
                                "description":"Count of forms items that point to this form for Show Form feature",
                                "format":"int32",
                                "example":4
                            },
                            "formType":{
                                "type":"string",
                                "description":"Form type",
                                "example":"STANDARD_FORM",
                                "enum":[
                                    "STANDARD_FORM",
                                    "LAB_FORM",
                                    "TWO_SECTION_FORM",
                                    "DRUG_RECONCILIATION_FORM",
                                    "STANDARD_FORM, LAB_FORM, TWO_SECTION_FORM"
                                ]
                            },
                            "hasRevision":{
                                "type":"boolean",
                                "description":"Indicate whether any revisions from a newer study version have been applied",
                                "example":true
                            },
                            "linkFrom":{
                                "type":"array",
                                "description":"linked from forms",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov16"
                                }
                            },
                            "showFrom":{
                                "type":"array",
                                "description":"show dynamic parent from forms of same visit",
                                "items":{
                                    "$ref":"#/components/schemas/FormLinkFromDtov16"
                                }
                            },
                            "assignedVisits":{
                                "type":"array",
                                "description":"branch cycle information describing the visits on which the forms are displayed",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemAdvancedPropWithParentDtov16"
                                }
                            }
                        },
                        "description":"Form Info"
                    },
                    "formSummary":{
                        "title":"FormSummaryDto v1.0",
                        "type":"object",
                        "properties":{
                            "id":{
                                "type":"string",
                                "description":"Form Unique GUID",
                                "format":"uuid"
                            },
                            "refname":{
                                "type":"string",
                                "description":"Form refname",
                                "example":"FORM_01"
                            },
                            "title":{
                                "type":"string",
                                "description":"Form title",
                                "example":"Demography"
                            },
                            "items":{
                                "type":"array",
                                "items":{
                                    "$ref":"#/components/schemas/FormItemSummaryDtoV1"
                                }
                            }
                        },
                        "description":"Reduced form properties"
                    }
                },
                "description":"Information about whole study design for subject ."
            },
            "StudyDtoV8":{
                "title":"StudyDto V8.0",
                "type":"object",
                "properties":{
                    "identity":{
                        "type":"string",
                        "description":"Study identity - concatenation of study id and version",
                        "example":"8C4ECDFD9C214D38B4E68D3107BA0AF9:1.0.0.3"
                    },
                    "id":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "version":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"Version End",
                        "format":"date-time",
                        "example":"3099-12-31T05:00:00Z"
                    },
                    "studyTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001"
                    },
                    "studyDescription":{
                        "type":"string",
                        "description":"Study description or protocol title",
                        "example":"A randomized double blind placebo controlled study to investigate the safety of microphylla in healthy adult volunteers."
                    },
                    "contractCode":{
                        "type":"string",
                        "description":"Study contract code or identifier",
                        "example":"NCT00000419"
                    },
                    "versionTitle":{
                        "type":"string",
                        "description":"Study Title or protocol number",
                        "example":"TICIPS001:1.0.0.3"
                    },
                    "studyPhase":{
                        "type":"string",
                        "description":"Study phase",
                        "example":"II"
                    },
                    "therapeuticArea":{
                        "type":"string",
                        "description":"Study therapeutic area",
                        "example":"Infectious Diseases"
                    },
                    "openLabelBlinded":{
                        "type":"string",
                        "description":"Study type for open label and blinded",
                        "example":"DoubleBlinded"
                    },
                    "studyStatus":{
                        "type":"string",
                        "description":"Current study status",
                        "example":"APPROVED",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionPreviousStatus":{
                        "type":"string",
                        "description":"Previous study status",
                        "example":"TESTING",
                        "enum":[
                            "DRAFT",
                            "TESTING",
                            "APPROVED",
                            "ARCHIVED"
                        ]
                    },
                    "versionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"Active, not recruiting"
                    },
                    "versionType":{
                        "type":"string",
                        "description":"Study version type",
                        "example":"Active, not recruiting"
                    },
                    "hasObjects":{
                        "type":"integer",
                        "description":"If study contains any artifacts",
                        "format":"int32",
                        "example":1
                    },
                    "draftVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in draft mode",
                        "format":"int32",
                        "example":1
                    },
                    "testingVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in testing mode",
                        "format":"int32",
                        "example":1
                    },
                    "approvedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in approved mode",
                        "format":"int32",
                        "example":1
                    },
                    "archivedVersionsCount":{
                        "type":"integer",
                        "description":"Count of study in archived mode",
                        "format":"int32",
                        "example":1
                    },
                    "everApprovedCount":{
                        "type":"integer",
                        "description":"If study was ever approved",
                        "format":"int32",
                        "example":1
                    },
                    "sourceStudyId":{
                        "type":"string",
                        "description":"Study Unique GUID",
                        "format":"uuid"
                    },
                    "sourceStudyVersion":{
                        "type":"string",
                        "description":"Source study version",
                        "format":"string",
                        "example":"1.0.0.1"
                    },
                    "sourceStudyTitle":{
                        "type":"string",
                        "description":"Source study title",
                        "format":"string",
                        "example":"The study"
                    },
                    "modes":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "description":"Study modes",
                            "example":"active",
                            "enum":[
                                "test",
                                "training",
                                "active"
                            ]
                        }
                    },
                    "customerRefNo":{
                        "type":"string",
                        "description":"Customer reference number"
                    },
                    "description":{
                        "type":"string",
                        "description":"Study description"
                    },
                    "singleKitSettingId":{
                        "type":"string",
                        "description":"Single kit id"
                    },
                    "sowNo":{
                        "type":"string",
                        "description":"SOW number"
                    },
                    "sponsorId":{
                        "type":"string",
                        "description":"Sponsor Id"
                    },
                    "studyStatusId":{
                        "type":"integer",
                        "description":"Study status Id",
                        "format":"int32"
                    },
                    "useBlindingGroups":{
                        "type":"boolean",
                        "description":"Whether study uses blinding groups"
                    },
                    "useLabelGroups":{
                        "type":"boolean",
                        "description":"Whether study uses label groups"
                    },
                    "useShippinggroups":{
                        "type":"boolean",
                        "description":"Whether study uses shipping groups"
                    },
                    "previousState":{
                        "type":"string",
                        "description":"Previous study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "studyState":{
                        "type":"string",
                        "description":"Current study state",
                        "enum":[
                            "settings, active, design, test, training"
                        ]
                    },
                    "lastModified":{
                        "type":"string",
                        "format":"date-time"
                    },
                    "systemCodeListId":{
                        "type":"string",
                        "description":"System Code List GUID",
                        "format":"uuid"
                    },
                    "companies":{
                        "type":"array",
                        "description":"Companies list who sponsor the study",
                        "example":"ABC Pharma",
                        "items":{
                            "type":"string",
                            "description":"Companies list who sponsor the study",
                            "example":"ABC Pharma"
                        }
                    },
                    "companyLabels":{
                        "type":"array",
                        "items":{
                            "type":"string"
                        }
                    },
                    "safetyCase":{
                        "type":"integer",
                        "description":"Safety case",
                        "format":"int32",
                        "example":1
                    },
                    "narrativeSettings":{
                        "type":"string",
                        "description":"Narrative settings",
                        "example":"Send Full Narrative (Editable)"
                    },
                    "safetyIntegration":{
                        "type":"boolean",
                        "description":"Safety Integration",
                        "example":true
                    },
                    "firstVisit":{
                        "type":"string",
                        "description":"The type of first visit, eg. screening or null",
                        "example":"SCREENING"
                    }
                },
                "description":"Information about a study for UI consumption."
            },
            "VisitDtoV8":{
                "title":"VisitDto v8.0",
                "required":[
                    "repeatNumber",
                    "repeatVisit",
                    "requiredVisit",
                    "shortName",
                    "title"
                ],
                "type":"object",
                "properties":{
                    "branchTitle":{
                        "type":"string",
                        "description":"Visit Branch title",
                        "example":"Branch 2"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"Concatenation of Visit Title and Branch title with hypen",
                        "example":"B1C01 - V01"
                    },
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Visit title",
                        "example":"Week 2"
                    },
                    "repeatVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is repeating.",
                        "example":false
                    },
                    "repeatNumber":{
                        "type":"integer",
                        "description":"Times to repeat Visit Design.",
                        "format":"int32",
                        "example":5
                    },
                    "requiredVisit":{
                        "type":"boolean",
                        "description":"Yes - if Visit Design is required.",
                        "example":false
                    },
                    "randomization":{
                        "type":"string",
                        "description":"Randomization GUID",
                        "format":"uuid"
                    },
                    "lastRequired":{
                        "type":"boolean",
                        "description":"Yes - if Visit is last required.",
                        "example":false
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "maxLength":16,
                        "minLength":1,
                        "pattern":"[\\p{L}0-9]+",
                        "type":"string",
                        "description":"Visit short name",
                        "example":"Week1"
                    },
                    "visitDescription":{
                        "type":"string",
                        "description":"Visit description",
                        "example":"Regular 2 week visit"
                    },
                    "visitStartDate":{
                        "type":"string",
                        "description":"Visit start date time",
                        "format":"date-time",
                        "example":"2019-01-25T07:42:00.204Z"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.1"
                    },
                    "studyVersionStatus":{
                        "type":"string",
                        "description":"Study version status",
                        "example":"TESTING"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Start visit ID",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"End visit ID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"Branch Id",
                        "format":"uuid"
                    },
                    "timeLine":{
                        "type":"integer",
                        "description":"show in timeline. allows the designer to set when a visit can be shown to a user.",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit design."
            },
            "BranchDesignDTOV9":{
                "type":"object",
                "properties":{
                    "branch":{
                        "$ref":"#/components/schemas/VisitBranchDtoV2"
                    },
                    "visits":{
                        "type":"array",
                        "description":"The visits in this branch",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV9"
                        }
                    }
                },
                "description":"Branch Design properties"
            },
            "VisitBranchDesignDtoV9":{
                "type":"object",
                "properties":{
                    "scheduledVisits":{
                        "type":"array",
                        "description":"scheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV9"
                        }
                    },
                    "branchVisits":{
                        "type":"array",
                        "description":"branches",
                        "items":{
                            "type":"array",
                            "description":"branches",
                            "items":{
                                "$ref":"#/components/schemas/BranchDesignDTOV9"
                            }
                        }
                    },
                    "unscheduledVisits":{
                        "type":"array",
                        "description":"unscheduledVisits",
                        "items":{
                            "$ref":"#/components/schemas/VisitDesignDtoV9"
                        }
                    }
                },
                "description":"Visit Design branches"
            },
            "VisitDesignAssignedFormsDTOV9":{
                "title":"VisitDesignAssignedFormsDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design assigned forms count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design assigned forms properties"
            },
            "VisitDesignDispensingDtoV9":{
                "title":"VisitDesignDispensingDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"integer",
                        "description":"Visit Design titration count",
                        "format":"int32",
                        "example":1
                    },
                    "deviceCount":{
                        "type":"integer",
                        "description":"Visit Design device count",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Visit Design dispensing properties"
            },
            "VisitDesignDtoV9":{
                "title":"VisitDesignDto v9.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit Design unique GUID",
                        "format":"uuid"
                    },
                    "title":{
                        "type":"string",
                        "description":"Visit design title",
                        "example":"Week1"
                    },
                    "eventType":{
                        "type":"string",
                        "description":"Visit Design event type",
                        "example":"ScreeningVisit"
                    },
                    "shortName":{
                        "type":"string",
                        "description":"Visit Design short name",
                        "example":"Week1"
                    },
                    "state":{
                        "$ref":"#/components/schemas/VisitDesignStateDtoV8"
                    },
                    "scheduling":{
                        "title":"VisitDesignSchedulingDto v9.0",
                        "type":"object",
                        "properties":{
                            "fromVisitId":{
                                "type":"string",
                                "description":"Visit Design from visit GUID",
                                "format":"uuid"
                            },
                            "branchId":{
                                "type":"string",
                                "description":"bbranch GUID",
                                "format":"uuid"
                            },
                            "delay":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "beforeDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "afterDelayWindow":{
                                "$ref":"#/components/schemas/Delay"
                            },
                            "outOfWindowAlert":{
                                "type":"string",
                                "description":"Outside Visit Window Alert",
                                "format":"string",
                                "example":"OFF"
                            }
                        },
                        "description":"Visit Design scheduling properties"
                    },
                    "randomization":{
                        "$ref":"#/components/schemas/VisitDesignRandomizationDtoV8"
                    },
                    "forms":{
                        "$ref":"#/components/schemas/VisitDesignAssignedFormsDTOV9"
                    },
                    "dispensings":{
                        "$ref":"#/components/schemas/VisitDesignDispensingDtoV9"
                    },
                    "startVisitId":{
                        "type":"string",
                        "description":"Visit Design Start Visit Id",
                        "format":"uuid"
                    },
                    "endVisitId":{
                        "type":"string",
                        "description":"Visit design End Visit Id",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"The id of the branch",
                        "format":"uuid"
                    }
                },
                "description":"Visit Design Information"
            },
            "VisitDesignSchedulingDtoV9":{
                "title":"VisitDesignSchedulingDto v9.0",
                "type":"object",
                "properties":{
                    "fromVisitId":{
                        "type":"string",
                        "description":"Visit Design from visit GUID",
                        "format":"uuid"
                    },
                    "branchId":{
                        "type":"string",
                        "description":"bbranch GUID",
                        "format":"uuid"
                    },
                    "delay":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "beforeDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "afterDelayWindow":{
                        "$ref":"#/components/schemas/Delay"
                    },
                    "outOfWindowAlert":{
                        "type":"string",
                        "description":"Outside Visit Window Alert",
                        "format":"string",
                        "example":"OFF"
                    }
                },
                "description":"Visit Design scheduling properties"
            },
            "ResponseTo":{
                "type":"object",
                "properties":{
                    "status":{
                        "type":"string"
                    },
                    "code":{
                        "type":"string"
                    },
                    "message":{
                        "type":"string"
                    }
                }
            },
            "DesignerLockDetailsDto":{
                "type":"object",
                "properties":{
                    "lockPathParams":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"string"
                        }
                    },
                    "renewal":{
                        "type":"boolean"
                    },
                    "serviceName":{
                        "type":"string"
                    },
                    "lockBasePath":{
                        "type":"string"
                    },
                    "lockName":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string"
                    },
                    "isUILock":{
                        "type":"boolean"
                    },
                    "lockMode":{
                        "type":"string"
                    }
                }
            },
            "ChildLockData":{
                "type":"object",
                "properties":{
                    "lockPath":{
                        "type":"string"
                    },
                    "userId":{
                        "type":"string"
                    },
                    "status":{
                        "type":"boolean"
                    },
                    "userName":{
                        "type":"string"
                    }
                }
            },
            "FormHistoryDto":{
                "required":[
                    "id"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "items":{
                        "type":"array",
                        "description":"Form items",
                        "items":{
                            "$ref":"#/components/schemas/FormItemHistoryDto"
                        }
                    }
                }
            },
            "FormItemHistoryDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "itemsHistory":{
                        "type":"array",
                        "description":"Form items history",
                        "items":{
                            "$ref":"#/components/schemas/FormItemHistoryEventDto"
                        }
                    }
                },
                "description":"Form items"
            },
            "FormItemHistoryEventDto":{
                "type":"object",
                "properties":{
                    "createVersion":{
                        "type":"string",
                        "description":"form item creation version",
                        "example":"1.0.0.1"
                    },
                    "sourceVersion":{
                        "type":"string",
                        "description":"form item IPR source version",
                        "example":"1.0.0.1"
                    },
                    "targetVersion":{
                        "type":"string",
                        "description":"form item IPR targeted  version",
                        "example":"1.0.0.1"
                    },
                    "lastUpdate":{
                        "type":"string",
                        "description":"form item create/last update date",
                        "format":"date-time",
                        "example":"2017-10-12T18:16:55.346Z"
                    }
                },
                "description":"Form items history"
            },
            "RqstFormItemDto":{
                "required":[
                    "questionLabel",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Form Item Unique GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form Unique GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string",
                        "description":"Form question label",
                        "example":"Age"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string",
                        "description":"Form question hint",
                        "example":"What is your age?"
                    },
                    "randomizationTag":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item should be used for randomization stratification or not.",
                        "example":true
                    },
                    "isStrataFactor":{
                        "type":"boolean",
                        "description":"Flag that indicates whether this form item is used as a factor for randomization stratum or not.",
                        "example":false
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Form item reference name.",
                        "example":"NUMBER_01"
                    },
                    "required":{
                        "type":"boolean",
                        "description":"Whether this form item is requiered or not.",
                        "example":true
                    },
                    "ruleSet":{
                        "type":"string",
                        "description":"A JSON-formatted set of rules to do validation of the answers.",
                        "example":"{'logicalOperator':'NONE','rules':[],'numberIndex':1}"
                    },
                    "sdvRequired":{
                        "type":"boolean",
                        "description":"Source-Documented Verification: Whether proof of the answer required?",
                        "example":false
                    },
                    "sequence":{
                        "type":"integer",
                        "description":"Item position in the form.",
                        "format":"int32",
                        "example":1
                    }
                }
            },
            "FormVisitDtoV1":{
                "title":"FormVisitDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Form Visits Information"
            },
            "LockObjectDetailsDtoV1":{
                "title":"LockObjectDetailsDto v1.0",
                "type":"object",
                "properties":{
                    "visitObjects":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"object",
                            "additionalProperties":{
                                "type":"object",
                                "additionalProperties":{
                                    "$ref":"#/components/schemas/LockObjectFormDetailsDtoV1"
                                },
                                "description":"Locked visit object details."
                            },
                            "description":"Locked visit object details."
                        },
                        "description":"Locked visit object details."
                    }
                },
                "description":"Information about all the locked objects."
            },
            "LockObjectFormDetailsDtoV1":{
                "title":"LockObjectFormDetailsDto v1.0",
                "type":"object",
                "properties":{
                    "visitForms":{
                        "type":"object",
                        "additionalProperties":{
                            "$ref":"#/components/schemas/FormDtov15"
                        },
                        "description":"Locked visit details."
                    },
                    "forms":{
                        "type":"object",
                        "additionalProperties":{
                            "$ref":"#/components/schemas/FormDtov15"
                        },
                        "description":"Locked form details."
                    }
                },
                "description":"Information about forms of a locked object."
            },
            "LockVersionObjectDtoV1":{
                "title":"LockVersionObjectDto V1.0",
                "required":[
                    "objectId",
                    "objectLockVersion",
                    "objectType"
                ],
                "type":"object",
                "properties":{
                    "objectId":{
                        "type":"string",
                        "description":"Object ID",
                        "format":"uuid"
                    },
                    "objectType":{
                        "title":"ObjectType",
                        "type":"string",
                        "description":"Object type",
                        "example":"form",
                        "enum":[
                            "form",
                            "visit"
                        ]
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent Object ID",
                        "format":"uuid"
                    },
                    "objectLockVersion":{
                        "title":"ObjectLockVersion",
                        "type":"string",
                        "description":"Object lock version",
                        "example":"1.0.0.1"
                    },
                    "objectLockDate":{
                        "type":"string",
                        "description":"Object Lock Date",
                        "format":"date-time"
                    }
                },
                "description":"Lock version Object details"
            },
            "RqstCohortDto":{
                "required":[
                    "name",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Cohort Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Cohort Name",
                        "example":"Cohort Demography Group 1"
                    },
                    "type":{
                        "type":"string",
                        "description":"Cohort Type",
                        "example":"Demography",
                        "enum":[
                            "None",
                            "Adaptive",
                            "Demography"
                        ]
                    },
                    "factors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CohortFactorDtoV1"
                        }
                    }
                }
            },
            "RatioGroupingArmDtoV1":{
                "title":"RatioGroupingArmDto v1.0",
                "type":"object",
                "properties":{
                    "armId":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "ratio":{
                        "type":"integer",
                        "description":"Treatment arm ratio",
                        "format":"int32",
                        "example":2
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RatioGroupingDtoV1":{
                "title":"RatioGroupingDto v1.0",
                "type":"object",
                "properties":{
                    "groupingId":{
                        "type":"string",
                        "description":"Randomization Cohort/Stratum group GUID",
                        "format":"uuid"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingArmDtoV1"
                        }
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RatioArmDtoV1":{
                "title":"RatioArmDto v1.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Drug Arm 1"
                    },
                    "description":{
                        "type":"string",
                        "description":"Treatment Arm Description",
                        "example":"Monad NP (60ml) Syrup"
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RqstRatioGroupingDto":{
                "type":"object",
                "properties":{
                    "groupingId":{
                        "type":"string",
                        "description":"Randomization Cohort/Stratum group GUID",
                        "format":"uuid"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingArmDtoV2"
                        }
                    }
                }
            },
            "RqstCohortGroupingDtoV1":{
                "title":"RqstCohortGroupingDto v1.0",
                "type":"object",
                "properties":{
                    "groupingId":{
                        "type":"string",
                        "description":"Randomization Cohort/Stratum group GUID",
                        "format":"uuid"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingArmDtoV2"
                        }
                    },
                    "groupingName":{
                        "type":"string",
                        "description":"Cohort group name",
                        "example":"Cohort Group 1"
                    }
                },
                "description":"Cohort group details."
            },
            "VisitFormDtoV1":{
                "title":"VisitFormDto v1.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Visit Design form GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "fields":{
                        "type":"integer",
                        "description":"Number of form's fields",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Visit design forms."
            },
            "RqstWelcomeDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "maxLength":4000,
                        "type":"string",
                        "description":"String value",
                        "format":"string",
                        "example":"Welcome to ClinicalOne"
                    }
                }
            },
            "Form Date Item DTO":{
                "required":[
                    "format",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form Date Item information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "format":{
                                "type":"string",
                                "description":"Date time format",
                                "example":"MON-YYYY"
                            },
                            "allowPartialDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow partial Dates",
                                "format":"int32",
                                "example":1
                            },
                            "partialDate":{
                                "type":"string",
                                "description":"Partial Date Format",
                                "example":"MON-YYYY"
                            },
                            "allowFutureDate":{
                                "maximum":1,
                                "minimum":0,
                                "type":"integer",
                                "description":"Allow future date",
                                "format":"int32",
                                "example":1
                            }
                        }
                    }
                ]
            },
            "Form choice Item DTO":{
                "required":[
                    "display",
                    "options",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form choice item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "display":{
                                "pattern":"selectbox|checkbox|radioset",
                                "type":"string",
                                "description":"Choice Box display",
                                "example":"selectbox"
                            },
                            "columnLayout":{
                                "type":"string",
                                "description":"Coumn Layout codelist ID",
                                "example":"EBCF17C5F8D4460AA4A9673485C79CF0"
                            },
                            "columnLayoutLabel":{
                                "type":"string",
                                "description":"Coumn Layout Label in UI",
                                "example":"Single"
                            },
                            "options":{
                                "type":"array",
                                "description":"Choice options",
                                "example":1,
                                "items":{
                                    "$ref":"#/components/schemas/FormOptionDto"
                                }
                            },
                            "clTitle":{
                                "type":"string",
                                "description":"Codelist title only for choice type formitem",
                                "example":"Gender"
                            },
                            "clDescription":{
                                "type":"string",
                                "description":"Codelist description only for choice type formitem",
                                "example":"Standard gender codelist"
                            },
                            "isCodeListReplaced":{
                                "type":"boolean",
                                "description":"Indicates if the choice option codelist is replaced",
                                "example":true
                            },
                            "codeListId":{
                                "type":"string",
                                "format":"uuid"
                            },
                            "codelistLinkType":{
                                "type":"string"
                            },
                            "codelistLang":{
                                "type":"string"
                            }
                        }
                    }
                ]
            },
            "FormExistingDataItemDto":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "description":"Form existing data item Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "codeName":{
                                "type":"string",
                                "description":"Codelist name for existing data, must be a value from ExistingDataLabels codelist",
                                "example":"EDLSite"
                            },
                            "codeValue":{
                                "type":"string",
                                "description":"Codelist value specifying existing data, must be a value from codelist defined in codeName",
                                "example":"SiteName"
                            }
                        }
                    }
                ]
            },
            "FormItemDto":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "visitIds":{
                        "type":"array",
                        "items":{
                            "type":"string",
                            "format":"uuid"
                        }
                    },
                    "formTitle":{
                        "type":"string"
                    },
                    "questionType":{
                        "type":"string",
                        "enum":[
                            "text",
                            "instructionalText",
                            "numeric",
                            "datetime",
                            "choice",
                            "questionGroup",
                            "table",
                            "label",
                            "section",
                            "existingData",
                            "fileUpload"
                        ]
                    },
                    "questionLabel":{
                        "maxLength":4000,
                        "minLength":1,
                        "type":"string"
                    },
                    "sasVariable":{
                        "type":"string"
                    },
                    "sasLabel":{
                        "type":"string"
                    },
                    "questionHint":{
                        "maxLength":4000,
                        "minLength":0,
                        "type":"string"
                    },
                    "randomizationTag":{
                        "type":"boolean"
                    },
                    "isStrataFactor":{
                        "type":"boolean"
                    },
                    "isCohortFactor":{
                        "type":"boolean"
                    },
                    "refname":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string"
                    },
                    "required":{
                        "type":"boolean"
                    },
                    "dynamic":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "ruleSet":{
                        "type":"string"
                    },
                    "sdvRequired":{
                        "type":"string",
                        "enum":[
                            "NOTSET",
                            "NEVER",
                            "ALWAYS",
                            "CRITICAL"
                        ]
                    },
                    "sequence":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "smartItemId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "formula":{
                        "type":"string"
                    },
                    "smartObject":{
                        "type":"string"
                    },
                    "studyVersion":{
                        "type":"string"
                    },
                    "studyId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "actions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "advancedProps":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "hidden":{
                        "type":"boolean"
                    },
                    "readOnly":{
                        "type":"boolean"
                    },
                    "applyChangeToVersion":{
                        "type":"string"
                    },
                    "dataClassificationLevel":{
                        "type":"string"
                    },
                    "groupId":{
                        "type":"string",
                        "format":"uuid"
                    },
                    "groupSequence":{
                        "type":"integer",
                        "format":"int32"
                    },
                    "parentRefName":{
                        "type":"string"
                    },
                    "labNormalsTag":{
                        "type":"string",
                        "description":"Lab Normals Tag used in dialog tagging",
                        "example":"LabTest, LabUnit, LabLowRange, LabHighRange, LabStandardResult, LabSamColDate, LabFasting"
                    },
                    "clLabNormalsTag":{
                        "type":"string",
                        "description":"Code list Lab Normals Tag used in the code list dialog tagging",
                        "example":"LabTest, LabUnit, LabGender, LabRace, LabStandardResult"
                    },
                    "dataClassificationIds":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "assignedVisits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "parentVisitInfo":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "formCategory":{
                        "type":"string",
                        "description":"Form category",
                        "example":"DCS"
                    },
                    "formSubcategory":{
                        "type":"string",
                        "description":"List of form subcategories"
                    },
                    "ehrMapping":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "e2br3Mapping":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemAdvancedPropDtoV7"
                        }
                    },
                    "triggerFollowupCase":{
                        "type":"boolean",
                        "description":"Form items tagged as required for case create are mandatory as the minimum data collected on a Safety Case collection.",
                        "example":false
                    },
                    "requiredForCaseCreate":{
                        "type":"boolean",
                        "description":"Form items tagged as trigger followup case are having safety rules enabled for safety rules creation.",
                        "example":false
                    },
                    "requiredScreening":{
                        "type":"boolean",
                        "description":"Form items tagged as screening will are used as the minimum data collected on a Screening Event.",
                        "example":false
                    },
                    "requiredRandomization":{
                        "type":"boolean",
                        "description":"Form items tagged as randomization will are used as the minimum data collected on a Randomization Event.",
                        "example":false
                    },
                    "requiredDispensation":{
                        "type":"boolean",
                        "description":"Form items tagged as dispensation will are used as the minimum data collected on a Dispensation Event.",
                        "example":false
                    }
                },
                "discriminator":{
                    "propertyName":"questionType"
                }
            },
            "FormNumberItemDto":{
                "required":[
                    "precision",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "precision":{
                                "minimum":0,
                                "type":"integer",
                                "format":"int32"
                            },
                            "units":{
                                "type":"string"
                            }
                        }
                    }
                ]
            },
            "FormQuestionGroupItemDto":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "items":{
                                "type":"array",
                                "description":"Form items",
                                "example":1,
                                "items":{
                                    "$ref":"#/components/schemas/FormItemDto"
                                }
                            }
                        }
                    }
                ]
            },
            "FormSectionalItemDto":{
                "required":[
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    }
                ]
            },
            "FormTextItemDto":{
                "required":[
                    "maxlength",
                    "multiline",
                    "questionLabel",
                    "questionType",
                    "refname",
                    "required",
                    "sdvRequired"
                ],
                "type":"object",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/FormItemDto"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "maxlength":{
                                "maximum":4000,
                                "minimum":0,
                                "type":"integer",
                                "format":"int32"
                            },
                            "multiline":{
                                "type":"boolean"
                            }
                        }
                    }
                ]
            },
            "LockObjectDetailsDtoV2":{
                "title":"LockObjectDetailsDto v2.0",
                "type":"object",
                "properties":{
                    "visitObjects":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"object",
                            "additionalProperties":{
                                "$ref":"#/components/schemas/LockObjectVersionDetailsDtoV2"
                            },
                            "description":"Locked visit object details."
                        },
                        "description":"Locked visit object details."
                    }
                },
                "description":"Information about all the locked objects."
            },
            "LockObjectVersionDetailsDtoV2":{
                "title":"LockObjectVersionDetailsDtoV2",
                "type":"object",
                "properties":{
                    "visitDetails":{
                        "$ref":"#/components/schemas/VisitDtoV9"
                    }
                },
                "description":"Information about all the locked objects in a version"
            },
            "LockObjectDtoV2":{
                "title":"LockObjectDto V2.0",
                "required":[
                    "objectId",
                    "objectLockVersion",
                    "objectType"
                ],
                "type":"object",
                "properties":{
                    "objectId":{
                        "type":"string",
                        "description":"Object ID",
                        "format":"uuid"
                    },
                    "objectType":{
                        "title":"ObjectType",
                        "type":"string",
                        "description":"Object type",
                        "example":"form",
                        "enum":[
                            "form",
                            "visit"
                        ]
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent Object ID",
                        "format":"uuid"
                    },
                    "objectLockVersion":{
                        "title":"ObjectLockVersion",
                        "type":"string",
                        "description":"Object lock version",
                        "example":"1.0.0.1"
                    },
                    "objectLockDate":{
                        "type":"string",
                        "description":"Object Lock Date",
                        "format":"date-time"
                    }
                },
                "description":"Lock Object details"
            },
            "CohortChoiceFactorDtoV2":{
                "title":"CohortChoiceFactorDto v2.0",
                "required":[
                    "codelistitemIds",
                    "formId",
                    "itemId",
                    "values"
                ],
                "type":"object",
                "description":"Cohort choice factor details information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/CohortFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "values":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "maxLength":2147483647,
                                    "minLength":1,
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice values",
                                    "example":"1"
                                }
                            },
                            "codelistitemIds":{
                                "maxItems":2147483647,
                                "minItems":1,
                                "type":"array",
                                "items":{
                                    "type":"string",
                                    "description":"Selected from choice factor's code list choice codelistItem Ids",
                                    "format":"uuid"
                                }
                            }
                        }
                    }
                ]
            },
            "CohortDtoV2":{
                "title":"CohortDto v2.0",
                "required":[
                    "name",
                    "type"
                ],
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Cohort Unique GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "maxLength":64,
                        "minLength":1,
                        "type":"string",
                        "description":"Cohort Name",
                        "example":"Cohort Demography Group 1"
                    },
                    "type":{
                        "type":"string",
                        "description":"Cohort Type",
                        "example":"Demography",
                        "enum":[
                            "None",
                            "Adaptive",
                            "Demography"
                        ]
                    },
                    "factors":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/CohortFactorDtoV1"
                        }
                    }
                },
                "description":"Randomization Cohort Details Information"
            },
            "CohortRangeFactorDtoV2":{
                "title":"CohortRangeFactorDto v2.0",
                "required":[
                    "formId",
                    "itemId",
                    "max",
                    "min"
                ],
                "type":"object",
                "description":"Cohort Range Factor Details Information",
                "allOf":[
                    {
                        "$ref":"#/components/schemas/CohortFactorDtoV1"
                    },
                    {
                        "type":"object",
                        "properties":{
                            "min":{
                                "type":"number",
                                "description":"Cohort Factor Min value",
                                "format":"double",
                                "example":20
                            },
                            "max":{
                                "type":"number",
                                "description":"Cohort Factor Max value",
                                "format":"double",
                                "example":120
                            }
                        }
                    }
                ]
            },
            "RatioGroupingDtoV2":{
                "title":"RatioGroupingDto v2.0",
                "type":"object",
                "properties":{
                    "groupingId":{
                        "type":"string",
                        "description":"Randomization Cohort/Stratum group GUID",
                        "format":"uuid"
                    },
                    "arms":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RatioGroupingArmDtoV2"
                        }
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "RatioArmDtoV2":{
                "title":"RatioArmDto v2.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "name":{
                        "type":"string",
                        "description":"Treatment Arm Name",
                        "example":"Drug Arm 1"
                    },
                    "description":{
                        "type":"string",
                        "description":"Treatment Arm Description",
                        "example":"Monad NP (60ml) Syrup"
                    }
                },
                "description":"Treatment Arm ratio"
            },
            "LockObjectDetailsDtoV3":{
                "title":"LockObjectDetailsDto v3.0",
                "type":"object",
                "properties":{
                    "visitObjects":{
                        "type":"object",
                        "additionalProperties":{
                            "type":"object",
                            "additionalProperties":{
                                "$ref":"#/components/schemas/LockObjectVersionDetailsDtoV3"
                            },
                            "description":"Locked visit object details."
                        },
                        "description":"Locked visit object details."
                    }
                },
                "description":"Information about all the locked objects."
            },
            "LockObjectVersionDetailsDtoV3":{
                "title":"LockObjectVersionDetailsDtoV3",
                "type":"object",
                "properties":{
                    "visitDetails":{
                        "$ref":"#/components/schemas/VisitDtoV9"
                    }
                },
                "description":"Information about all the locked objects in a version"
            },
            "LockObjectDtoV3":{
                "title":"LockObjectDto V3.0",
                "required":[
                    "objectId",
                    "objectLockVersion",
                    "objectType"
                ],
                "type":"object",
                "properties":{
                    "objectId":{
                        "type":"string",
                        "description":"Object ID",
                        "format":"uuid"
                    },
                    "objectType":{
                        "title":"ObjectType",
                        "type":"string",
                        "description":"Object type",
                        "example":"form",
                        "enum":[
                            "form",
                            "visit"
                        ]
                    },
                    "parentObjectId":{
                        "type":"string",
                        "description":"Parent Object ID",
                        "format":"uuid"
                    },
                    "objectLockVersion":{
                        "title":"ObjectLockVersion",
                        "type":"string",
                        "description":"Object lock version",
                        "example":"1.0.0.1"
                    },
                    "objectLockDate":{
                        "type":"string",
                        "description":"Object Lock Date",
                        "format":"date-time"
                    }
                },
                "description":"Lock Object details"
            },
            "FormItemRuleActionDtoV1":{
                "title":"FormItemRuleActionDto v1.0",
                "type":"object",
                "properties":{
                    "assocId":{
                        "type":"string",
                        "description":"Association GUID",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "studyEventId":{
                        "type":"string",
                        "description":"Study event GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item GUID",
                        "format":"uuid"
                    },
                    "ruleId":{
                        "type":"string",
                        "description":"Rule GUID",
                        "format":"uuid"
                    },
                    "actionId":{
                        "type":"string",
                        "description":"Action GUID",
                        "format":"uuid"
                    },
                    "actionType":{
                        "type":"string",
                        "description":"Action type",
                        "example":"Calculated Value"
                    },
                    "actionTarget":{
                        "type":"string",
                        "description":"Action target",
                        "example":"474A369C4A3E491F8207A7F8A59B8CA6.1CDE8BFA451948DEBEAC408E8CFBFCDA"
                    },
                    "actionOrder":{
                        "type":"integer",
                        "description":"Action order",
                        "format":"int32",
                        "example":1
                    }
                },
                "description":"Form item rule action information."
            },
            "FormItemRuleDtoV1":{
                "title":"FormItemRuleDto v1.0",
                "type":"object",
                "properties":{
                    "assocId":{
                        "type":"string",
                        "description":"Association GUID",
                        "format":"uuid"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"Study GUID",
                        "format":"uuid"
                    },
                    "studyVersion":{
                        "type":"string",
                        "description":"Study version",
                        "example":"1.0.0.3"
                    },
                    "studyEventId":{
                        "type":"string",
                        "description":"Study event GUID",
                        "format":"uuid"
                    },
                    "formId":{
                        "type":"string",
                        "description":"Form GUID",
                        "format":"uuid"
                    },
                    "smartItemId":{
                        "type":"string",
                        "description":"Smart item GUID",
                        "format":"uuid"
                    },
                    "itemId":{
                        "type":"string",
                        "description":"Item GUID",
                        "format":"uuid"
                    },
                    "ruleId":{
                        "type":"string",
                        "description":"Rule GUID",
                        "format":"uuid"
                    },
                    "ruleRefName":{
                        "type":"string",
                        "description":"Rule reference name",
                        "example":"AGE"
                    },
                    "ruleJSExpression":{
                        "type":"string",
                        "description":"Rule JSON expression",
                        "example":"1.0.0.3"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"Version Start date",
                        "format":"date-time"
                    },
                    "ruleOrder":{
                        "type":"integer",
                        "description":"Rule order",
                        "format":"int32",
                        "example":1
                    },
                    "actions":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/FormItemRuleActionDtoV1"
                        }
                    }
                },
                "description":"Form item rule information."
            },
            "VisitFormDtoV3":{
                "title":"VisitFormDto v3.0",
                "type":"object",
                "properties":{
                    "formId":{
                        "type":"string",
                        "description":"Visit Design form GUID",
                        "format":"uuid"
                    },
                    "formTitle":{
                        "type":"string",
                        "description":"Form title",
                        "example":"Demography"
                    },
                    "fields":{
                        "type":"integer",
                        "description":"Number of form's fields",
                        "format":"int32",
                        "example":5
                    }
                },
                "description":"Visit design forms."
            },
            "FormVisitDtoV6":{
                "title":"FormVisitDto v6.0",
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    }
                },
                "description":"Form Visits Information"
            },
            "ArmKitVisitTitrationDtoV7":{
                "title":"ArmKitVisitTitrationDto v7.0",
                "type":"object",
                "properties":{
                    "kitTypeId":{
                        "type":"string",
                        "description":"Kit Type Id",
                        "example":"Kit A 20mg"
                    },
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "kitQuantity":{
                        "type":"integer",
                        "description":"Visit Quantity",
                        "format":"int64",
                        "example":1
                    }
                },
                "description":"Kit dispensations for a titration group."
            },
            "RespArmKitVisitDtoV7":{
                "title":"RespArmKitVisitDto v7.0",
                "type":"object",
                "properties":{
                    "kitid":{
                        "type":"string",
                        "description":"Kit GUID",
                        "format":"uuid"
                    },
                    "armid":{
                        "type":"string",
                        "description":"Treatment Arm GUID",
                        "format":"uuid"
                    },
                    "visitid":{
                        "type":"string",
                        "description":"Visit GUID",
                        "format":"uuid"
                    },
                    "dosingId":{
                        "type":"string",
                        "description":"Dosing GUID",
                        "format":"uuid"
                    },
                    "quantity":{
                        "type":"integer",
                        "description":"Kit quantity or dose.",
                        "format":"int64",
                        "example":1
                    },
                    "dnd":{
                        "type":"integer",
                        "description":"Do not Dispense - a number of days before kit expiration date when kit cannot be dispensed.",
                        "format":"int64",
                        "example":5
                    },
                    "dispenseoutsidewindow":{
                        "type":"boolean",
                        "description":"Kit can be dispensed outside the schedule window.",
                        "example":false
                    },
                    "id":{
                        "type":"string",
                        "description":"Dispensation GUID",
                        "format":"uuid"
                    },
                    "allowTitration":{
                        "type":"boolean",
                        "description":"Indicates if titration is allowed on the kit.",
                        "example":false
                    },
                    "titrationKits":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/ArmKitVisitTitrationDtoV7"
                        }
                    },
                    "errorParamList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/RespErrParamListDtoV1"
                        }
                    }
                },
                "description":"Error parameters list."
            },
            "AutoCode":{
                "required":[
                    "patientContext",
                    "sourceContext",
                    "targetContext"
                ],
                "type":"object",
                "properties":{
                    "dictionary":{
                        "$ref":"#/components/schemas/Dictionary"
                    },
                    "patientContext":{
                        "$ref":"#/components/schemas/PatientContext"
                    },
                    "sourceContext":{
                        "$ref":"#/components/schemas/SourceContext"
                    },
                    "targetContext":{
                        "$ref":"#/components/schemas/TargetContext"
                    },
                    "verbatim":{
                        "type":"string",
                        "xml":{
                            "name":"VERBATIM",
                            "attribute":true
                        }
                    },
                    "verbatimType":{
                        "type":"string",
                        "xml":{
                            "name":"VERBATIMTYPE",
                            "attribute":true
                        }
                    },
                    "deleted":{
                        "type":"boolean",
                        "xml":{
                            "name":"DELETED",
                            "attribute":true
                        }
                    },
                    "contextInfo":{
                        "$ref":"#/components/schemas/ContextInformation"
                    }
                },
                "xml":{
                    "name":"AUTOCODE",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "AutoCodeData":{
                "required":[
                    "autoCodeSet"
                ],
                "type":"object",
                "properties":{
                    "autoCodeSet":{
                        "type":"array",
                        "xml":{
                            "name":"AUTOCODESET"
                        },
                        "items":{
                            "$ref":"#/components/schemas/AutoCodeSet"
                        }
                    }
                },
                "xml":{
                    "name":"AUTOCODEDATA",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "AutoCodeResp":{
                "type":"object",
                "properties":{
                    "codeSetTypeList":{
                        "$ref":"#/components/schemas/CodeSetTypeList"
                    },
                    "autoCodeData":{
                        "$ref":"#/components/schemas/AutoCodeData"
                    },
                    "errorList":{
                        "$ref":"#/components/schemas/ErrorList"
                    },
                    "itemsEvaluated":{
                        "type":"integer",
                        "format":"int32",
                        "xml":{
                            "name":"ItemsEvaluated",
                            "attribute":true
                        }
                    },
                    "bookmark":{
                        "type":"string",
                        "xml":{
                            "name":"Bookmark",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"AUTOCODERESP",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "AutoCodeSet":{
                "type":"object",
                "properties":{
                    "autoCode":{
                        "type":"array",
                        "xml":{
                            "name":"AUTOCODE"
                        },
                        "items":{
                            "$ref":"#/components/schemas/AutoCode"
                        }
                    },
                    "codeSetType":{
                        "type":"string",
                        "xml":{
                            "name":"CODESETTYPE",
                            "attribute":true
                        }
                    }
                }
            },
            "CodeSetType":{
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"NAME",
                            "attribute":true
                        }
                    }
                }
            },
            "CodeSetTypeList":{
                "type":"object",
                "properties":{
                    "codeSetType":{
                        "type":"array",
                        "xml":{
                            "name":"CODESETTYPE"
                        },
                        "items":{
                            "$ref":"#/components/schemas/CodeSetType"
                        }
                    }
                },
                "xml":{
                    "name":"CODESETTYPELIST",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "ContextInformation":{
                "type":"object",
                "properties":{
                    "contextItem":{
                        "type":"array",
                        "xml":{
                            "name":"CONTEXTITEM"
                        },
                        "items":{
                            "$ref":"#/components/schemas/ContextItem"
                        }
                    }
                },
                "xml":{
                    "name":"CONTEXTINFORMATION",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "ContextItem":{
                "type":"object",
                "properties":{
                    "value":{
                        "type":"string"
                    },
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"NAME",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"CONTEXTITEM",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "ControlRef":{
                "type":"object",
                "properties":{
                    "controlRef":{
                        "$ref":"#/components/schemas/ControlRef"
                    },
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"float",
                        "xml":{
                            "name":"REVISION",
                            "attribute":true
                        }
                    },
                    "refName":{
                        "type":"string",
                        "xml":{
                            "name":"REFNAME",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"CONTROLREF",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "Dictionary":{
                "type":"object",
                "properties":{
                    "type":{
                        "type":"string",
                        "xml":{
                            "name":"TYPE",
                            "attribute":true
                        }
                    },
                    "version":{
                        "type":"string",
                        "xml":{
                            "name":"VERSION",
                            "attribute":true
                        }
                    },
                    "culture":{
                        "type":"string",
                        "xml":{
                            "name":"CULTURE",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"DICTIONARY",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "Error":{
                "required":[
                    "description"
                ],
                "type":"object",
                "properties":{
                    "description":{
                        "type":"string",
                        "xml":{
                            "name":"DESCRIPTION"
                        }
                    },
                    "autoCode":{
                        "$ref":"#/components/schemas/AutoCode"
                    }
                }
            },
            "ErrorList":{
                "type":"object",
                "properties":{
                    "error":{
                        "type":"array",
                        "xml":{
                            "name":"ERROR"
                        },
                        "items":{
                            "$ref":"#/components/schemas/Error"
                        }
                    }
                },
                "xml":{
                    "name":"ERRORLIST",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "FormSetRef":{
                "required":[
                    "formRef"
                ],
                "type":"object",
                "properties":{
                    "formRef":{
                        "$ref":"#/components/schemas/FormRef"
                    },
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"float",
                        "xml":{
                            "name":"REVISION",
                            "attribute":true
                        }
                    },
                    "refName":{
                        "type":"string",
                        "xml":{
                            "name":"REFNAME",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"NAME",
                            "attribute":true
                        }
                    },
                    "order":{
                        "type":"integer",
                        "format":"int64",
                        "xml":{
                            "name":"ORDER",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"FORMSETREF",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "ItemSetRef":{
                "required":[
                    "itemRef"
                ],
                "type":"object",
                "properties":{
                    "itemRef":{
                        "$ref":"#/components/schemas/ItemRef"
                    },
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"float",
                        "xml":{
                            "name":"REVISION",
                            "attribute":true
                        }
                    },
                    "refName":{
                        "type":"string",
                        "xml":{
                            "name":"REFNAME",
                            "attribute":true
                        }
                    },
                    "order":{
                        "type":"integer",
                        "format":"int64",
                        "xml":{
                            "name":"ORDER",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"ITEMSETREF",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "PatientContext":{
                "required":[
                    "initials",
                    "patientNumber",
                    "site"
                ],
                "type":"object",
                "properties":{
                    "patientNumber":{
                        "type":"string",
                        "xml":{
                            "name":"PATIENTNUMBER"
                        }
                    },
                    "initials":{
                        "type":"string",
                        "xml":{
                            "name":"INITIALS"
                        }
                    },
                    "site":{
                        "$ref":"#/components/schemas/Site"
                    },
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"PATIENTCONTEXT",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "SectionRef":{
                "type":"object",
                "properties":{
                    "itemRef":{
                        "$ref":"#/components/schemas/ItemRef"
                    },
                    "itemSetRef":{
                        "$ref":"#/components/schemas/ItemSetRef"
                    },
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"float",
                        "xml":{
                            "name":"REVISION",
                            "attribute":true
                        }
                    },
                    "refName":{
                        "type":"string",
                        "xml":{
                            "name":"REFNAME",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"SECTIONREF",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "Site":{
                "type":"object",
                "properties":{
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"GUID",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"NAME",
                            "attribute":true
                        }
                    },
                    "mnemonic":{
                        "type":"string",
                        "xml":{
                            "name":"MNEMONIC",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"SITE",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "SourceContext":{
                "required":[
                    "formSetRef",
                    "informUrl"
                ],
                "type":"object",
                "properties":{
                    "informUrl":{
                        "type":"string",
                        "xml":{
                            "name":"INFORMURL"
                        }
                    },
                    "formSetRef":{
                        "$ref":"#/components/schemas/FormSetRef"
                    },
                    "sourceId":{
                        "type":"string",
                        "xml":{
                            "name":"SOURCEID",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"SOURCECONTEXT",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "TargetContext":{
                "type":"object",
                "properties":{
                    "targetItem":{
                        "type":"array",
                        "xml":{
                            "name":"TARGETITEM"
                        },
                        "items":{
                            "$ref":"#/components/schemas/TargetItem"
                        }
                    },
                    "targetItems":{
                        "type":"array",
                        "writeOnly":true,
                        "items":{
                            "$ref":"#/components/schemas/TargetItem"
                        }
                    }
                },
                "xml":{
                    "name":"TARGETCONTEXT",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "TargetItem":{
                "required":[
                    "formSetRef",
                    "informUrl"
                ],
                "type":"object",
                "properties":{
                    "informUrl":{
                        "type":"string",
                        "xml":{
                            "name":"INFORMURL"
                        }
                    },
                    "formSetRef":{
                        "$ref":"#/components/schemas/FormSetRef"
                    },
                    "codemapKey":{
                        "type":"string",
                        "xml":{
                            "name":"CODEMAPKEY",
                            "attribute":true
                        }
                    },
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"NAME",
                            "attribute":true
                        }
                    },
                    "codeValue":{
                        "type":"string",
                        "xml":{
                            "name":"CODEVALUE",
                            "attribute":true
                        }
                    },
                    "deleted":{
                        "type":"boolean",
                        "xml":{
                            "name":"DELETED",
                            "attribute":true
                        }
                    }
                },
                "xml":{
                    "name":"TARGETITEM",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "AuditInfo":{
                "required":[
                    "changeReason",
                    "informUser"
                ],
                "type":"object",
                "properties":{
                    "informUser":{
                        "type":"string",
                        "xml":{
                            "name":"INFORMUSER"
                        }
                    },
                    "changeReason":{
                        "type":"string",
                        "xml":{
                            "name":"CHANGEREASON"
                        }
                    }
                },
                "xml":{
                    "name":"AUDITINFO",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "PutCodingDataReq":{
                "required":[
                    "auditInfo",
                    "autoCodeData",
                    "trial"
                ],
                "type":"object",
                "properties":{
                    "trial":{
                        "type":"string",
                        "xml":{
                            "name":"TRIAL"
                        }
                    },
                    "auditInfo":{
                        "$ref":"#/components/schemas/AuditInfo"
                    },
                    "autoCodeData":{
                        "$ref":"#/components/schemas/AutoCodeData"
                    }
                },
                "xml":{
                    "name":"PUTCODINGDATAREQ",
                    "namespace":"http://www.oracle.com/InFormAdapter/2011/10/Coding"
                }
            },
            "DiscrepancyInstance":{
                "required":[
                    "guid",
                    "revision"
                ],
                "type":"object",
                "properties":{
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"Guid"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    },
                    "state":{
                        "type":"string",
                        "xml":{
                            "name":"State"
                        },
                        "enum":[
                            "CANDIDATE",
                            "OPENED",
                            "ANSWERED",
                            "CLOSED",
                            "DELETED",
                            "SPONSOR_CONFLICT",
                            "SITE_CONFLICT"
                        ]
                    },
                    "type":{
                        "type":"string",
                        "xml":{
                            "name":"Type"
                        },
                        "enum":[
                            "AUTO",
                            "MANUAL",
                            "UNSPECIFIED"
                        ]
                    },
                    "reissued":{
                        "type":"boolean",
                        "xml":{
                            "name":"Reissued"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "xml":{
                            "name":"Reason"
                        }
                    },
                    "dateEntered":{
                        "type":"string",
                        "format":"date-time",
                        "xml":{
                            "name":"DateEntered"
                        }
                    },
                    "userName":{
                        "type":"string",
                        "xml":{
                            "name":"UserName"
                        }
                    },
                    "inFormItem":{
                        "$ref":"#/components/schemas/InFormItem"
                    }
                }
            },
            "DiscrepancyIssueError":{
                "required":[
                    "discrepancyIssueRequest",
                    "message",
                    "messageId"
                ],
                "type":"object",
                "properties":{
                    "messageId":{
                        "type":"string",
                        "xml":{
                            "name":"MessageId"
                        }
                    },
                    "message":{
                        "type":"string",
                        "xml":{
                            "name":"Message"
                        }
                    },
                    "discrepancyIssueRequest":{
                        "$ref":"#/components/schemas/DiscrepancyIssueRequest"
                    }
                }
            },
            "DiscrepancyIssueErrorList":{
                "required":[
                    "discrepancyIssueError"
                ],
                "type":"object",
                "properties":{
                    "discrepancyIssueError":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyIssueError"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyIssueError"
                        }
                    }
                }
            },
            "DiscrepancyIssueRequest":{
                "required":[
                    "inFormItemIdentifier",
                    "initialState",
                    "reason"
                ],
                "type":"object",
                "properties":{
                    "inFormItemIdentifier":{
                        "$ref":"#/components/schemas/InFormItemIdentifier"
                    },
                    "initialState":{
                        "type":"string",
                        "xml":{
                            "name":"InitialState"
                        },
                        "enum":[
                            "CANDIDATE",
                            "OPENED"
                        ]
                    },
                    "reason":{
                        "type":"string",
                        "xml":{
                            "name":"Reason"
                        }
                    }
                }
            },
            "DiscrepancyResult":{
                "required":[
                    "discrepancy",
                    "inFormItemIdentifier"
                ],
                "type":"object",
                "properties":{
                    "discrepancy":{
                        "$ref":"#/components/schemas/DiscrepancyInstance"
                    },
                    "inFormItemIdentifier":{
                        "$ref":"#/components/schemas/InFormItemIdentifier"
                    },
                    "mappedItem":{
                        "type":"boolean",
                        "xml":{
                            "attribute":true
                        }
                    }
                }
            },
            "DiscrepancyResultList":{
                "required":[
                    "discrepancyResult"
                ],
                "type":"object",
                "properties":{
                    "discrepancyResult":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyResult"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyResult"
                        }
                    }
                }
            },
            "InFormItem":{
                "type":"object",
                "properties":{
                    "siteId":{
                        "type":"integer",
                        "format":"int64",
                        "xml":{
                            "name":"SiteId"
                        }
                    },
                    "subjectGuid":{
                        "type":"string",
                        "xml":{
                            "name":"SubjectGuid"
                        }
                    },
                    "visit":{
                        "$ref":"#/components/schemas/RefNameTuple"
                    },
                    "form":{
                        "$ref":"#/components/schemas/RefNameTuple"
                    },
                    "sectionName":{
                        "type":"string",
                        "xml":{
                            "name":"SectionName"
                        }
                    },
                    "itemSet":{
                        "$ref":"#/components/schemas/ItemSet"
                    },
                    "itemName":{
                        "type":"string",
                        "xml":{
                            "name":"ItemName"
                        }
                    }
                }
            },
            "InFormItemIdentifier":{
                "type":"object",
                "properties":{
                    "inFormItem":{
                        "$ref":"#/components/schemas/InFormItem"
                    },
                    "inFormItemGuid":{
                        "type":"string",
                        "xml":{
                            "name":"InFormItemGuid"
                        }
                    },
                    "inFormItemDbuid":{
                        "type":"string",
                        "xml":{
                            "name":"InFormItemDbuid"
                        }
                    }
                }
            },
            "IssueResponse":{
                "required":[
                    "resultList"
                ],
                "type":"object",
                "properties":{
                    "resultList":{
                        "$ref":"#/components/schemas/DiscrepancyResultList"
                    },
                    "errorList":{
                        "$ref":"#/components/schemas/DiscrepancyIssueErrorList"
                    }
                },
                "xml":{
                    "name":"IssueResponseIssueResult",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "ItemSet":{
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"Name"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    },
                    "order":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Order"
                        }
                    }
                }
            },
            "RefNameTuple":{
                "required":[
                    "name"
                ],
                "type":"object",
                "properties":{
                    "name":{
                        "type":"string",
                        "xml":{
                            "name":"Name"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    },
                    "index":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Index"
                        }
                    }
                }
            },
            "DiscrepancyIssueRequestList":{
                "required":[
                    "discrepancyIssueRequest"
                ],
                "type":"object",
                "properties":{
                    "discrepancyIssueRequest":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyIssueRequest"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyIssueRequest"
                        }
                    }
                }
            },
            "IssueRequest":{
                "required":[
                    "requestList"
                ],
                "type":"object",
                "properties":{
                    "authenticationTrialName":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "transactionId":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "transactionUserName":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "validateOnly":{
                        "type":"boolean",
                        "xml":{
                            "name":"ValidateOnly"
                        }
                    },
                    "requestList":{
                        "$ref":"#/components/schemas/DiscrepancyIssueRequestList"
                    }
                },
                "xml":{
                    "name":"IssueIssueRequest",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "DetailByTransactionIdResponse":{
                "type":"object",
                "properties":{
                    "discrepancyRevisionInstanceList":{
                        "$ref":"#/components/schemas/DiscrepancyRevisionInstanceList"
                    }
                },
                "xml":{
                    "name":"GetByTransactionIdResponseGetByTransactionIdResult",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "DiscrepancyRevisionInstance":{
                "required":[
                    "guid",
                    "revision"
                ],
                "type":"object",
                "properties":{
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"Guid"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    },
                    "state":{
                        "type":"string",
                        "xml":{
                            "name":"State"
                        },
                        "enum":[
                            "CANDIDATE",
                            "OPENED",
                            "ANSWERED",
                            "CLOSED",
                            "DELETED",
                            "SPONSOR_CONFLICT",
                            "SITE_CONFLICT"
                        ]
                    },
                    "type":{
                        "type":"string",
                        "xml":{
                            "name":"Type"
                        },
                        "enum":[
                            "AUTO",
                            "MANUAL",
                            "UNSPECIFIED"
                        ]
                    },
                    "reissued":{
                        "type":"boolean",
                        "xml":{
                            "name":"Reissued"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "xml":{
                            "name":"Reason"
                        }
                    },
                    "dateEntered":{
                        "type":"string",
                        "format":"date-time",
                        "xml":{
                            "name":"DateEntered"
                        }
                    },
                    "userName":{
                        "type":"string",
                        "xml":{
                            "name":"UserName"
                        }
                    }
                }
            },
            "DiscrepancyRevisionInstanceList":{
                "required":[
                    "discrepancyRevisionInstance"
                ],
                "type":"object",
                "properties":{
                    "discrepancyRevisionInstance":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyRevisionInstance"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyRevisionInstance"
                        }
                    }
                }
            },
            "HistoryByGuidResponse":{
                "type":"object",
                "properties":{
                    "discrepancyRevisionInstanceList":{
                        "$ref":"#/components/schemas/DiscrepancyRevisionInstanceList"
                    }
                },
                "xml":{
                    "name":"GetHistoryByDiscrepancyGuidResponseGetHistoryByDiscrepancyGuidResult",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "DiscrepancyListRequest":{
                "type":"object",
                "properties":{
                    "discrepancyList":{
                        "type":"array",
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyRequest"
                        }
                    }
                }
            },
            "DiscrepancyRequest":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string"
                    },
                    "revNum":{
                        "type":"number",
                        "format":"double"
                    }
                }
            },
            "DiscrepancyIdentifier":{
                "required":[
                    "guid",
                    "revision"
                ],
                "type":"object",
                "properties":{
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"Guid"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    }
                }
            },
            "DiscrepancyUpdateError":{
                "required":[
                    "discrepancyUpdateRequest",
                    "message",
                    "messageId"
                ],
                "type":"object",
                "properties":{
                    "messageId":{
                        "type":"string",
                        "xml":{
                            "name":"MessageId"
                        }
                    },
                    "message":{
                        "type":"string",
                        "xml":{
                            "name":"Message"
                        }
                    },
                    "discrepancyUpdateRequest":{
                        "$ref":"#/components/schemas/DiscrepancyUpdateRequest"
                    }
                }
            },
            "DiscrepancyUpdateErrorList":{
                "required":[
                    "discrepancyUpdateError"
                ],
                "type":"object",
                "properties":{
                    "discrepancyUpdateError":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyUpdateError"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyUpdateError"
                        }
                    }
                }
            },
            "DiscrepancyUpdateRequest":{
                "required":[
                    "guid",
                    "reason",
                    "revision",
                    "state"
                ],
                "type":"object",
                "properties":{
                    "guid":{
                        "type":"string",
                        "xml":{
                            "name":"Guid"
                        }
                    },
                    "revision":{
                        "type":"number",
                        "format":"double",
                        "xml":{
                            "name":"Revision"
                        }
                    },
                    "state":{
                        "type":"string",
                        "xml":{
                            "name":"State"
                        },
                        "enum":[
                            "CANDIDATE",
                            "OPENED",
                            "ANSWERED",
                            "CLOSED",
                            "DELETED",
                            "SPONSOR_CONFLICT",
                            "SITE_CONFLICT"
                        ]
                    },
                    "reissue":{
                        "type":"boolean",
                        "xml":{
                            "name":"Reissue"
                        }
                    },
                    "reason":{
                        "type":"string",
                        "xml":{
                            "name":"Reason"
                        }
                    }
                }
            },
            "DiscrepancyUpdateResultList":{
                "required":[
                    "discrepancyUpdateResult"
                ],
                "type":"object",
                "properties":{
                    "discrepancyUpdateResult":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyUpdateResult"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyIdentifier"
                        }
                    }
                }
            },
            "UpdateResponse":{
                "required":[
                    "resultList"
                ],
                "type":"object",
                "properties":{
                    "validated":{
                        "type":"boolean",
                        "xml":{
                            "name":"Validated"
                        }
                    },
                    "resultList":{
                        "$ref":"#/components/schemas/DiscrepancyUpdateResultList"
                    },
                    "errorList":{
                        "$ref":"#/components/schemas/DiscrepancyUpdateErrorList"
                    }
                },
                "xml":{
                    "name":"UpdateResponseUpdateResult",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "DiscrepancyUpdateRequestList":{
                "required":[
                    "discrepancyUpdateRequest"
                ],
                "type":"object",
                "properties":{
                    "discrepancyUpdateRequest":{
                        "type":"array",
                        "xml":{
                            "name":"DiscrepancyUpdateRequest"
                        },
                        "items":{
                            "$ref":"#/components/schemas/DiscrepancyUpdateRequest"
                        }
                    }
                }
            },
            "UpdateRequest":{
                "required":[
                    "requestList"
                ],
                "type":"object",
                "properties":{
                    "authenticationTrialName":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "transactionId":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "transactionUserName":{
                        "type":"string",
                        "xml":{
                            "attribute":true
                        }
                    },
                    "validateOnly":{
                        "type":"boolean",
                        "xml":{
                            "name":"ValidateOnly"
                        }
                    },
                    "requestList":{
                        "$ref":"#/components/schemas/DiscrepancyUpdateRequestList"
                    }
                },
                "xml":{
                    "name":"UpdateUpdateRequest",
                    "namespace":"http://www.phaseforward.com/InForm/2010/01/Discrepancy"
                }
            },
            "CommentDto":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Object Unique GUID",
                        "format":"uuid"
                    },
                    "objectId":{
                        "type":"string",
                        "description":"The GUID of object the comment belongs to",
                        "format":"uuid"
                    },
                    "parentId":{
                        "type":"string",
                        "description":"The GUID of object the reply to this comment, if applicable",
                        "format":"uuid"
                    },
                    "message":{
                        "type":"string",
                        "description":"The comment made by the user",
                        "example":"This is a sample comment"
                    },
                    "userId":{
                        "type":"string",
                        "description":"The GUID of the user posting the comment",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"The status of the comment, such as resolved or unresolved",
                        "example":"UNRESOLVED"
                    },
                    "objectType":{
                        "type":"string",
                        "description":"The type of object the comment belongs to"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The version start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The precise version start date",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"The operation type"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"The GUID of the study where this comment belong to",
                        "format":"uuid"
                    },
                    "dateCreated":{
                        "type":"string",
                        "description":"The timestamp when the message was posted",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"The software version number",
                        "example":2
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"The object version number",
                        "example":2
                    },
                    "firstName":{
                        "type":"string",
                        "description":"The first name of the person who made the comment",
                        "example":"system"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"The last name of the person who made the comment",
                        "example":"clinicalOne"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"The localized full name of the person who made the comment"
                    },
                    "origin":{
                        "type":"string",
                        "description":"Where the comment thread was originally started",
                        "example":"DESIGN"
                    },
                    "isRead":{
                        "type":"boolean",
                        "description":"Was comment read by the user making the request",
                        "example":true
                    },
                    "tags":{
                        "$ref":"#/components/schemas/CommentTagDto"
                    }
                },
                "description":"The list of all replies to this comment"
            },
            "CommentTagDto":{
                "type":"object",
                "properties":{
                    "studyTitle":{
                        "type":"string",
                        "description":"The study title"
                    },
                    "mainObjectTitle":{
                        "type":"string",
                        "description":"The title of the main object where the comment is made, such as the form name"
                    },
                    "objectRefName":{
                        "type":"string",
                        "description":"The reference name of the object commented on",
                        "example":"TEXT_01"
                    },
                    "objectTitle":{
                        "type":"string",
                        "description":"The title of the object commented on",
                        "example":"Race"
                    },
                    "eventTitle":{
                        "type":"string",
                        "description":"The title of the event on which the object commented on is associated with",
                        "example":"Demography Visit"
                    },
                    "subjectNumber":{
                        "type":"string",
                        "description":"the subject associated with object commented on",
                        "example":"100-01"
                    },
                    "commentUrl":{
                        "type":"string",
                        "description":"The url to reply to the message from the email"
                    },
                    "userIds":{
                        "type":"array",
                        "description":"list of users to send email notification to",
                        "items":{
                            "type":"string",
                            "description":"list of users to send email notification to",
                            "format":"uuid"
                        }
                    }
                },
                "description":"The email notification metadata for users tagged on the comment"
            },
            "CommentsDtoV1":{
                "type":"object",
                "properties":{
                    "id":{
                        "type":"string",
                        "description":"Object Unique GUID",
                        "format":"uuid"
                    },
                    "objectId":{
                        "type":"string",
                        "description":"The GUID of object the comment belongs to",
                        "format":"uuid"
                    },
                    "parentId":{
                        "type":"string",
                        "description":"The GUID of object the reply to this comment, if applicable",
                        "format":"uuid"
                    },
                    "message":{
                        "type":"string",
                        "description":"The comment made by the user",
                        "example":"This is a sample comment"
                    },
                    "userId":{
                        "type":"string",
                        "description":"The GUID of the user posting the comment",
                        "format":"uuid"
                    },
                    "status":{
                        "type":"string",
                        "description":"The status of the comment, such as resolved or unresolved",
                        "example":"UNRESOLVED"
                    },
                    "objectType":{
                        "type":"string",
                        "description":"The type of object the comment belongs to"
                    },
                    "versionStart":{
                        "type":"string",
                        "description":"The version start date",
                        "format":"date-time"
                    },
                    "versionEnd":{
                        "type":"string",
                        "description":"The precise version start date",
                        "format":"date-time"
                    },
                    "operationType":{
                        "type":"string",
                        "description":"The operation type"
                    },
                    "studyId":{
                        "type":"string",
                        "description":"The GUID of the study where this comment belong to",
                        "format":"uuid"
                    },
                    "dateCreated":{
                        "type":"string",
                        "description":"The timestamp when the message was posted",
                        "format":"date-time"
                    },
                    "softwareVersionNumber":{
                        "type":"number",
                        "description":"The software version number",
                        "example":2
                    },
                    "objectVersionNumber":{
                        "type":"number",
                        "description":"The object version number",
                        "example":2
                    },
                    "firstName":{
                        "type":"string",
                        "description":"The first name of the person who made the comment",
                        "example":"system"
                    },
                    "lastName":{
                        "type":"string",
                        "description":"The last name of the person who made the comment",
                        "example":"clinicalOne"
                    },
                    "fullName":{
                        "type":"string",
                        "description":"The localized full name of the person who made the comment"
                    },
                    "origin":{
                        "type":"string",
                        "description":"Where the comment thread was originally started",
                        "example":"DESIGN"
                    },
                    "isRead":{
                        "type":"boolean",
                        "description":"Was comment read by the user making the request",
                        "example":true
                    },
                    "replies":{
                        "type":"array",
                        "description":"The list of all replies to this comment",
                        "items":{
                            "$ref":"#/components/schemas/CommentDto"
                        }
                    },
                    "tags":{
                        "$ref":"#/components/schemas/CommentTagDto"
                    }
                }
            },
            "CommentsReadDtoV1":{
                "title":"CommentsReadDto v1.0",
                "type":"object",
                "properties":{
                    "commentIds":{
                        "type":"string",
                        "description":"List of comments IDs",
                        "format":"uuid"
                    },
                    "userIdRead":{
                        "type":"string",
                        "description":"User id for users different then the caller",
                        "format":"uuid"
                    }
                },
                "description":"Information about read comments"
            }
        },
        "securitySchemes":{
            "Basic":{
                "type":"http",
                "scheme":"Basic"
            },
            "Bearer":{
                "type":"http",
                "scheme":"Bearer"
            }
        }
    },
    "tags":[
        {
            "name":"Codelist/Add codelist group",
            "description":"The operations from the Codelist/Add codelist group category."
        },
        {
            "name":"Codelist/Associate codelist group to a study",
            "description":"The operations from the Codelist/Associate codelist group to a study category."
        },
        {
            "name":"Codelist/Codelist history",
            "description":"The operations from the Codelist/Codelist history category."
        },
        {
            "name":"Codelist/Copy codelist",
            "description":"The operations from the Codelist/Copy codelist category."
        },
        {
            "name":"Codelist/Copy dynamic codelist mappings",
            "description":"The operations from the Codelist/Copy dynamic codelist mappings category."
        },
        {
            "name":"Codelist/Create codelist",
            "description":"The operations from the Codelist/Create codelist category."
        },
        {
            "name":"Codelist/Create codelist (legacy path)",
            "description":"The operations from the Codelist/Create codelist (legacy path) category."
        },
        {
            "name":"Codelist/Create codelist with tag (deprecated path)",
            "description":"The operations from the Codelist/Create codelist with tag (deprecated path) category."
        },
        {
            "name":"Codelist/Export codelist values",
            "description":"The operations from the Codelist/Export codelist values category."
        },
        {
            "name":"Codelist/Get all codelist groups",
            "description":"The operations from the Codelist/Get all codelist groups category."
        },
        {
            "name":"Codelist/Get all codelist values",
            "description":"The operations from the Codelist/Get all codelist values category."
        },
        {
            "name":"Codelist/Get codelist audit history (code values)",
            "description":"The operations from the Codelist/Get codelist audit history (code values) category."
        },
        {
            "name":"Codelist/Get codelist audit history (codes)",
            "description":"The operations from the Codelist/Get codelist audit history (codes) category."
        },
        {
            "name":"Codelist/Get codelist audit history (groups)",
            "description":"The operations from the Codelist/Get codelist audit history (groups) category."
        },
        {
            "name":"Codelist/Get codelist by id (deprecated path)",
            "description":"The operations from the Codelist/Get codelist by id (deprecated path) category."
        },
        {
            "name":"Codelist/Get codelist by name",
            "description":"The operations from the Codelist/Get codelist by name category."
        },
        {
            "name":"Codelist/Get codelist by name (deprecated path)",
            "description":"The operations from the Codelist/Get codelist by name (deprecated path) category."
        },
        {
            "name":"Codelist/Get codelist group by id",
            "description":"The operations from the Codelist/Get codelist group by id category."
        },
        {
            "name":"Codelist/Get codelist history (search)",
            "description":"The operations from the Codelist/Get codelist history (search) category."
        },
        {
            "name":"Codelist/Get codelist snapshot (as of date)",
            "description":"The operations from the Codelist/Get codelist snapshot (as of date) category."
        },
        {
            "name":"Codelist/Get codelist tags by id (deprecated path)",
            "description":"The operations from the Codelist/Get codelist tags by id (deprecated path) category."
        },
        {
            "name":"Codelist/Get codelist values",
            "description":"The operations from the Codelist/Get codelist values category."
        },
        {
            "name":"Codelist/Get codelists by tag (deprecated path)",
            "description":"The operations from the Codelist/Get codelists by tag (deprecated path) category."
        },
        {
            "name":"Codelist/List codelists",
            "description":"The operations from the Codelist/List codelists category."
        },
        {
            "name":"Codelist/Update codelist",
            "description":"The operations from the Codelist/Update codelist category."
        },
        {
            "name":"Codelist/Update codelist (legacy path)",
            "description":"The operations from the Codelist/Update codelist (legacy path) category."
        },
        {
            "name":"Codelist/Update codelist group",
            "description":"The operations from the Codelist/Update codelist group category."
        },
        {
            "name":"Codelist/Update codelist tag by id (deprecated path)",
            "description":"The operations from the Codelist/Update codelist tag by id (deprecated path) category."
        },
        {
            "name":"Codelist/Update codelist tags (deprecated path)",
            "description":"The operations from the Codelist/Update codelist tags (deprecated path) category."
        },
        {
            "name":"Coding/Query Resource/Create queries or discrepancies",
            "description":"The operations from the Coding/Query Resource/Create queries or discrepancies category."
        },
        {
            "name":"Coding/Query Resource/Get query details by query ID or discrepancy ID and revision number",
            "description":"The operations from the Coding/Query Resource/Get query details by query ID or discrepancy ID and revision number category."
        },
        {
            "name":"Coding/Query Resource/Get query details on a verbatim term from Clinical One",
            "description":"The operations from the Coding/Query Resource/Get query details on a verbatim term from Clinical One category."
        },
        {
            "name":"Coding/Query Resource/Update status of created queries or discrepancies",
            "description":"The operations from the Coding/Query Resource/Update status of created queries or discrepancies category."
        },
        {
            "name":"Coding/Verbatim Terms/Get list of verbatim terms to code",
            "description":"The operations from the Coding/Verbatim Terms/Get list of verbatim terms to code category."
        },
        {
            "name":"Coding/Verbatim Terms/Update status of created queries or discrepancies",
            "description":"The operations from the Coding/Verbatim Terms/Update status of created queries or discrepancies category."
        },
        {
            "name":"Comments/Add comment or reply to an object",
            "description":"The operations from the Comments/Add comment or reply to an object category."
        },
        {
            "name":"Comments/Delete comment or reply",
            "description":"The operations from the Comments/Delete comment or reply category."
        },
        {
            "name":"Comments/Get all comments for an object",
            "description":"The operations from the Comments/Get all comments for an object category."
        },
        {
            "name":"Comments/Get unread comments count for a list of objects",
            "description":"The operations from the Comments/Get unread comments count for a list of objects category."
        },
        {
            "name":"Comments/Get unread comments count for an object",
            "description":"The operations from the Comments/Get unread comments count for an object category."
        },
        {
            "name":"Comments/Mark comments as read for a user",
            "description":"The operations from the Comments/Mark comments as read for a user category."
        },
        {
            "name":"Comments/Mark comments as unread for a user",
            "description":"The operations from the Comments/Mark comments as unread for a user category."
        },
        {
            "name":"Comments/Post comment or reply",
            "description":"The operations from the Comments/Post comment or reply category."
        },
        {
            "name":"Comments/Update comment",
            "description":"The operations from the Comments/Update comment category."
        },
        {
            "name":"Data Actions/Bulk Action/Given bulk action on set of given subjectIds or visitIds",
            "description":"The operations from the Data Actions/Bulk Action/Given bulk action on set of given subjectIds or visitIds category."
        },
        {
            "name":"Data Actions/Data Elements/Get all items with source data verification information",
            "description":"The operations from the Data Actions/Data Elements/Get all items with source data verification information category."
        },
        {
            "name":"Data Actions/Data Elements/Get data elements items summary for locked or frozen",
            "description":"The operations from the Data Actions/Data Elements/Get data elements items summary for locked or frozen category."
        },
        {
            "name":"Data Actions/Data Elements/Get data elements summary for locked or frozen items at row level",
            "description":"The operations from the Data Actions/Data Elements/Get data elements summary for locked or frozen items at row level category."
        },
        {
            "name":"Data Actions/Data Elements/Get data elements validation summary for locked or frozen items at row level",
            "description":"The operations from the Data Actions/Data Elements/Get data elements validation summary for locked or frozen items at row level category."
        },
        {
            "name":"Data Actions/Freeze/Freeze multiple data elements for a subject",
            "description":"The operations from the Data Actions/Freeze/Freeze multiple data elements for a subject category."
        },
        {
            "name":"Data Actions/Freeze/Unfreeze single data element of a visit",
            "description":"The operations from the Data Actions/Freeze/Unfreeze single data element of a visit category."
        },
        {
            "name":"Data Actions/Freeze/Unfreeze visit start date",
            "description":"The operations from the Data Actions/Freeze/Unfreeze visit start date category."
        },
        {
            "name":"Data Actions/Lock/Get all Lock records for a visit",
            "description":"The operations from the Data Actions/Lock/Get all Lock records for a visit category."
        },
        {
            "name":"Data Actions/Lock/Get all subject lock records",
            "description":"The operations from the Data Actions/Lock/Get all subject lock records category."
        },
        {
            "name":"Data Actions/Lock/Get item level Lock records for a subject",
            "description":"The operations from the Data Actions/Lock/Get item level Lock records for a subject category."
        },
        {
            "name":"Data Actions/Lock/Get item level lock records for an item",
            "description":"The operations from the Data Actions/Lock/Get item level lock records for an item category."
        },
        {
            "name":"Data Actions/Lock/Get visit level lock records for a visit",
            "description":"The operations from the Data Actions/Lock/Get visit level lock records for a visit category."
        },
        {
            "name":"Data Actions/Lock/Lock data elements in a subject",
            "description":"The operations from the Data Actions/Lock/Lock data elements in a subject category."
        },
        {
            "name":"Data Actions/Lock/Lock data elements in a visit",
            "description":"The operations from the Data Actions/Lock/Lock data elements in a visit category."
        },
        {
            "name":"Data Actions/Lock/Lock multiple visits' items",
            "description":"The operations from the Data Actions/Lock/Lock multiple visits' items category."
        },
        {
            "name":"Data Actions/Lock/Lock subject level record for Subject ID",
            "description":"The operations from the Data Actions/Lock/Lock subject level record for Subject ID category."
        },
        {
            "name":"Data Actions/Multiple Visits/Get request for multiple locked visits summary",
            "description":"The operations from the Data Actions/Multiple Visits/Get request for multiple locked visits summary category."
        },
        {
            "name":"Data Actions/Sign Evaluation/Calculate sign overdue and trigger mail notification",
            "description":"The operations from the Data Actions/Sign Evaluation/Calculate sign overdue and trigger mail notification category."
        },
        {
            "name":"Data Actions/Sign Evaluation/Get number of all due and overdue signatures for a study",
            "description":"The operations from the Data Actions/Sign Evaluation/Get number of all due and overdue signatures for a study category."
        },
        {
            "name":"Data Actions/Sign Evaluation/Process sign evaluation from data change event",
            "description":"The operations from the Data Actions/Sign Evaluation/Process sign evaluation from data change event category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Check if scope type (ITEM-VSD) item is eligible for clearing its data",
            "description":"The operations from the Data Actions/Sign Verify Resource/Check if scope type (ITEM-VSD) item is eligible for clearing its data category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Get SDV required items",
            "description":"The operations from the Data Actions/Sign Verify Resource/Get SDV required items category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Get list of svf by study",
            "description":"The operations from the Data Actions/Sign Verify Resource/Get list of svf by study category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Get sign information",
            "description":"The operations from the Data Actions/Sign Verify Resource/Get sign information category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Get sign information by visit",
            "description":"The operations from the Data Actions/Sign Verify Resource/Get sign information by visit category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Unsign and unverify data",
            "description":"The operations from the Data Actions/Sign Verify Resource/Unsign and unverify data category."
        },
        {
            "name":"Data Actions/Sign Verify Resource/Unsign and unverify item",
            "description":"The operations from the Data Actions/Sign Verify Resource/Unsign and unverify item category."
        },
        {
            "name":"Data Actions/Signature Configuration/Delete record from sign configuration",
            "description":"The operations from the Data Actions/Signature Configuration/Delete record from sign configuration category."
        },
        {
            "name":"Data Actions/Signature Configuration/Get signature configuration of a study",
            "description":"The operations from the Data Actions/Signature Configuration/Get signature configuration of a study category."
        },
        {
            "name":"Data Actions/Signature Configuration/Save signature configuration of a study",
            "description":"The operations from the Data Actions/Signature Configuration/Save signature configuration of a study category."
        },
        {
            "name":"Data Actions/Signature Configuration/Update signature configuration of a study",
            "description":"The operations from the Data Actions/Signature Configuration/Update signature configuration of a study category."
        },
        {
            "name":"Data Actions/Unlock/Unlock Visit Level Records",
            "description":"The operations from the Data Actions/Unlock/Unlock Visit Level Records category."
        },
        {
            "name":"Data Actions/Unlock/Unlock subject level record for subject ID",
            "description":"The operations from the Data Actions/Unlock/Unlock subject level record for subject ID category."
        },
        {
            "name":"Data Actions/Unlock/Unlock the given records for a visit",
            "description":"The operations from the Data Actions/Unlock/Unlock the given records for a visit category."
        },
        {
            "name":"Data Capture/Coding Status/Get data elements to be coded by code Type",
            "description":"The operations from the Data Capture/Coding Status/Get data elements to be coded by code Type category."
        },
        {
            "name":"Data Capture/Coding Status/Get data elements to be coded using source IDs",
            "description":"The operations from the Data Capture/Coding Status/Get data elements to be coded using source IDs category."
        },
        {
            "name":"Data Capture/Coding Status/Update multiple coded data elements",
            "description":"The operations from the Data Capture/Coding Status/Update multiple coded data elements category."
        },
        {
            "name":"Data Capture/DCProperties APIs/Get Data Capture properties",
            "description":"The operations from the Data Capture/DCProperties APIs/Get Data Capture properties category."
        },
        {
            "name":"Data Capture/DCProperties APIs/Get audit history of a property",
            "description":"The operations from the Data Capture/DCProperties APIs/Get audit history of a property category."
        },
        {
            "name":"Data Capture/Data Elements/Clear data elements scope by study ID and mode",
            "description":"The operations from the Data Capture/Data Elements/Clear data elements scope by study ID and mode category."
        },
        {
            "name":"Data Capture/Data Elements/Clear form data",
            "description":"The operations from the Data Capture/Data Elements/Clear form data category."
        },
        {
            "name":"Data Capture/Data Elements/Create data elements for a visit and form",
            "description":"The operations from the Data Capture/Data Elements/Create data elements for a visit and form category."
        },
        {
            "name":"Data Capture/Data Elements/Create data elements for the flat part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Create data elements for the flat part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Create data elements for the repeating part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Create data elements for the repeating part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Create migrate data elements for a subject",
            "description":"The operations from the Data Capture/Data Elements/Create migrate data elements for a subject category."
        },
        {
            "name":"Data Capture/Data Elements/Create multiple data elements for a subject",
            "description":"The operations from the Data Capture/Data Elements/Create multiple data elements for a subject category."
        },
        {
            "name":"Data Capture/Data Elements/Create multiple data elements for repeating form",
            "description":"The operations from the Data Capture/Data Elements/Create multiple data elements for repeating form category."
        },
        {
            "name":"Data Capture/Data Elements/Create multiple data elements in a form with form associations",
            "description":"The operations from the Data Capture/Data Elements/Create multiple data elements in a form with form associations category."
        },
        {
            "name":"Data Capture/Data Elements/Create source data verification group",
            "description":"The operations from the Data Capture/Data Elements/Create source data verification group category."
        },
        {
            "name":"Data Capture/Data Elements/Delete data elements for a visit and form",
            "description":"The operations from the Data Capture/Data Elements/Delete data elements for a visit and form category."
        },
        {
            "name":"Data Capture/Data Elements/Delete data elements in a form within a visit",
            "description":"The operations from the Data Capture/Data Elements/Delete data elements in a form within a visit category."
        },
        {
            "name":"Data Capture/Data Elements/Freeze multiple data elements for a subject",
            "description":"The operations from the Data Capture/Data Elements/Freeze multiple data elements for a subject category."
        },
        {
            "name":"Data Capture/Data Elements/Get all data elements based on subject and visit",
            "description":"The operations from the Data Capture/Data Elements/Get all data elements based on subject and visit category."
        },
        {
            "name":"Data Capture/Data Elements/Get all elements required to be cleared to modify a data element",
            "description":"The operations from the Data Capture/Data Elements/Get all elements required to be cleared to modify a data element category."
        },
        {
            "name":"Data Capture/Data Elements/Get all existing data elements across all repeating form and visit instances",
            "description":"The operations from the Data Capture/Data Elements/Get all existing data elements across all repeating form and visit instances category."
        },
        {
            "name":"Data Capture/Data Elements/Get all items with source data verification information",
            "description":"The operations from the Data Capture/Data Elements/Get all items with source data verification information category."
        },
        {
            "name":"Data Capture/Data Elements/Get all source data verification groups",
            "description":"The operations from the Data Capture/Data Elements/Get all source data verification groups category."
        },
        {
            "name":"Data Capture/Data Elements/Get audit history for a form association",
            "description":"The operations from the Data Capture/Data Elements/Get audit history for a form association category."
        },
        {
            "name":"Data Capture/Data Elements/Get consolidated repeat instance numbers",
            "description":"The operations from the Data Capture/Data Elements/Get consolidated repeat instance numbers category."
        },
        {
            "name":"Data Capture/Data Elements/Get data element records for a subject and date range",
            "description":"The operations from the Data Capture/Data Elements/Get data element records for a subject and date range category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements based on subject, visit, and form",
            "description":"The operations from the Data Capture/Data Elements/Get data elements based on subject, visit, and form category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code",
            "description":"The operations from the Data Capture/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements by subject and event ID",
            "description":"The operations from the Data Capture/Data Elements/Get data elements by subject and event ID category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements for a list of items by subject ID",
            "description":"The operations from the Data Capture/Data Elements/Get data elements for a list of items by subject ID category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements for a visit and form combination",
            "description":"The operations from the Data Capture/Data Elements/Get data elements for a visit and form combination category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements for multiple items",
            "description":"The operations from the Data Capture/Data Elements/Get data elements for multiple items category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements history with pagination",
            "description":"The operations from the Data Capture/Data Elements/Get data elements history with pagination category."
        },
        {
            "name":"Data Capture/Data Elements/Get data elements with form associations",
            "description":"The operations from the Data Capture/Data Elements/Get data elements with form associations category."
        },
        {
            "name":"Data Capture/Data Elements/Get deleted data elements",
            "description":"The operations from the Data Capture/Data Elements/Get deleted data elements category."
        },
        {
            "name":"Data Capture/Data Elements/Get form associations by study ID",
            "description":"The operations from the Data Capture/Data Elements/Get form associations by study ID category."
        },
        {
            "name":"Data Capture/Data Elements/Get repeat instance numbers",
            "description":"The operations from the Data Capture/Data Elements/Get repeat instance numbers category."
        },
        {
            "name":"Data Capture/Data Elements/Get the audit history for a data element",
            "description":"The operations from the Data Capture/Data Elements/Get the audit history for a data element category."
        },
        {
            "name":"Data Capture/Data Elements/Get the current status of a data element",
            "description":"The operations from the Data Capture/Data Elements/Get the current status of a data element category."
        },
        {
            "name":"Data Capture/Data Elements/Get the data element for a subject for a form and a site",
            "description":"The operations from the Data Capture/Data Elements/Get the data element for a subject for a form and a site category."
        },
        {
            "name":"Data Capture/Data Elements/Get the deleted data elements in a form",
            "description":"The operations from the Data Capture/Data Elements/Get the deleted data elements in a form category."
        },
        {
            "name":"Data Capture/Data Elements/Unfreeze single data element of a visit",
            "description":"The operations from the Data Capture/Data Elements/Unfreeze single data element of a visit category."
        },
        {
            "name":"Data Capture/Data Elements/Update data elements for a repeating part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Update data elements for a repeating part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Update data elements for a visit and form",
            "description":"The operations from the Data Capture/Data Elements/Update data elements for a visit and form category."
        },
        {
            "name":"Data Capture/Data Elements/Update data elements for the flat part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Update data elements for the flat part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Update data elements for the repeating part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Update data elements for the repeating part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Update multiple data elements for a given form, event and subject",
            "description":"The operations from the Data Capture/Data Elements/Update multiple data elements for a given form, event and subject category."
        },
        {
            "name":"Data Capture/Data Elements/Update single data element",
            "description":"The operations from the Data Capture/Data Elements/Update single data element category."
        },
        {
            "name":"Data Capture/Data Elements/Update source data verification group",
            "description":"The operations from the Data Capture/Data Elements/Update source data verification group category."
        },
        {
            "name":"Data Capture/Data Elements/Upsert data elements for a visit and form",
            "description":"The operations from the Data Capture/Data Elements/Upsert data elements for a visit and form category."
        },
        {
            "name":"Data Capture/Data Elements/Upsert data elements for the flat part of a multi section form",
            "description":"The operations from the Data Capture/Data Elements/Upsert data elements for the flat part of a multi section form category."
        },
        {
            "name":"Data Capture/Data Elements/Verify VSD and multiple data elements for a subject",
            "description":"The operations from the Data Capture/Data Elements/Verify VSD and multiple data elements for a subject category."
        },
        {
            "name":"Data Capture/Data Elements/Verify multiple data elements for a subject",
            "description":"The operations from the Data Capture/Data Elements/Verify multiple data elements for a subject category."
        },
        {
            "name":"Data Capture/Data Elements/v1.0",
            "description":"The operations from the Data Capture/Data Elements/v1.0 category."
        },
        {
            "name":"Data Capture/EHR Data/Add EHR Data for a particular subject and a visit",
            "description":"The operations from the Data Capture/EHR Data/Add EHR Data for a particular subject and a visit category."
        },
        {
            "name":"Data Capture/EHR Data/Get EHR Data for a particular subject and visit",
            "description":"The operations from the Data Capture/EHR Data/Get EHR Data for a particular subject and visit category."
        },
        {
            "name":"Data Capture/EHR Data/Get patient information based on the Medical Record Number",
            "description":"The operations from the Data Capture/EHR Data/Get patient information based on the Medical Record Number category."
        },
        {
            "name":"Data Capture/EHR Data/Get patient link status based on the site ID",
            "description":"The operations from the Data Capture/EHR Data/Get patient link status based on the site ID category."
        },
        {
            "name":"Data Capture/Electronic Signature/Get URL for IAMS login page",
            "description":"The operations from the Data Capture/Electronic Signature/Get URL for IAMS login page category."
        },
        {
            "name":"Data Capture/Enrollment Settings/Create enrollment settings",
            "description":"The operations from the Data Capture/Enrollment Settings/Create enrollment settings category."
        },
        {
            "name":"Data Capture/Enrollment Settings/Get specific enrollment settings",
            "description":"The operations from the Data Capture/Enrollment Settings/Get specific enrollment settings category."
        },
        {
            "name":"Data Capture/Enrollment Settings/Update enrollment setting",
            "description":"The operations from the Data Capture/Enrollment Settings/Update enrollment setting category."
        },
        {
            "name":"Data Capture/Lab/Create lab for a subject",
            "description":"The operations from the Data Capture/Lab/Create lab for a subject category."
        },
        {
            "name":"Data Capture/Lab/Update lab for a subject",
            "description":"The operations from the Data Capture/Lab/Update lab for a subject category."
        },
        {
            "name":"Data Capture/Lab/Update lab normals for a subject",
            "description":"The operations from the Data Capture/Lab/Update lab normals for a subject category."
        },
        {
            "name":"Data Capture/Safety Case/Update safety case status",
            "description":"The operations from the Data Capture/Safety Case/Update safety case status category."
        },
        {
            "name":"Data Capture/Subject Settings/Create subject settings",
            "description":"The operations from the Data Capture/Subject Settings/Create subject settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Get all source data verification settings",
            "description":"The operations from the Data Capture/Subject Settings/Get all source data verification settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Get all subject settings",
            "description":"The operations from the Data Capture/Subject Settings/Get all subject settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Get all the mHealth settings",
            "description":"The operations from the Data Capture/Subject Settings/Get all the mHealth settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Get the subject settings based on settings ID",
            "description":"The operations from the Data Capture/Subject Settings/Get the subject settings based on settings ID category."
        },
        {
            "name":"Data Capture/Subject Settings/Remove subject settings",
            "description":"The operations from the Data Capture/Subject Settings/Remove subject settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Update mHealth settings",
            "description":"The operations from the Data Capture/Subject Settings/Update mHealth settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Update source data verification settings",
            "description":"The operations from the Data Capture/Subject Settings/Update source data verification settings category."
        },
        {
            "name":"Data Capture/Subject Settings/Update subject settings",
            "description":"The operations from the Data Capture/Subject Settings/Update subject settings category."
        },
        {
            "name":"Data Capture/Subjects/Add a subject",
            "description":"The operations from the Data Capture/Subjects/Add a subject category."
        },
        {
            "name":"Data Capture/Subjects/Check status of study randomization limit or restriction",
            "description":"The operations from the Data Capture/Subjects/Check status of study randomization limit or restriction category."
        },
        {
            "name":"Data Capture/Subjects/Check the study randomization limit",
            "description":"The operations from the Data Capture/Subjects/Check the study randomization limit category."
        },
        {
            "name":"Data Capture/Subjects/Code view on a subject",
            "description":"The operations from the Data Capture/Subjects/Code view on a subject category."
        },
        {
            "name":"Data Capture/Subjects/Create a subject transfer",
            "description":"The operations from the Data Capture/Subjects/Create a subject transfer category."
        },
        {
            "name":"Data Capture/Subjects/Enroll a subject",
            "description":"The operations from the Data Capture/Subjects/Enroll a subject category."
        },
        {
            "name":"Data Capture/Subjects/Get Clinical Data which is part of ODMSubmit",
            "description":"The operations from the Data Capture/Subjects/Get Clinical Data which is part of ODMSubmit category."
        },
        {
            "name":"Data Capture/Subjects/Get Subject count",
            "description":"The operations from the Data Capture/Subjects/Get Subject count category."
        },
        {
            "name":"Data Capture/Subjects/Get Visits MetaData which is part of ODMSubmit",
            "description":"The operations from the Data Capture/Subjects/Get Visits MetaData which is part of ODMSubmit category."
        },
        {
            "name":"Data Capture/Subjects/Get a list of subject numbers",
            "description":"The operations from the Data Capture/Subjects/Get a list of subject numbers category."
        },
        {
            "name":"Data Capture/Subjects/Get a list of subject-related values",
            "description":"The operations from the Data Capture/Subjects/Get a list of subject-related values category."
        },
        {
            "name":"Data Capture/Subjects/Get a subject's events within a date range",
            "description":"The operations from the Data Capture/Subjects/Get a subject's events within a date range category."
        },
        {
            "name":"Data Capture/Subjects/Get all subject Numbers for a site",
            "description":"The operations from the Data Capture/Subjects/Get all subject Numbers for a site category."
        },
        {
            "name":"Data Capture/Subjects/Get all subjects by study version",
            "description":"The operations from the Data Capture/Subjects/Get all subjects by study version category."
        },
        {
            "name":"Data Capture/Subjects/Get events within a date range",
            "description":"The operations from the Data Capture/Subjects/Get events within a date range category."
        },
        {
            "name":"Data Capture/Subjects/Get history of all subjects in a study mode",
            "description":"The operations from the Data Capture/Subjects/Get history of all subjects in a study mode category."
        },
        {
            "name":"Data Capture/Subjects/Get information for a transfer ID",
            "description":"The operations from the Data Capture/Subjects/Get information for a transfer ID category."
        },
        {
            "name":"Data Capture/Subjects/Get last added subject number",
            "description":"The operations from the Data Capture/Subjects/Get last added subject number category."
        },
        {
            "name":"Data Capture/Subjects/Get latest audit records for Source Data Verification",
            "description":"The operations from the Data Capture/Subjects/Get latest audit records for Source Data Verification category."
        },
        {
            "name":"Data Capture/Subjects/Get latest records for sign, verify and freeze",
            "description":"The operations from the Data Capture/Subjects/Get latest records for sign, verify and freeze category."
        },
        {
            "name":"Data Capture/Subjects/Get list of events by type",
            "description":"The operations from the Data Capture/Subjects/Get list of events by type category."
        },
        {
            "name":"Data Capture/Subjects/Get list of subjects with specific demographic details",
            "description":"The operations from the Data Capture/Subjects/Get list of subjects with specific demographic details category."
        },
        {
            "name":"Data Capture/Subjects/Get list of visits status for a subject",
            "description":"The operations from the Data Capture/Subjects/Get list of visits status for a subject category."
        },
        {
            "name":"Data Capture/Subjects/Get organization ID used to generate subject number",
            "description":"The operations from the Data Capture/Subjects/Get organization ID used to generate subject number category."
        },
        {
            "name":"Data Capture/Subjects/Get screen subject details",
            "description":"The operations from the Data Capture/Subjects/Get screen subject details category."
        },
        {
            "name":"Data Capture/Subjects/Get screened and randomized subjects for resupply",
            "description":"The operations from the Data Capture/Subjects/Get screened and randomized subjects for resupply category."
        },
        {
            "name":"Data Capture/Subjects/Get source data verification selection status for all subjects",
            "description":"The operations from the Data Capture/Subjects/Get source data verification selection status for all subjects category."
        },
        {
            "name":"Data Capture/Subjects/Get subject details",
            "description":"The operations from the Data Capture/Subjects/Get subject details category."
        },
        {
            "name":"Data Capture/Subjects/Get subject event details",
            "description":"The operations from the Data Capture/Subjects/Get subject event details category."
        },
        {
            "name":"Data Capture/Subjects/Get subject history",
            "description":"The operations from the Data Capture/Subjects/Get subject history category."
        },
        {
            "name":"Data Capture/Subjects/Get subjects and their visit schedule",
            "description":"The operations from the Data Capture/Subjects/Get subjects and their visit schedule category."
        },
        {
            "name":"Data Capture/Subjects/Get subjects for the specified study and mode",
            "description":"The operations from the Data Capture/Subjects/Get subjects for the specified study and mode category."
        },
        {
            "name":"Data Capture/Subjects/Get the next visit action and rescreen eligibility for subject",
            "description":"The operations from the Data Capture/Subjects/Get the next visit action and rescreen eligibility for subject category."
        },
        {
            "name":"Data Capture/Subjects/Get transfer records for a study",
            "description":"The operations from the Data Capture/Subjects/Get transfer records for a study category."
        },
        {
            "name":"Data Capture/Subjects/Get transfer records for a subject",
            "description":"The operations from the Data Capture/Subjects/Get transfer records for a subject category."
        },
        {
            "name":"Data Capture/Subjects/Get transfer records for a subject and date range",
            "description":"The operations from the Data Capture/Subjects/Get transfer records for a subject and date range category."
        },
        {
            "name":"Data Capture/Subjects/Get visit data by subject ID",
            "description":"The operations from the Data Capture/Subjects/Get visit data by subject ID category."
        },
        {
            "name":"Data Capture/Subjects/Get visit window information",
            "description":"The operations from the Data Capture/Subjects/Get visit window information category."
        },
        {
            "name":"Data Capture/Subjects/Get, search or filter list of subjects",
            "description":"The operations from the Data Capture/Subjects/Get, search or filter list of subjects category."
        },
        {
            "name":"Data Capture/Subjects/Link subject with patient MRN",
            "description":"The operations from the Data Capture/Subjects/Link subject with patient MRN category."
        },
        {
            "name":"Data Capture/Subjects/Migrate a subject",
            "description":"The operations from the Data Capture/Subjects/Migrate a subject category."
        },
        {
            "name":"Data Capture/Subjects/Perform code break on a subject",
            "description":"The operations from the Data Capture/Subjects/Perform code break on a subject category."
        },
        {
            "name":"Data Capture/Subjects/Perform replace randomization on a subject",
            "description":"The operations from the Data Capture/Subjects/Perform replace randomization on a subject category."
        },
        {
            "name":"Data Capture/Subjects/Randomize or dispense subject",
            "description":"The operations from the Data Capture/Subjects/Randomize or dispense subject category."
        },
        {
            "name":"Data Capture/Subjects/Register subject to mHealth",
            "description":"The operations from the Data Capture/Subjects/Register subject to mHealth category."
        },
        {
            "name":"Data Capture/Subjects/Revert to the latest subject state",
            "description":"The operations from the Data Capture/Subjects/Revert to the latest subject state category."
        },
        {
            "name":"Data Capture/Subjects/Save data and screen subject to assign subject number",
            "description":"The operations from the Data Capture/Subjects/Save data and screen subject to assign subject number category."
        },
        {
            "name":"Data Capture/Subjects/Sign subject and visits",
            "description":"The operations from the Data Capture/Subjects/Sign subject and visits category."
        },
        {
            "name":"Data Capture/Subjects/Undo the Add subject action in a study",
            "description":"The operations from the Data Capture/Subjects/Undo the Add subject action in a study category."
        },
        {
            "name":"Data Capture/Subjects/Unfreeze single data element of a visit",
            "description":"The operations from the Data Capture/Subjects/Unfreeze single data element of a visit category."
        },
        {
            "name":"Data Capture/Subjects/Unlink subject from patient MRN",
            "description":"The operations from the Data Capture/Subjects/Unlink subject from patient MRN category."
        },
        {
            "name":"Data Capture/Subjects/Update subject",
            "description":"The operations from the Data Capture/Subjects/Update subject category."
        },
        {
            "name":"Data Capture/Subjects/Update subject number",
            "description":"The operations from the Data Capture/Subjects/Update subject number category."
        },
        {
            "name":"Data Capture/Subjects/Updates subject numbers in bulk",
            "description":"The operations from the Data Capture/Subjects/Updates subject numbers in bulk category."
        },
        {
            "name":"Data Capture/Subjects/Validate and save data to screen subject and assign subject number",
            "description":"The operations from the Data Capture/Subjects/Validate and save data to screen subject and assign subject number category."
        },
        {
            "name":"Data Capture/Visits Status/Create visit status record",
            "description":"The operations from the Data Capture/Visits Status/Create visit status record category."
        },
        {
            "name":"Data Capture/Visits Status/Freeze visit data with dataelements and Visit start date",
            "description":"The operations from the Data Capture/Visits Status/Freeze visit data with dataelements and Visit start date category."
        },
        {
            "name":"Data Capture/Visits Status/Get adverse event visits for a list of subjects",
            "description":"The operations from the Data Capture/Visits Status/Get adverse event visits for a list of subjects category."
        },
        {
            "name":"Data Capture/Visits Status/Get associated and dynamic forms for a subject visit",
            "description":"The operations from the Data Capture/Visits Status/Get associated and dynamic forms for a subject visit category."
        },
        {
            "name":"Data Capture/Visits Status/Get audit history records for the given visit status ID",
            "description":"The operations from the Data Capture/Visits Status/Get audit history records for the given visit status ID category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visit statuses for given entries",
            "description":"The operations from the Data Capture/Visits Status/Get list of visit statuses for given entries category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visits status",
            "description":"The operations from the Data Capture/Visits Status/Get list of visits status category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visits status for a date range",
            "description":"The operations from the Data Capture/Visits Status/Get list of visits status for a date range category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visits status for a list of subjects",
            "description":"The operations from the Data Capture/Visits Status/Get list of visits status for a list of subjects category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visits status for subjects",
            "description":"The operations from the Data Capture/Visits Status/Get list of visits status for subjects category."
        },
        {
            "name":"Data Capture/Visits Status/Get list of visits' start dates for subjects",
            "description":"The operations from the Data Capture/Visits Status/Get list of visits' start dates for subjects category."
        },
        {
            "name":"Data Capture/Visits Status/Post migrated visit data",
            "description":"The operations from the Data Capture/Visits Status/Post migrated visit data category."
        },
        {
            "name":"Data Capture/Visits Status/Update and remove the visit status rule error",
            "description":"The operations from the Data Capture/Visits Status/Update and remove the visit status rule error category."
        },
        {
            "name":"Data Capture/Visits Status/Update visit status for a given ID",
            "description":"The operations from the Data Capture/Visits Status/Update visit status for a given ID category."
        },
        {
            "name":"Data Hub/Datasets/Get blinded kits for study",
            "description":"The operations from the Data Hub/Datasets/Get blinded kits for study category."
        },
        {
            "name":"Data Hub/Datasets/Get blinded visit details",
            "description":"The operations from the Data Hub/Datasets/Get blinded visit details category."
        },
        {
            "name":"Data Hub/Datasets/Get codelists for a study and a given mode",
            "description":"The operations from the Data Hub/Datasets/Get codelists for a study and a given mode category."
        },
        {
            "name":"Data Hub/Datasets/Get codelists for study",
            "description":"The operations from the Data Hub/Datasets/Get codelists for study category."
        },
        {
            "name":"Data Hub/Datasets/Get codelists for tenant",
            "description":"The operations from the Data Hub/Datasets/Get codelists for tenant category."
        },
        {
            "name":"Data Hub/Datasets/Get datahub metrics details",
            "description":"The operations from the Data Hub/Datasets/Get datahub metrics details category."
        },
        {
            "name":"Data Hub/Datasets/Get kits and randomization design data for study",
            "description":"The operations from the Data Hub/Datasets/Get kits and randomization design data for study category."
        },
        {
            "name":"Data Hub/Datasets/Get queries raised for study",
            "description":"The operations from the Data Hub/Datasets/Get queries raised for study category."
        },
        {
            "name":"Data Hub/Datasets/Get study design dataset",
            "description":"The operations from the Data Hub/Datasets/Get study design dataset category."
        },
        {
            "name":"Data Hub/Datasets/Get study site dataset",
            "description":"The operations from the Data Hub/Datasets/Get study site dataset category."
        },
        {
            "name":"Data Hub/Datasets/Get subject data details",
            "description":"The operations from the Data Hub/Datasets/Get subject data details category."
        },
        {
            "name":"Data Hub/Datasets/Get subject form items data details",
            "description":"The operations from the Data Hub/Datasets/Get subject form items data details category."
        },
        {
            "name":"Data Hub/Datasets/Get subject form level actions details",
            "description":"The operations from the Data Hub/Datasets/Get subject form level actions details category."
        },
        {
            "name":"Data Hub/Datasets/Get subject forms data details",
            "description":"The operations from the Data Hub/Datasets/Get subject forms data details category."
        },
        {
            "name":"Data Hub/Datasets/Get subject item level actions details",
            "description":"The operations from the Data Hub/Datasets/Get subject item level actions details category."
        },
        {
            "name":"Data Hub/Datasets/Get subject visit and visit date actions details",
            "description":"The operations from the Data Hub/Datasets/Get subject visit and visit date actions details category."
        },
        {
            "name":"Data Hub/Datasets/Get unblinded kits for study",
            "description":"The operations from the Data Hub/Datasets/Get unblinded kits for study category."
        },
        {
            "name":"Data Hub/Datasets/Get unblinded visit details",
            "description":"The operations from the Data Hub/Datasets/Get unblinded visit details category."
        },
        {
            "name":"Data Hub/Get Datahub latest sync timestamp",
            "description":"The operations from the Data Hub/Get Datahub latest sync timestamp category."
        },
        {
            "name":"Data Hub/ODM/ODM extract for admin data",
            "description":"The operations from the Data Hub/ODM/ODM extract for admin data category."
        },
        {
            "name":"Data Hub/ODM/ODM extract for clinical data with hidden data",
            "description":"The operations from the Data Hub/ODM/ODM extract for clinical data with hidden data category."
        },
        {
            "name":"Data Hub/ODM/ODM extract for clinical data without hidden data",
            "description":"The operations from the Data Hub/ODM/ODM extract for clinical data without hidden data category."
        },
        {
            "name":"Data Hub/ODM/ODM extract for meta data",
            "description":"The operations from the Data Hub/ODM/ODM extract for meta data category."
        },
        {
            "name":"Data Integration/Coding Status/Get data elements to be coded by code type",
            "description":"The operations from the Data Integration/Coding Status/Get data elements to be coded by code type category."
        },
        {
            "name":"Data Integration/DCProperties APIs/Get Data Capture properties history",
            "description":"The operations from the Data Integration/DCProperties APIs/Get Data Capture properties history category."
        },
        {
            "name":"Data Integration/Data Elements/Get data element records for subject inserted or updated after visit completion for a given date range",
            "description":"The operations from the Data Integration/Data Elements/Get data element records for subject inserted or updated after visit completion for a given date range category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code",
            "description":"The operations from the Data Integration/Data Elements/Get data elements by form ID, Subject ID, Event ID and Vendor code category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements for a list of items by subject ID",
            "description":"The operations from the Data Integration/Data Elements/Get data elements for a list of items by subject ID category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements for a visit and form combination",
            "description":"The operations from the Data Integration/Data Elements/Get data elements for a visit and form combination category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements for one or multiple subjects and their visits",
            "description":"The operations from the Data Integration/Data Elements/Get data elements for one or multiple subjects and their visits category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements history with pagination",
            "description":"The operations from the Data Integration/Data Elements/Get data elements history with pagination category."
        },
        {
            "name":"Data Integration/Data Elements/Get data elements that have been deleted",
            "description":"The operations from the Data Integration/Data Elements/Get data elements that have been deleted category."
        },
        {
            "name":"Data Integration/Data Elements/Get document details for a subject",
            "description":"The operations from the Data Integration/Data Elements/Get document details for a subject category."
        },
        {
            "name":"Data Integration/Data Elements/Get form associations by study ID",
            "description":"The operations from the Data Integration/Data Elements/Get form associations by study ID category."
        },
        {
            "name":"Data Integration/Data Elements/Get form statuses for list of event or form IDs",
            "description":"The operations from the Data Integration/Data Elements/Get form statuses for list of event or form IDs category."
        },
        {
            "name":"Data Integration/Data Elements/Get records for Source Data Verification group",
            "description":"The operations from the Data Integration/Data Elements/Get records for Source Data Verification group category."
        },
        {
            "name":"Data Integration/Data Elements/Get the audit history for a data element with sign verify history",
            "description":"The operations from the Data Integration/Data Elements/Get the audit history for a data element with sign verify history category."
        },
        {
            "name":"Data Integration/Signature Configuration/Get sign configuration history",
            "description":"The operations from the Data Integration/Signature Configuration/Get sign configuration history category."
        },
        {
            "name":"Data Integration/Signature Eligibility/Get eligibility data",
            "description":"The operations from the Data Integration/Signature Eligibility/Get eligibility data category."
        },
        {
            "name":"Data Integration/Subject Reports/Generate a report based on the path parameter",
            "description":"The operations from the Data Integration/Subject Reports/Generate a report based on the path parameter category."
        },
        {
            "name":"Data Integration/Subject Reports/Generate report for a subject's data and events (Asynchronous)",
            "description":"The operations from the Data Integration/Subject Reports/Generate report for a subject's data and events (Asynchronous) category."
        },
        {
            "name":"Data Integration/Subject Transfer/Get all the transfer records for a subject ID",
            "description":"The operations from the Data Integration/Subject Transfer/Get all the transfer records for a subject ID category."
        },
        {
            "name":"Data Integration/Subject Transfer/Get information for a transfer ID",
            "description":"The operations from the Data Integration/Subject Transfer/Get information for a transfer ID category."
        },
        {
            "name":"Data Integration/Subject Transfer/Get transfer records for a study",
            "description":"The operations from the Data Integration/Subject Transfer/Get transfer records for a study category."
        },
        {
            "name":"Data Integration/Subject Transfer/Get transfer records for a subject and date range",
            "description":"The operations from the Data Integration/Subject Transfer/Get transfer records for a subject and date range category."
        },
        {
            "name":"Data Integration/Subjects Lock Status/Add subject lock status for given subject list",
            "description":"The operations from the Data Integration/Subjects Lock Status/Add subject lock status for given subject list category."
        },
        {
            "name":"Data Integration/Subjects Lock Status/Get subject lock status for given subject list",
            "description":"The operations from the Data Integration/Subjects Lock Status/Get subject lock status for given subject list category."
        },
        {
            "name":"Data Integration/Subjects/Get Clinical Data which is part of ODMSubmit",
            "description":"The operations from the Data Integration/Subjects/Get Clinical Data which is part of ODMSubmit category."
        },
        {
            "name":"Data Integration/Subjects/Get Latest lock records for all subjects in a study",
            "description":"The operations from the Data Integration/Subjects/Get Latest lock records for all subjects in a study category."
        },
        {
            "name":"Data Integration/Subjects/Get a list of subject-related values",
            "description":"The operations from the Data Integration/Subjects/Get a list of subject-related values category."
        },
        {
            "name":"Data Integration/Subjects/Get a subject's events within a date range",
            "description":"The operations from the Data Integration/Subjects/Get a subject's events within a date range category."
        },
        {
            "name":"Data Integration/Subjects/Get details for a subject",
            "description":"The operations from the Data Integration/Subjects/Get details for a subject category."
        },
        {
            "name":"Data Integration/Subjects/Get history of all subjects in a mode",
            "description":"The operations from the Data Integration/Subjects/Get history of all subjects in a mode category."
        },
        {
            "name":"Data Integration/Subjects/Get latest records for sign, verify and freeze",
            "description":"The operations from the Data Integration/Subjects/Get latest records for sign, verify and freeze category."
        },
        {
            "name":"Data Integration/Subjects/Get list of events by type",
            "description":"The operations from the Data Integration/Subjects/Get list of events by type category."
        },
        {
            "name":"Data Integration/Subjects/Get list of subjects for the specified study and mode",
            "description":"The operations from the Data Integration/Subjects/Get list of subjects for the specified study and mode category."
        },
        {
            "name":"Data Integration/Subjects/Get records for Source Data Verification with site information",
            "description":"The operations from the Data Integration/Subjects/Get records for Source Data Verification with site information category."
        },
        {
            "name":"Data Integration/Subjects/Get screened and randomized subjects for resupply grouped by site",
            "description":"The operations from the Data Integration/Subjects/Get screened and randomized subjects for resupply grouped by site category."
        },
        {
            "name":"Data Integration/Subjects/Get subject history",
            "description":"The operations from the Data Integration/Subjects/Get subject history category."
        },
        {
            "name":"Data Integration/Subjects/Get subjects and their visit schedule",
            "description":"The operations from the Data Integration/Subjects/Get subjects and their visit schedule category."
        },
        {
            "name":"Data Integration/Subjects/Get subjects for the specified study and mode",
            "description":"The operations from the Data Integration/Subjects/Get subjects for the specified study and mode category."
        },
        {
            "name":"Data Integration/Subjects/Get visits MetaData which is part of ODMSubmit",
            "description":"The operations from the Data Integration/Subjects/Get visits MetaData which is part of ODMSubmit category."
        },
        {
            "name":"Data Integration/Subjects/Get, search or filter list of subjects",
            "description":"The operations from the Data Integration/Subjects/Get, search or filter list of subjects category."
        },
        {
            "name":"Data Integration/Visits Status History/Get list of visits status history",
            "description":"The operations from the Data Integration/Visits Status History/Get list of visits status history category."
        },
        {
            "name":"Data Integration/Visits Status/Get audit history records for the given visit status ID",
            "description":"The operations from the Data Integration/Visits Status/Get audit history records for the given visit status ID category."
        },
        {
            "name":"Data Integration/Visits Status/Get list of visits status",
            "description":"The operations from the Data Integration/Visits Status/Get list of visits status category."
        },
        {
            "name":"Data Integration/Visits Status/Get list of visits status for a date range",
            "description":"The operations from the Data Integration/Visits Status/Get list of visits status for a date range category."
        },
        {
            "name":"Data Integration/Visits Status/Get list of visits status for subjects",
            "description":"The operations from the Data Integration/Visits Status/Get list of visits status for subjects category."
        },
        {
            "name":"Designer/Branch APIs/Add a branch",
            "description":"The operations from the Designer/Branch APIs/Add a branch category."
        },
        {
            "name":"Designer/Branch APIs/Copy a branch",
            "description":"The operations from the Designer/Branch APIs/Copy a branch category."
        },
        {
            "name":"Designer/Branch APIs/Delete a branch",
            "description":"The operations from the Designer/Branch APIs/Delete a branch category."
        },
        {
            "name":"Designer/Branch APIs/Get a list of study branches",
            "description":"The operations from the Designer/Branch APIs/Get a list of study branches category."
        },
        {
            "name":"Designer/Branch APIs/Get study branch",
            "description":"The operations from the Designer/Branch APIs/Get study branch category."
        },
        {
            "name":"Designer/Branch APIs/Update a branch",
            "description":"The operations from the Designer/Branch APIs/Update a branch category."
        },
        {
            "name":"Designer/Form APIs/Form Item History/Get questions history for a form",
            "description":"The operations from the Designer/Form APIs/Form Item History/Get questions history for a form category."
        },
        {
            "name":"Designer/Form APIs/Form Item/Add a question in a form",
            "description":"The operations from the Designer/Form APIs/Form Item/Add a question in a form category."
        },
        {
            "name":"Designer/Form APIs/Form Item/Delete a question from a form",
            "description":"The operations from the Designer/Form APIs/Form Item/Delete a question from a form category."
        },
        {
            "name":"Designer/Form APIs/Form Item/Get a question for a form",
            "description":"The operations from the Designer/Form APIs/Form Item/Get a question for a form category."
        },
        {
            "name":"Designer/Form APIs/Form Item/Get questions for a form",
            "description":"The operations from the Designer/Form APIs/Form Item/Get questions for a form category."
        },
        {
            "name":"Designer/Form APIs/Form Item/Update a question in a form",
            "description":"The operations from the Designer/Form APIs/Form Item/Update a question in a form category."
        },
        {
            "name":"Designer/Form APIs/Form Preview/Send a notification to preview a form",
            "description":"The operations from the Designer/Form APIs/Form Preview/Send a notification to preview a form category."
        },
        {
            "name":"Designer/Form APIs/Form-Visit Association/Get visits associated with a form",
            "description":"The operations from the Designer/Form APIs/Form-Visit Association/Get visits associated with a form category."
        },
        {
            "name":"Designer/Form APIs/Form-Visit Association/List visits for a form",
            "description":"The operations from the Designer/Form APIs/Form-Visit Association/List visits for a form category."
        },
        {
            "name":"Designer/Form APIs/Form-Visit Association/List visits for a form by study mode",
            "description":"The operations from the Designer/Form APIs/Form-Visit Association/List visits for a form by study mode category."
        },
        {
            "name":"Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form",
            "description":"The operations from the Designer/Form APIs/Form-Visit Association/Process visits to associate with a specific form category."
        },
        {
            "name":"Designer/Form APIs/Form-Visit Association/Update form visit assignments",
            "description":"The operations from the Designer/Form APIs/Form-Visit Association/Update form visit assignments category."
        },
        {
            "name":"Designer/Form APIs/Forms/Add form to visits",
            "description":"The operations from the Designer/Form APIs/Forms/Add form to visits category."
        },
        {
            "name":"Designer/Form APIs/Forms/Bulk assign forms to visits",
            "description":"The operations from the Designer/Form APIs/Forms/Bulk assign forms to visits category."
        },
        {
            "name":"Designer/Form APIs/Forms/Copy forms in bulk",
            "description":"The operations from the Designer/Form APIs/Forms/Copy forms in bulk category."
        },
        {
            "name":"Designer/Form APIs/Forms/Create form",
            "description":"The operations from the Designer/Form APIs/Forms/Create form category."
        },
        {
            "name":"Designer/Form APIs/Forms/Delete form",
            "description":"The operations from the Designer/Form APIs/Forms/Delete form category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get a list of study forms",
            "description":"The operations from the Designer/Form APIs/Forms/Get a list of study forms category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get all study forms",
            "description":"The operations from the Designer/Form APIs/Forms/Get all study forms category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get associated forms",
            "description":"The operations from the Designer/Form APIs/Forms/Get associated forms category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get form by ID",
            "description":"The operations from the Designer/Form APIs/Forms/Get form by ID category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get forms and questions used in dosing calculations",
            "description":"The operations from the Designer/Form APIs/Forms/Get forms and questions used in dosing calculations category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get linked form summary",
            "description":"The operations from the Designer/Form APIs/Forms/Get linked form summary category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get list questions used in stratified randomization",
            "description":"The operations from the Designer/Form APIs/Forms/Get list questions used in stratified randomization category."
        },
        {
            "name":"Designer/Form APIs/Forms/Get unblinded form",
            "description":"The operations from the Designer/Form APIs/Forms/Get unblinded form category."
        },
        {
            "name":"Designer/Form APIs/Forms/List forms",
            "description":"The operations from the Designer/Form APIs/Forms/List forms category."
        },
        {
            "name":"Designer/Form APIs/Forms/List stratification factors",
            "description":"The operations from the Designer/Form APIs/Forms/List stratification factors category."
        },
        {
            "name":"Designer/Form APIs/Forms/List unblinded forms",
            "description":"The operations from the Designer/Form APIs/Forms/List unblinded forms category."
        },
        {
            "name":"Designer/Form APIs/Forms/Update form",
            "description":"The operations from the Designer/Form APIs/Forms/Update form category."
        },
        {
            "name":"Designer/Forms APIs/Get EHR mappings by question type",
            "description":"The operations from the Designer/Forms APIs/Get EHR mappings by question type category."
        },
        {
            "name":"Designer/Forms APIs/Get all E2B mappings",
            "description":"The operations from the Designer/Forms APIs/Get all E2B mappings category."
        },
        {
            "name":"Designer/Forms APIs/Get all EHR mappings",
            "description":"The operations from the Designer/Forms APIs/Get all EHR mappings category."
        },
        {
            "name":"Designer/Forms APIs/Get form summary for study version",
            "description":"The operations from the Designer/Forms APIs/Get form summary for study version category."
        },
        {
            "name":"Designer/Forms APIs/Get lab-normal form items",
            "description":"The operations from the Designer/Forms APIs/Get lab-normal form items category."
        },
        {
            "name":"Designer/Forms APIs/Get latest form items",
            "description":"The operations from the Designer/Forms APIs/Get latest form items category."
        },
        {
            "name":"Designer/Forms APIs/Get visits action items",
            "description":"The operations from the Designer/Forms APIs/Get visits action items category."
        },
        {
            "name":"Designer/Forms APIs/Get visits and forms EHR mappings",
            "description":"The operations from the Designer/Forms APIs/Get visits and forms EHR mappings category."
        },
        {
            "name":"Designer/Forms APIs/Get visits and forms summary",
            "description":"The operations from the Designer/Forms APIs/Get visits and forms summary category."
        },
        {
            "name":"Designer/Forms APIs/List forms with item summaries",
            "description":"The operations from the Designer/Forms APIs/List forms with item summaries category."
        },
        {
            "name":"Designer/Forms APIs/List latest forms by mode",
            "description":"The operations from the Designer/Forms APIs/List latest forms by mode category."
        },
        {
            "name":"Designer/Kits APIs/Add a kit in a study",
            "description":"The operations from the Designer/Kits APIs/Add a kit in a study category."
        },
        {
            "name":"Designer/Kits APIs/Delete a kit",
            "description":"The operations from the Designer/Kits APIs/Delete a kit category."
        },
        {
            "name":"Designer/Kits APIs/Get blinded data on a kit",
            "description":"The operations from the Designer/Kits APIs/Get blinded data on a kit category."
        },
        {
            "name":"Designer/Kits APIs/Get data on a kit",
            "description":"The operations from the Designer/Kits APIs/Get data on a kit category."
        },
        {
            "name":"Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived",
            "description":"The operations from the Designer/Kits APIs/Get kits from all study versions in Testing, Approved and Archived category."
        },
        {
            "name":"Designer/Kits APIs/Get kits from all study versions with optional kit type exclusion",
            "description":"The operations from the Designer/Kits APIs/Get kits from all study versions with optional kit type exclusion category."
        },
        {
            "name":"Designer/Kits APIs/Get list of all investigational product kits and devices",
            "description":"The operations from the Designer/Kits APIs/Get list of all investigational product kits and devices category."
        },
        {
            "name":"Designer/Kits APIs/Get list of all kits",
            "description":"The operations from the Designer/Kits APIs/Get list of all kits category."
        },
        {
            "name":"Designer/Kits APIs/Get list of kit names in a study",
            "description":"The operations from the Designer/Kits APIs/Get list of kit names in a study category."
        },
        {
            "name":"Designer/Kits APIs/Get the dispensation data of a kit",
            "description":"The operations from the Designer/Kits APIs/Get the dispensation data of a kit category."
        },
        {
            "name":"Designer/Kits APIs/Update a kit",
            "description":"The operations from the Designer/Kits APIs/Update a kit category."
        },
        {
            "name":"Designer/Lock Object APIs/Create list of locked objects",
            "description":"The operations from the Designer/Lock Object APIs/Create list of locked objects category."
        },
        {
            "name":"Designer/Lock Object APIs/Get locked objects",
            "description":"The operations from the Designer/Lock Object APIs/Get locked objects category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Create a single cohort group",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Create a single cohort group category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Create multiple cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Create multiple cohort groups category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Delete cohort group",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Delete cohort group category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Delete multiple existing cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Delete multiple existing cohort groups category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Get a list of all cohort groups in a randomization",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Get a list of all cohort groups in a randomization category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Get cohort group in a randomization",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Get cohort group in a randomization category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Update existing cohort group",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Update existing cohort group category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Cohorts/Update multiple existing cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Randomization Cohorts/Update multiple existing cohort groups category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Create treatment arms ratios",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Create treatment arms ratios category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Delete all treatment arm ratios",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Delete all treatment arm ratios category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Delete treatment arm ratios",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Delete treatment arm ratios category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups by randomization ID",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Get all treatment arm ratios for cohort or stratum groups by randomization ID category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Get list of treatment arms",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Get list of treatment arms category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Get treatment arm ratios for cohort or stratum groups",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Get treatment arm ratios for cohort or stratum groups category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts",
            "description":"The operations from the Designer/Randomization APIs/Randomization Ratios/Update treatment arm ratios for adaptive cohorts category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization/Create randomization design",
            "description":"The operations from the Designer/Randomization APIs/Randomization/Create randomization design category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization/Delete randomization design",
            "description":"The operations from the Designer/Randomization APIs/Randomization/Delete randomization design category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization/Get a randomization design",
            "description":"The operations from the Designer/Randomization APIs/Randomization/Get a randomization design category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version",
            "description":"The operations from the Designer/Randomization APIs/Randomization/Get list of randomization designs in a study version category."
        },
        {
            "name":"Designer/Randomization APIs/Randomization/Update existing randomization design",
            "description":"The operations from the Designer/Randomization APIs/Randomization/Update existing randomization design category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Create list of cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Create list of cohort groups category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Create randomization stratum group",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Create randomization stratum group category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Delete a stratum group",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Delete a stratum group category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Delete cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Delete cohort groups category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Get a stratum group",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Get a stratum group category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Get all active strata in a study",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Get all active strata in a study category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Get list of all strata groups",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Get list of all strata groups category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Get strata items",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Get strata items category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Update existing stratum group",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Update existing stratum group category."
        },
        {
            "name":"Designer/Randomization APIs/Study Strata/Update randomization cohort groups",
            "description":"The operations from the Designer/Randomization APIs/Study Strata/Update randomization cohort groups category."
        },
        {
            "name":"Designer/Reporting APIs/Generate study design reports",
            "description":"The operations from the Designer/Reporting APIs/Generate study design reports category."
        },
        {
            "name":"Designer/Rollback APIs/Rollback tracked transaction",
            "description":"The operations from the Designer/Rollback APIs/Rollback tracked transaction category."
        },
        {
            "name":"Designer/Rollback APIs/Start tracking transaction",
            "description":"The operations from the Designer/Rollback APIs/Start tracking transaction category."
        },
        {
            "name":"Designer/Rollback APIs/Stop tracking transaction",
            "description":"The operations from the Designer/Rollback APIs/Stop tracking transaction category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Add study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Add study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Check form in study version",
            "description":"The operations from the Designer/Study APIs/Study Actions/Check form in study version category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Check form item existence in study.",
            "description":"The operations from the Designer/Study APIs/Study Actions/Check form item existence in study. category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Check visit in study version",
            "description":"The operations from the Designer/Study APIs/Study Actions/Check visit in study version category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Clone system codelist",
            "description":"The operations from the Designer/Study APIs/Study Actions/Clone system codelist category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Copy study design objects",
            "description":"The operations from the Designer/Study APIs/Study Actions/Copy study design objects category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires",
            "description":"The operations from the Designer/Study APIs/Study Actions/Create all visits, forms and questionnaires category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Create study copy template",
            "description":"The operations from the Designer/Study APIs/Study Actions/Create study copy template category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get IDs of all artifacts in a study in a specific mode",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get IDs of all artifacts in a study in a specific mode category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get IDs of all artifacts in an approved study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get IDs of all artifacts in an approved study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get a list of all library studies",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get a list of all library studies category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get a list of all studies",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get a list of all studies category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get a list of all studies in a paginated format",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get a list of all studies in a paginated format category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get a study's status",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get a study's status category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all coding questions forms",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all coding questions forms category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all form items in a form",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all form items in a form category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all form items in a form by form ID",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all form items in a form by form ID category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all forms",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all forms category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all statuses of a study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all statuses of a study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all statuses summary of a study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all statuses summary of a study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all study versions of multiple tenants",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all study versions of multiple tenants category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires in a paginated format",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get all visits, forms and questionnaires in a paginated format category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get coding questions in all forms",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get coding questions in all forms category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get form items by form ID",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get form items by form ID category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get latest statuses of a study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get latest statuses of a study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get latest study versions of a tenant",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get latest study versions of a tenant category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get list of treatment arms for all study versions",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get list of treatment arms for all study versions category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get maximum study versions of a tenant",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get maximum study versions of a tenant category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get options of all choice items by study mode and form ID(s).",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get options of all choice items by study mode and form ID(s). category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get options of all choice items in the latest approved version",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get options of all choice items in the latest approved version category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get status of latest study version",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get status of latest study version category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get study identity based on protocol ID",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get study identity based on protocol ID category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get study object mappings",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get study object mappings category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get study rule copy status",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get study rule copy status category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Get summary of library studies usage",
            "description":"The operations from the Designer/Study APIs/Study Actions/Get summary of library studies usage category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Update a study's state",
            "description":"The operations from the Designer/Study APIs/Study Actions/Update a study's state category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Update existing study",
            "description":"The operations from the Designer/Study APIs/Study Actions/Update existing study category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Update study copy status",
            "description":"The operations from the Designer/Study APIs/Study Actions/Update study copy status category."
        },
        {
            "name":"Designer/Study APIs/Study Actions/Update study rule copy status",
            "description":"The operations from the Designer/Study APIs/Study Actions/Update study rule copy status category."
        },
        {
            "name":"Designer/Study APIs/Study Cohorts/Get a list of all active cohorts in a study",
            "description":"The operations from the Designer/Study APIs/Study Cohorts/Get a list of all active cohorts in a study category."
        },
        {
            "name":"Designer/Study APIs/Study Lock",
            "description":"The operations from the Designer/Study APIs/Study Lock category."
        },
        {
            "name":"Designer/Study APIs/Study Lock/Create study lock",
            "description":"The operations from the Designer/Study APIs/Study Lock/Create study lock category."
        },
        {
            "name":"Designer/Study APIs/Study Lock/Delete study lock",
            "description":"The operations from the Designer/Study APIs/Study Lock/Delete study lock category."
        },
        {
            "name":"Designer/Study APIs/Study Lock/Get study lock",
            "description":"The operations from the Designer/Study APIs/Study Lock/Get study lock category."
        },
        {
            "name":"Designer/Study APIs/Study Lock/Update study lock",
            "description":"The operations from the Designer/Study APIs/Study Lock/Update study lock category."
        },
        {
            "name":"Designer/Study APIs/Study Metadata APIs/Get metadata of a specified study ID and study version",
            "description":"The operations from the Designer/Study APIs/Study Metadata APIs/Get metadata of a specified study ID and study version category."
        },
        {
            "name":"Designer/Study APIs/Study Randomization Factors/Get all active factors in a study",
            "description":"The operations from the Designer/Study APIs/Study Randomization Factors/Get all active factors in a study category."
        },
        {
            "name":"Designer/Study Version APIs/Get IPR details",
            "description":"The operations from the Designer/Study Version APIs/Get IPR details category."
        },
        {
            "name":"Designer/Study Version APIs/Get history of all versions for a study as of a certain date",
            "description":"The operations from the Designer/Study Version APIs/Get history of all versions for a study as of a certain date category."
        },
        {
            "name":"Designer/Study Version APIs/Get items with ASVs within date range",
            "description":"The operations from the Designer/Study Version APIs/Get items with ASVs within date range category."
        },
        {
            "name":"Designer/Study Version APIs/Get latest study version objects",
            "description":"The operations from the Designer/Study Version APIs/Get latest study version objects category."
        },
        {
            "name":"Designer/Study Version APIs/Get list of combination of study version and boolean representing the existence of randomization",
            "description":"The operations from the Designer/Study Version APIs/Get list of combination of study version and boolean representing the existence of randomization category."
        },
        {
            "name":"Designer/Study Version APIs/Get study version objects",
            "description":"The operations from the Designer/Study Version APIs/Get study version objects category."
        },
        {
            "name":"Designer/Study Version APIs/Get study version objects for a study version",
            "description":"The operations from the Designer/Study Version APIs/Get study version objects for a study version category."
        },
        {
            "name":"Designer/Study Version APIs/Get study version objects in a paginated format",
            "description":"The operations from the Designer/Study Version APIs/Get study version objects in a paginated format category."
        },
        {
            "name":"Designer/Treatment Arms APIs/Create treatment arm",
            "description":"The operations from the Designer/Treatment Arms APIs/Create treatment arm category."
        },
        {
            "name":"Designer/Treatment Arms APIs/Delete treatment arm",
            "description":"The operations from the Designer/Treatment Arms APIs/Delete treatment arm category."
        },
        {
            "name":"Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version",
            "description":"The operations from the Designer/Treatment Arms APIs/Get list of treatment arm dispensations in a study version category."
        },
        {
            "name":"Designer/Treatment Arms APIs/Get treatment arm by ID",
            "description":"The operations from the Designer/Treatment Arms APIs/Get treatment arm by ID category."
        },
        {
            "name":"Designer/Treatment Arms APIs/List arm dispensings",
            "description":"The operations from the Designer/Treatment Arms APIs/List arm dispensings category."
        },
        {
            "name":"Designer/Treatment Arms APIs/List treatment arms",
            "description":"The operations from the Designer/Treatment Arms APIs/List treatment arms category."
        },
        {
            "name":"Designer/Treatment Arms APIs/Update treatment arm",
            "description":"The operations from the Designer/Treatment Arms APIs/Update treatment arm category."
        },
        {
            "name":"Designer/Versions APIs/Add study version",
            "description":"The operations from the Designer/Versions APIs/Add study version category."
        },
        {
            "name":"Designer/Versions APIs/Delete study version",
            "description":"The operations from the Designer/Versions APIs/Delete study version category."
        },
        {
            "name":"Designer/Versions APIs/Get list of study versions",
            "description":"The operations from the Designer/Versions APIs/Get list of study versions category."
        },
        {
            "name":"Designer/Versions APIs/Get version of a study",
            "description":"The operations from the Designer/Versions APIs/Get version of a study category."
        },
        {
            "name":"Designer/Versions APIs/Remove duplicate study version",
            "description":"The operations from the Designer/Versions APIs/Remove duplicate study version category."
        },
        {
            "name":"Designer/Versions APIs/Set status of study version",
            "description":"The operations from the Designer/Versions APIs/Set status of study version category."
        },
        {
            "name":"Designer/Versions APIs/Update status of study version",
            "description":"The operations from the Designer/Versions APIs/Update status of study version category."
        },
        {
            "name":"Designer/Versions APIs/Update status of study version asynchronously",
            "description":"The operations from the Designer/Versions APIs/Update status of study version asynchronously category."
        },
        {
            "name":"Designer/Versions APIs/Update study version",
            "description":"The operations from the Designer/Versions APIs/Update study version category."
        },
        {
            "name":"Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version",
            "description":"The operations from the Designer/Visit APIs/Dispensation Visits/Get list of dispensation visits in a study version category."
        },
        {
            "name":"Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits",
            "description":"The operations from the Designer/Visit APIs/Dispensation Visits/Update list of dispensation visits category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Assign kit type titration to a visit",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Assign kit type titration to a visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Assign randomization to visit",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Assign randomization to visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Create study design visits for multiple versions",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Create study design visits for multiple versions category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Get study design visits",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Get study design visits category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Get study design visits for multiple versions",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Get study design visits for multiple versions category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Get titration dispensation data",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Get titration dispensation data category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Get visit design assignments",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Get visit design assignments category."
        },
        {
            "name":"Designer/Visit APIs/Visit Design/Validate assigning randomization",
            "description":"The operations from the Designer/Visit APIs/Visit Design/Validate assigning randomization category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Delete form from a specific visit",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Delete form from a specific visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Delete specific or all forms from a visit",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Delete specific or all forms from a visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Get list of forms in a study",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Get list of forms in a study category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Get list of forms in a visit",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Get list of forms in a visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Get visit form rules",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Get visit form rules category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/List visit forms",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/List visit forms category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Remove multiple visit forms",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Remove multiple visit forms category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Remove visit form",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Remove visit form category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Replace visit forms",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Replace visit forms category."
        },
        {
            "name":"Designer/Visit APIs/Visit Forms/Update forms of a specific visit",
            "description":"The operations from the Designer/Visit APIs/Visit Forms/Update forms of a specific visit category."
        },
        {
            "name":"Designer/Visit APIs/Visit Metadata/Get the metadata of specified visits by study ID and study version",
            "description":"The operations from the Designer/Visit APIs/Visit Metadata/Get the metadata of specified visits by study ID and study version category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Clear visit schedule",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Clear visit schedule category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Clear visit schedule from event",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Clear visit schedule from event category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Create visit schedule",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Create visit schedule category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Create visit schedule from event",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Create visit schedule from event category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Get study visit schedule",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Get study visit schedule category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Get visit schedule",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Get visit schedule category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Get visit schedule of a study version",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Get visit schedule of a study version category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Update visit schedule",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Update visit schedule category."
        },
        {
            "name":"Designer/Visit APIs/Visit Schedule/Update visit schedule from event",
            "description":"The operations from the Designer/Visit APIs/Visit Schedule/Update visit schedule from event category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Add a visit",
            "description":"The operations from the Designer/Visit APIs/Visits/Add a visit category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Delete a visit",
            "description":"The operations from the Designer/Visit APIs/Visits/Delete a visit category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get a list of study visits",
            "description":"The operations from the Designer/Visit APIs/Visits/Get a list of study visits category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get all visits, forms, and questions by study ID",
            "description":"The operations from the Designer/Visit APIs/Visits/Get all visits, forms, and questions by study ID category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get dispensation visits",
            "description":"The operations from the Designer/Visit APIs/Visits/Get dispensation visits category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get list of visits for a study version",
            "description":"The operations from the Designer/Visit APIs/Visits/Get list of visits for a study version category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get study visit",
            "description":"The operations from the Designer/Visit APIs/Visits/Get study visit category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Get visit kits blinded info.",
            "description":"The operations from the Designer/Visit APIs/Visits/Get visit kits blinded info. category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Identify if a visit contains a kit type titration",
            "description":"The operations from the Designer/Visit APIs/Visits/Identify if a visit contains a kit type titration category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Query visits, forms, and questions",
            "description":"The operations from the Designer/Visit APIs/Visits/Query visits, forms, and questions category."
        },
        {
            "name":"Designer/Visit APIs/Visits/Update a visit",
            "description":"The operations from the Designer/Visit APIs/Visits/Update a visit category."
        },
        {
            "name":"Designer/Welcome APIs/Create welcome message",
            "description":"The operations from the Designer/Welcome APIs/Create welcome message category."
        },
        {
            "name":"Designer/Welcome APIs/Delete welcome message",
            "description":"The operations from the Designer/Welcome APIs/Delete welcome message category."
        },
        {
            "name":"Designer/Welcome APIs/Get welcome message",
            "description":"The operations from the Designer/Welcome APIs/Get welcome message category."
        },
        {
            "name":"Designer/Welcome APIs/Update welcome message",
            "description":"The operations from the Designer/Welcome APIs/Update welcome message category."
        },
        {
            "name":"Digital Gateway/Data Import/v1.0",
            "description":"The operations from the Digital Gateway/Data Import/v1.0 category."
        },
        {
            "name":"Digital Gateway/Data Import/v2.0",
            "description":"The operations from the Digital Gateway/Data Import/v2.0 category."
        },
        {
            "name":"File Upload/v3.0",
            "description":"The operations from the File Upload/v3.0 category."
        },
        {
            "name":"Library/Add library object",
            "description":"The operations from the Library/Add library object category."
        },
        {
            "name":"Library/Add library objects in bulk",
            "description":"The operations from the Library/Add library objects in bulk category."
        },
        {
            "name":"Library/Delete library object",
            "description":"The operations from the Library/Delete library object category."
        },
        {
            "name":"Library/Get library object",
            "description":"The operations from the Library/Get library object category."
        },
        {
            "name":"Library/Get library object with pagination",
            "description":"The operations from the Library/Get library object with pagination category."
        },
        {
            "name":"Library/Library Kits APIs/Add library kit",
            "description":"The operations from the Library/Library Kits APIs/Add library kit category."
        },
        {
            "name":"Library/Library Kits APIs/Delete library kit",
            "description":"The operations from the Library/Library Kits APIs/Delete library kit category."
        },
        {
            "name":"Library/Library Kits APIs/Get all library kits",
            "description":"The operations from the Library/Library Kits APIs/Get all library kits category."
        },
        {
            "name":"Library/Library Kits APIs/Get history of all library kits",
            "description":"The operations from the Library/Library Kits APIs/Get history of all library kits category."
        },
        {
            "name":"Library/Library Kits APIs/Get library kit by ID",
            "description":"The operations from the Library/Library Kits APIs/Get library kit by ID category."
        },
        {
            "name":"Library/Library Kits APIs/Get library kits with pagination",
            "description":"The operations from the Library/Library Kits APIs/Get library kits with pagination category."
        },
        {
            "name":"Library/Library Kits APIs/Update library kit",
            "description":"The operations from the Library/Library Kits APIs/Update library kit category."
        },
        {
            "name":"Library/Library Kits APIs/Update library kit status in bulk",
            "description":"The operations from the Library/Library Kits APIs/Update library kit status in bulk category."
        },
        {
            "name":"Library/Library Object History APIs/Get history of a library object",
            "description":"The operations from the Library/Library Object History APIs/Get history of a library object category."
        },
        {
            "name":"Library/Library Uses APIs/Delete library uses",
            "description":"The operations from the Library/Library Uses APIs/Delete library uses category."
        },
        {
            "name":"Library/Library Uses APIs/Get all library uses for a given study",
            "description":"The operations from the Library/Library Uses APIs/Get all library uses for a given study category."
        },
        {
            "name":"Library/Library Uses APIs/Get library uses by study ID and version",
            "description":"The operations from the Library/Library Uses APIs/Get library uses by study ID and version category."
        },
        {
            "name":"Library/Library Uses APIs/Get library uses for given library ID and study type",
            "description":"The operations from the Library/Library Uses APIs/Get library uses for given library ID and study type category."
        },
        {
            "name":"Library/Library Uses APIs/Get library uses for given study ID and type",
            "description":"The operations from the Library/Library Uses APIs/Get library uses for given study ID and type category."
        },
        {
            "name":"Library/Library Uses APIs/Get library uses object",
            "description":"The operations from the Library/Library Uses APIs/Get library uses object category."
        },
        {
            "name":"Library/Library Uses APIs/Update library uses object",
            "description":"The operations from the Library/Library Uses APIs/Update library uses object category."
        },
        {
            "name":"Library/Undo the previous copy of a library object",
            "description":"The operations from the Library/Undo the previous copy of a library object category."
        },
        {
            "name":"Library/Update library object",
            "description":"The operations from the Library/Update library object category."
        },
        {
            "name":"Library/Update library objects in bulk",
            "description":"The operations from the Library/Update library objects in bulk category."
        },
        {
            "name":"Notifications/Broadcast/Post request to broadcast notifications",
            "description":"The operations from the Notifications/Broadcast/Post request to broadcast notifications category."
        },
        {
            "name":"Notifications/Broadcast/Retrieves the number of total and unread notifications",
            "description":"The operations from the Notifications/Broadcast/Retrieves the number of total and unread notifications category."
        },
        {
            "name":"Notifications/Broadcast/Update the notification broadcast",
            "description":"The operations from the Notifications/Broadcast/Update the notification broadcast category."
        },
        {
            "name":"Notifications/Broadcast/View notification broadcast message description",
            "description":"The operations from the Notifications/Broadcast/View notification broadcast message description category."
        },
        {
            "name":"Notifications/Broadcast/View notification broadcast message description with notification ID",
            "description":"The operations from the Notifications/Broadcast/View notification broadcast message description with notification ID category."
        },
        {
            "name":"Notifications/Email/Use a template and an i18n to send notifications",
            "description":"The operations from the Notifications/Email/Use a template and an i18n to send notifications category."
        },
        {
            "name":"Notifications/Email/Use a template to send notifications",
            "description":"The operations from the Notifications/Email/Use a template to send notifications category."
        },
        {
            "name":"Notifications/Log/Create a log entry and broadcast immediately or schedule notifications",
            "description":"The operations from the Notifications/Log/Create a log entry and broadcast immediately or schedule notifications category."
        },
        {
            "name":"Notifications/Log/Get list of all notification logs",
            "description":"The operations from the Notifications/Log/Get list of all notification logs category."
        },
        {
            "name":"Notifications/Log/Get notification notification properties for a study",
            "description":"The operations from the Notifications/Log/Get notification notification properties for a study category."
        },
        {
            "name":"Notifications/Log/Update notification properties for a study",
            "description":"The operations from the Notifications/Log/Update notification properties for a study category."
        },
        {
            "name":"Notifications/Reports/Generate specific report for notifications settings",
            "description":"The operations from the Notifications/Reports/Generate specific report for notifications settings category."
        },
        {
            "name":"Query/Query Management/Answer an existing query",
            "description":"The operations from the Query/Query Management/Answer an existing query category."
        },
        {
            "name":"Query/Query Management/Assign study roles to queries",
            "description":"The operations from the Query/Query Management/Assign study roles to queries category."
        },
        {
            "name":"Query/Query Management/Close an existing query",
            "description":"The operations from the Query/Query Management/Close an existing query category."
        },
        {
            "name":"Query/Query Management/Create candidate query",
            "description":"The operations from the Query/Query Management/Create candidate query category."
        },
        {
            "name":"Query/Query Management/Create open query",
            "description":"The operations from the Query/Query Management/Create open query category."
        },
        {
            "name":"Query/Query Management/Delete an existing query",
            "description":"The operations from the Query/Query Management/Delete an existing query category."
        },
        {
            "name":"Query/Query Management/Get all historical records on DC_Query table",
            "description":"The operations from the Query/Query Management/Get all historical records on DC_Query table category."
        },
        {
            "name":"Query/Query Management/Get all historical records on DC_Query_Study_Roles table",
            "description":"The operations from the Query/Query Management/Get all historical records on DC_Query_Study_Roles table category."
        },
        {
            "name":"Query/Query Management/Get details of an opened query",
            "description":"The operations from the Query/Query Management/Get details of an opened query category."
        },
        {
            "name":"Query/Query Management/Get list of all query states",
            "description":"The operations from the Query/Query Management/Get list of all query states category."
        },
        {
            "name":"Query/Query Management/Get list of opened queries",
            "description":"The operations from the Query/Query Management/Get list of opened queries category."
        },
        {
            "name":"Query/Query Management/Get list of queries based on multiple parameters",
            "description":"The operations from the Query/Query Management/Get list of queries based on multiple parameters category."
        },
        {
            "name":"Query/Query Management/Get number of open queries in a study for selected subjects",
            "description":"The operations from the Query/Query Management/Get number of open queries in a study for selected subjects category."
        },
        {
            "name":"Query/Query Management/Get number of queries in a study",
            "description":"The operations from the Query/Query Management/Get number of queries in a study category."
        },
        {
            "name":"Query/Query Management/Get query by ID",
            "description":"The operations from the Query/Query Management/Get query by ID category."
        },
        {
            "name":"Query/Query Management/Get query data based on multiple parameters",
            "description":"The operations from the Query/Query Management/Get query data based on multiple parameters category."
        },
        {
            "name":"Query/Query Management/Get subjects with open queries in a study",
            "description":"The operations from the Query/Query Management/Get subjects with open queries in a study category."
        },
        {
            "name":"Query/Query Management/Get the number of open queries in a study",
            "description":"The operations from the Query/Query Management/Get the number of open queries in a study category."
        },
        {
            "name":"Query/Query Management/Get the number of queries in a study",
            "description":"The operations from the Query/Query Management/Get the number of queries in a study category."
        },
        {
            "name":"Query/Query Management/Update a query's status to Open",
            "description":"The operations from the Query/Query Management/Update a query's status to Open category."
        },
        {
            "name":"Query/Reporting/Generate Subject Queries report",
            "description":"The operations from the Query/Reporting/Generate Subject Queries report category."
        },
        {
            "name":"Randomization and Supplies/Cohort APIs/Get cohort enrollments by study, mode and cohort ID",
            "description":"The operations from the Randomization and Supplies/Cohort APIs/Get cohort enrollments by study, mode and cohort ID category."
        },
        {
            "name":"Randomization and Supplies/Cohort APIs/Get cohort limits by study and mode",
            "description":"The operations from the Randomization and Supplies/Cohort APIs/Get cohort limits by study and mode category."
        },
        {
            "name":"Randomization and Supplies/Cohort APIs/Save cohort limits by study and mode",
            "description":"The operations from the Randomization and Supplies/Cohort APIs/Save cohort limits by study and mode category."
        },
        {
            "name":"Randomization and Supplies/Device Management APIs/Deregister an mHealth device",
            "description":"The operations from the Randomization and Supplies/Device Management APIs/Deregister an mHealth device category."
        },
        {
            "name":"Randomization and Supplies/Device Management APIs/Recreate the access ID and one-time password for a bootstrap device",
            "description":"The operations from the Randomization and Supplies/Device Management APIs/Recreate the access ID and one-time password for a bootstrap device category."
        },
        {
            "name":"Randomization and Supplies/Device Management APIs/Register mHealth device",
            "description":"The operations from the Randomization and Supplies/Device Management APIs/Register mHealth device category."
        },
        {
            "name":"Randomization and Supplies/Dispensation Logic APIs/Create DND Exception",
            "description":"The operations from the Randomization and Supplies/Dispensation Logic APIs/Create DND Exception category."
        },
        {
            "name":"Randomization and Supplies/Dispensation Logic APIs/Delete DND Exception",
            "description":"The operations from the Randomization and Supplies/Dispensation Logic APIs/Delete DND Exception category."
        },
        {
            "name":"Randomization and Supplies/Dispensation Logic APIs/Get DND Exception details by ID",
            "description":"The operations from the Randomization and Supplies/Dispensation Logic APIs/Get DND Exception details by ID category."
        },
        {
            "name":"Randomization and Supplies/Dispensation Logic APIs/Get all DND Exceptions",
            "description":"The operations from the Randomization and Supplies/Dispensation Logic APIs/Get all DND Exceptions category."
        },
        {
            "name":"Randomization and Supplies/Dispensation Logic APIs/Update DND Exception",
            "description":"The operations from the Randomization and Supplies/Dispensation Logic APIs/Update DND Exception category."
        },
        {
            "name":"Randomization and Supplies/Dose Hold Subject Visits APIs/Get visits on dose hold for all subjects",
            "description":"The operations from the Randomization and Supplies/Dose Hold Subject Visits APIs/Get visits on dose hold for all subjects category."
        },
        {
            "name":"Randomization and Supplies/Event APIs/Get details about a Code Break event",
            "description":"The operations from the Randomization and Supplies/Event APIs/Get details about a Code Break event category."
        },
        {
            "name":"Randomization and Supplies/Event APIs/Get details about a Kit Replacement event",
            "description":"The operations from the Randomization and Supplies/Event APIs/Get details about a Kit Replacement event category."
        },
        {
            "name":"Randomization and Supplies/Event APIs/Get details about a Resume Partial Dispensation event",
            "description":"The operations from the Randomization and Supplies/Event APIs/Get details about a Resume Partial Dispensation event category."
        },
        {
            "name":"Randomization and Supplies/Event APIs/Get details about a Resume dose hold dispensation event",
            "description":"The operations from the Randomization and Supplies/Event APIs/Get details about a Resume dose hold dispensation event category."
        },
        {
            "name":"Randomization and Supplies/Event APIs/Get list of events in a study",
            "description":"The operations from the Randomization and Supplies/Event APIs/Get list of events in a study category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Create blinded lot",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Create blinded lot category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Create label groups",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Create label groups category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Create manufacturing lot",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Create manufacturing lot category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Create randomization list from uploaded file",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Create randomization list from uploaded file category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Delete blinded lot",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Delete blinded lot category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Delete kit list file",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Delete kit list file category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Delete label groups",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Delete label groups category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Delete manufacturing lot by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Delete manufacturing lot by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Disable kit list with inventories",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Disable kit list with inventories category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Export kit details for the inventory",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Export kit details for the inventory category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Generate kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Generate kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get Kit History by depot ID and kit ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get Kit History by depot ID and kit ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get a kit's barcode by kit ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get a kit's barcode by kit ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get a kit's last status",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get a kit's last status category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get a kit's last status by kit number",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get a kit's last status by kit number category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get a site inventory's status",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get a site inventory's status category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get all manufacturing lots",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get all manufacturing lots category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get allowed inventory statuses",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get allowed inventory statuses category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get blinded lot by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get blinded lot by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get blinded lots",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get blinded lots category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get cancelled inventory statuses",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get cancelled inventory statuses category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get destruction inventory statuses",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get destruction inventory statuses category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get dispensation details by inventory ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get dispensation details by inventory ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get inventory database headers",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get inventory database headers category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get inventory statuses",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get inventory statuses category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit details by kit number",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit details by kit number category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit history by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit history by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit history by KitNumberUTF",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit history by KitNumberUTF category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit history by kit number for a site",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit history by kit number for a site category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit history for a site by kitNumberUTF",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit history for a site by kitNumberUTF category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit list details",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit list details category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit summary by kit type ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit summary of serialized and non-serialized kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit types",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit types category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kit types by lots",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kit types by lots category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get kits from depot inventory by depot ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get kits from depot inventory by depot ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get label groups",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get label groups category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get label groups by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get label groups by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get latest status of kit in site inventory by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get list of filtered kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get list of filtered kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get lots with kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get lots with kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get manufacturing lot by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get max kit number",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get max kit number category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get pending Destruction count by location ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get pending Destruction count by location ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get randomization list database headers",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get randomization list database headers category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get received inventory statuses",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get received inventory statuses category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get single kit settings",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get single kit settings category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get sites",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get sites category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get study settings",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get study settings category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Get types of packages",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Get types of packages category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Kit list details for each kit",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Kit list details for each kit category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Add quantity to lot for non-serialized kit types",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Add quantity to lot for non-serialized kit types category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get allowed inventory status for non-serialized kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get allowed inventory status for non-serialized kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get audit details for non-serialized kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get audit details for non-serialized kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get kit type quantities by lot ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get kit type quantities by lot ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get non-serialized kits by kit type ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Get non-serialized kits by kit type ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update multiple non-serialized kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update multiple non-serialized kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update non-serialized kits",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Non-Serialized Kits APIs/Update non-serialized kits category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Parse file headers",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Parse file headers category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Search for kits in a given range for a site category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Set kit verification status",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Set kit verification status category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update a barcode",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update a barcode category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update a kit's barcode",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update a kit's barcode category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update a kit's dispensation confirmation",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update a kit's dispensation confirmation category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update blinded lot",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update blinded lot category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit attributes",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit attributes category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit attributes from depot inventory by depot ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit attributes from depot inventory by depot ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit label group",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit label group category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit location",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit location category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit manufacturing lot",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit manufacturing lot category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit status",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit status category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update kit status by kit ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update kit status by kit ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update label groups",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update label groups category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update manufacturing lot by ID",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update manufacturing lot by ID category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Update status for kits in a site",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Update status for kits in a site category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Upload inventory data as CSV file",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Upload inventory data as CSV file category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Upload kit list file",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Upload kit list file category."
        },
        {
            "name":"Randomization and Supplies/Inventory APIs/Upload kit types data",
            "description":"The operations from the Randomization and Supplies/Inventory APIs/Upload kit types data category."
        },
        {
            "name":"Randomization and Supplies/NonSubjectForm APIs/Get existing data from non-subject forms for kit IDs",
            "description":"The operations from the Randomization and Supplies/NonSubjectForm APIs/Get existing data from non-subject forms for kit IDs category."
        },
        {
            "name":"Randomization and Supplies/Partial Dispensation Subject Visits APIs/Get visits with partial dispensation for all subjects",
            "description":"The operations from the Randomization and Supplies/Partial Dispensation Subject Visits APIs/Get visits with partial dispensation for all subjects category."
        },
        {
            "name":"Randomization and Supplies/Randomization APIs/Get list of all treatment arms for a randomization",
            "description":"The operations from the Randomization and Supplies/Randomization APIs/Get list of all treatment arms for a randomization category."
        },
        {
            "name":"Randomization and Supplies/Randomization APIs/Get list of headers from a CSV file",
            "description":"The operations from the Randomization and Supplies/Randomization APIs/Get list of headers from a CSV file category."
        },
        {
            "name":"Randomization and Supplies/Randomization APIs/Get unique values for treatments, strata, or cohorts from a CSV file",
            "description":"The operations from the Randomization and Supplies/Randomization APIs/Get unique values for treatments, strata, or cohorts from a CSV file category."
        },
        {
            "name":"Randomization and Supplies/Randomization APIs/Upload randomization list based on header mappings and treatment, cohort, stratum mappings",
            "description":"The operations from the Randomization and Supplies/Randomization APIs/Upload randomization list based on header mappings and treatment, cohort, stratum mappings category."
        },
        {
            "name":"Randomization and Supplies/Randomization APIs/Upload randomization list file from a file service into RTSM",
            "description":"The operations from the Randomization and Supplies/Randomization APIs/Upload randomization list file from a file service into RTSM category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Blocks/Get list of randomization blocks",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Blocks/Get list of randomization blocks category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Blocks/Update randomization list blocks",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Blocks/Update randomization list blocks category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Designs/Associate randomization design to randomization list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Designs/Associate randomization design to randomization list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Designs/Check randomization design is blocked by region",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Designs/Check randomization design is blocked by region category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Designs/Dissociate randomization design from randomization list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Designs/Dissociate randomization design from randomization list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Designs/Get randomization design list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Designs/Get randomization design list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Export/Export randomization list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Export/Export randomization list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Lists/Create randomization list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Lists/Create randomization list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Lists/Delete randomization list file",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Lists/Delete randomization list file category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Lists/Get randomization list",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Lists/Get randomization list category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Lists/Get randomization list by ID category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Numbers/Get random number statuses",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Numbers/Get random number statuses category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Numbers/Get randomization number category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Numbers/Replace randomization number for a subject",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Numbers/Replace randomization number for a subject category."
        },
        {
            "name":"Randomization and Supplies/Randomization List APIs/Numbers/Update randomization status",
            "description":"The operations from the Randomization and Supplies/Randomization List APIs/Numbers/Update randomization status category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Depot Resupply details for the study",
            "description":"The operations from the Randomization and Supplies/Report APIs/Depot Resupply details for the study category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Blinded Randomization List report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Blinded Randomization List report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Cohort Enrollment Audit Trail report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Cohort Enrollment Audit Trail report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Cohort Enrollment report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Cohort Enrollment report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get DND Exceptions report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get DND Exceptions report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Kit Blinded Chain of Custody report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Kit Blinded Chain of Custody report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Kit Chain of Custody Unblinded report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Kit Inventory (Blinded) report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Kit Inventory (Blinded) report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Kit Inventory (Unblinded) report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Kit Inventory (Unblinded) report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Kit Reconciliation report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Kit Reconciliation report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Order Summary report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Order Summary report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Projected Supplies Data Extract report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Projected Supplies Data Extract report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Randomization List report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Randomization List report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Study Design kit list report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Study Design kit list report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Study Design report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Study Design report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Study Inventory Settings report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Study Inventory Settings report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Subject Data report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Subject Data report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get System Usage report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get System Usage report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Titration Summary (Blinded) report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Titration Summary (Blinded) report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Titration Summary (Unblinded) report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Titration Summary (Unblinded) report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Unblinded Randomization List report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Unblinded Randomization List report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get Unblinded Visit Schedule report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get Unblinded Visit Schedule report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get dose hold settings report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get dose hold settings report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get local source settings report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get local source settings report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get minimization list report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get minimization list report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get partial dispensation settings report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get partial dispensation settings report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get projected supplies data for countries",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get projected supplies data for countries category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get projected supplies data for depots",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get projected supplies data for depots category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get projected supplies data for sites",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get projected supplies data for sites category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get the Subject Dispensation Audit report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get the Subject Dispensation Audit report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get the Subject Dispensation report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get the Subject Dispensation report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Get the Supply Settings audit report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Get the Supply Settings audit report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Retrieves Min/Max resupply strategy details of a study for a report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Retrieves Min/Max resupply strategy details of a study for a report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Retrieves predictive resupply details of a study for a report",
            "description":"The operations from the Randomization and Supplies/Report APIs/Retrieves predictive resupply details of a study for a report category."
        },
        {
            "name":"Randomization and Supplies/Report APIs/Site Resupply details for the study",
            "description":"The operations from the Randomization and Supplies/Report APIs/Site Resupply details for the study category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Create blinding group",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Create blinding group category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Delete blinding group by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Delete blinding group by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Get all blinding groups",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Get all blinding groups category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Get blinding group by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Get blinding group by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Get kit types which do not belong to any blinding group",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Get kit types which do not belong to any blinding group category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Blinding Group/Update blinding group",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Blinding Group/Update blinding group category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Dose Hold Settings/Create dose hold settings for the given dose hold",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Dose Hold Settings/Create dose hold settings for the given dose hold category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Dose Hold Settings/Delete dose hold settings of a given dose hold by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Dose Hold Settings/Delete dose hold settings of a given dose hold by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Dose Hold Settings/Get all dose hold settings details",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Dose Hold Settings/Get all dose hold settings details category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Dose Hold Settings/Get dose hold setting details of given dose hold by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Dose Hold Settings/Get dose hold setting details of given dose hold by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Dose Hold Settings/Update dose hold settings of a given dose hold by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Dose Hold Settings/Update dose hold settings of a given dose hold by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Get supply settings",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Get supply settings category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Create local source settings for kit types",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Create local source settings for kit types category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Delete local source settings by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Delete local source settings by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Get all local source settings",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Get all local source settings category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings for a Subject ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Get local source settings for a Subject ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Local Source Settings/Update local source settings by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Local Source Settings/Update local source settings by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Partial Dispensation/Create partial dispensation settings",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Partial Dispensation/Create partial dispensation settings category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Partial Dispensation/Delete partial dispensation settings of a given partial dispensation definition by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Partial Dispensation/Delete partial dispensation settings of a given partial dispensation definition by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Partial Dispensation/Get all partial dispensation details",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Partial Dispensation/Get all partial dispensation details category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Partial Dispensation/Get partial dispensation settings of a given partial dispensation by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Partial Dispensation/Get partial dispensation settings of a given partial dispensation by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Partial Dispensation/Update partial dispensation settings of a given partial dispensation by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Partial Dispensation/Update partial dispensation settings of a given partial dispensation by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Create a resupply group",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Create a resupply group category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected depot resupply associations",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected depot resupply associations category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected site resupply associations",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Create or update selected site resupply associations category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Delete a resupply by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Delete a resupply by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Get a resupply group by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Get a resupply group by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all depot resupplies",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all depot resupplies category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all resupply groups",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all resupply groups category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all site resupplies",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Get all site resupplies category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Resupply Group Settings/Update a resupply by ID",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Resupply Group Settings/Update a resupply by ID category."
        },
        {
            "name":"Randomization and Supplies/Settings APIs/Update supply settings",
            "description":"The operations from the Randomization and Supplies/Settings APIs/Update supply settings category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Forms/Regenerate order form",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Forms/Regenerate order form category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Add additional kits to a received shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Add additional kits to a received shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Add kits to a shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Add kits to a shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Assign Pooling Shipment kits",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Assign Pooling Shipment kits category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Delete kits from a shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Delete kits from a shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Get eligible kits",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Get eligible kits category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Get kits",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Get kits category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Get kits eligible to be received against a shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Get kits eligible to be received against a shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Get kits or a specific kit for a shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Remove kits from a shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Remove kits from a shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Kits/Update status of a received kit",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Kits/Update status of a received kit category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/NS Inventory/Get non-serialized inventory order items",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/NS Inventory/Get non-serialized inventory order items category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Confirm order shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Confirm order shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Get order details by a shipment ID category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Get order items",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Get order items category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Get orders",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Get orders category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Invalidate order shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Invalidate order shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/List available order status values",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/List available order status values category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Orders/Update shipment details for an order",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Orders/Update shipment details for an order category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Quarantine/Update a quarantined shipment and its kits to received",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Quarantine/Update a quarantined shipment and its kits to received category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Quarantine/Update shipment and its kits as quarantined",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Quarantine/Update shipment and its kits as quarantined category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/All shipments",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/All shipments category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Cancel reconciliation shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Cancel reconciliation shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Cancel shipments",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Cancel shipments category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create a resupply strategy category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create first shipment in resupply strategy",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create first shipment in resupply strategy category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create manual depot shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create manual depot shipment category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create manual shipment in resupply strategy category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction from a given site to depot",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction from a given site to depot category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction in a study",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Create shipment for kits marked for destruction in a study category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Get a shipment's details by ID for a site",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Get a shipment's details by ID for a site category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Get shipment by shipment ID category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Initiate manual resupply to a site",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Initiate manual resupply to a site category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received for a given site",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Mark kits as received for a given site category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Mark reconciliation shipments as lost",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Mark reconciliation shipments as lost category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Mark shipments as lost",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Mark shipments as lost category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Received shipment for destruction",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Received shipment for destruction category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a site",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a site category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Search shipments for a study category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Update a shipment's ship date",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Update a shipment's ship date category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Update received date",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Update received date category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Update recon shipment received date",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Update recon shipment received date category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Update shipment as received for destruction",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Update shipment as received for destruction category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Shipments/Update shipping date",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Shipments/Update shipping date category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Tracking/Update a shipment's tracking details",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Tracking/Update a shipment's tracking details category."
        },
        {
            "name":"Randomization and Supplies/Shipment APIs/Tracking/Update tracking details for an order shipment",
            "description":"The operations from the Randomization and Supplies/Shipment APIs/Tracking/Update tracking details for an order shipment category."
        },
        {
            "name":"Randomization and Supplies/Study Import APIs/Get unique values for treatments, stratums or cohorts from a CSV file",
            "description":"The operations from the Randomization and Supplies/Study Import APIs/Get unique values for treatments, stratums or cohorts from a CSV file category."
        },
        {
            "name":"Randomization and Supplies/Study Import APIs/Update study version",
            "description":"The operations from the Randomization and Supplies/Study Import APIs/Update study version category."
        },
        {
            "name":"Randomization and Supplies/Subject APIs/Check if titration has any impact on kit dispensation",
            "description":"The operations from the Randomization and Supplies/Subject APIs/Check if titration has any impact on kit dispensation category."
        },
        {
            "name":"Randomization and Supplies/Subject APIs/Get a list of all randomized subjects",
            "description":"The operations from the Randomization and Supplies/Subject APIs/Get a list of all randomized subjects category."
        },
        {
            "name":"Randomization and Supplies/Subject APIs/Get a list of all subjects",
            "description":"The operations from the Randomization and Supplies/Subject APIs/Get a list of all subjects category."
        },
        {
            "name":"Randomization and Supplies/Subject APIs/Retrieves the visit date for a particular subject ID and visit ID",
            "description":"The operations from the Randomization and Supplies/Subject APIs/Retrieves the visit date for a particular subject ID and visit ID category."
        },
        {
            "name":"Randomization and Supplies/Titration APIs/Check if subject is eligible for titration",
            "description":"The operations from the Randomization and Supplies/Titration APIs/Check if subject is eligible for titration category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get code break",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get code break category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get code view",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get code view category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get dispensation history",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get dispensation history category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get dispensation info for a subject",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get dispensation info for a subject category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get dose hold history",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get dose hold history category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get kits allowed for dose hold",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get kits allowed for dose hold category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get kits which are marked as dose hold",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get kits which are marked as dose hold category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get list of visits",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get list of visits category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get randomization history",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get randomization history category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get reusable kits",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get reusable kits category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get reusable kits from a list of kit types category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get subject treatment",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get subject treatment category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get treatment arm and cohort for a subject",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get treatment arm and cohort for a subject category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects IDs",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get treatment arm for a list of subjects IDs category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get unblinded dispensation history",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get unblinded dispensation history category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get unblinded dispensation history for all subjects category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get unblinded randomization history",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get unblinded randomization history category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get unblinded randomization history for all subjects",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get unblinded randomization history for all subjects category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Get visit by visit ID",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Get visit by visit ID category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Migrate dispensation",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Migrate dispensation category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Randomize a subject or dispense a kit during a visit category."
        },
        {
            "name":"Randomization and Supplies/Visit APIs/Replace a subject's kits",
            "description":"The operations from the Randomization and Supplies/Visit APIs/Replace a subject's kits category."
        },
        {
            "name":"Reporting/v1.0",
            "description":"The operations from the Reporting/v1.0 category."
        },
        {
            "name":"Reporting/v2.0",
            "description":"The operations from the Reporting/v2.0 category."
        },
        {
            "name":"Rule Designer/Reporting/Generate Rule Designer reports",
            "description":"The operations from the Rule Designer/Reporting/Generate Rule Designer reports category."
        },
        {
            "name":"Rule Designer/Rule Management/Allow rules to run on either All or Future data",
            "description":"The operations from the Rule Designer/Rule Management/Allow rules to run on either All or Future data category."
        },
        {
            "name":"Rule Designer/Rule Management/Copy Rules to newly copied study",
            "description":"The operations from the Rule Designer/Rule Management/Copy Rules to newly copied study category."
        },
        {
            "name":"Rule Designer/Rule Management/Copy rules in bulk",
            "description":"The operations from the Rule Designer/Rule Management/Copy rules in bulk category."
        },
        {
            "name":"Rule Designer/Rule Management/Delete UI rules by form ID",
            "description":"The operations from the Rule Designer/Rule Management/Delete UI rules by form ID category."
        },
        {
            "name":"Rule Designer/Rule Management/Delete rules in bulk",
            "description":"The operations from the Rule Designer/Rule Management/Delete rules in bulk category."
        },
        {
            "name":"Rule Designer/Rule Management/Disable all notification rules",
            "description":"The operations from the Rule Designer/Rule Management/Disable all notification rules category."
        },
        {
            "name":"Rule Designer/Rule Management/Enable or disable rule",
            "description":"The operations from the Rule Designer/Rule Management/Enable or disable rule category."
        },
        {
            "name":"Rule Designer/Rule Management/Get all rule states",
            "description":"The operations from the Rule Designer/Rule Management/Get all rule states category."
        },
        {
            "name":"Rule Designer/Rule Management/Get all rules based on filter parameters",
            "description":"The operations from the Rule Designer/Rule Management/Get all rules based on filter parameters category."
        },
        {
            "name":"Rule Designer/Rule Management/Get all rules based on given parameters",
            "description":"The operations from the Rule Designer/Rule Management/Get all rules based on given parameters category."
        },
        {
            "name":"Rule Designer/Rule Management/Get multiple parameters of all rules in a study",
            "description":"The operations from the Rule Designer/Rule Management/Get multiple parameters of all rules in a study category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule Operands list by rule IDs",
            "description":"The operations from the Rule Designer/Rule Management/Get rule Operands list by rule IDs category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule by form ID",
            "description":"The operations from the Rule Designer/Rule Management/Get rule by form ID category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule by item ID",
            "description":"The operations from the Rule Designer/Rule Management/Get rule by item ID category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule by property",
            "description":"The operations from the Rule Designer/Rule Management/Get rule by property category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule by rule ID",
            "description":"The operations from the Rule Designer/Rule Management/Get rule by rule ID category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rule history by study ID, ruleid and optionally study mode",
            "description":"The operations from the Rule Designer/Rule Management/Get rule history by study ID, ruleid and optionally study mode category."
        },
        {
            "name":"Rule Designer/Rule Management/Get rules by study ID and study mode",
            "description":"The operations from the Rule Designer/Rule Management/Get rules by study ID and study mode category."
        },
        {
            "name":"Rule Designer/Rule Management/Get valid and enabled rules by form ID",
            "description":"The operations from the Rule Designer/Rule Management/Get valid and enabled rules by form ID category."
        },
        {
            "name":"Rule Designer/Rule Management/Get visits and forms action information.",
            "description":"The operations from the Rule Designer/Rule Management/Get visits and forms action information. category."
        },
        {
            "name":"Rule Designer/Rule Management/Publish a collection of rules in Testing mode",
            "description":"The operations from the Rule Designer/Rule Management/Publish a collection of rules in Testing mode category."
        },
        {
            "name":"Rule Designer/Rule Management/Update rules in bulk",
            "description":"The operations from the Rule Designer/Rule Management/Update rules in bulk category."
        },
        {
            "name":"Rule Designer/Rule Management/Validate copied rules",
            "description":"The operations from the Rule Designer/Rule Management/Validate copied rules category."
        },
        {
            "name":"Rule Execution/Re-Execution/Cancel Rule Jobs",
            "description":"The operations from the Rule Execution/Re-Execution/Cancel Rule Jobs category."
        },
        {
            "name":"Rule Execution/Re-Execution/Get Rule Re-run History",
            "description":"The operations from the Rule Execution/Re-Execution/Get Rule Re-run History category."
        },
        {
            "name":"Rule Execution/Re-Execution/Job Status",
            "description":"The operations from the Rule Execution/Re-Execution/Job Status category."
        },
        {
            "name":"Sites and Depots/Addresses/Get address master details",
            "description":"The operations from the Sites and Depots/Addresses/Get address master details category."
        },
        {
            "name":"Sites and Depots/Contact/Create contact",
            "description":"The operations from the Sites and Depots/Contact/Create contact category."
        },
        {
            "name":"Sites and Depots/Contact/Delete contact by ID",
            "description":"The operations from the Sites and Depots/Contact/Delete contact by ID category."
        },
        {
            "name":"Sites and Depots/Contact/Get contacts",
            "description":"The operations from the Sites and Depots/Contact/Get contacts category."
        },
        {
            "name":"Sites and Depots/Contact/Get contacts by contact ID",
            "description":"The operations from the Sites and Depots/Contact/Get contacts by contact ID category."
        },
        {
            "name":"Sites and Depots/Contact/Get contacts details",
            "description":"The operations from the Sites and Depots/Contact/Get contacts details category."
        },
        {
            "name":"Sites and Depots/Contact/Update contact by contact ID.",
            "description":"The operations from the Sites and Depots/Contact/Update contact by contact ID. category."
        },
        {
            "name":"Sites and Depots/Contact/Validate contact fields",
            "description":"The operations from the Sites and Depots/Contact/Validate contact fields category."
        },
        {
            "name":"Sites and Depots/Country/Associate countries and states to site or depot",
            "description":"The operations from the Sites and Depots/Country/Associate countries and states to site or depot category."
        },
        {
            "name":"Sites and Depots/Country/Associate countries to site or depot",
            "description":"The operations from the Sites and Depots/Country/Associate countries to site or depot category."
        },
        {
            "name":"Sites and Depots/Country/Disassociate country from site",
            "description":"The operations from the Sites and Depots/Country/Disassociate country from site category."
        },
        {
            "name":"Sites and Depots/Country/Get association between country and site (ISO3 codes)",
            "description":"The operations from the Sites and Depots/Country/Get association between country and site (ISO3 codes) category."
        },
        {
            "name":"Sites and Depots/Country/Get country based on country ID",
            "description":"The operations from the Sites and Depots/Country/Get country based on country ID category."
        },
        {
            "name":"Sites and Depots/Country/Get country name",
            "description":"The operations from the Sites and Depots/Country/Get country name category."
        },
        {
            "name":"Sites and Depots/Country/Get states with hidden flag based on country ID",
            "description":"The operations from the Sites and Depots/Country/Get states with hidden flag based on country ID category."
        },
        {
            "name":"Sites and Depots/Country/Update countries association to site",
            "description":"The operations from the Sites and Depots/Country/Update countries association to site category."
        },
        {
            "name":"Sites and Depots/EHR Connectors/Get EHR Connectors",
            "description":"The operations from the Sites and Depots/EHR Connectors/Get EHR Connectors category."
        },
        {
            "name":"Sites and Depots/Entity Management/Get all study contacts or organization entities",
            "description":"The operations from the Sites and Depots/Entity Management/Get all study contacts or organization entities category."
        },
        {
            "name":"Sites and Depots/Entity Management/Get all tenant contacts or organization entities",
            "description":"The operations from the Sites and Depots/Entity Management/Get all tenant contacts or organization entities category."
        },
        {
            "name":"Sites and Depots/Entity Management/Manage a given study entity associated with a contact or organization",
            "description":"The operations from the Sites and Depots/Entity Management/Manage a given study entity associated with a contact or organization category."
        },
        {
            "name":"Sites and Depots/Entity Management/Manage all associated entities with given contact or organization",
            "description":"The operations from the Sites and Depots/Entity Management/Manage all associated entities with given contact or organization category."
        },
        {
            "name":"Sites and Depots/Facilities/Create facilities",
            "description":"The operations from the Sites and Depots/Facilities/Create facilities category."
        },
        {
            "name":"Sites and Depots/Facilities/Get facilities",
            "description":"The operations from the Sites and Depots/Facilities/Get facilities category."
        },
        {
            "name":"Sites and Depots/Facilities/Update facilities",
            "description":"The operations from the Sites and Depots/Facilities/Update facilities category."
        },
        {
            "name":"Sites and Depots/Get list of sites in a study",
            "description":"The operations from the Sites and Depots/Get list of sites in a study category."
        },
        {
            "name":"Sites and Depots/Get site or depot details by SDF ID",
            "description":"The operations from the Sites and Depots/Get site or depot details by SDF ID category."
        },
        {
            "name":"Sites and Depots/Labs/Create a lab",
            "description":"The operations from the Sites and Depots/Labs/Create a lab category."
        },
        {
            "name":"Sites and Depots/Labs/Create an association between a lab and a study site",
            "description":"The operations from the Sites and Depots/Labs/Create an association between a lab and a study site category."
        },
        {
            "name":"Sites and Depots/Labs/Create or update lab normals",
            "description":"The operations from the Sites and Depots/Labs/Create or update lab normals category."
        },
        {
            "name":"Sites and Depots/Labs/Delete lab if site association does not exist",
            "description":"The operations from the Sites and Depots/Labs/Delete lab if site association does not exist category."
        },
        {
            "name":"Sites and Depots/Labs/Delete the lab and study site association",
            "description":"The operations from the Sites and Depots/Labs/Delete the lab and study site association category."
        },
        {
            "name":"Sites and Depots/Labs/Get all lab normals",
            "description":"The operations from the Sites and Depots/Labs/Get all lab normals category."
        },
        {
            "name":"Sites and Depots/Labs/Get all lab normals for given subject",
            "description":"The operations from the Sites and Depots/Labs/Get all lab normals for given subject category."
        },
        {
            "name":"Sites and Depots/Labs/Get all lab normals for the given list of lab criteria",
            "description":"The operations from the Sites and Depots/Labs/Get all lab normals for the given list of lab criteria category."
        },
        {
            "name":"Sites and Depots/Labs/Get all labs associated with a given site",
            "description":"The operations from the Sites and Depots/Labs/Get all labs associated with a given site category."
        },
        {
            "name":"Sites and Depots/Labs/Get lab details of a given lab ID",
            "description":"The operations from the Sites and Depots/Labs/Get lab details of a given lab ID category."
        },
        {
            "name":"Sites and Depots/Labs/Get lab history for the given lab ID",
            "description":"The operations from the Sites and Depots/Labs/Get lab history for the given lab ID category."
        },
        {
            "name":"Sites and Depots/Labs/Update a lab at tenant level",
            "description":"The operations from the Sites and Depots/Labs/Update a lab at tenant level category."
        },
        {
            "name":"Sites and Depots/Organizations/Create organization",
            "description":"The operations from the Sites and Depots/Organizations/Create organization category."
        },
        {
            "name":"Sites and Depots/Organizations/Delete organization by ID",
            "description":"The operations from the Sites and Depots/Organizations/Delete organization by ID category."
        },
        {
            "name":"Sites and Depots/Organizations/Get organization by ID",
            "description":"The operations from the Sites and Depots/Organizations/Get organization by ID category."
        },
        {
            "name":"Sites and Depots/Organizations/Get organizations",
            "description":"The operations from the Sites and Depots/Organizations/Get organizations category."
        },
        {
            "name":"Sites and Depots/Organizations/Get organizations details",
            "description":"The operations from the Sites and Depots/Organizations/Get organizations details category."
        },
        {
            "name":"Sites and Depots/Organizations/Update organization by ID",
            "description":"The operations from the Sites and Depots/Organizations/Update organization by ID category."
        },
        {
            "name":"Sites and Depots/Organizations/Validate organization fields",
            "description":"The operations from the Sites and Depots/Organizations/Validate organization fields category."
        },
        {
            "name":"Sites and Depots/Region/Add a region",
            "description":"The operations from the Sites and Depots/Region/Add a region category."
        },
        {
            "name":"Sites and Depots/Region/Delete a region",
            "description":"The operations from the Sites and Depots/Region/Delete a region category."
        },
        {
            "name":"Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region",
            "description":"The operations from the Sites and Depots/Region/Get list of countries and states with hidden flag associated to a region category."
        },
        {
            "name":"Sites and Depots/Region/Get list of regions with history",
            "description":"The operations from the Sites and Depots/Region/Get list of regions with history category."
        },
        {
            "name":"Sites and Depots/Region/Get region by country or state ID",
            "description":"The operations from the Sites and Depots/Region/Get region by country or state ID category."
        },
        {
            "name":"Sites and Depots/Region/Get region details",
            "description":"The operations from the Sites and Depots/Region/Get region details category."
        },
        {
            "name":"Sites and Depots/Region/Update region and its associated countries and states list",
            "description":"The operations from the Sites and Depots/Region/Update region and its associated countries and states list category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Create kit settings by SDF ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Create kit settings by SDF ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all kit type IDs and main primary countries that are locally sourced and assigned to the sites",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all kit type IDs and main primary countries that are locally sourced and assigned to the sites category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all sites main primary country having non locally sourced kits by kit type ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Get all sites main primary country having non locally sourced kits by kit type ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Get kit settings by SDF type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Update Ship To Address of a kit Type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Update Ship To Address of a kit Type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Kit Settings/Update kit settings by SDF ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Kit Settings/Update kit settings by SDF ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Reporting/Generate specific report for sites category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites by column, type and status",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites by column, type and status category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites, depots and labs in a study by path attributes",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF LOV/Get sites, depots and labs in a study by path attributes category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF LOV/Get the principal investigator's full name for all sites",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF LOV/Get the principal investigator's full name for all sites category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Clear site's SDFs cached data by study ID and mode",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Clear site's SDFs cached data by study ID and mode category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site and send notification",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create a site and send notification category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create depot association with country or state by GUID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create depot association with country or state by GUID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create site address",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create site address category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create site or depot with study ID and master address",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create site or depot with study ID and master address category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Create site property",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Create site property category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Delete a site by ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Delete a site by ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Delete depot email",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Delete depot email category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site address by site and address ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site address by site and address ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site, master address, properties and kit settings by SDF ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Delete site, master address, properties and kit settings by SDF ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF countries or states associated with depot GUID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF countries or states associated with depot GUID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF details for IDs sent in payload",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF details for IDs sent in payload category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF information with creation date by SDF type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get SDF information with creation date by SDF type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by SDF ID for a tenant",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get a site by SDF ID for a tenant category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all properties of the site by SDF ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all properties of the site by SDF ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all return depot properties details",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all return depot properties details category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites and depots details by study ID based on given filters",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites and depots details by study ID based on given filters category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type and study version",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites by type and study version category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites details or depots details by study ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all sites details or depots details by study ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get all study versions for a site",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get all study versions for a site category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries by type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries by type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries for a site by SDF type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get countries for a site by SDF type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get locally sourced kits by site",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get locally sourced kits by site category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get principal investigator's name and site address",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get principal investigator's name and site address category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by filter parameters",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by filter parameters category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name and address",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name and address category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF (UI search autocomplete)",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site by site name or address and type of SDF (UI search autocomplete) category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot details by SDF ID and SDF Type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot details by SDF ID and SDF Type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot information by ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site or depot information by ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get site property by SDF and property ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get site property by SDF and property ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites by type or list of countries",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites by type or list of countries category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites in a paginated format",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites in a paginated format category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites on search key",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get sites on search key category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Get study site details with study version property by site ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Get study site details with study version property by site ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update SDF status for the given study ID, mode ID and SDF type",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update SDF status for the given study ID, mode ID and SDF type category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site and send notification",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update a site and send notification category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update all sites with a new study version",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update all sites with a new study version category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update or delete depot association with country or state by GUID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update or delete depot association with country or state by GUID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update site address by site and address ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update site address by site and address ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update site or depot with study ID and master address",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update site or depot with study ID and master address category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update site properties for managing sites",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update site properties for managing sites category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/SDF Management/Update the SDF property of the site by ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/SDF Management/Update the SDF property of the site by ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create extended properties by site ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create extended properties by site ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create or update extended properties for all sites",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Extended Property/Create or update extended properties for all sites category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Extended Property/Update extended properties by site ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Extended Property/Update extended properties by site ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Property/Create site global property",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Property/Create site global property category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF global property by property ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF global property by property ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF property by property ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Property/Delete SDF property by property ID category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Property/Get global site property by property name",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Property/Get global site property by property name category."
        },
        {
            "name":"Sites and Depots/Site or Depot (SDF)/Site Property/Update the site global property by ID",
            "description":"The operations from the Sites and Depots/Site or Depot (SDF)/Site Property/Update the site global property by ID category."
        },
        {
            "name":"Sites and Depots/Sites and Depots/Facilities/Validate study labs, depots or sites fields present in input payload and returns the corresponding flag as true or false.",
            "description":"The operations from the Sites and Depots/Sites and Depots/Facilities/Validate study labs, depots or sites fields present in input payload and returns the corresponding flag as true or false. category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Associate two entities",
            "description":"The operations from the Sites and Depots/Tenant Sites/Associate two entities category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Create study sites by association ID",
            "description":"The operations from the Sites and Depots/Tenant Sites/Create study sites by association ID category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Delete contact organization association if not used in site",
            "description":"The operations from the Sites and Depots/Tenant Sites/Delete contact organization association if not used in site category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Get all valid associations by Association Type",
            "description":"The operations from the Sites and Depots/Tenant Sites/Get all valid associations by Association Type category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Get contacts and organization association list by ID",
            "description":"The operations from the Sites and Depots/Tenant Sites/Get contacts and organization association list by ID category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Get study sites by mode ID and association ID",
            "description":"The operations from the Sites and Depots/Tenant Sites/Get study sites by mode ID and association ID category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Get tenant first entity addresses by Association ID",
            "description":"The operations from the Sites and Depots/Tenant Sites/Get tenant first entity addresses by Association ID category."
        },
        {
            "name":"Sites and Depots/Tenant Sites/Update the association between two entities",
            "description":"The operations from the Sites and Depots/Tenant Sites/Update the association between two entities category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Assign data classifications to study role for study ID",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Assign data classifications to study role for study ID category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Assign tenant data classifications to study role",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Assign tenant data classifications to study role category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Create a list of data classifications and mappings for a tenant",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Create a list of data classifications and mappings for a tenant category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get a list of data classifications by study roles for a tenant",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get a list of data classifications by study roles for a tenant category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get data classifications for study role by study ID",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get data classifications for study role by study ID category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get list of data classification for a study ID",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get list of data classification for a study ID category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get list of data classification for a tenant",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get list of data classification for a tenant category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get list of data classification with levels",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get list of data classification with levels category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get specific data classifications for all study roles of a study",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get specific data classifications for all study roles of a study category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get tenant data classifications and study roles",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get tenant data classifications and study roles category."
        },
        {
            "name":"Users, Permissions and Roles/Data Classification/Get tenant data classifications for study role",
            "description":"The operations from the Users, Permissions and Roles/Data Classification/Get tenant data classifications for study role category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's ID",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's ID category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's global rights",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's global rights category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's info",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's info category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's permissions",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's permissions category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's rights",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's rights category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get a user's rights for all studies",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get a user's rights for all studies category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get rights for user in a study",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get rights for user in a study category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get studies and modes",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get studies and modes category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get user name",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get user name category."
        },
        {
            "name":"Users, Permissions and Roles/Permissions/Get users and rights in a study",
            "description":"The operations from the Users, Permissions and Roles/Permissions/Get users and rights in a study category."
        },
        {
            "name":"Users, Permissions and Roles/Reports/Generate a global report",
            "description":"The operations from the Users, Permissions and Roles/Reports/Generate a global report category."
        },
        {
            "name":"Users, Permissions and Roles/Reports/Generate a user assignment report",
            "description":"The operations from the Users, Permissions and Roles/Reports/Generate a user assignment report category."
        },
        {
            "name":"Users, Permissions and Roles/Reports/Generate a user assignment report (global level)",
            "description":"The operations from the Users, Permissions and Roles/Reports/Generate a user assignment report (global level) category."
        },
        {
            "name":"Users, Permissions and Roles/Reports/Generates the user upload error report",
            "description":"The operations from the Users, Permissions and Roles/Reports/Generates the user upload error report category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get assigned permissions",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get assigned permissions category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get list of permissions for a role",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get list of permissions for a role category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get list of roles for a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get list of roles for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get list roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get list roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get the list of permissions",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get the list of permissions category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get the list of roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get the list of roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Authorization Roles/Get the list of study roles containing particular rights",
            "description":"The operations from the Users, Permissions and Roles/Roles/Authorization Roles/Get the list of study roles containing particular rights category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Delete a global user's roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Delete a global user's roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Delete a user's mode and roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Delete a user's mode and roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Get a global user's roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Get a global user's roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Get a user's modes and roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Get a user's modes and roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Get all global roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Get all global roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Get user roles in a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Get user roles in a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Create a study role group for a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Create a study role group for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Create a study role group for an organization",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Create a study role group for an organization category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Create study roles list for a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Create study roles list for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Delete study roles list for a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Delete study roles list for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions for a study role for a study ID",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get groups of permissions for a study role for a study ID category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for an organization",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for an organization category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for study ID and study Role ID",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get list of study roles for study ID and study Role ID category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get study roles list for a study role ID",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get study roles list for a study role ID category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Get the list of study roles for a study ID",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Get the list of study roles for a study ID category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Retire a study role",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Retire a study role category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Retire study role for a study",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Retire study role for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Update a study role group",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Update a study role group category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Study Roles/Update a study role group for an organization",
            "description":"The operations from the Users, Permissions and Roles/Roles/Study Roles/Update a study role group for an organization category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Update a global user's roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Update a global user's roles category."
        },
        {
            "name":"Users, Permissions and Roles/Roles/Update a user's mode and roles",
            "description":"The operations from the Users, Permissions and Roles/Roles/Update a user's mode and roles category."
        },
        {
            "name":"Users, Permissions and Roles/Sites and Depots/Get depots",
            "description":"The operations from the Users, Permissions and Roles/Sites and Depots/Get depots category."
        },
        {
            "name":"Users, Permissions and Roles/Sites and Depots/Get sites",
            "description":"The operations from the Users, Permissions and Roles/Sites and Depots/Get sites category."
        },
        {
            "name":"Users, Permissions and Roles/Sites and Depots/Get sites and depots",
            "description":"The operations from the Users, Permissions and Roles/Sites and Depots/Get sites and depots category."
        },
        {
            "name":"Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to create users",
            "description":"The operations from the Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to create users category."
        },
        {
            "name":"Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to update users",
            "description":"The operations from the Users, Permissions and Roles/Users template API/Download the Clinical One upload user template file to update users category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Bulk user effective dates update",
            "description":"The operations from the Users, Permissions and Roles/Users/Bulk user effective dates update category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Bulk user roles update",
            "description":"The operations from the Users, Permissions and Roles/Users/Bulk user roles update category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Bulk user sites update",
            "description":"The operations from the Users, Permissions and Roles/Users/Bulk user sites update category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Create and assign bulk users",
            "description":"The operations from the Users, Permissions and Roles/Users/Create and assign bulk users category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Delete user attributes by user ID",
            "description":"The operations from the Users, Permissions and Roles/Users/Delete user attributes by user ID category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get Users for Notification Right",
            "description":"The operations from the Users, Permissions and Roles/Users/Get Users for Notification Right category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get a global user's details by user ID",
            "description":"The operations from the Users, Permissions and Roles/Users/Get a global user's details by user ID category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all active and inactive users per study",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all active and inactive users per study category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all active users for a study with study roles and email address",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all active users for a study with study roles and email address category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all study users' details",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all study users' details category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all unassigned users for a study",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all unassigned users for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all users for a study",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all users for a study category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get all users who has access to site and depot for a study as logged in user",
            "description":"The operations from the Users, Permissions and Roles/Users/Get all users who has access to site and depot for a study as logged in user category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get global roles users",
            "description":"The operations from the Users, Permissions and Roles/Users/Get global roles users category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get global users",
            "description":"The operations from the Users, Permissions and Roles/Users/Get global users category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get global users unassigned to a study",
            "description":"The operations from the Users, Permissions and Roles/Users/Get global users unassigned to a study category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get list of users",
            "description":"The operations from the Users, Permissions and Roles/Users/Get list of users category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get requested active users for a study with study roles and email address",
            "description":"The operations from the Users, Permissions and Roles/Users/Get requested active users for a study with study roles and email address category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get user details by user ID",
            "description":"The operations from the Users, Permissions and Roles/Users/Get user details by user ID category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get user language by user ID",
            "description":"The operations from the Users, Permissions and Roles/Users/Get user language by user ID category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get users for a depot",
            "description":"The operations from the Users, Permissions and Roles/Users/Get users for a depot category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get users for a site",
            "description":"The operations from the Users, Permissions and Roles/Users/Get users for a site category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get users for rights list",
            "description":"The operations from the Users, Permissions and Roles/Users/Get users for rights list category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Get users with a certain role",
            "description":"The operations from the Users, Permissions and Roles/Users/Get users with a certain role category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Retrieves all the users that belong to a study mode.",
            "description":"The operations from the Users, Permissions and Roles/Users/Retrieves all the users that belong to a study mode. category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Update auth user attributes by user ID",
            "description":"The operations from the Users, Permissions and Roles/Users/Update auth user attributes by user ID category."
        },
        {
            "name":"Users, Permissions and Roles/Users/Verify Notification Right Name",
            "description":"The operations from the Users, Permissions and Roles/Users/Verify Notification Right Name category."
        }
    ]
}